UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

19 lines (14 loc) 458 B
import * as React from 'react'; import { BsPrefixComponent, TransitionCallbacks } from './helpers'; export interface TabPaneProps extends TransitionCallbacks { eventKey?: unknown; active?: boolean; transition?: false | React.ElementType; bsClass?: string; mountOnEnter?: boolean; unmountOnExit?: boolean; } declare class TabPane< As extends React.ElementType = 'div' > extends BsPrefixComponent<As, TabPaneProps> {} export default TabPane;