UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 425 B
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;