export const PhotoCircle = function PhotoCircle({ src, alt, size = "w-48 h-48", width = "256", height = "256", }: PhotoCircleOpts) { return (
{alt
); }; type PhotoCircleOpts = { src: string; alt?: string; size?: string; width?: string; height?: string; };