UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 1.16 kB
const React = require("react"); const { forwardRef } = require("react"); const MouseSymbol2Icon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M8.017 19.247a8.27 8.27 0 0 1-3.313-3.055 8.44 8.44 0 0 1-1.247-4.362 8.44 8.44 0 0 1 1.188-4.38 8.3 8.3 0 0 1 3.27-3.1 8.13 8.13 0 0 1 8.591.653 8.33 8.33 0 0 1 2.779 3.56" }), /*#__PURE__*/React.createElement("path", { d: "m20.404 20.231-.587.562a1.22 1.22 0 0 1-1.72-.037l-2.061-2.152a1.217 1.217 0 0 0-1.878.145l-.037.054c-.59.844-1.897.62-2.172-.373l-1.902-6.877a1.217 1.217 0 0 1 1.549-1.483l6.788 2.198c.98.317 1.148 1.633.278 2.186l-.055.035a1.218 1.218 0 0 0-.226 1.87l2.06 2.151a1.217 1.217 0 0 1-.037 1.721Z" })); const ForwardRef = forwardRef(MouseSymbol2Icon); module.exports = ForwardRef;