quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
12 lines (11 loc) • 405 B
TypeScript
import { AvatarProps as AntdAvatarProps } from 'antd';
import { FC } from 'react';
import { SKELETON_AVATAR } from '../../../Types';
export interface ISkeletonAvatar {
ctype: typeof SKELETON_AVATAR;
props: Omit<AntdAvatarProps, 'size'> & {
size?: number | 'small' | 'large' | 'default';
};
}
declare const SkeletonAvatar: FC<ISkeletonAvatar>;
export default SkeletonAvatar;