This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Liam 52203bbb77
All checks were successful
Deploy / deploy (push) Successful in 2m33s
re-enable player rank chart and fix country flags
2024-09-27 21:23:44 +01:00

18 lines
401 B
TypeScript

type Props = {
code: string;
size?: number;
};
export default function CountryFlag({ code, size = 24 }: Props) {
return (
// eslint-disable-next-line @next/next/no-img-element
<img
alt="Player Country"
src={`/assets/flags/${code.toLowerCase()}.png`}
width={size * 2}
height={size}
className={`w-[${size * 2}px] h-[${size}px] object-contain`}
/>
);
}