ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
195 Bytes
interface AvatarProps {
src: string;
}
export function Avatar({ src }: AvatarProps) {
return (
<img src={src} alt="user avatar" className="w-full h-full rounded-full" />
);
}