@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.42 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-arrow-left-right" 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="M7.640 2.068 C 7.486 2.121,7.148 2.441,5.326 4.255 C 3.001 6.569,3.001 6.569,3.001 7.000 C 3.001 7.429,3.004 7.433,5.306 9.726 C 6.469 10.884,7.483 11.865,7.560 11.905 C 7.659 11.957,7.788 11.979,8.000 11.979 C 8.258 11.980,8.327 11.964,8.492 11.867 C 8.714 11.737,8.901 11.498,8.965 11.264 C 9.019 11.061,8.989 10.733,8.899 10.555 C 8.862 10.481,8.289 9.876,7.626 9.210 L 6.422 8.000 13.301 7.998 C 18.943 7.997,20.207 7.987,20.330 7.943 C 20.551 7.864,20.744 7.702,20.869 7.489 C 20.964 7.328,20.980 7.256,20.980 7.000 C 20.980 6.746,20.963 6.672,20.872 6.516 C 20.740 6.293,20.533 6.128,20.290 6.055 C 20.138 6.009,18.947 6.000,13.265 6.000 L 6.422 6.000 7.626 4.790 C 8.289 4.125,8.864 3.517,8.905 3.440 C 8.957 3.341,8.979 3.213,8.979 3.000 C 8.980 2.745,8.964 2.672,8.872 2.516 C 8.617 2.083,8.121 1.903,7.640 2.068 M15.670 12.061 C 15.448 12.142,15.250 12.309,15.128 12.516 C 15.036 12.672,15.020 12.745,15.021 13.000 C 15.021 13.213,15.043 13.341,15.095 13.440 C 15.136 13.517,15.711 14.125,16.374 14.790 L 17.578 16.000 10.735 16.000 C 5.053 16.000,3.862 16.009,3.710 16.055 C 3.467 16.128,3.260 16.293,3.128 16.516 C 3.037 16.672,3.020 16.746,3.020 17.000 C 3.020 17.256,3.036 17.328,3.131 17.489 C 3.256 17.702,3.449 17.864,3.670 17.943 C 3.793 17.987,5.057 17.997,10.699 17.998 L 17.578 18.000 16.374 19.210 C 15.711 19.875,15.138 20.481,15.101 20.555 C 14.872 21.009,15.056 21.601,15.508 21.867 C 15.673 21.964,15.742 21.980,16.000 21.979 C 16.212 21.979,16.341 21.957,16.440 21.905 C 16.517 21.865,17.531 20.884,18.694 19.726 C 20.996 17.433,20.999 17.429,20.999 17.000 C 20.999 16.569,20.999 16.569,18.674 14.255 C 16.750 12.340,16.521 12.124,16.343 12.065 C 16.107 11.987,15.874 11.986,15.670 12.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowLeftRightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowLeftRight = ArrowLeftRightIcon;