@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 626 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGrc = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 27 18",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#0D5EAF",
d: "M0 0h27v18H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "none",
strokeWidth: 2,
stroke: "#FFF",
d: "M5 0v11M0 5h10m0-2h17M10 7h17M0 11h27M0 15h27"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGrc);
export default ForwardRef;