@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 574 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGrl = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 18 12",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h18v12H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#d00c33",
d: "M0 6h18v6H0zm3 0a4 4 0 008 0 4 4 0 00-8 0"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGrl);
export default ForwardRef;