@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 938 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const TreeIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 21V10m0 3.151L15 10",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M8.625 14.975H6.6s-3.6.479-3.6-2.75 3.375-3.31 3.375-3.77C6.375 7.993 6.811 3 12 3c5.19 0 5.625 4.993 5.625 5.455 0 .46 3.375.541 3.375 3.77s-3.6 2.75-3.6 2.75h-.9"
}));
const ForwardRef = forwardRef(TreeIcon);
module.exports = ForwardRef;