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