@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.05 kB
JavaScript
import * as React from "react";
function Cursor01Icon({
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: "M13 13l6 6m-1.036-8.249l-5.01 1.702c-.138.047-.206.07-.263.109a.502.502 0 00-.129.129c-.04.057-.062.125-.109.262l-1.702 5.011c-.21.621-.316.932-.481 1.026a.5.5 0 01-.465.016c-.171-.083-.297-.386-.55-.992L3.747 4.794c-.234-.563-.351-.844-.294-1.02a.5.5 0 01.321-.321c.176-.057.457.06 1.02.294l13.22 5.508c.606.253.909.379.992.55a.5.5 0 01-.016.465c-.094.165-.405.27-1.026.481z"
}));
}
const ForwardRef = React.forwardRef(Cursor01Icon);
export default ForwardRef;