@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.21 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-separator-vertical" 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 2.057 C 11.466 2.129,11.256 2.299,11.128 2.516 L 11.020 2.700 11.020 12.003 L 11.020 21.306 11.141 21.503 C 11.543 22.156,12.457 22.156,12.859 21.503 L 12.980 21.306 12.980 12.003 L 12.980 2.700 12.872 2.516 C 12.628 2.101,12.150 1.915,11.695 2.057 M7.640 7.068 C 7.486 7.121,7.151 7.438,5.347 9.235 C 4.166 10.411,3.187 11.419,3.127 11.520 C 3.037 11.672,3.020 11.746,3.020 12.000 C 3.020 12.254,3.036 12.328,3.127 12.480 C 3.261 12.705,7.368 16.805,7.560 16.905 C 7.659 16.957,7.788 16.979,8.000 16.979 C 8.258 16.980,8.327 16.964,8.492 16.867 C 8.714 16.737,8.901 16.498,8.965 16.264 C 9.019 16.061,8.989 15.733,8.899 15.555 C 8.862 15.481,8.064 14.650,7.126 13.710 L 5.421 12.000 7.126 10.290 C 8.064 9.350,8.865 8.517,8.905 8.440 C 8.957 8.341,8.979 8.212,8.979 8.000 C 8.980 7.745,8.964 7.672,8.872 7.516 C 8.617 7.083,8.121 6.903,7.640 7.068 M15.670 7.061 C 15.448 7.142,15.250 7.309,15.128 7.516 C 15.036 7.672,15.020 7.745,15.021 8.000 C 15.021 8.212,15.043 8.341,15.095 8.440 C 15.135 8.517,15.936 9.350,16.874 10.290 L 18.579 12.000 16.874 13.710 C 15.936 14.650,15.138 15.481,15.101 15.555 C 14.872 16.010,15.056 16.601,15.508 16.867 C 15.673 16.964,15.743 16.980,16.000 16.980 C 16.254 16.980,16.328 16.964,16.480 16.873 C 16.705 16.739,20.805 12.632,20.905 12.440 C 20.957 12.341,20.979 12.212,20.979 12.000 C 20.980 11.745,20.964 11.673,20.873 11.520 C 20.813 11.419,19.834 10.412,18.653 9.235 C 16.748 7.338,16.521 7.124,16.343 7.065 C 16.107 6.987,15.874 6.986,15.670 7.061 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`;
export const SeparatorVerticalIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SeparatorVertical = SeparatorVerticalIcon;