@heroui/avatar
Version:
The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.
14 lines (11 loc) • 417 B
TypeScript
import * as react from 'react';
import { ContextType } from './use-avatar-group.js';
import '@heroui/system';
import '@heroui/theme';
import '@heroui/react-utils';
import './avatar.js';
import './use-avatar.js';
import 'tailwind-variants';
declare const AvatarGroupProvider: react.Provider<ContextType>;
declare const useAvatarGroupContext: () => ContextType;
export { AvatarGroupProvider, useAvatarGroupContext };