UNPKG

@ant-design/react-native

Version:

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

20 lines (19 loc) 567 B
import { ImageStyle, TextStyle, ViewStyle } from 'react-native'; import { Theme } from '../../style'; export interface CardStyle { card: ViewStyle; full: ViewStyle; headerWrap: ViewStyle; headerTitle: ViewStyle; headerImage: ImageStyle; headerContentWrap: ViewStyle; headerContent: TextStyle; headerExtraWrap: ViewStyle; headerExtra: TextStyle; body: ViewStyle; footerWrap: ViewStyle; footerContent: TextStyle; footerExtra: TextStyle; } declare const _default: (theme: Theme) => CardStyle; export default _default;