adjust flag

This commit is contained in:
Jesper Ordrup
2026-05-15 14:26:33 +02:00
committed by Linus Rath
parent 5fdf226ebe
commit cf993c1036
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -202,7 +202,7 @@ export function FlagCS(props: FlagProps) {
}
/** Danish flag - Red with a white cross */
export function FlagDa(props: FlagProps) {
export function FlagDA(props: FlagProps) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37 28" width={W} height={H} className={flagClass} {...props}>
<path fill="#c8102e" d="M0,0H37V28H0Z" />
@@ -229,4 +229,5 @@ export const flagComponents: Record<string, (props: FlagProps) => ReactElement>
uk: FlagUA,
zh: FlagCN,
cs: FlagCS,
da: FlagDA
};
+1 -1
View File
@@ -13,7 +13,7 @@ const languages = [
{ value: 'fr', label: 'Français' },
{ value: 'ja', label: '日本語' },
{ value: 'ko', label: '한국어' },
{ value: 'da', label: 'Danish' },
{ value: 'da', label: 'Dansk' },
{ value: 'de', label: 'Deutsch' },
{ value: 'es', label: 'Español' },
{ value: 'it', label: 'Italiano' },