@nomercyicons/react
Version:
28 lines • 885 B
JavaScript
const React = require("react");
function ForestSharpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 12L9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.14 12H22L15 2l-2.39 3.41L17.92 13h-1.95l3.22 5H24zM13 19h4v3h-4z"
}));
}
const ForwardRef = React.forwardRef(ForestSharpIcon);
module.exports = ForwardRef;