quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 327 B
TypeScript
import { SkeletonImageProps } from 'antd/es/skeleton/Image';
import { FC } from 'react';
import { SKELETON_IMAGE } from '../../../Types';
export interface ISkeletonImage {
ctype: typeof SKELETON_IMAGE;
props: SkeletonImageProps;
}
declare const SkeletonImage: FC<ISkeletonImage>;
export default SkeletonImage;