@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
28 lines (26 loc) • 883 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagNor = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1100 800",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#ef2b2d",
d: "M0 0h1100v800H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M300 0h200v800H300z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 300h1100v200H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#002868",
d: "M350 0h100v800H350z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#002868",
d: "M0 350h1100v100H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagNor);
export default ForwardRef;