antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 325 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
export interface CardBodyProps {
styles?: any;
style?: StyleProp<ViewStyle>;
}
export default class CardBody extends React.Component<CardBodyProps, any> {
static defaultProps: {
style: {};
};
render(): JSX.Element;
}