@heroui/avatar
Version:
The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.
15 lines (12 loc) • 487 B
text/typescript
import * as _heroui_system from '@heroui/system';
import { UseAvatarGroupProps } from './use-avatar-group.mjs';
import 'react';
import '@heroui/theme';
import '@heroui/react-utils';
import './avatar.mjs';
import './use-avatar.mjs';
import 'tailwind-variants';
interface AvatarGroupProps extends UseAvatarGroupProps {
}
declare const AvatarGroup: _heroui_system.InternalForwardRefRenderFunction<"div", AvatarGroupProps, never>;
export { type AvatarGroupProps, AvatarGroup as default };