mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
9aec72c395
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
21 lines
527 B
TypeScript
21 lines
527 B
TypeScript
import type { ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
import type { AvatarProps } from './avatar';
|
|
import InternalAvatar 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;
|
|
};
|
|
|
|
const Avatar = InternalAvatar as CompoundedComponent;
|
|
|
|
Avatar.Group = Group;
|
|
|
|
export default Avatar;
|