export default function AvatarImage({ src, width, alt, lazyLoad, }: { src: string; width: number; alt: string; lazyLoad?: boolean; }) { return ( {alt} ); }