@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.89 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-list-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="M2.695 5.057 C 2.466 5.129,2.256 5.299,2.128 5.516 C 2.037 5.672,2.020 5.746,2.020 6.000 C 2.020 6.256,2.036 6.328,2.131 6.489 C 2.256 6.702,2.449 6.864,2.670 6.943 C 2.893 7.022,16.107 7.022,16.330 6.943 C 16.551 6.864,16.744 6.702,16.869 6.489 C 16.964 6.328,16.980 6.256,16.980 6.000 C 16.980 5.746,16.963 5.672,16.872 5.516 C 16.740 5.293,16.533 5.128,16.290 5.055 C 16.028 4.976,2.947 4.978,2.695 5.057 M20.695 5.057 C 20.466 5.129,20.256 5.299,20.128 5.516 L 20.020 5.700 20.000 10.980 C 19.984 15.084,19.969 16.285,19.930 16.373 C 19.842 16.572,19.672 16.761,19.484 16.872 L 19.300 16.980 17.862 16.992 L 16.425 17.004 16.627 16.790 C 16.924 16.476,16.978 16.354,16.979 16.000 C 16.980 15.745,16.964 15.672,16.872 15.516 C 16.618 15.084,16.136 14.905,15.657 15.066 C 15.485 15.124,15.317 15.273,14.325 16.256 C 13.078 17.491,13.001 17.593,13.001 18.000 C 13.001 18.405,13.080 18.510,14.306 19.726 C 14.919 20.334,15.481 20.862,15.555 20.899 C 16.009 21.128,16.601 20.944,16.867 20.492 C 16.964 20.327,16.980 20.258,16.979 20.000 C 16.978 19.647,16.924 19.524,16.632 19.215 L 16.434 19.006 18.007 18.991 C 19.520 18.977,19.591 18.973,19.860 18.884 C 20.844 18.561,21.581 17.817,21.886 16.840 L 21.980 16.540 21.980 11.120 L 21.980 5.700 21.872 5.516 C 21.628 5.101,21.150 4.915,20.695 5.057 M2.695 11.057 C 2.466 11.129,2.256 11.299,2.128 11.516 C 2.037 11.672,2.020 11.746,2.020 12.000 C 2.020 12.256,2.036 12.328,2.131 12.489 C 2.256 12.702,2.449 12.864,2.670 12.943 C 2.793 12.987,4.021 12.996,9.500 12.996 C 14.979 12.996,16.207 12.987,16.330 12.943 C 16.551 12.864,16.744 12.702,16.869 12.489 C 16.964 12.328,16.980 12.256,16.980 12.000 C 16.980 11.746,16.963 11.672,16.872 11.516 C 16.740 11.293,16.533 11.128,16.290 11.055 C 16.028 10.976,2.947 10.978,2.695 11.057 M2.695 17.057 C 2.466 17.129,2.256 17.299,2.128 17.516 C 2.037 17.672,2.020 17.746,2.020 18.000 C 2.020 18.256,2.036 18.328,2.131 18.489 C 2.256 18.702,2.449 18.864,2.670 18.943 C 2.891 19.022,10.109 19.022,10.330 18.943 C 10.551 18.864,10.744 18.702,10.869 18.489 C 10.964 18.328,10.980 18.256,10.980 18.000 C 10.980 17.746,10.963 17.672,10.872 17.516 C 10.740 17.293,10.533 17.128,10.290 17.055 C 10.030 16.977,2.945 16.979,2.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ListEndIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ListEnd = ListEndIcon;