UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.68 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-monitor-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.022 2.353,1.076 2.476,1.369 2.786 L 1.568 2.996 1.440 3.220 C 1.268 3.521,1.096 4.040,1.041 4.424 C 1.009 4.650,0.999 6.293,1.008 10.160 L 1.020 15.580 1.114 15.860 C 1.443 16.840,2.160 17.558,3.140 17.886 L 3.420 17.980 7.210 17.991 L 11.000 18.003 11.000 19.001 L 11.000 20.000 9.446 20.000 C 7.758 20.000,7.658 20.011,7.382 20.221 C 7.302 20.282,7.187 20.415,7.128 20.516 C 7.037 20.672,7.020 20.746,7.020 21.000 C 7.020 21.256,7.036 21.328,7.131 21.489 C 7.256 21.702,7.449 21.864,7.670 21.943 C 7.892 22.022,16.108 22.022,16.330 21.943 C 16.551 21.864,16.744 21.702,16.869 21.489 C 16.964 21.328,16.980 21.256,16.980 21.000 C 16.980 20.746,16.963 20.672,16.872 20.516 C 16.813 20.415,16.698 20.282,16.618 20.221 C 16.342 20.011,16.242 20.000,14.554 20.000 L 13.000 20.000 13.000 19.000 L 13.000 18.000 14.790 18.000 L 16.580 18.000 18.960 20.383 C 20.282 21.706,21.420 22.813,21.520 22.873 C 21.673 22.964,21.746 22.980,22.000 22.980 C 22.257 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 M8.695 2.057 C 8.465 2.129,8.256 2.299,8.128 2.516 C 8.037 2.672,8.020 2.746,8.020 3.000 C 8.020 3.256,8.036 3.328,8.131 3.489 C 8.256 3.702,8.449 3.864,8.670 3.943 C 8.793 3.987,9.853 3.997,14.463 3.998 C 20.773 4.000,20.368 3.982,20.679 4.283 C 21.005 4.600,20.978 4.102,21.000 10.023 L 21.020 15.306 21.141 15.503 C 21.543 16.156,22.457 16.156,22.859 15.503 L 22.980 15.306 22.980 9.883 L 22.980 4.460 22.886 4.160 C 22.581 3.182,21.832 2.428,20.861 2.121 L 20.540 2.020 14.700 2.012 C 9.991 2.006,8.828 2.015,8.695 2.057 M8.840 10.260 L 14.580 16.001 9.140 15.990 L 3.700 15.980 3.516 15.872 C 3.415 15.813,3.284 15.700,3.225 15.623 C 2.988 15.312,3.000 15.608,3.000 10.021 C 3.000 5.255,3.010 4.520,3.075 4.520 C 3.089 4.520,5.683 7.103,8.840 10.260 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MonitorOffIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MonitorOff = MonitorOffIcon;