Files
icehrm/web/node_modules/antd/lib/skeleton/Avatar.d.ts
2020-05-20 18:47:29 +02:00

14 lines
369 B
TypeScript

/// <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;