antd-mobile
Version:
基于 React 的移动设计规范实现
13 lines (12 loc) • 344 B
TypeScript
import * as React from 'react';
import TabBarProps from './TabBarPropTypes';
declare class TabBar extends React.Component<TabBarProps, any> {
static defaultProps: {
barTintColor: string;
tintColor: string;
unselectedTintColor: string;
};
static Item: any;
render(): JSX.Element;
}
export default TabBar;