UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

18 lines (17 loc) 811 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { AvatarStyle } from "./avatar.style.js"; import { UseAvatarGroupProps } from "./use-avatar-group.js"; import "../../index.js"; //#region src/components/avatar/avatar-group.d.ts interface AvatarGroupRootProps extends HTMLStyledProps, ThemeProps<AvatarStyle>, UseAvatarGroupProps {} /** * `Avatar` is a component that displays a profile picture or an icon with initials representing a user. * * @see https://yamada-ui.com/docs/components/avatar */ declare const AvatarGroupRoot: Component<"div", AvatarGroupRootProps>; //#endregion export { AvatarGroupRoot, AvatarGroupRootProps }; //# sourceMappingURL=avatar-group.d.ts.map