UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.81 kB
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-chevrons-left-right-ellipsis" 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="M5.640 7.068 C 5.486 7.121,5.151 7.438,3.347 9.235 C 2.166 10.411,1.187 11.419,1.127 11.520 C 1.037 11.672,1.020 11.746,1.020 12.000 C 1.020 12.254,1.036 12.328,1.127 12.480 C 1.261 12.705,5.368 16.805,5.560 16.905 C 5.659 16.957,5.788 16.979,6.000 16.979 C 6.258 16.980,6.327 16.964,6.492 16.867 C 6.714 16.737,6.901 16.498,6.965 16.264 C 7.019 16.061,6.989 15.733,6.899 15.555 C 6.862 15.481,6.064 14.650,5.126 13.710 L 3.421 12.000 5.126 10.290 C 6.064 9.350,6.865 8.517,6.905 8.440 C 6.957 8.341,6.979 8.212,6.979 8.000 C 6.980 7.745,6.964 7.672,6.872 7.516 C 6.617 7.083,6.121 6.903,5.640 7.068 M17.670 7.061 C 17.448 7.142,17.250 7.309,17.128 7.516 C 17.036 7.672,17.020 7.745,17.021 8.000 C 17.021 8.212,17.043 8.341,17.095 8.440 C 17.135 8.517,17.936 9.350,18.874 10.290 L 20.579 12.000 18.874 13.710 C 17.936 14.650,17.138 15.481,17.101 15.555 C 16.872 16.010,17.056 16.601,17.508 16.867 C 17.673 16.964,17.743 16.980,18.000 16.980 C 18.254 16.980,18.328 16.964,18.480 16.873 C 18.705 16.739,22.805 12.632,22.905 12.440 C 22.957 12.341,22.979 12.212,22.979 12.000 C 22.980 11.745,22.964 11.673,22.873 11.520 C 22.813 11.419,21.834 10.412,20.653 9.235 C 18.748 7.338,18.521 7.124,18.343 7.065 C 18.107 6.987,17.874 6.986,17.670 7.061 M7.695 11.055 C 7.464 11.130,7.255 11.300,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.257,7.036 12.327,7.133 12.492 C 7.651 13.374,8.998 13.018,8.998 12.000 C 8.998 11.623,8.792 11.281,8.463 11.112 C 8.265 11.010,7.911 10.984,7.695 11.055 M11.695 11.055 C 11.464 11.130,11.255 11.300,11.128 11.516 C 11.037 11.672,11.020 11.746,11.020 12.000 C 11.020 12.257,11.036 12.327,11.133 12.492 C 11.651 13.374,12.998 13.018,12.998 12.000 C 12.998 11.623,12.792 11.281,12.463 11.112 C 12.265 11.010,11.911 10.984,11.695 11.055 M15.695 11.055 C 15.464 11.130,15.255 11.300,15.128 11.516 C 15.037 11.672,15.020 11.746,15.020 12.000 C 15.020 12.257,15.036 12.327,15.133 12.492 C 15.651 13.374,16.998 13.018,16.998 12.000 C 16.998 11.623,16.792 11.281,16.463 11.112 C 16.265 11.010,15.911 10.984,15.695 11.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ChevronsLeftRightEllipsisIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ChevronsLeftRightEllipsis = ChevronsLeftRightEllipsisIcon;