import {HTMLAttributes} from 'react'; export type AvatarSizesType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; export type AvatarStatusesType = 'verified' | 'online' | 'none'; export interface IAvatar extends HTMLAttributes { size?: AvatarSizesType; round?: 'full' | `${number}px`; border?: boolean; src?: string; placeholder?: string; unlimitedPlaceholder?: boolean; status?: AvatarStatusesType; }