UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 1.02 kB
import * as React from "react"; import { forwardRef } from "react"; const ChartIcon = ({ 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: "M7.5 21h9a4.5 4.5 0 0 0 4.5-4.5v-9A4.5 4.5 0 0 0 16.5 3h-9A4.5 4.5 0 0 0 3 7.5v9A4.5 4.5 0 0 0 7.5 21Z" }), /*#__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" })); const ForwardRef = forwardRef(ChartIcon); export default ForwardRef;