12 lines
425 B
TypeScript
12 lines
425 B
TypeScript
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;
|
|
};
|
|
declare const Avatar: CompoundedComponent;
|
|
export default Avatar;
|