UNPKG

1.02 kBJavaScriptView Raw
1const React = require("react");
2function ChartBarIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 viewBox: "0 0 24 24",
10 fill: "currentColor",
11 "aria-hidden": "true",
12 ref: svgRef,
13 "aria-labelledby": titleId
14 }, props), title ? /*#__PURE__*/React.createElement("title", {
15 id: titleId
16 }, title) : null, /*#__PURE__*/React.createElement("path", {
17 d: "M18.375 2.25c-1.035 0-1.875.84-1.875 1.875v15.75c0 1.035.84 1.875 1.875 1.875h.75c1.035 0 1.875-.84 1.875-1.875V4.125c0-1.036-.84-1.875-1.875-1.875h-.75zM9.75 8.625c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-.75a1.875 1.875 0 01-1.875-1.875V8.625zM3 13.125c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v6.75c0 1.035-.84 1.875-1.875 1.875h-.75A1.875 1.875 0 013 19.875v-6.75z"
18 }));
19}
20const ForwardRef = React.forwardRef(ChartBarIcon);
21module.exports = ForwardRef;
\No newline at end of file