dont use image for unknown player
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Lee
2023-10-27 22:56:27 +01:00
parent 7408136a6d
commit 09f5842a3d
2 changed files with 15 additions and 6 deletions

View File

@ -0,0 +1,13 @@
type UnknownAvatarProps = {
size?: number;
};
export default function UnknownAvatar({ size = 150 }: UnknownAvatarProps) {
return (
<div
className={`mb-4 mt-2 flex h-[${size}px] w-[${size}px] items-center justify-center rounded-full bg-gray-600`}
>
<p className="text-9xl">?</p>
</div>
);
}