@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
12 lines (11 loc) • 322 B
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
import { Theme } from '../../style';
export interface TabBarStyle {
container: ViewStyle;
tabs: ViewStyle;
tab: ViewStyle;
underline: ViewStyle;
textStyle: TextStyle;
}
declare const _default: (theme: Theme) => TabBarStyle;
export default _default;