@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 645 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagRou = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 3 2",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#002B7F",
d: "M0 0h3v2H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FCD116",
d: "M1 0h2v2H1z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#CE1126",
d: "M2 0h1v2H2z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagRou);
export default ForwardRef;