antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
40 lines (39 loc) • 970 B
TypeScript
import { ViewStyle, TextStyle } from 'react-native';
export interface ISegmentControlStyle {
segment: ViewStyle;
item: ViewStyle;
itemLeftRadius: ViewStyle;
itemRightRadius: ViewStyle;
itemText: TextStyle;
}
declare const _default: {
segment: {
flexDirection: string;
overflow: string;
borderWidth: number;
borderColor: string;
borderRadius: number;
};
item: {
flex: number;
paddingVertical: number;
borderLeftWidth: number;
borderRightWidth: number;
borderStyle: string;
alignItems: string;
justifyContent: string;
};
itemLeftRadius: {
borderTopLeftRadius: number;
borderBottomLeftRadius: number;
};
itemRightRadius: {
borderTopRightRadius: number;
borderBottomRightRadius: number;
};
itemText: {
textAlign: string;
fontSize: number;
};
};
export default _default;