mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-02 19:26:50 -05:00
13 lines
298 B
TypeScript
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}`}
|
|
/>
|
|
);
|
|
}
|