@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.72 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-eye-closed" 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="M1.643 7.066 C 1.256 7.208,0.969 7.665,1.009 8.074 C 1.043 8.421,1.638 9.733,2.088 10.454 C 2.589 11.257,3.343 12.192,3.940 12.751 C 4.177 12.973,4.277 13.092,4.256 13.128 C 4.238 13.157,3.985 13.464,3.692 13.812 C 3.400 14.159,3.132 14.499,3.097 14.566 C 2.998 14.757,2.979 15.081,3.054 15.301 C 3.142 15.558,3.285 15.736,3.511 15.869 C 3.669 15.962,3.746 15.980,3.980 15.980 C 4.445 15.980,4.535 15.915,5.265 15.047 C 5.611 14.636,5.897 14.295,5.902 14.288 C 5.907 14.282,6.007 14.333,6.125 14.403 C 6.678 14.730,7.503 15.109,8.130 15.326 C 8.344 15.399,8.520 15.479,8.520 15.502 C 8.520 15.525,8.401 16.074,8.256 16.722 C 7.963 18.034,7.953 18.184,8.138 18.501 C 8.564 19.227,9.657 19.127,9.934 18.337 C 9.964 18.251,10.103 17.662,10.243 17.029 C 10.442 16.127,10.509 15.882,10.552 15.899 C 10.583 15.911,10.922 15.942,11.304 15.967 C 11.831 16.002,12.169 16.002,12.696 15.967 C 13.078 15.942,13.417 15.911,13.448 15.899 C 13.491 15.882,13.558 16.127,13.757 17.029 C 13.897 17.662,14.036 18.251,14.066 18.337 C 14.343 19.127,15.436 19.227,15.862 18.501 C 16.047 18.184,16.037 18.034,15.744 16.722 C 15.599 16.074,15.480 15.525,15.480 15.502 C 15.480 15.479,15.656 15.399,15.870 15.326 C 16.497 15.109,17.322 14.730,17.875 14.403 C 17.993 14.333,18.093 14.282,18.098 14.288 C 18.103 14.295,18.389 14.636,18.735 15.047 C 19.465 15.915,19.555 15.980,20.020 15.980 C 20.254 15.980,20.331 15.962,20.489 15.869 C 20.715 15.736,20.858 15.558,20.946 15.301 C 21.020 15.082,21.002 14.757,20.904 14.568 C 20.870 14.502,20.590 14.148,20.281 13.781 C 19.972 13.415,19.720 13.104,19.720 13.092 C 19.720 13.079,19.875 12.924,20.064 12.747 C 20.674 12.176,21.432 11.231,21.930 10.420 C 22.419 9.623,23.000 8.315,23.000 8.010 C 23.000 7.258,22.216 6.787,21.533 7.128 C 21.289 7.250,21.149 7.429,20.995 7.817 C 20.710 8.534,20.278 9.337,19.865 9.920 C 18.573 11.742,16.655 13.082,14.520 13.654 C 11.253 14.530,7.806 13.658,5.366 11.338 C 4.335 10.358,3.549 9.185,3.005 7.817 C 2.935 7.640,2.826 7.432,2.763 7.357 C 2.523 7.065,2.010 6.932,1.643 7.066 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const EyeClosedIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const EyeClosed = EyeClosedIcon;