@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 788 B
JavaScript
import * as React from "react";
function Chart2Icon({
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", {
fillRule: "evenodd",
d: "M7 8.4H5.6A2.6 2.6 0 0 0 3 11v9a1 1 0 0 0 1 1h3zM9 21h6V5.6A2.6 2.6 0 0 0 12.4 3h-.8A2.6 2.6 0 0 0 9 5.6V21m8 0v-8h1.4a2.6 2.6 0 0 1 2.6 2.6v2.8a2.6 2.6 0 0 1-2.6 2.6H17",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(Chart2Icon);
export default ForwardRef;