@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 947 B
JavaScript
import * as React from "react";
function Chart4Icon({
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: "M3.758 2.997a.75.75 0 0 1 .75.75v15.755h15.743a.75.75 0 0 1 0 1.5H3.758a.75.75 0 0 1-.75-.75V3.747a.75.75 0 0 1 .75-.75"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.24 7.145a.75.75 0 1 0-1.5 0v9.709a.75.75 0 0 0 1.5 0zM17.363 13.94a.75.75 0 0 0-1.5 0v2.914a.75.75 0 1 0 1.5 0zM8.366 9.307a.75.75 0 0 1 .75.75v6.797a.75.75 0 0 1-1.5 0v-6.796a.75.75 0 0 1 .75-.75"
}));
}
const ForwardRef = React.forwardRef(Chart4Icon);
export default ForwardRef;