@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.43 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-unfold-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="M11.695 1.057 C 11.466 1.129,11.256 1.299,11.128 1.516 L 11.020 1.700 11.020 3.003 L 11.020 4.306 11.141 4.503 C 11.543 5.156,12.457 5.156,12.859 4.503 L 12.980 4.306 12.980 3.003 L 12.980 1.700 12.872 1.516 C 12.628 1.101,12.150 0.915,11.695 1.057 M11.695 7.057 C 11.466 7.129,11.256 7.299,11.128 7.516 L 11.020 7.700 11.020 9.003 L 11.020 10.306 11.141 10.503 C 11.543 11.156,12.457 11.156,12.859 10.503 L 12.980 10.306 12.980 9.003 L 12.980 7.700 12.872 7.516 C 12.628 7.101,12.150 6.915,11.695 7.057 M4.640 8.069 C 4.488 8.121,4.205 8.384,2.825 9.755 C 1.040 11.530,1.001 11.578,1.001 12.000 C 1.001 12.420,1.043 12.472,2.806 14.226 C 3.694 15.109,4.481 15.862,4.555 15.899 C 5.010 16.128,5.601 15.944,5.867 15.492 C 5.964 15.327,5.980 15.258,5.979 15.000 C 5.979 14.787,5.957 14.660,5.904 14.560 C 5.864 14.483,5.514 14.101,5.127 13.710 L 4.423 13.000 6.301 12.998 C 7.766 12.997,8.213 12.985,8.330 12.943 C 8.551 12.864,8.744 12.702,8.869 12.489 C 8.964 12.328,8.980 12.256,8.980 12.000 C 8.980 11.746,8.963 11.672,8.872 11.516 C 8.813 11.415,8.698 11.282,8.618 11.221 C 8.337 11.007,8.265 11.000,6.265 11.000 L 4.423 11.000 5.127 10.290 C 5.514 9.900,5.864 9.517,5.904 9.440 C 5.957 9.340,5.979 9.213,5.979 9.000 C 5.980 8.745,5.964 8.672,5.872 8.516 C 5.617 8.083,5.121 7.902,4.640 8.069 M18.670 8.061 C 18.448 8.142,18.250 8.309,18.128 8.516 C 18.036 8.672,18.020 8.745,18.021 9.000 C 18.021 9.213,18.043 9.340,18.096 9.440 C 18.136 9.517,18.486 9.900,18.873 10.290 L 19.577 11.000 17.735 11.000 C 15.735 11.000,15.663 11.007,15.382 11.221 C 15.302 11.282,15.187 11.415,15.128 11.516 C 15.037 11.672,15.020 11.746,15.020 12.000 C 15.020 12.256,15.036 12.328,15.131 12.489 C 15.256 12.702,15.449 12.864,15.670 12.943 C 15.787 12.985,16.234 12.997,17.699 12.998 L 19.577 13.000 18.873 13.710 C 18.486 14.101,18.139 14.481,18.101 14.555 C 17.872 15.008,18.056 15.601,18.508 15.867 C 18.673 15.964,18.742 15.980,19.000 15.979 C 19.212 15.979,19.341 15.957,19.440 15.905 C 19.517 15.865,20.306 15.109,21.194 14.226 C 22.957 12.472,22.999 12.420,22.999 12.000 C 22.999 11.578,22.960 11.530,21.175 9.756 C 19.716 8.307,19.519 8.124,19.343 8.066 C 19.108 7.987,18.875 7.986,18.670 8.061 M11.695 13.057 C 11.466 13.129,11.256 13.299,11.128 13.516 L 11.020 13.700 11.020 15.003 L 11.020 16.306 11.141 16.503 C 11.543 17.156,12.457 17.156,12.859 16.503 L 12.980 16.306 12.980 15.003 L 12.980 13.700 12.872 13.516 C 12.628 13.101,12.150 12.915,11.695 13.057 M11.695 19.057 C 11.466 19.129,11.256 19.299,11.128 19.516 L 11.020 19.700 11.020 21.003 L 11.020 22.306 11.141 22.503 C 11.543 23.156,12.457 23.156,12.859 22.503 L 12.980 22.306 12.980 21.003 L 12.980 19.700 12.872 19.516 C 12.628 19.101,12.150 18.915,11.695 19.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const UnfoldHorizontalIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const UnfoldHorizontal = UnfoldHorizontalIcon;