@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 561 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagChe = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h32v32H0z",
fill: "red"
}), /*#__PURE__*/ React.createElement("path", {
d: "M13 6h6v7h7v6h-7v7h-6v-7H6v-6h7z",
fill: "#fff"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagChe);
export default ForwardRef;