From 853b0eb8553b317dfe5f088b847dcd5d5c9e4a2d Mon Sep 17 00:00:00 2001 From: Luis Felipe Marzagao Date: Tue, 5 May 2026 01:08:10 +0000 Subject: [PATCH] fix: add missing Czech flag icon --- components/ui/flag-icons.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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, };