sendou.ink/app/components/Flag.tsx
2023-01-06 16:33:37 +02:00

19 lines
304 B
TypeScript

import clsx from "clsx";
export function Flag({
countryCode,
tiny = false,
}: {
countryCode: string;
tiny?: boolean;
}) {
return (
<div
className={clsx(`twf twf-${countryCode.toLowerCase()}`, {
"twf-s": tiny,
})}
data-testid={`flag-${countryCode}`}
/>
);
}