@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 948 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagNru = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 600 300",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#002b7f",
d: "M0 0h600v300H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ffc61e",
d: "M0 137.5h600v25H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M150 262.5l-6.47-25.852L125 255.801l7.322-25.623L106.7 237.5l19.153-18.53L100 212.5l25.852-6.47-19.153-18.53 25.623 7.322L125 169.2l18.53 19.153L150 162.5l6.47 25.852L175 169.199l-7.322 25.623L193.3 187.5l-19.153 18.53L200 212.5l-25.852 6.47 19.153 18.53-25.623-7.322L175 255.8l-18.53-19.153L150 262.5z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagNru);
export default ForwardRef;