diff --git a/components/ui/flag-icons.tsx b/components/ui/flag-icons.tsx index 93b1e329..e7127ec1 100644 --- a/components/ui/flag-icons.tsx +++ b/components/ui/flag-icons.tsx @@ -190,6 +190,17 @@ export function FlagCN(props: FlagProps) { ); } +/** Czech Republic - White and red horizontal bands with a blue triangle */ +export function FlagCS(props: FlagProps) { + return ( + + + + + + ); +} + /** Map locale codes to flag components */ export const flagComponents: Record ReactElement> = { en: FlagGB, @@ -207,4 +218,5 @@ export const flagComponents: Record ReactElement> tr: FlagTR, uk: FlagUA, zh: FlagCN, + cs: FlagCS, };