@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.87 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-start" 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="M15.640 3.069 C 15.491 3.121,15.262 3.328,14.325 4.256 C 13.078 5.491,13.001 5.593,13.001 6.000 C 13.001 6.405,13.080 6.510,14.306 7.726 C 14.919 8.334,15.483 8.864,15.560 8.905 C 15.659 8.957,15.787 8.979,16.000 8.979 C 16.258 8.980,16.327 8.964,16.492 8.867 C 16.842 8.662,17.029 8.295,16.988 7.895 C 16.961 7.632,16.879 7.477,16.629 7.212 L 16.428 7.000 17.767 7.000 C 19.303 7.000,19.402 7.015,19.679 7.283 C 20.005 7.600,19.978 7.102,20.000 13.023 L 20.020 18.306 20.141 18.503 C 20.543 19.156,21.457 19.156,21.859 18.503 L 21.980 18.306 21.980 12.883 L 21.980 7.460 21.886 7.160 C 21.581 6.181,20.826 5.422,19.861 5.123 C 19.547 5.026,19.506 5.024,17.987 5.009 L 16.434 4.994 16.632 4.785 C 16.924 4.476,16.978 4.353,16.979 4.000 C 16.980 3.745,16.964 3.672,16.872 3.516 C 16.617 3.083,16.120 2.902,15.640 3.069 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.891 7.022,10.109 7.022,10.330 6.943 C 10.551 6.864,10.744 6.702,10.869 6.489 C 10.964 6.328,10.980 6.256,10.980 6.000 C 10.980 5.746,10.963 5.672,10.872 5.516 C 10.740 5.293,10.533 5.128,10.290 5.055 C 10.030 4.977,2.945 4.979,2.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.793 18.987,4.021 18.996,9.500 18.996 C 14.979 18.996,16.207 18.987,16.330 18.943 C 16.551 18.864,16.744 18.702,16.869 18.489 C 16.964 18.328,16.980 18.256,16.980 18.000 C 16.980 17.746,16.963 17.672,16.872 17.516 C 16.740 17.293,16.533 17.128,16.290 17.055 C 16.028 16.976,2.947 16.978,2.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ListStartIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ListStart = ListStartIcon;