@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 905 B
JavaScript
const React = require("react");
function PresentationChart01Icon({
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: "M12 16v5m0-5l6 5m-6-5l-6 5M21 3v8.2c0 1.68 0 2.52-.327 3.162a3 3 0 01-1.311 1.311C18.72 16 17.88 16 16.2 16H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 01-1.311-1.311C3 13.72 3 12.88 3 11.2V3m5 6v3m4-5v5m4-1v1m6-9H2"
}));
}
const ForwardRef = React.forwardRef(PresentationChart01Icon);
module.exports = ForwardRef;