@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.19 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ChartIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M16.5 21.75c2.9 0 5.25-2.35 5.25-5.25v-9c0-2.9-2.35-5.25-5.25-5.25h-9A5.25 5.25 0 0 0 2.25 7.5v9c0 2.9 2.35 5.25 5.25 5.25zm-2.083-9.944H15.5a2.25 2.25 0 0 1 2.25 2.25V15.5a2.25 2.25 0 0 1-2.25 2.25H7.556a1.306 1.306 0 0 1-1.306-1.306V11.5A2.25 2.25 0 0 1 8.5 9.25h1.083V8.5a2.25 2.25 0 0 1 2.25-2.25h.334a2.25 2.25 0 0 1 2.25 2.25z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.167 7.75a.75.75 0 0 1 .75.75v7.75h-1.834V8.5a.75.75 0 0 1 .75-.75zM9.583 16.25H7.75V11.5a.75.75 0 0 1 .75-.75h1.083zM15.5 13.306a.75.75 0 0 1 .75.75V15.5a.75.75 0 0 1-.75.75h-1.083v-2.944z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ChartIcon);
module.exports = ForwardRef;