antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
78 lines (77 loc) • 1.78 kB
TypeScript
import { ImageStyle, TextStyle, ViewStyle } from 'react-native';
export interface ICardStyle {
card: ViewStyle;
full: ViewStyle;
headerWrap: ViewStyle;
headerTitle: ViewStyle;
headerImage: ImageStyle;
headerContent: TextStyle;
headerExtra: TextStyle;
body: ViewStyle;
footerWrap: ViewStyle;
footerContent: TextStyle;
footerExtra: TextStyle;
}
declare const _default: {
card: {
borderWidth: number;
borderColor: string;
borderRadius: number;
paddingBottom: number;
flexDirection: string;
backgroundColor: string;
};
full: {
borderRadius: number;
borderLeftWidth: number;
borderRightWidth: number;
};
headerWrap: {
flexDirection: string;
paddingVertical: number;
paddingRight: number;
marginLeft: number;
alignItems: string;
};
headerTitle: {
flex: number;
flexDirection: string;
alignItems: string;
};
headerImage: {
marginRight: number;
};
headerContent: {
color: string;
fontSize: number;
flex: number;
};
headerExtra: {
flex: number;
fontSize: number;
color: string;
textAlign: string;
};
body: {
flexGrow: number;
paddingVertical: number;
minHeight: number;
borderTopWidth: number;
borderColor: string;
};
footerWrap: {
flexDirection: string;
paddingHorizontal: number;
};
footerContent: {
flex: number;
fontSize: number;
color: string;
};
footerExtra: {
textAlign: string;
fontSize: number;
color: string;
};
};
export default _default;