@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 738 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagChl = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 24 16",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h24v16H0z",
fill: "#0039a6"
}), /*#__PURE__*/ React.createElement("path", {
d: "M8 0v16h16V0zM4 2l-.45 1.385H2.075l1.193.862-.448 1.377 1.17-.855 1.184.853-.452-1.39 1.162-.85H4.45z",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M24 16H0V8h24",
fill: "#d52b1e"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagChl);
export default ForwardRef;