UNPKG

@jdcfe/yep-react

Version:

一套移动端的React组件库

20 lines (19 loc) 476 B
import * as React from 'react'; import Tab from './Tab'; export interface TabBarProps { prefixCls?: string; style?: React.CSSProperties; className?: string; barTintColor?: string; hidden?: boolean; } declare class TabBar extends React.Component<TabBarProps> { static defaultProps: { prefixCls: string; barTintColor: string; hidden: boolean; }; static Tab: typeof Tab; render(): JSX.Element; } export default TabBar;