import type { HTMLProps, PropsWithChildren } from 'react'; export type TAvatarSize = 'sm' | 'md' | 'lg'; export type TAvatarProps = PropsWithChildren<{ /** Set the alt text for the Avatar's image */ alt?: string; /** Set the className for the Avatar's image */ imageClassName?: string; /** Set the size of the Avatar */ size?: TAvatarSize; /** Set the src for the Avatar's image */ src?: string; }> & Omit, 'size'>;