antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
12 lines (11 loc) • 448 B
TypeScript
import type { ForwardRefExoticComponent, RefAttributes } from 'react';
import type { AvatarProps } from './avatar';
import Group from './group';
export type { AvatarProps } from './avatar';
export type { GroupProps } from './group';
export { Group };
type CompoundedComponent = ForwardRefExoticComponent<AvatarProps & RefAttributes<HTMLSpanElement>> & {
Group: typeof Group;
};
declare const Avatar: CompoundedComponent;
export default Avatar;