UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.6 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-cloud-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.212,1.043 2.341,1.095 2.440 C 1.135 2.517,1.846 3.261,2.674 4.092 L 4.180 5.605 3.980 5.772 C 2.056 7.379,1.000 9.597,1.000 12.029 C 1.000 15.752,3.637 19.002,7.320 19.819 C 8.106 19.994,8.308 20.000,13.206 20.000 C 16.317 20.000,17.977 19.986,18.183 19.957 L 18.493 19.914 19.956 21.373 C 20.761 22.175,21.483 22.865,21.560 22.905 C 21.659 22.957,21.788 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 M9.600 4.160 C 9.252 4.324,9.050 4.604,9.012 4.979 C 8.972 5.359,9.180 5.752,9.514 5.931 C 9.616 5.986,9.898 6.070,10.140 6.118 C 11.931 6.471,13.482 7.621,14.292 9.196 C 14.492 9.585,14.581 9.792,14.779 10.334 C 14.866 10.574,15.041 10.777,15.256 10.892 C 15.412 10.974,15.488 10.980,16.740 11.004 C 17.893 11.026,18.098 11.040,18.364 11.112 C 19.863 11.516,20.886 12.768,20.985 14.318 C 21.017 14.818,20.927 15.333,20.718 15.855 C 20.515 16.361,20.495 16.493,20.578 16.779 C 20.750 17.372,21.416 17.658,21.980 17.382 C 22.312 17.219,22.499 16.914,22.752 16.119 C 23.164 14.828,23.039 13.270,22.426 12.053 C 21.766 10.742,20.567 9.713,19.180 9.269 C 18.537 9.063,18.059 9.001,17.101 8.998 L 16.420 8.996 16.153 8.448 C 15.734 7.586,15.292 6.976,14.593 6.297 C 14.138 5.854,13.932 5.685,13.440 5.353 C 12.690 4.846,11.819 4.462,10.910 4.238 C 10.240 4.073,9.838 4.049,9.600 4.160 M16.010 17.991 C 15.708 17.998,13.822 17.997,11.820 17.989 C 8.242 17.976,8.173 17.974,7.795 17.888 C 7.013 17.710,6.391 17.456,5.800 17.074 C 4.830 16.447,4.077 15.610,3.615 14.645 C 3.224 13.830,3.049 13.104,3.014 12.160 C 2.976 11.137,3.147 10.351,3.620 9.380 C 4.042 8.512,4.575 7.839,5.253 7.315 L 5.615 7.035 11.087 12.507 L 16.560 17.980 16.010 17.991 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CloudOffIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CloudOff = CloudOffIcon;