@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.06 kB
JavaScript
const React = require("react");
function NavigationPointer01Icon({
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: "M3.413 10.745c-.595-.232-.893-.348-.98-.515a.5.5 0 010-.461c.087-.167.385-.283.98-.515L20.3 2.664c.537-.21.806-.315.978-.258a.5.5 0 01.316.316c.057.172-.048.44-.258.977l-6.59 16.888c-.232.595-.348.893-.515.98a.5.5 0 01-.462 0c-.167-.088-.282-.385-.514-.98l-2.628-6.759a1.075 1.075 0 00-.107-.232.5.5 0 00-.116-.117c-.051-.036-.112-.06-.232-.106l-6.759-2.628z"
}));
}
const ForwardRef = React.forwardRef(NavigationPointer01Icon);
module.exports = ForwardRef;