@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.8 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "m17.96 2.445.001.002.005.01.02.04q.027.06.081.165c.072.141.176.337.305.553.267.45.599.922.925 1.205.328.284.815.49 1.276.623a6 6 0 0 0 .76.165h.008c.398.048.692.432.656.858s-.389.733-.787.686l.065-.772-.065.772h-.004l-.005-.001-.018-.002a4 4 0 0 1-.27-.044 7 7 0 0 1-.69-.164c-.529-.152-1.255-.428-1.825-.923-.518-.45-.955-1.1-1.244-1.588a12 12 0 0 1-.48-.899l-.008-.016-.002-.005-.001-.002.648-.332-.649.331c-.177-.388-.03-.85.328-1.033s.793-.016.97.371M9.507 11.003h-1.05a.75.75 0 0 0-.751.752v5.222h1.801zM11.009 16.977h1.801V8.551a.75.75 0 0 0-.75-.752h-.3a.75.75 0 0 0-.751.752zM14.312 16.977h1.051a.75.75 0 0 0 .75-.75v-1.743a.75.75 0 0 0-.75-.751h-1.051z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.505 22h8.81a5.506 5.506 0 0 0 5.504-5.508V11.32c0-1.11-1.014-1.955-2.123-1.947-1.377.01-3.052-.218-3.823-1.257-.728-.981-.943-2.644-.996-3.854-.036-.803-.677-1.486-1.48-1.486H7.504A5.506 5.506 0 0 0 2 8.284v8.208A5.506 5.506 0 0 0 7.505 22M9.507 8.55a2.253 2.253 0 0 1 2.252-2.253h.3a2.253 2.253 0 0 1 2.253 2.254v3.68h1.051a2.253 2.253 0 0 1 2.252 2.253v1.742a2.253 2.253 0 0 1-2.252 2.253H7.505a1.3 1.3 0 0 1-1.3-1.302v-5.422A2.253 2.253 0 0 1 8.455 9.5h1.051z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ChartIcon);
export default ForwardRef;