@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 512 B
text/typescript
import { AvatarGroupItemType, AvatarGroupProps, AvatarProps } from "./type.mjs";
import { AvatarGroup } from "./AvatarGroup/index.mjs";
import { ReactNode, RefAttributes } from "react";
//#region src/Avatar/index.d.ts
interface IAvatar {
(props: AvatarProps & RefAttributes<HTMLDivElement>): ReactNode;
Group: typeof AvatarGroup;
}
declare const Avatar: IAvatar;
//#endregion
export { AvatarGroup, AvatarGroupItemType, AvatarGroupProps, AvatarProps, Avatar as default };
//# sourceMappingURL=index.d.mts.map