UNPKG

369 BTypeScriptView Raw
1/// <reference types="react" />
2import { SkeletonElementProps } from './Element';
3export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> {
4 shape?: 'circle' | 'square';
5}
6declare const SkeletonAvatar: {
7 (props: AvatarProps): JSX.Element;
8 defaultProps: {
9 size: string;
10 shape: string;
11 };
12};
13export default SkeletonAvatar;