@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
27 lines (25 loc) • 871 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagReu = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 120 80",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h120v80H0z",
fill: "#36f"
}), /*#__PURE__*/ React.createElement("path", {
d: "M60 40L0 80h120z",
fill: "red"
}), /*#__PURE__*/ React.createElement("g", {
fill: "#ff0"
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 37v6l120-6v6z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M60 40L0 5V0h5zl55-40h5v5z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M60 40L57 0h6z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagReu);
export default ForwardRef;