@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 801 B
JavaScript
const React = require("react");
function Chart2Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M15 13h3.4a2.6 2.6 0 0 1 2.6 2.6v2.8a2.6 2.6 0 0 1-2.6 2.6H15m0-8V5.6A2.6 2.6 0 0 0 12.4 3h-.8A2.6 2.6 0 0 0 9 5.6v2.8m6 4.6v8M9 8.4H5.6A2.6 2.6 0 0 0 3 11v9a1 1 0 0 0 1 1h5M9 8.4V21m6 0H9"
}));
}
const ForwardRef = React.forwardRef(Chart2Icon);
module.exports = ForwardRef;