@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 665 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagArm = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1200 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#F2A800",
d: "M0 0h1200v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#0033A0",
d: "M0 0h1200v400H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#D90012",
d: "M0 0h1200v200H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagArm);
export default ForwardRef;