@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.06 kB
JavaScript
import * as React from "react";
function NavigationPointer02Icon({
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: "M5.037 21.325c-.585.258-.877.386-1.057.33a.5.5 0 01-.326-.327c-.057-.179.071-.471.328-1.056L11.263 3.67c.232-.528.348-.792.51-.873a.5.5 0 01.446 0c.162.081.278.345.51.873l7.281 16.602c.257.585.385.877.328 1.056a.5.5 0 01-.326.327c-.18.056-.472-.072-1.057-.33l-6.637-2.92c-.118-.052-.178-.078-.24-.089a.497.497 0 00-.164 0c-.062.01-.121.037-.24.089l-6.637 2.92z"
}));
}
const ForwardRef = React.forwardRef(NavigationPointer02Icon);
export default ForwardRef;