@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.12 kB
JavaScript
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-bed-double" 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="M5.499 3.043 C 4.390 3.231,3.482 4.029,3.115 5.140 C 3.025 5.414,3.023 5.463,3.009 7.284 L 2.995 9.148 2.668 9.314 C 1.922 9.693,1.365 10.355,1.114 11.160 L 1.020 11.460 1.020 15.883 L 1.020 20.306 1.141 20.503 C 1.543 21.156,2.457 21.156,2.859 20.503 C 2.979 20.308,2.980 20.300,2.993 19.653 L 3.007 19.000 12.000 19.000 L 20.993 19.000 21.007 19.653 C 21.020 20.300,21.021 20.308,21.141 20.503 C 21.543 21.156,22.457 21.156,22.859 20.503 L 22.980 20.306 22.980 15.883 L 22.980 11.460 22.886 11.160 C 22.635 10.355,22.078 9.693,21.332 9.314 L 21.005 9.148 20.991 7.284 C 20.977 5.463,20.975 5.414,20.885 5.140 C 20.562 4.163,19.822 3.425,18.861 3.121 L 18.540 3.020 12.120 3.014 C 8.589 3.011,5.609 3.024,5.499 3.043 M11.000 7.000 L 11.000 9.000 8.000 9.000 L 5.000 9.000 5.000 7.447 C 5.000 5.649,5.007 5.599,5.304 5.303 C 5.609 4.997,5.520 5.006,8.430 5.003 L 11.000 5.000 11.000 7.000 M18.310 5.061 C 18.452 5.103,18.571 5.178,18.697 5.303 C 18.993 5.599,19.000 5.650,19.000 7.447 L 19.000 9.000 16.000 9.000 L 13.000 9.000 13.000 7.000 L 13.000 5.000 15.553 5.000 C 17.722 5.000,18.136 5.009,18.310 5.061 M20.310 11.061 C 20.452 11.103,20.571 11.178,20.697 11.303 C 21.007 11.614,21.000 11.538,21.000 14.447 L 21.000 17.000 12.000 17.000 L 3.000 17.000 3.000 14.447 C 3.000 11.538,2.993 11.614,3.304 11.303 C 3.421 11.185,3.552 11.100,3.673 11.063 C 3.833 11.014,5.030 11.005,11.983 11.003 C 19.144 11.000,20.130 11.007,20.310 11.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BedDoubleIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const BedDouble = BedDoubleIcon;