UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.97 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-lamp-floor" 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="M8.558 1.054 C 8.095 1.155,7.580 1.513,7.328 1.909 C 7.192 2.122,5.150 7.199,5.058 7.552 C 4.947 7.982,5.006 8.457,5.228 8.920 C 5.366 9.206,5.794 9.634,6.080 9.772 C 6.546 9.996,6.596 10.000,8.888 10.000 L 11.000 10.000 11.000 15.500 L 11.000 21.000 9.946 21.000 C 8.797 21.000,8.644 21.022,8.382 21.221 C 8.302 21.282,8.187 21.415,8.128 21.516 C 8.037 21.672,8.020 21.746,8.020 22.000 C 8.020 22.256,8.036 22.328,8.131 22.489 C 8.256 22.702,8.449 22.864,8.670 22.943 C 8.891 23.022,15.109 23.022,15.330 22.943 C 15.551 22.864,15.744 22.702,15.869 22.489 C 15.964 22.328,15.980 22.256,15.980 22.000 C 15.980 21.746,15.963 21.672,15.872 21.516 C 15.813 21.415,15.698 21.282,15.618 21.221 C 15.356 21.022,15.203 21.000,14.054 21.000 L 13.000 21.000 13.000 15.500 L 13.000 10.000 15.112 10.000 C 17.404 10.000,17.454 9.996,17.920 9.772 C 18.206 9.634,18.634 9.206,18.772 8.920 C 18.994 8.457,19.053 7.982,18.942 7.552 C 18.851 7.204,16.808 2.123,16.675 1.913 C 16.458 1.572,16.070 1.269,15.644 1.106 C 15.422 1.021,15.387 1.020,12.100 1.013 C 9.624 1.007,8.724 1.018,8.558 1.054 M16.000 5.500 L 16.992 7.980 14.496 7.990 C 13.123 7.996,10.877 7.996,9.504 7.990 L 7.008 7.980 7.976 5.560 C 8.508 4.229,8.956 3.108,8.971 3.070 C 8.996 3.003,9.168 3.000,12.003 3.010 L 15.008 3.020 16.000 5.500 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const LampFloorIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const LampFloor = LampFloorIcon;