antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 321 B
TypeScript
import InternalAvatar from './avatar';
import Group from './group';
export type { AvatarProps } from './avatar';
export type { GroupProps } from './group';
export { Group };
type CompoundedComponent = typeof InternalAvatar & {
Group: typeof Group;
};
declare const Avatar: CompoundedComponent;
export default Avatar;