UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.45 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-stretch-horizontal" 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 3.043 C 2.380 3.232,1.461 4.048,1.114 5.160 C 1.022 5.453,1.020 5.497,1.020 7.000 C 1.020 8.503,1.022 8.547,1.114 8.840 C 1.422 9.827,2.173 10.578,3.160 10.886 L 3.460 10.980 12.000 10.980 L 20.540 10.980 20.840 10.886 C 21.827 10.578,22.578 9.827,22.886 8.840 C 22.978 8.547,22.980 8.503,22.980 7.000 C 22.980 5.497,22.978 5.453,22.886 5.160 C 22.581 4.182,21.832 3.428,20.861 3.121 L 20.540 3.020 12.120 3.014 C 7.489 3.011,3.609 3.024,3.499 3.043 M20.310 5.061 C 20.589 5.144,20.856 5.411,20.939 5.690 C 21.023 5.972,21.028 8.015,20.945 8.290 C 20.872 8.533,20.707 8.740,20.484 8.872 L 20.300 8.980 12.000 8.980 L 3.700 8.980 3.516 8.872 C 3.303 8.747,3.141 8.550,3.058 8.316 C 2.972 8.071,2.974 5.982,3.061 5.690 C 3.140 5.421,3.412 5.143,3.673 5.063 C 3.833 5.014,5.030 5.005,11.983 5.003 C 19.144 5.000,20.130 5.007,20.310 5.061 M3.499 13.043 C 2.380 13.232,1.461 14.048,1.114 15.160 C 1.022 15.453,1.020 15.497,1.020 17.000 C 1.020 18.503,1.022 18.547,1.114 18.840 C 1.422 19.827,2.173 20.578,3.160 20.886 L 3.460 20.980 12.000 20.980 L 20.540 20.980 20.840 20.886 C 21.827 20.578,22.578 19.827,22.886 18.840 C 22.978 18.547,22.980 18.503,22.980 17.000 C 22.980 15.497,22.978 15.453,22.886 15.160 C 22.581 14.182,21.832 13.428,20.861 13.121 L 20.540 13.020 12.120 13.014 C 7.489 13.011,3.609 13.024,3.499 13.043 M20.310 15.061 C 20.589 15.144,20.856 15.411,20.939 15.690 C 21.023 15.972,21.028 18.015,20.945 18.290 C 20.872 18.533,20.707 18.740,20.484 18.872 L 20.300 18.980 12.000 18.980 L 3.700 18.980 3.516 18.872 C 3.415 18.813,3.284 18.700,3.225 18.623 C 3.014 18.347,3.000 18.245,3.000 17.022 C 3.000 15.698,3.019 15.587,3.301 15.306 C 3.627 14.980,2.853 15.007,11.963 15.003 C 19.142 15.000,20.130 15.007,20.310 15.061 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const StretchHorizontalIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const StretchHorizontal = StretchHorizontalIcon;