@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.18 kB
JavaScript
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: "M7.537 18.828a8.27 8.27 0 0 1-3.313-3.055 8.44 8.44 0 0 1-1.247-4.362 8.45 8.45 0 0 1 1.187-4.38 8.3 8.3 0 0 1 3.27-3.1 8.13 8.13 0 0 1 8.592.653 8.33 8.33 0 0 1 2.778 3.56"
}), /*#__PURE__*/React.createElement("path", {
d: "m19.923 19.812-.586.562a1.217 1.217 0 0 1-1.721-.038l-2.06-2.151a1.217 1.217 0 0 0-1.878.145l-.038.054c-.59.844-1.897.62-2.171-.373l-1.902-6.877a1.217 1.217 0 0 1 1.548-1.483l6.789 2.198c.98.317 1.147 1.633.278 2.185l-.056.036a1.217 1.217 0 0 0-.226 1.87l2.06 2.15a1.217 1.217 0 0 1-.037 1.722Z",
opacity: 0.4
}));
const ForwardRef = forwardRef(MouseSymbol2Icon);
module.exports = ForwardRef;