@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 754 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagTon = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 96 48",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "#C10000"
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h96v48H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h40v24H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M17 3h6v18h-6z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M11 9h18v6H11z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagTon);
export default ForwardRef;