UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

74 lines (73 loc) 1.68 kB
import { ViewStyle, ImageStyle, TextStyle } from 'react-native'; export interface IImagePickerStyle { container: ViewStyle; size: ViewStyle; item: ViewStyle; image: ImageStyle; closeWrap: ViewStyle; closeText: TextStyle; plusWrap: ViewStyle; plusWrapNormal: ViewStyle; plusWrapHighlight: ViewStyle; plusText: TextStyle; } declare const _default: { container: { flexWrap: string; flexDirection: string; }; size: { width: number; height: number; }; item: { marginRight: number; marginBottom: number; overflow: string; }; image: { overflow: string; borderRadius: number; }; closeWrap: { width: number; height: number; backgroundColor: string; borderRadius: number; position: string; top: number; right: number; justifyContent: string; alignItems: string; overflow: string; }; closeText: { color: string; backgroundColor: string; fontSize: number; height: number; marginTop: number; fontWeight: string; }; plusWrap: { borderRadius: number; borderWidth: number; justifyContent: string; alignItems: string; }; plusWrapNormal: { backgroundColor: string; borderColor: string; }; plusWrapHighlight: { backgroundColor: string; borderColor: string; }; plusText: { fontSize: number; backgroundColor: string; fontWeight: string; color: string; }; }; export default _default;