tweak: export Skeleton avatar name (#15965)

This commit is contained in:
信鑫-King 2019-04-09 13:42:34 +08:00 committed by zombieJ
parent a26397843c
commit 4c3a351bc7

View File

@ -9,7 +9,7 @@ export interface SkeletonAvatarProps {
shape?: 'circle' | 'square';
}
class Title extends React.Component<SkeletonAvatarProps, any> {
class SkeletonAvatar extends React.Component<SkeletonAvatarProps, any> {
static defaultProps: Partial<SkeletonAvatarProps> = {
size: 'large',
};
@ -31,4 +31,4 @@ class Title extends React.Component<SkeletonAvatarProps, any> {
}
}
export default Title;
export default SkeletonAvatar;