UNPKG

@astraicons/react

Version:

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

22 lines 879 B
const React = require("react"); const { forwardRef } = require("react"); const Chart4Icon = ({ 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: "M3.75 3a.75.75 0 0 0-1.5 0v14A3.75 3.75 0 0 0 6 20.75h15a.75.75 0 0 0 0-1.5H6A2.25 2.25 0 0 1 3.75 17z" }), /*#__PURE__*/React.createElement("path", { d: "M13.28 6.5a.75.75 0 0 0-1.5 0v10a.75.75 0 0 0 1.5 0zM8.78 9.5a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0zM17.78 13.5a.75.75 0 0 0-1.5 0v3a.75.75 0 0 0 1.5 0z" })); const ForwardRef = forwardRef(Chart4Icon); module.exports = ForwardRef;