UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

11 lines (10 loc) 393 B
import { ForwardRefExoticComponent } from 'react'; import TabItem from './item'; import { TabProps, LocaleType, TabItemProps } from './types'; import './styles/index.scss'; export interface TabComponent extends ForwardRefExoticComponent<TabProps> { Item: typeof TabItem; } declare const ExpandedTab: TabComponent; export { TabProps, TabItemProps, LocaleType }; export default ExpandedTab;