choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
9 lines (8 loc) • 357 B
TypeScript
import { FunctionComponent } from 'react';
import { SkeletonElementProps } from './Element';
export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> {
shape?: 'circle' | 'square';
}
declare const SkeletonAvatar: FunctionComponent<AvatarProps>;
declare const MemoSkeletonAvatar: typeof SkeletonAvatar;
export default MemoSkeletonAvatar;