import Image from "next/image"; interface Props { prefix: string; name: string; profileImage: string; textSize?: string; } export default function UserWithProfilePic({ prefix, name, profileImage, textSize }: Props) { const textClassName = `${textSize ? textSize : "text-xs"} font-medium` return (

{prefix} {name}

{name}
); };