mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 22:11:06 -05:00
12 lines
246 B
TypeScript
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`}
|
|
/>
|
|
);
|
|
}
|