UNPKG

281 BTypeScriptView Raw
1import * as React from 'react';
2import type { SkeletonElementProps } from './Element';
3export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> {
4 shape?: 'circle' | 'square';
5}
6declare const SkeletonAvatar: React.FC<AvatarProps>;
7export default SkeletonAvatar;