UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.09 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-list-checks" 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="M8.640 4.068 C 8.488 4.121,8.196 4.394,6.731 5.853 L 5.002 7.575 4.268 6.851 C 3.603 6.195,3.515 6.122,3.320 6.064 C 3.057 5.986,2.946 5.984,2.710 6.055 C 2.467 6.128,2.260 6.293,2.128 6.516 C 2.036 6.672,2.020 6.745,2.021 7.000 C 2.021 7.213,2.043 7.341,2.095 7.440 C 2.197 7.633,4.297 9.740,4.520 9.873 C 4.673 9.964,4.745 9.980,5.000 9.979 C 5.212 9.979,5.341 9.957,5.440 9.905 C 5.632 9.805,9.739 5.705,9.873 5.480 C 9.964 5.328,9.980 5.254,9.980 5.000 C 9.980 4.746,9.963 4.672,9.872 4.516 C 9.617 4.083,9.121 3.903,8.640 4.068 M12.695 5.057 C 12.466 5.129,12.256 5.299,12.128 5.516 C 12.037 5.672,12.020 5.746,12.020 6.000 C 12.020 6.256,12.036 6.328,12.131 6.489 C 12.256 6.702,12.449 6.864,12.670 6.943 C 12.892 7.022,21.108 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.029 4.976,12.946 4.979,12.695 5.057 M12.695 11.057 C 12.466 11.129,12.256 11.299,12.128 11.516 C 12.037 11.672,12.020 11.746,12.020 12.000 C 12.020 12.256,12.036 12.328,12.131 12.489 C 12.256 12.702,12.449 12.864,12.670 12.943 C 12.892 13.022,21.108 13.022,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.029 10.976,12.946 10.979,12.695 11.057 M8.640 14.068 C 8.488 14.121,8.196 14.394,6.731 15.853 L 5.002 17.575 4.271 16.855 C 3.655 16.247,3.509 16.123,3.343 16.067 C 2.865 15.905,2.383 16.083,2.128 16.516 C 2.036 16.672,2.020 16.745,2.021 17.000 C 2.021 17.213,2.043 17.341,2.095 17.440 C 2.197 17.633,4.297 19.740,4.520 19.873 C 4.673 19.964,4.745 19.980,5.000 19.979 C 5.212 19.979,5.341 19.957,5.440 19.905 C 5.632 19.805,9.739 15.705,9.873 15.480 C 9.964 15.328,9.980 15.254,9.980 15.000 C 9.980 14.746,9.963 14.672,9.872 14.516 C 9.617 14.083,9.121 13.903,8.640 14.068 M12.695 17.057 C 12.466 17.129,12.256 17.299,12.128 17.516 C 12.037 17.672,12.020 17.746,12.020 18.000 C 12.020 18.256,12.036 18.328,12.131 18.489 C 12.256 18.702,12.449 18.864,12.670 18.943 C 12.892 19.022,21.108 19.022,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.029 16.976,12.946 16.979,12.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ListChecksIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ListChecks = ListChecksIcon;