import React, { HTMLAttributes } from 'react'; import { SizeProp } from '../../types/size'; import { ColorProp } from '../../types/color'; export interface AvatarProps extends Pick, 'className'> { variant?: 'circular' | 'rounded' | 'square'; size?: SizeProp; /** * The color of the component. * @default 'basic' */ color?: ColorProp; imgProps?: React.HTMLAttributes; alt?: string; src?: string; srcSet?: string; sizes?: string; letterString?: string; icon?: any; }