UNPKG

@ant-design/react-native

Version:

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

14 lines (13 loc) 443 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { CardStyle } from './style'; export interface CardBodyProps extends WithThemeStyles<Pick<CardStyle, 'body'>> { style?: StyleProp<ViewStyle>; } export default class CardBody extends React.Component<CardBodyProps, any> { static defaultProps: { style: {}; }; render(): React.JSX.Element; }