@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 400 B
TypeScript
import { type ReactNode, RefAttributes } from 'react';
import AvatarGroup from './AvatarGroup';
import { type AvatarProps } from './type';
interface IAvatar {
(props: AvatarProps & RefAttributes<HTMLDivElement>): ReactNode;
Group: typeof AvatarGroup;
}
declare const Avatar: IAvatar;
export default Avatar;
export { default as AvatarGroup } from './AvatarGroup';
export type * from './type';