UNPKG

@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) 420 B
import * as react from 'react'; import { ContextType } from './use-avatar-group.mjs'; import '@heroui/system'; import '@heroui/theme'; import '@heroui/react-utils'; import './avatar.mjs'; import './use-avatar.mjs'; import 'tailwind-variants'; declare const AvatarGroupProvider: react.Provider<ContextType>; declare const useAvatarGroupContext: () => ContextType; export { AvatarGroupProvider, useAvatarGroupContext };