import type { AvatarSize } from './avatar.types'; /** * Display names for Avatar components */ export const AVATAR_DISPLAY_NAME = { ROOT: 'HeroUINative.Avatar', IMAGE: 'HeroUINative.Avatar.Image', FALLBACK: 'HeroUINative.Avatar.Fallback', }; /** * Default icon sizes for different avatar sizes */ export const AVATAR_DEFAULT_ICON_SIZE: Record = { sm: 14, md: 16, lg: 20, };