antd-mobile-alita
Version:
基于 React 的移动设计规范实现
13 lines (12 loc) • 366 B
TypeScript
import * as React from 'react';
import { CardFooterPropsType } from './PropsType';
export interface CardFooterProps extends CardFooterPropsType {
prefixCls?: string;
className?: string;
}
export default class CardFooter extends React.Component<CardFooterProps, any> {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}