antd-mobile
Version:
基于 React 的移动设计规范实现
18 lines (17 loc) • 392 B
TypeScript
interface TabBarProps {
badge?: string | number;
onPress?: () => void;
selected?: boolean;
icon?: any;
selectedIcon?: any;
style?: any;
children: any;
title: string;
tintColor?: string;
unselectedTintColor?: string;
systemIcon?: any;
renderAsOriginal?: boolean;
rootPrefixCls?: string;
className?: string;
}
export default TabBarProps;