diff --git a/src/components/icons/Flags/SouthKorea.tsx b/src/components/icons/Flags/SouthKorea.tsx new file mode 100644 index 00000000..1860c80d --- /dev/null +++ b/src/components/icons/Flags/SouthKorea.tsx @@ -0,0 +1,56 @@ +import React from "react"; + +const SouthKorea = (props: React.SVGAttributes): React.ReactElement => ( + + + + + + + + + + + + + + + + +); + +export default SouthKorea; diff --git a/src/components/icons/Flags/UnitedArabEmirates.tsx b/src/components/icons/Flags/UnitedArabEmirates.tsx new file mode 100644 index 00000000..1f3e49e7 --- /dev/null +++ b/src/components/icons/Flags/UnitedArabEmirates.tsx @@ -0,0 +1,44 @@ +import React from "react"; + +const UnitedArabEmirates = ( + props: React.SVGAttributes +): React.ReactElement => ( + + + + + + + + + + + + + +); + +export default UnitedArabEmirates; diff --git a/src/components/icons/Flags/index.tsx b/src/components/icons/Flags/index.tsx index c7cc79d1..9988afb8 100644 --- a/src/components/icons/Flags/index.tsx +++ b/src/components/icons/Flags/index.tsx @@ -1,6 +1,7 @@ import { SVGAttributes } from "react"; import UnitedStates from "./UnitedStates"; import UnitedKingdom from "./UnitedKingdom"; +import UnitedArabEmirates from "./UnitedArabEmirates"; import EuropeanUnion from "./EuropeanUnion"; import Germany from "./Germany"; import GreatBritain from "./GreatBritain"; @@ -11,6 +12,7 @@ import Japan from "./Japan"; import Netherlands from "./Netherlands"; import Australia from "./Australia"; import SouthAfrica from "./SouthAfrica"; +import SouthKorea from "./SouthKorea"; import Brazil from "./Brazil"; import Canada from "./Canada"; import Sweden from "./Sweden"; @@ -19,6 +21,7 @@ import { SvgImageElement } from "@/components/commonElement"; import Switzerland from "@/components/icons/Flags/Switzerland.tsx"; export type FlagName = + | "ae" | "au" | "br" | "ca" @@ -31,6 +34,7 @@ export type FlagName = | "jp" | "nl" | "sg" + | "kr" | "sw" | "usa" | "uk" @@ -43,6 +47,7 @@ export interface FlagProps extends Omit, "size"> { // eslint-disable-next-line react-refresh/only-export-components export const FlagList = { + ae: UnitedArabEmirates, au: Australia, br: Brazil, ca: Canada, @@ -56,6 +61,7 @@ export const FlagList = { nl: Netherlands, sg: Singapore, za: SouthAfrica, + kr: SouthKorea, sw: Sweden, uk: UnitedKingdom, usa: UnitedStates,