@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 540 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagNga = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 6 3",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#008751",
d: "M0 0h6v3H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M2 0h2v3H2z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagNga);
export default ForwardRef;