diff --git a/src/components/icons/Flags/Japan.tsx b/src/components/icons/Flags/Japan.tsx new file mode 100644 index 00000000..af19cdb4 --- /dev/null +++ b/src/components/icons/Flags/Japan.tsx @@ -0,0 +1,33 @@ +import React from "react"; + +const Japan = (props: React.SVGAttributes): React.ReactElement => ( + + + + + + + + + + + +); +export default Japan; diff --git a/src/components/icons/Flags/index.tsx b/src/components/icons/Flags/index.tsx index 64623afa..894d730c 100644 --- a/src/components/icons/Flags/index.tsx +++ b/src/components/icons/Flags/index.tsx @@ -7,6 +7,7 @@ import GreatBritain from "./GreatBritain"; import Singapore from "./Singapore"; import Ireland from "./Ireland"; import India from "./India"; +import Japan from "./Japan"; import Netherlands from "./Netherlands"; import Australia from "./Australia"; import SouthAfrica from "./SouthAfrica"; @@ -25,6 +26,7 @@ export type FlagName = | "gb" | "in" | "ie" + | "jp" | "nl" | "sg" | "sw" @@ -45,6 +47,7 @@ export const FlagList = { gb: GreatBritain, ie: Ireland, in: India, + jp: Japan, nl: Netherlands, sg: Singapore, za: SouthAfrica,