7 lines
278 B
TypeScript
7 lines
278 B
TypeScript
import { ISkeletonBaseProps } from '../props';
|
|
export interface SkeletonAvatarProps extends ISkeletonBaseProps {
|
|
shape: 'circle' | 'square';
|
|
size: 'x-small' | 'small' | 'medium' | 'large';
|
|
}
|
|
export declare const SkeletonAvatarDefaultProps: Partial<SkeletonAvatarProps>;
|