@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 574 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagJpn = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("circle", {
fill: "#bc002d",
cx: 450,
cy: 300,
r: 180
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagJpn);
export default ForwardRef;