@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.66 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/* eslint-disable no-shadow-restricted-names */
import { Icon } from "@react-three/uikit";
import { forwardRef } from "react";
const text = `<svg class="lucide lucide-mouse-pointer-ban" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.150 1.043 C 1.456 1.207,0.963 1.871,1.010 2.580 C 1.027 2.833,1.198 3.297,2.818 7.460 C 3.802 9.990,4.654 12.147,4.712 12.254 C 4.930 12.657,5.395 12.947,5.886 12.989 C 6.501 13.040,7.091 12.698,7.342 12.145 C 7.393 12.032,7.675 11.166,7.968 10.220 L 8.501 8.501 10.220 7.968 C 11.166 7.675,12.032 7.393,12.145 7.342 C 12.698 7.091,13.040 6.501,12.989 5.886 C 12.947 5.395,12.656 4.929,12.254 4.713 C 11.986 4.568,3.113 1.120,2.840 1.054 C 2.593 0.995,2.372 0.991,2.150 1.043 M6.749 4.690 C 8.513 5.375,9.952 5.942,9.945 5.948 C 9.938 5.955,9.443 6.114,8.843 6.301 C 8.244 6.488,7.667 6.686,7.561 6.740 C 7.241 6.902,6.899 7.249,6.741 7.574 C 6.664 7.731,6.457 8.326,6.281 8.896 C 6.106 9.465,5.956 9.937,5.949 9.944 C 5.940 9.954,3.658 4.118,3.415 3.463 C 3.391 3.399,3.399 3.391,3.463 3.415 C 3.505 3.430,4.984 4.004,6.749 4.690 M15.540 9.023 C 14.478 9.125,13.692 9.335,12.910 9.726 C 10.838 10.762,9.448 12.666,9.074 14.980 C 9.008 15.393,9.008 16.607,9.074 17.020 C 9.574 20.112,11.888 22.426,14.980 22.926 C 15.392 22.992,16.607 22.992,17.020 22.926 C 20.109 22.428,22.428 20.109,22.926 17.020 C 22.954 16.844,22.977 16.385,22.977 16.000 C 22.977 15.056,22.876 14.462,22.573 13.620 C 21.715 11.237,19.581 9.473,17.102 9.098 C 16.726 9.041,15.813 8.997,15.540 9.023 M16.552 11.043 C 18.413 11.246,20.001 12.479,20.680 14.248 C 21.093 15.322,21.087 16.688,20.665 17.786 C 20.546 18.096,20.231 18.690,20.176 18.708 C 20.156 18.715,18.592 17.171,16.700 15.278 C 13.407 11.983,13.263 11.834,13.340 11.775 C 13.463 11.681,14.009 11.411,14.289 11.306 C 14.983 11.047,15.762 10.956,16.552 11.043 M15.300 16.721 L 18.740 20.163 18.640 20.239 C 18.489 20.355,17.939 20.616,17.600 20.732 C 17.045 20.922,16.670 20.980,16.000 20.980 C 15.330 20.980,14.956 20.922,14.400 20.732 C 12.808 20.188,11.580 18.864,11.161 17.240 C 10.920 16.306,10.983 15.125,11.320 14.247 C 11.468 13.862,11.778 13.280,11.835 13.280 C 11.849 13.280,13.408 14.829,15.300 16.721 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MousePointerBanIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MousePointerBan = MousePointerBanIcon;