UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.01 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-wallpaper" 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="M3.499 2.043 C 2.380 2.232,1.461 3.048,1.114 4.160 L 1.020 4.460 1.020 10.000 L 1.020 15.540 1.114 15.840 C 1.418 16.816,2.149 17.554,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.001 L 13.000 18.003 16.790 17.991 L 20.580 17.980 20.860 17.886 C 21.851 17.554,22.582 16.816,22.886 15.840 L 22.980 15.540 22.980 10.000 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 12.120 2.014 C 7.489 2.011,3.609 2.024,3.499 2.043 M20.310 4.061 C 20.589 4.144,20.856 4.411,20.939 4.690 C 20.992 4.867,21.000 5.413,21.000 8.735 L 21.000 12.576 19.690 11.276 C 18.454 10.049,18.184 9.814,17.767 9.603 C 17.096 9.263,15.904 9.263,15.233 9.603 C 14.779 9.833,14.507 10.086,11.598 12.988 L 8.576 16.002 6.138 15.991 L 3.700 15.980 3.516 15.872 C 3.303 15.747,3.141 15.550,3.058 15.316 C 2.969 15.061,2.971 4.993,3.061 4.690 C 3.140 4.421,3.412 4.143,3.673 4.063 C 3.833 4.014,5.030 4.005,11.983 4.003 C 19.144 4.000,20.130 4.007,20.310 4.061 M7.499 6.040 C 6.363 6.246,5.460 7.049,5.114 8.160 C 4.979 8.594,4.979 9.406,5.114 9.840 C 5.421 10.826,6.174 11.579,7.160 11.886 C 7.594 12.021,8.406 12.021,8.840 11.886 C 9.826 11.579,10.579 10.826,10.886 9.840 C 11.021 9.406,11.021 8.594,10.886 8.160 C 10.581 7.179,9.810 6.407,8.861 6.129 C 8.500 6.023,7.832 5.980,7.499 6.040 M8.310 8.061 C 8.688 8.173,9.000 8.598,9.000 9.001 C 9.000 9.331,8.784 9.696,8.484 9.872 C 8.328 9.963,8.254 9.980,8.000 9.980 C 7.746 9.980,7.672 9.963,7.516 9.872 C 6.935 9.530,6.833 8.774,7.304 8.303 C 7.583 8.024,7.916 7.944,8.310 8.061 M16.920 11.425 C 17.064 11.485,20.920 15.299,20.920 15.382 C 20.920 15.476,20.661 15.768,20.486 15.871 L 20.300 15.980 15.860 15.991 L 11.420 16.001 13.660 13.758 C 14.892 12.524,15.949 11.489,16.009 11.457 C 16.274 11.316,16.625 11.304,16.920 11.425 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const WallpaperIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Wallpaper = WallpaperIcon;