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
scoresaber-reloadedv3/projects/website/src/components/country-flag.tsx

17 lines
367 B
TypeScript
Raw Normal View History

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