UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.7 kB
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-2" 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="M4.035 3.076 C 3.300 3.311,2.843 4.132,3.043 4.855 C 3.109 5.090,9.591 21.032,9.712 21.254 C 9.844 21.498,10.114 21.741,10.400 21.873 C 10.701 22.012,11.233 22.020,11.560 21.889 C 11.874 21.764,12.171 21.489,12.317 21.188 C 12.401 21.017,12.688 19.969,13.241 17.825 C 13.682 16.112,14.067 14.654,14.095 14.585 C 14.176 14.392,14.345 14.214,14.531 14.126 C 14.624 14.081,16.104 13.683,17.820 13.242 C 19.965 12.689,21.018 12.400,21.188 12.317 C 21.643 12.096,21.944 11.638,21.990 11.094 C 22.032 10.587,21.746 10.015,21.318 9.751 C 21.110 9.623,5.111 3.116,4.832 3.047 C 4.571 2.982,4.299 2.992,4.035 3.076 M12.152 8.146 C 15.819 9.635,18.833 10.864,18.849 10.878 C 18.865 10.891,18.154 11.089,17.269 11.317 C 13.833 12.202,13.748 12.228,13.293 12.537 C 13.049 12.702,12.655 13.111,12.479 13.382 C 12.235 13.756,12.109 14.165,11.477 16.629 C 11.160 17.865,10.890 18.864,10.877 18.849 C 10.850 18.817,5.440 5.496,5.440 5.462 C 5.440 5.450,5.450 5.440,5.462 5.440 C 5.474 5.440,8.484 6.658,12.152 8.146 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MousePointer2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MousePointer2 = MousePointer2Icon;