export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' export type AvatarStatus = 'away' | 'busy' | 'offline' | 'online' export type AvatarStatusPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' export type AvatarType = 'default' | 'rounded' export type avatarDotIndicatorPositionClasses = `${AvatarStatusPosition}-${AvatarType}`