UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 272 B
import { StatisticProps } from 'antd'; import { FC } from 'react'; import { STATISTIC } from '../../Types'; export interface IStatistic { ctype: typeof STATISTIC; props: StatisticProps; } declare const Statistic: FC<IStatistic>; export default Statistic;