UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

12 lines 604 B
import { AvatarClassNames, AvatarGroupItemType, AvatarGroupProps, AvatarProps, AvatarStyles } from "./type.mjs"; import AvatarGroup from "./AvatarGroup/index.mjs"; import { ReactNode, RefAttributes } from "react"; //#region src/base-ui/Avatar/index.d.ts interface IAvatar { (props: AvatarProps & RefAttributes<HTMLDivElement>): ReactNode; Group: typeof AvatarGroup; } declare const Avatar: IAvatar; //#endregion export { type AvatarClassNames, AvatarGroup, type AvatarGroupItemType, type AvatarGroupProps, type AvatarProps, type AvatarStyles, Avatar as default }; //# sourceMappingURL=index.d.mts.map