@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.17 kB
JavaScript
import * as React from "react";
function ChartIcon({
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", {
strokeLinecap: "round",
d: "M13.667 3H7.5A5.5 5.5 0 0 0 2 8.5v7A5.5 5.5 0 0 0 7.5 21h9a5.5 5.5 0 0 0 5.5-5.5V9.188"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.667 12.556H15.5a1.5 1.5 0 0 1 1.5 1.5V15.5a1.5 1.5 0 0 1-1.5 1.5h-1.833m0-4.444V8.5a1.5 1.5 0 0 0-1.5-1.5h-.334a1.5 1.5 0 0 0-1.5 1.5V10m3.334 2.556V17m-3.334-7H8.5A1.5 1.5 0 0 0 7 11.5v4.944c0 .307.249.556.556.556h2.777m0-7v7m3.334 0h-3.334"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M17.451 3s.697 1.413 1.55 2.1c.906.73 2.45.9 2.45.9"
}));
}
const ForwardRef = React.forwardRef(ChartIcon);
export default ForwardRef;