@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.02 kB
JavaScript
const React = require("react");
function Send02Icon({
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 19v-7m.292 7.085l6.978 2.336c.547.183.82.274.99.209a.5.5 0 00.3-.331c.048-.174-.07-.438-.305-.964L12.765 3.622c-.23-.514-.346-.772-.507-.851a.5.5 0 00-.443-.001c-.16.08-.277.336-.51.85L3.753 20.336c-.237.526-.356.789-.308.963a.5.5 0 00.3.332c.168.067.442-.024.99-.206l7.052-2.341c.094-.031.14-.047.189-.053a.5.5 0 01.128 0c.048.007.095.022.189.054z"
}));
}
const ForwardRef = React.forwardRef(Send02Icon);
module.exports = ForwardRef;