UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 825 B
import * as React from "react"; function CursorClick02Icon({ 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: "M9 3.5V2M5.06 5.06L4 4m1.06 9L4 14.06m9-9L14.06 4M3.5 9H2m6.5-.5l4.111 12.778 2.889-2.89L19.111 22 22 19.111 18.389 15.5l2.889-2.889L8.5 8.5z" })); } const ForwardRef = React.forwardRef(CursorClick02Icon); export default ForwardRef;