Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TabPane.d.ts 458B

123456789101112131415161718
  1. import * as React from 'react';
  2. import { BsPrefixComponent, TransitionCallbacks } from './helpers';
  3. export interface TabPaneProps extends TransitionCallbacks {
  4. eventKey?: unknown;
  5. active?: boolean;
  6. transition?: false | React.ElementType;
  7. bsClass?: string;
  8. mountOnEnter?: boolean;
  9. unmountOnExit?: boolean;
  10. }
  11. declare class TabPane<
  12. As extends React.ElementType = 'div'
  13. > extends BsPrefixComponent<As, TabPaneProps> {}
  14. export default TabPane;