export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type AvatarStatus = 'online' | 'busy' | 'offline'; export type AvatarData = { /** Image URL. `null` / `undefined` skips to the initials → icon fallback chain. */ src?: string | null; /** Display name — drives the initials fallback and the accessible label. */ name?: string; };