@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
16 lines (15 loc) • 447 B
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
import { Theme } from '../../style';
export interface PickerViewStyle {
wrappper: ViewStyle;
wheelWrapper: ViewStyle;
itemWrap: ViewStyle;
itemStyle: TextStyle;
itemActiveStyle: TextStyle;
mask: ViewStyle;
maskTop: ViewStyle;
maskMiddle: ViewStyle;
maskBottom: ViewStyle;
}
declare const _default: (theme: Theme) => PickerViewStyle;
export default _default;