@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.24 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-split" 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="M2.580 2.094 C 2.343 2.204,2.155 2.405,2.064 2.646 C 2.004 2.803,1.998 3.089,2.009 5.563 L 2.020 8.306 2.141 8.503 C 2.543 9.156,3.457 9.156,3.859 8.503 L 3.980 8.306 4.000 6.873 L 4.020 5.439 7.204 8.630 C 8.955 10.384,10.427 11.877,10.475 11.947 C 10.615 12.153,10.828 12.606,10.905 12.862 C 10.971 13.082,10.978 13.440,10.998 17.703 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.992 17.803 C 13.005 12.793,13.010 12.910,12.736 12.085 C 12.567 11.574,12.336 11.123,12.026 10.701 C 11.873 10.492,10.682 9.270,8.606 7.190 L 5.422 4.000 6.801 3.998 C 8.284 3.996,8.350 3.989,8.619 3.783 C 8.696 3.725,8.808 3.592,8.869 3.489 C 8.964 3.328,8.980 3.256,8.980 3.000 C 8.980 2.746,8.963 2.672,8.872 2.516 C 8.813 2.415,8.698 2.282,8.618 2.221 C 8.327 1.999,8.334 2.000,5.444 2.000 L 2.780 2.001 2.580 2.094 M15.695 2.057 C 15.466 2.129,15.256 2.299,15.128 2.516 C 15.037 2.672,15.020 2.746,15.020 3.000 C 15.020 3.256,15.036 3.328,15.131 3.489 C 15.192 3.592,15.304 3.725,15.381 3.783 C 15.650 3.989,15.716 3.996,17.200 3.998 L 18.579 4.000 16.374 6.210 C 15.161 7.425,14.138 8.481,14.101 8.555 C 13.872 9.010,14.056 9.601,14.508 9.867 C 14.673 9.964,14.742 9.980,15.000 9.979 C 15.212 9.979,15.341 9.957,15.440 9.905 C 15.517 9.865,16.574 8.840,17.788 7.628 L 19.996 5.425 20.008 6.866 L 20.020 8.306 20.141 8.503 C 20.543 9.156,21.457 9.156,21.859 8.503 L 21.980 8.306 21.991 5.563 C 22.002 3.089,21.996 2.803,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.540 2.003 C 16.466 2.005,15.823 2.017,15.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SplitIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Split = SplitIcon;