UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

14 lines (13 loc) 369 B
/// <reference types="react" /> import { SkeletonElementProps } from './Element'; export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> { shape?: 'circle' | 'square'; } declare const SkeletonAvatar: { (props: AvatarProps): JSX.Element; defaultProps: { size: string; shape: string; }; }; export default SkeletonAvatar;