@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.79 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" 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.055 C 2.464 5.130,2.255 5.300,2.128 5.516 C 2.037 5.672,2.020 5.746,2.020 6.000 C 2.020 6.257,2.036 6.327,2.133 6.492 C 2.651 7.374,3.998 7.018,3.998 6.000 C 3.998 5.623,3.792 5.281,3.463 5.112 C 3.265 5.010,2.911 4.984,2.695 5.055 M7.695 5.057 C 7.466 5.129,7.256 5.299,7.128 5.516 C 7.037 5.672,7.020 5.746,7.020 6.000 C 7.020 6.256,7.036 6.328,7.131 6.489 C 7.256 6.702,7.449 6.864,7.670 6.943 C 7.893 7.022,21.107 7.022,21.330 6.943 C 21.551 6.864,21.744 6.702,21.869 6.489 C 21.964 6.328,21.980 6.256,21.980 6.000 C 21.980 5.746,21.963 5.672,21.872 5.516 C 21.740 5.293,21.533 5.128,21.290 5.055 C 21.028 4.976,7.947 4.978,7.695 5.057 M2.695 11.055 C 2.464 11.130,2.255 11.300,2.128 11.516 C 2.037 11.672,2.020 11.746,2.020 12.000 C 2.020 12.257,2.036 12.327,2.133 12.492 C 2.651 13.374,3.998 13.018,3.998 12.000 C 3.998 11.623,3.792 11.281,3.463 11.112 C 3.265 11.010,2.911 10.984,2.695 11.055 M7.695 11.057 C 7.466 11.129,7.256 11.299,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.256,7.036 12.328,7.131 12.489 C 7.256 12.702,7.449 12.864,7.670 12.943 C 7.793 12.987,9.021 12.996,14.500 12.996 C 19.979 12.996,21.207 12.987,21.330 12.943 C 21.551 12.864,21.744 12.702,21.869 12.489 C 21.964 12.328,21.980 12.256,21.980 12.000 C 21.980 11.746,21.963 11.672,21.872 11.516 C 21.740 11.293,21.533 11.128,21.290 11.055 C 21.028 10.976,7.947 10.978,7.695 11.057 M2.695 17.055 C 2.464 17.130,2.255 17.300,2.128 17.516 C 2.037 17.672,2.020 17.746,2.020 18.000 C 2.020 18.257,2.036 18.327,2.133 18.492 C 2.651 19.374,3.998 19.018,3.998 18.000 C 3.998 17.623,3.792 17.281,3.463 17.112 C 3.265 17.010,2.911 16.984,2.695 17.055 M7.695 17.057 C 7.466 17.129,7.256 17.299,7.128 17.516 C 7.037 17.672,7.020 17.746,7.020 18.000 C 7.020 18.256,7.036 18.328,7.131 18.489 C 7.256 18.702,7.449 18.864,7.670 18.943 C 7.793 18.987,9.021 18.996,14.500 18.996 C 19.979 18.996,21.207 18.987,21.330 18.943 C 21.551 18.864,21.744 18.702,21.869 18.489 C 21.964 18.328,21.980 18.256,21.980 18.000 C 21.980 17.746,21.963 17.672,21.872 17.516 C 21.740 17.293,21.533 17.128,21.290 17.055 C 21.028 16.976,7.947 16.978,7.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ListIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const List = ListIcon;