UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 264 B
import { SkeletonProps } from 'antd'; import { FC } from 'react'; import { SKELETON } from '../../Types'; export interface ISkeleton { ctype: typeof SKELETON; props: SkeletonProps; } declare const Skeleton: FC<ISkeleton>; export default Skeleton;