@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 943 B
JavaScript
import * as React from "react";
function LineChartUp01Icon({
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: "M21 21H4.6c-.56 0-.84 0-1.054-.109a1 1 0 01-.437-.437C3 20.24 3 19.96 3 19.4V3m17 5l-3.919 4.183c-.148.158-.223.237-.312.278a.5.5 0 01-.253.044c-.098-.01-.194-.06-.387-.16l-3.258-1.69c-.193-.1-.289-.15-.387-.16a.5.5 0 00-.253.044c-.09.04-.164.12-.312.278L7 15"
}));
}
const ForwardRef = React.forwardRef(LineChartUp01Icon);
export default ForwardRef;