Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
468 Bytes
import InternalAvatar from './Avatar';
import type { AvatarGroupProps } from './AvatarGroup';
import AvatarGroup from './AvatarGroup';
export type { AvatarProps } from './Avatar';
/** @deprecated Please use `AvatarGroupProps` */
export type GroupProps = AvatarGroupProps;
type CompoundedComponent = typeof InternalAvatar & {
Group: typeof AvatarGroup;
};
const Avatar = InternalAvatar as CompoundedComponent;
Avatar.Group = AvatarGroup;
export default Avatar;