@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
28 lines (26 loc) • 900 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagFro = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 22 16",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#FFF",
d: "M0 0h22v16H0z"
}), /*#__PURE__*/ React.createElement("g", {
fill: "#0065BD"
}, /*#__PURE__*/ React.createElement("path", {
d: "M6 0h4v16H6z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 6h22v4H0z"
})), /*#__PURE__*/ React.createElement("g", {
fill: "#ED2939"
}, /*#__PURE__*/ React.createElement("path", {
d: "M7 0h2v16H7z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 7h22v2H0z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagFro);
export default ForwardRef;