import Image from "next/image"; type AvatarProps = { name: string; picture: string; }; const Avatar = (props: AvatarProps) => { const { name, picture } = props; return (
{picture && ( {name} )}
{name}
); }; export default Avatar;