sendou.ink/components/common/Flag.tsx
2021-06-20 19:52:05 +03:00

13 lines
298 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`}
alt={`Flag with country code ${countryCode}`}
/>
);
}