@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.29 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const MouseSymbol2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M8.338 5.159a7.22 7.22 0 0 1 7.627.58 7.4 7.4 0 0 1 2.474 3.172.913.913 0 0 0 1.69-.693 9.24 9.24 0 0 0-3.084-3.951A9.041 9.041 0 0 0 7.49 3.54a9.2 9.2 0 0 0-3.632 3.442 9.36 9.36 0 0 0-1.316 4.854 9.36 9.36 0 0 0 1.383 4.834 9.2 9.2 0 0 0 3.678 3.391.913.913 0 0 0 .824-1.63 7.36 7.36 0 0 1-2.947-2.718 7.53 7.53 0 0 1-1.112-3.89 7.53 7.53 0 0 1 1.059-3.906 7.37 7.37 0 0 1 2.91-2.759"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.877 9.202c-1.614-.523-3.162.96-2.71 2.595l1.902 6.877c.48 1.738 2.768 2.13 3.8.652l.038-.054a.304.304 0 0 1 .47-.036l2.06 2.152a2.13 2.13 0 0 0 3.012.065l.587-.561a2.13 2.13 0 0 0 .065-3.013l-2.06-2.151a.304.304 0 0 1 .056-.468l.056-.035c1.521-.967 1.228-3.27-.487-3.825z"
}));
const ForwardRef = forwardRef(MouseSymbol2Icon);
export default ForwardRef;