@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 968 B
JavaScript
import * as React from "react";
function LineChartDown02Icon({
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.4V3m18 12l-5.434-5.434c-.198-.198-.297-.297-.412-.334a.5.5 0 00-.309 0c-.114.037-.213.136-.41.334l-1.87 1.868c-.197.198-.296.297-.41.334a.499.499 0 01-.31 0c-.114-.037-.213-.136-.41-.334L7 7m14 8h-4m4 0v-4"
}));
}
const ForwardRef = React.forwardRef(LineChartDown02Icon);
export default ForwardRef;