8 lines
281 B
TypeScript
8 lines
281 B
TypeScript
|
import * as React from 'react';
|
||
|
import type { SkeletonElementProps } from './Element';
|
||
|
export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> {
|
||
|
shape?: 'circle' | 'square';
|
||
|
}
|
||
|
declare const SkeletonAvatar: React.FC<AvatarProps>;
|
||
|
export default SkeletonAvatar;
|