-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding Japan flag * changed jpn to 2 letters code --------- Co-authored-by: guykohen <[email protected]>
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from "react"; | ||
|
||
const Japan = (props: React.SVGAttributes<SVGElement>): React.ReactElement => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="30" | ||
height="20" | ||
viewBox="0 0 30 20" | ||
fill="none" | ||
{...props} | ||
> | ||
<g clipPath="url(#clip0_8004_401)"> | ||
<path | ||
d="M30 0H0V20H30V0Z" | ||
fill="white" | ||
/> | ||
<path | ||
d="M15 16C18.3137 16 21 13.3137 21 10C21 6.68629 18.3137 4 15 4C11.6863 4 9 6.68629 9 10C9 13.3137 11.6863 16 15 16Z" | ||
fill="#BC002D" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_8004_401"> | ||
<rect | ||
width="30" | ||
height="20" | ||
fill="white" | ||
/> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default Japan; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters