UNPKG

@astraicons/react

Version:

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

20 lines 794 B
const React = require("react"); const { forwardRef } = require("react"); const Chart2Icon = ({ 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: "M5.6 9.15h2.65v11.1H4a.25.25 0 0 1-.25-.25v-9A1.85 1.85 0 0 1 5.6 9.15M14.25 20.25h-4.5V5.6a1.85 1.85 0 0 1 1.85-1.85h.8a1.85 1.85 0 0 1 1.85 1.85zM15.75 20.25v-6.5h2.65a1.85 1.85 0 0 1 1.85 1.85v2.8a1.85 1.85 0 0 1-1.85 1.85z" })); const ForwardRef = forwardRef(Chart2Icon); module.exports = ForwardRef;