TabPane.d.ts 596 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. export interface TabPaneProps {
  3. tab?: React.ReactNode;
  4. className?: string;
  5. style?: React.CSSProperties;
  6. disabled?: boolean;
  7. children?: React.ReactNode;
  8. forceRender?: boolean;
  9. closable?: boolean;
  10. closeIcon?: React.ReactNode;
  11. icon?: React.ReactNode;
  12. prefixCls?: string;
  13. tabKey?: string;
  14. id?: string;
  15. animated?: boolean;
  16. active?: boolean;
  17. destroyInactiveTabPane?: boolean;
  18. }
  19. declare const TabPane: React.ForwardRefExoticComponent<TabPaneProps & React.RefAttributes<HTMLDivElement>>;
  20. export default TabPane;