UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines (12 loc) 478 B
import InternalAvatar from './Avatar'; import type { AvatarGroupProps } from './AvatarGroup'; import AvatarGroup from './AvatarGroup'; export type { AvatarProps } from './Avatar'; export type { AvatarGroupRef } from './AvatarGroup'; /** @deprecated Please use `AvatarGroupProps` */ export type GroupProps = AvatarGroupProps; type CompoundedComponent = typeof InternalAvatar & { Group: typeof AvatarGroup; }; declare const Avatar: CompoundedComponent; export default Avatar;