sendou.ink/components/common/Flag.tsx
2021-03-13 20:50:46 +02:00

12 lines
246 B
TypeScript

import Image from "next/image";
export default function Flag({ countryCode }: { countryCode: string }) {
return (
<Image
width={16}
height={16}
src={`https://www.countryflags.io/${countryCode}/flat/16.png`}
/>
);
}