react-components/blog/avatar.tsx

16 lines
328 B
TypeScript
Raw Normal View History

2024-10-30 18:28:41 +01:00
type Props = {
name: string;
picture: string;
};
const Avatar = ({ name, picture }: Props) => {
return (
<div className="flex items-center">
<img src={picture} className="w-12 h-12 rounded-full mr-4" alt={name} />
<div className="text-xl font-bold">{name}</div>
</div>
);
};
export default Avatar;