mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
manually port fix from 16286 and address PR (#17003)
This commit is contained in:
parent
7019f85ea5
commit
eef8a774f5
4
types/reactstrap/lib/Row.d.ts
vendored
4
types/reactstrap/lib/Row.d.ts
vendored
@ -1,8 +1,8 @@
|
||||
interface Props {
|
||||
interface Props extends React.HTMLProps< HTMLElement> {
|
||||
className?: string;
|
||||
tag?: React.ReactType;
|
||||
noGutters?: boolean;
|
||||
}
|
||||
|
||||
declare var Row: React.StatelessComponent<React.HTMLProps<any>>;
|
||||
declare var Row: React.StatelessComponent<Props>;
|
||||
export default Row;
|
||||
@ -549,7 +549,7 @@ const Example26 = (props: any) => {
|
||||
|
||||
const Example27 = (props: any) => {
|
||||
return (
|
||||
<Row>
|
||||
<Row noGutters>
|
||||
<Col sm="6">
|
||||
<Card block>
|
||||
<CardTitle>Special Title Treatment</CardTitle>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user