diff --git a/types/reactstrap/lib/Alert.d.ts b/types/reactstrap/lib/Alert.d.ts index c52ff2c35b..2a5a0f8dde 100644 --- a/types/reactstrap/lib/Alert.d.ts +++ b/types/reactstrap/lib/Alert.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface UncontrolledProps { +export interface UncontrolledProps extends React.HTMLAttributes { className?: string; cssModule?: CSSModule; color?: string; diff --git a/types/reactstrap/lib/Badge.d.ts b/types/reactstrap/lib/Badge.d.ts index b58faeed8c..f45c418c52 100644 --- a/types/reactstrap/lib/Badge.d.ts +++ b/types/reactstrap/lib/Badge.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface BadgeProps { +export interface BadgeProps extends React.HTMLAttributes { color?: string; pill?: boolean; tag?: React.ReactType; diff --git a/types/reactstrap/lib/Breadcrumb.d.ts b/types/reactstrap/lib/Breadcrumb.d.ts index 4b5e2b85da..74e770de4f 100644 --- a/types/reactstrap/lib/Breadcrumb.d.ts +++ b/types/reactstrap/lib/Breadcrumb.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface BreadcrumbProps { +export interface BreadcrumbProps extends React.HTMLAttributes { tag?: string; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/BreadcrumbItem.d.ts b/types/reactstrap/lib/BreadcrumbItem.d.ts index 4cb8d77c75..ab2e9cbc4e 100644 --- a/types/reactstrap/lib/BreadcrumbItem.d.ts +++ b/types/reactstrap/lib/BreadcrumbItem.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface BreadcrumbItemProps { +export interface BreadcrumbItemProps extends React.HTMLAttributes { tag?: React.ReactType; active?: boolean; className?: string; diff --git a/types/reactstrap/lib/ButtonGroup.d.ts b/types/reactstrap/lib/ButtonGroup.d.ts index 29bbaac38b..10549f5347 100644 --- a/types/reactstrap/lib/ButtonGroup.d.ts +++ b/types/reactstrap/lib/ButtonGroup.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ButtonGroupProps { +export interface ButtonGroupProps extends React.HTMLAttributes { tag?: React.ReactType; 'aria-label'?: string; className?: string; diff --git a/types/reactstrap/lib/ButtonToolbar.d.ts b/types/reactstrap/lib/ButtonToolbar.d.ts index 1c782c5745..ebd8733b28 100644 --- a/types/reactstrap/lib/ButtonToolbar.d.ts +++ b/types/reactstrap/lib/ButtonToolbar.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ButtonToolbarProps { +export interface ButtonToolbarProps extends React.HTMLAttributes { tag?: React.ReactType; 'aria-label'?: string; className?: string; diff --git a/types/reactstrap/lib/Card.d.ts b/types/reactstrap/lib/Card.d.ts index 8fd85c099b..0387ae3e94 100644 --- a/types/reactstrap/lib/Card.d.ts +++ b/types/reactstrap/lib/Card.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardProps { +export interface CardProps extends React.HTMLAttributes { tag?: React.ReactType; inverse?: boolean; color?: string; diff --git a/types/reactstrap/lib/CardBody.d.ts b/types/reactstrap/lib/CardBody.d.ts index 433a6a6ac0..d95ac0d31b 100644 --- a/types/reactstrap/lib/CardBody.d.ts +++ b/types/reactstrap/lib/CardBody.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardBodyProps { +export interface CardBodyProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardColumns.d.ts b/types/reactstrap/lib/CardColumns.d.ts index 92eb2019ec..19f53cc250 100644 --- a/types/reactstrap/lib/CardColumns.d.ts +++ b/types/reactstrap/lib/CardColumns.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardColumnsProps { +export interface CardColumnsProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardDeck.d.ts b/types/reactstrap/lib/CardDeck.d.ts index c14324df37..09b3d39c34 100644 --- a/types/reactstrap/lib/CardDeck.d.ts +++ b/types/reactstrap/lib/CardDeck.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardDeckProps { +export interface CardDeckProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardFooter.d.ts b/types/reactstrap/lib/CardFooter.d.ts index 6dba776a38..f1ee324f03 100644 --- a/types/reactstrap/lib/CardFooter.d.ts +++ b/types/reactstrap/lib/CardFooter.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardFooterProps { +export interface CardFooterProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardGroup.d.ts b/types/reactstrap/lib/CardGroup.d.ts index 695747eef4..5bf83900bf 100644 --- a/types/reactstrap/lib/CardGroup.d.ts +++ b/types/reactstrap/lib/CardGroup.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardGroupProps { +export interface CardGroupProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardHeader.d.ts b/types/reactstrap/lib/CardHeader.d.ts index 306ff445e3..d630954e78 100644 --- a/types/reactstrap/lib/CardHeader.d.ts +++ b/types/reactstrap/lib/CardHeader.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardHeaderProps { +export interface CardHeaderProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardImg.d.ts b/types/reactstrap/lib/CardImg.d.ts index e65cba66e2..b4b7021232 100644 --- a/types/reactstrap/lib/CardImg.d.ts +++ b/types/reactstrap/lib/CardImg.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardImgProps { +export interface CardImgProps extends React.HTMLAttributes { tag?: React.ReactType; top?: boolean; bottom?: boolean; diff --git a/types/reactstrap/lib/CardImgOverlay.d.ts b/types/reactstrap/lib/CardImgOverlay.d.ts index d31e96d76f..ccc76fa9c9 100644 --- a/types/reactstrap/lib/CardImgOverlay.d.ts +++ b/types/reactstrap/lib/CardImgOverlay.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardImgOverlayProps { +export interface CardImgOverlayProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardLink.d.ts b/types/reactstrap/lib/CardLink.d.ts index 22c9d614b3..9425571de5 100644 --- a/types/reactstrap/lib/CardLink.d.ts +++ b/types/reactstrap/lib/CardLink.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardLinkProps { +export interface CardLinkProps extends React.HTMLAttributes { tag?: React.ReactType; innerRef?: string | ((instance: HTMLButtonElement) => any); className?: string; diff --git a/types/reactstrap/lib/CardSubtitle.d.ts b/types/reactstrap/lib/CardSubtitle.d.ts index 915c69c93f..a237c29119 100644 --- a/types/reactstrap/lib/CardSubtitle.d.ts +++ b/types/reactstrap/lib/CardSubtitle.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardSubtitleProps { +export interface CardSubtitleProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardText.d.ts b/types/reactstrap/lib/CardText.d.ts index 3782e962be..462c1abef3 100644 --- a/types/reactstrap/lib/CardText.d.ts +++ b/types/reactstrap/lib/CardText.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardTextProps { +export interface CardTextProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/CardTitle.d.ts b/types/reactstrap/lib/CardTitle.d.ts index f551d860ab..68c5c6120c 100644 --- a/types/reactstrap/lib/CardTitle.d.ts +++ b/types/reactstrap/lib/CardTitle.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface CardTitleProps { +export interface CardTitleProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Container.d.ts b/types/reactstrap/lib/Container.d.ts index 4721cf68c1..df2114e773 100644 --- a/types/reactstrap/lib/Container.d.ts +++ b/types/reactstrap/lib/Container.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ContainerProps { +export interface ContainerProps extends React.HTMLAttributes { tag?: React.ReactType; fluid?: boolean; className?: string; diff --git a/types/reactstrap/lib/Dropdown.d.ts b/types/reactstrap/lib/Dropdown.d.ts index e53b813cfe..17805d4908 100644 --- a/types/reactstrap/lib/Dropdown.d.ts +++ b/types/reactstrap/lib/Dropdown.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface UncontrolledProps { +export interface UncontrolledProps extends React.HTMLAttributes { isOpen?: boolean; toggle?: () => void; className?: string; diff --git a/types/reactstrap/lib/DropdownItem.d.ts b/types/reactstrap/lib/DropdownItem.d.ts index ce11638b83..598c2fbfc8 100644 --- a/types/reactstrap/lib/DropdownItem.d.ts +++ b/types/reactstrap/lib/DropdownItem.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface DropdownItemProps { +export interface DropdownItemProps extends React.HTMLAttributes { disabled?: boolean; divider?: boolean; tag?: React.ReactType; diff --git a/types/reactstrap/lib/DropdownMenu.d.ts b/types/reactstrap/lib/DropdownMenu.d.ts index 1fcbab6c2b..8d3cdb6acd 100644 --- a/types/reactstrap/lib/DropdownMenu.d.ts +++ b/types/reactstrap/lib/DropdownMenu.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface DropdownMenuProps { +export interface DropdownMenuProps extends React.HTMLAttributes { tag?: React.ReactType; right?: boolean; className?: string; diff --git a/types/reactstrap/lib/DropdownToggle.d.ts b/types/reactstrap/lib/DropdownToggle.d.ts index eab2f3879d..5c27af11ad 100644 --- a/types/reactstrap/lib/DropdownToggle.d.ts +++ b/types/reactstrap/lib/DropdownToggle.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface DropdownToggleProps { +export interface DropdownToggleProps extends React.HTMLAttributes { caret?: boolean; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Fade.d.ts b/types/reactstrap/lib/Fade.d.ts index 6d67195821..05a13502e1 100644 --- a/types/reactstrap/lib/Fade.d.ts +++ b/types/reactstrap/lib/Fade.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface FadeProps { +export interface FadeProps extends React.HTMLAttributes { in?: boolean; baseClass?: string; baseClassIn?: string; diff --git a/types/reactstrap/lib/FormFeedback.d.ts b/types/reactstrap/lib/FormFeedback.d.ts index 20e9b27745..b5c8f04eae 100644 --- a/types/reactstrap/lib/FormFeedback.d.ts +++ b/types/reactstrap/lib/FormFeedback.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface FormFeedbackProps { +export interface FormFeedbackProps extends React.HTMLAttributes { tag?: string; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/FormText.d.ts b/types/reactstrap/lib/FormText.d.ts index a749d6fc30..99a3675d6b 100644 --- a/types/reactstrap/lib/FormText.d.ts +++ b/types/reactstrap/lib/FormText.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface FormTextProps { +export interface FormTextProps extends React.HTMLAttributes { inline?: boolean; tag?: React.ReactType; color?: string; diff --git a/types/reactstrap/lib/InputGroup.d.ts b/types/reactstrap/lib/InputGroup.d.ts index 22f3ba027c..468b46f1c5 100644 --- a/types/reactstrap/lib/InputGroup.d.ts +++ b/types/reactstrap/lib/InputGroup.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface InputGroupProps { +export interface InputGroupProps extends React.HTMLAttributes { tag?: React.ReactType; size?: string; className?: string; diff --git a/types/reactstrap/lib/Jumbotron.d.ts b/types/reactstrap/lib/Jumbotron.d.ts index 6cb94c04c1..9145e73223 100644 --- a/types/reactstrap/lib/Jumbotron.d.ts +++ b/types/reactstrap/lib/Jumbotron.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface JumbotronProps { +export interface JumbotronProps extends React.HTMLAttributes { tag?: React.ReactType; fluid?: boolean; className?: string; diff --git a/types/reactstrap/lib/ListGroup.d.ts b/types/reactstrap/lib/ListGroup.d.ts index a2a088935b..e9cb511cf0 100644 --- a/types/reactstrap/lib/ListGroup.d.ts +++ b/types/reactstrap/lib/ListGroup.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ListGroupProps { +export interface ListGroupProps extends React.HTMLAttributes { tag?: React.ReactType; flush?: boolean; className?: string; diff --git a/types/reactstrap/lib/ListGroupItem.d.ts b/types/reactstrap/lib/ListGroupItem.d.ts index d2cb1a9e67..045aa9539e 100644 --- a/types/reactstrap/lib/ListGroupItem.d.ts +++ b/types/reactstrap/lib/ListGroupItem.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ListGroupItemProps { +export interface ListGroupItemProps extends React.HTMLAttributes { tag?: React.ReactType; active?: boolean; disabled?: boolean; diff --git a/types/reactstrap/lib/ListGroupItemHeading.d.ts b/types/reactstrap/lib/ListGroupItemHeading.d.ts index 0f5bdfb457..09e29f9434 100644 --- a/types/reactstrap/lib/ListGroupItemHeading.d.ts +++ b/types/reactstrap/lib/ListGroupItemHeading.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ListGroupItemHeadingProps { +export interface ListGroupItemHeadingProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/ListGroupItemText.d.ts b/types/reactstrap/lib/ListGroupItemText.d.ts index 7010eb1289..947ee4cd7a 100644 --- a/types/reactstrap/lib/ListGroupItemText.d.ts +++ b/types/reactstrap/lib/ListGroupItemText.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ListGroupItemTextProps { +export interface ListGroupItemTextProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Media.d.ts b/types/reactstrap/lib/Media.d.ts index daf4fadcc8..f7a9afb2c0 100644 --- a/types/reactstrap/lib/Media.d.ts +++ b/types/reactstrap/lib/Media.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface MediaProps { +export interface MediaProps extends React.HTMLAttributes { body?: boolean; bottom?: boolean; className?: string; diff --git a/types/reactstrap/lib/Modal.d.ts b/types/reactstrap/lib/Modal.d.ts index 6db7207e9f..bfab2f56fd 100644 --- a/types/reactstrap/lib/Modal.d.ts +++ b/types/reactstrap/lib/Modal.d.ts @@ -1,7 +1,7 @@ import { CSSModule } from '../index'; import { FadeProps } from './Fade'; -export interface ModalProps { +export interface ModalProps extends React.HTMLAttributes { isOpen?: boolean; autoFocus?: boolean; size?: string; diff --git a/types/reactstrap/lib/ModalBody.d.ts b/types/reactstrap/lib/ModalBody.d.ts index 1467b5883a..083ac04186 100644 --- a/types/reactstrap/lib/ModalBody.d.ts +++ b/types/reactstrap/lib/ModalBody.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ModalBodyProps { +export interface ModalBodyProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/ModalFooter.d.ts b/types/reactstrap/lib/ModalFooter.d.ts index ae511eb7cc..40ed54f9ae 100644 --- a/types/reactstrap/lib/ModalFooter.d.ts +++ b/types/reactstrap/lib/ModalFooter.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ModalFooterProps { +export interface ModalFooterProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/ModalHeader.d.ts b/types/reactstrap/lib/ModalHeader.d.ts index 47632f59e3..c1a3e55b7a 100644 --- a/types/reactstrap/lib/ModalHeader.d.ts +++ b/types/reactstrap/lib/ModalHeader.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ModalHeaderProps { +export interface ModalHeaderProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/NavItem.d.ts b/types/reactstrap/lib/NavItem.d.ts index 0769347298..6d5e0dd9cb 100644 --- a/types/reactstrap/lib/NavItem.d.ts +++ b/types/reactstrap/lib/NavItem.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface NavItemProps { +export interface NavItemProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Navbar.d.ts b/types/reactstrap/lib/Navbar.d.ts index ed3f28a02c..83e720731a 100644 --- a/types/reactstrap/lib/Navbar.d.ts +++ b/types/reactstrap/lib/Navbar.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface NavbarProps { +export interface NavbarProps extends React.HTMLAttributes { light?: boolean; dark?: boolean; inverse?: boolean; diff --git a/types/reactstrap/lib/Pagination.d.ts b/types/reactstrap/lib/Pagination.d.ts index 7657d90206..9dabaf8829 100644 --- a/types/reactstrap/lib/Pagination.d.ts +++ b/types/reactstrap/lib/Pagination.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface PaginationProps { +export interface PaginationProps extends React.HTMLAttributes { className?: string; cssModule?: CSSModule; size?: string; diff --git a/types/reactstrap/lib/PaginationItem.d.ts b/types/reactstrap/lib/PaginationItem.d.ts index c2eadfab97..a00fddc413 100644 --- a/types/reactstrap/lib/PaginationItem.d.ts +++ b/types/reactstrap/lib/PaginationItem.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface PaginationItemProps { +export interface PaginationItemProps extends React.HTMLAttributes { className?: string; cssModule?: CSSModule; active?: boolean; diff --git a/types/reactstrap/lib/PopoverBody.d.ts b/types/reactstrap/lib/PopoverBody.d.ts index 93512cacb1..bf67919e49 100644 --- a/types/reactstrap/lib/PopoverBody.d.ts +++ b/types/reactstrap/lib/PopoverBody.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface PopoverBodyProps { +export interface PopoverBodyProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/PopoverHeader.d.ts b/types/reactstrap/lib/PopoverHeader.d.ts index 2ad69c636c..caa0847233 100644 --- a/types/reactstrap/lib/PopoverHeader.d.ts +++ b/types/reactstrap/lib/PopoverHeader.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface PopoverHeaderProps { +export interface PopoverHeaderProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Progress.d.ts b/types/reactstrap/lib/Progress.d.ts index 89e9df4be9..6f252622a1 100644 --- a/types/reactstrap/lib/Progress.d.ts +++ b/types/reactstrap/lib/Progress.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface ProgressProps { +export interface ProgressProps extends React.HTMLAttributes { bar?: boolean; multi?: boolean; tag?: string; diff --git a/types/reactstrap/lib/Row.d.ts b/types/reactstrap/lib/Row.d.ts index e5553ff81f..35284a9f70 100644 --- a/types/reactstrap/lib/Row.d.ts +++ b/types/reactstrap/lib/Row.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface RowProps extends React.HTMLProps< HTMLElement> { +export interface RowProps extends React.HTMLProps { className?: string; cssModule?: CSSModule; tag?: React.ReactType; diff --git a/types/reactstrap/lib/TabContent.d.ts b/types/reactstrap/lib/TabContent.d.ts index 2581ea7a93..0a180cf3c4 100644 --- a/types/reactstrap/lib/TabContent.d.ts +++ b/types/reactstrap/lib/TabContent.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface TabContentProps { +export interface TabContentProps extends React.HTMLAttributes { tag?: React.ReactType; activeTab?: number | string; className?: string; diff --git a/types/reactstrap/lib/TabPane.d.ts b/types/reactstrap/lib/TabPane.d.ts index a39398d59b..0bcbfd5d17 100644 --- a/types/reactstrap/lib/TabPane.d.ts +++ b/types/reactstrap/lib/TabPane.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface TabPaneProps { +export interface TabPaneProps extends React.HTMLAttributes { tag?: React.ReactType; className?: string; cssModule?: CSSModule; diff --git a/types/reactstrap/lib/Table.d.ts b/types/reactstrap/lib/Table.d.ts index c2d31d71e2..0374d7a0b5 100644 --- a/types/reactstrap/lib/Table.d.ts +++ b/types/reactstrap/lib/Table.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface TableProps { +export interface TableProps extends React.HTMLAttributes { className?: string; cssModule?: CSSModule; size?: string; diff --git a/types/reactstrap/lib/Tag.d.ts b/types/reactstrap/lib/Tag.d.ts index 153ff61177..49df70b240 100644 --- a/types/reactstrap/lib/Tag.d.ts +++ b/types/reactstrap/lib/Tag.d.ts @@ -1,6 +1,6 @@ import { CSSModule } from '../index'; -export interface TagProps { +export interface TagProps extends React.HTMLAttributes { color?: string; pill?: boolean; tag?: React.ReactType;