@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 728 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGgy = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 36 24",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h36v24h-72z",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M21 0v9h15v6H21v9h-6v-9H0V9h15V0z",
fill: "#e8112d"
}), /*#__PURE__*/ React.createElement("path", {
d: "M9 14l1-1h7v7l-1 1h4l-1-1v-7h7l1 1v-4l-1 1h-7V4l1-1h-4l1 1v7h-7l-1-1z",
fill: "#f9dd16"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGgy);
export default ForwardRef;