Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame
352 Bytes
import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";
interface AvatarProps {
src: string;
}
export function Avatar({ src }: AvatarProps) {
const { t } = useTranslation();
return (
<img
src={src}
alt={t(I18nKey.AVATAR$ALT_TEXT)}
className="w-full h-full rounded-full"
/>
);
}