UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.91 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-plus" 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 M17.695 8.057 C 17.466 8.129,17.256 8.299,17.128 8.516 L 17.020 8.700 17.008 9.850 L 16.995 11.000 15.944 11.000 C 14.797 11.000,14.643 11.022,14.382 11.221 C 14.302 11.282,14.187 11.415,14.128 11.516 C 14.037 11.672,14.020 11.746,14.020 12.000 C 14.020 12.256,14.036 12.328,14.131 12.489 C 14.192 12.592,14.304 12.725,14.381 12.783 C 14.642 12.983,14.738 12.996,15.908 12.998 L 16.995 13.000 17.008 14.153 L 17.020 15.307 17.141 15.503 C 17.543 16.156,18.457 16.156,18.859 15.503 L 18.980 15.307 18.992 14.153 L 19.005 13.000 20.092 12.998 C 21.262 12.996,21.358 12.983,21.619 12.783 C 21.696 12.725,21.808 12.592,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.813 11.415,21.698 11.282,21.618 11.221 C 21.357 11.022,21.203 11.000,20.056 11.000 L 19.005 11.000 18.992 9.850 L 18.980 8.700 18.872 8.516 C 18.628 8.101,18.150 7.915,17.695 8.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.892 13.022,11.108 13.022,11.330 12.943 C 11.551 12.864,11.744 12.702,11.869 12.489 C 11.964 12.328,11.980 12.256,11.980 12.000 C 11.980 11.746,11.963 11.672,11.872 11.516 C 11.740 11.293,11.533 11.128,11.290 11.055 C 11.029 10.976,2.946 10.979,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 ListPlusIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ListPlus = ListPlusIcon;