UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.54 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-circle-off" 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.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.036 1.672,1.020 1.745,1.021 2.000 C 1.021 2.213,1.043 2.341,1.095 2.440 C 1.136 2.517,1.700 3.113,2.348 3.765 L 3.528 4.950 3.257 5.305 C 1.769 7.252,1.000 9.532,1.000 12.000 C 1.000 13.943,1.481 15.788,2.411 17.414 C 3.882 19.986,6.233 21.822,9.077 22.619 C 10.907 23.132,13.096 23.131,14.930 22.617 C 16.287 22.237,17.515 21.631,18.619 20.797 L 19.050 20.472 20.235 21.651 C 20.887 22.300,21.483 22.864,21.560 22.905 C 21.659 22.957,21.787 22.979,22.000 22.979 C 22.258 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M11.160 1.025 C 9.927 1.140,8.380 1.526,7.832 1.854 C 7.270 2.192,7.193 2.974,7.679 3.411 C 8.025 3.722,8.344 3.755,8.941 3.539 C 9.430 3.362,10.141 3.180,10.684 3.093 C 11.281 2.998,12.628 2.998,13.234 3.093 C 14.443 3.282,15.643 3.699,16.551 4.246 C 18.845 5.627,20.374 7.829,20.839 10.420 C 21.120 11.990,20.987 13.535,20.436 15.100 C 20.287 15.523,20.274 15.784,20.388 16.042 C 20.542 16.391,20.825 16.595,21.201 16.629 C 21.583 16.664,21.933 16.501,22.134 16.195 C 22.236 16.038,22.508 15.244,22.660 14.658 C 23.440 11.638,22.809 8.248,20.988 5.680 C 20.218 4.595,19.176 3.584,18.042 2.822 C 17.474 2.441,16.299 1.857,15.660 1.639 C 15.028 1.423,14.188 1.218,13.520 1.117 C 12.996 1.038,11.602 0.984,11.160 1.025 M11.300 12.720 L 17.620 19.041 17.500 19.140 C 17.212 19.378,16.540 19.799,16.060 20.042 C 15.166 20.495,14.139 20.811,13.148 20.939 C 12.543 21.017,11.457 21.017,10.852 20.939 C 7.292 20.479,4.335 17.940,3.343 14.491 C 3.085 13.595,3.022 13.103,3.022 12.000 C 3.022 11.151,3.034 10.951,3.115 10.500 C 3.375 9.045,3.940 7.729,4.794 6.590 C 4.872 6.486,4.946 6.400,4.958 6.400 C 4.970 6.400,7.824 9.244,11.300 12.720 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CircleOffIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CircleOff = CircleOffIcon;