@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.03 kB
JavaScript
const React = require("react");
function HorizontalBarChart01Icon({
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: "M17 9.5V6.1c0-.56 0-.84-.109-1.054a1 1 0 00-.437-.437C16.24 4.5 15.96 4.5 15.4 4.5H3m10 10v3.4c0 .56 0 .84-.109 1.054a1 1 0 01-.437.437c-.214.109-.494.109-1.054.109H3M3 2v20m0-7.5h16.4c.56 0 .84 0 1.054-.109a1 1 0 00.437-.437C21 13.74 21 13.46 21 12.9v-1.8c0-.56 0-.84-.109-1.054a1 1 0 00-.437-.437C20.24 9.5 19.96 9.5 19.4 9.5H3v5z"
}));
}
const ForwardRef = React.forwardRef(HorizontalBarChart01Icon);
module.exports = ForwardRef;