@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 912 B
JavaScript
import * as React from "react";
function BarLineChartIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20 20v-7m-8 7V10M4 20v-4m9.407-10.973l5.168 1.939M10.8 5.4L5.2 9.6m15.86-3.16a1.5 1.5 0 11-2.121 2.12 1.5 1.5 0 012.122-2.12zm-16 3a1.5 1.5 0 11-2.12 2.12 1.5 1.5 0 012.12-2.12zm8-6a1.5 1.5 0 11-2.121 2.12 1.5 1.5 0 012.122-2.12z"
}));
}
const ForwardRef = React.forwardRef(BarLineChartIcon);
export default ForwardRef;