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 { SkeletonTitleProps } from 'antd/es/skeleton/Title';
import { FC } from 'react';
import { SKELETON_TITLE } from '../../../Types';
export interface ISkeletonTitle {
ctype: typeof SKELETON_TITLE;
props: SkeletonTitleProps;
}
declare const SkeletonTitle: FC<ISkeletonTitle>;
export default SkeletonTitle;