@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
25 lines (23 loc) • 819 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagCub = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 10 5",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "#fff"
}, /*#__PURE__*/ React.createElement("path", {
fill: "#002a8f",
d: "M0 0h10v5H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M1 1h9v1H3v1h7v1H1z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#cf142b",
d: "M4.33 2.5L0 5V0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M1.443 1.75l-.44 1.357 1.154-.839H.73l1.154.839z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagCub);
export default ForwardRef;