@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.37 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-gallery-vertical-end" 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="M6.695 1.057 C 6.466 1.129,6.256 1.299,6.128 1.516 C 6.037 1.672,6.020 1.746,6.020 2.000 C 6.020 2.256,6.036 2.328,6.131 2.489 C 6.256 2.702,6.449 2.864,6.670 2.943 C 6.892 3.022,17.108 3.022,17.330 2.943 C 17.551 2.864,17.744 2.702,17.869 2.489 C 17.964 2.328,17.980 2.256,17.980 2.000 C 17.980 1.746,17.963 1.672,17.872 1.516 C 17.740 1.293,17.533 1.128,17.290 1.055 C 17.028 0.976,6.946 0.978,6.695 1.057 M4.695 5.057 C 4.466 5.129,4.256 5.299,4.128 5.516 C 4.037 5.672,4.020 5.746,4.020 6.000 C 4.020 6.256,4.036 6.328,4.131 6.489 C 4.256 6.702,4.449 6.864,4.670 6.943 C 4.893 7.022,19.107 7.022,19.330 6.943 C 19.551 6.864,19.744 6.702,19.869 6.489 C 19.964 6.328,19.980 6.256,19.980 6.000 C 19.980 5.746,19.963 5.672,19.872 5.516 C 19.740 5.293,19.533 5.128,19.290 5.055 C 19.027 4.976,4.947 4.978,4.695 5.057 M4.499 9.043 C 3.380 9.232,2.461 10.048,2.114 11.160 L 2.020 11.460 2.020 16.000 L 2.020 20.540 2.114 20.840 C 2.422 21.827,3.173 22.578,4.160 22.886 L 4.460 22.980 12.000 22.980 L 19.540 22.980 19.840 22.886 C 20.827 22.578,21.578 21.827,21.886 20.840 L 21.980 20.540 21.980 16.000 L 21.980 11.460 21.886 11.160 C 21.581 10.182,20.832 9.428,19.861 9.121 L 19.540 9.020 12.120 9.014 C 8.039 9.011,4.609 9.024,4.499 9.043 M19.310 11.061 C 19.589 11.144,19.856 11.411,19.939 11.690 C 19.992 11.867,20.000 12.441,20.000 16.001 C 20.000 20.458,20.007 20.319,19.779 20.618 C 19.718 20.698,19.585 20.813,19.484 20.872 L 19.300 20.980 12.000 20.980 L 4.700 20.980 4.516 20.872 C 4.303 20.747,4.141 20.550,4.058 20.316 C 3.969 20.062,3.971 11.992,4.061 11.690 C 4.140 11.421,4.412 11.143,4.673 11.063 C 4.964 10.974,19.009 10.971,19.310 11.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const GalleryVerticalEndIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const GalleryVerticalEnd = GalleryVerticalEndIcon;