UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

10 lines (9 loc) 276 B
/// <reference types="react" /> import React from 'react'; import { CardFooterProps } from './PropsType'; export default class CardFooter extends React.Component<CardFooterProps, any> { static defaultProps: { prefixCls: string; }; render(): JSX.Element; }