UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.71 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-folder-pen" 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="M3.499 2.043 C 2.393 2.228,1.488 3.025,1.114 4.140 L 1.020 4.420 1.009 8.040 C 0.996 12.081,0.980 11.845,1.276 12.173 C 1.464 12.381,1.708 12.488,1.997 12.488 C 2.405 12.488,2.724 12.282,2.905 11.900 L 2.999 11.700 3.000 8.297 C 3.000 4.441,2.986 4.620,3.303 4.303 C 3.608 3.999,3.597 4.000,5.925 4.000 C 7.219 4.000,8.029 4.016,8.156 4.043 C 8.496 4.116,8.625 4.247,9.202 5.106 C 9.917 6.171,10.269 6.509,10.949 6.781 C 11.500 7.002,11.449 7.000,15.951 7.000 C 20.646 7.000,20.376 6.983,20.697 7.303 C 21.020 7.627,21.000 7.243,21.000 13.001 C 21.000 17.212,20.990 18.139,20.945 18.290 C 20.872 18.533,20.707 18.740,20.484 18.872 L 20.300 18.980 15.260 19.000 L 10.220 19.020 10.060 19.106 C 9.706 19.298,9.512 19.615,9.512 20.003 C 9.512 20.292,9.619 20.536,9.827 20.724 C 10.160 21.024,9.745 21.004,15.460 20.991 L 20.580 20.980 20.860 20.886 C 21.851 20.554,22.582 19.816,22.886 18.840 L 22.980 18.540 22.980 13.000 L 22.980 7.460 22.886 7.160 C 22.581 6.182,21.831 5.427,20.861 5.122 L 20.540 5.021 16.180 5.000 C 11.515 4.979,11.730 4.989,11.454 4.778 C 11.384 4.725,11.088 4.326,10.796 3.891 C 10.081 2.827,9.738 2.501,9.043 2.218 C 8.548 2.017,8.293 2.000,5.905 2.005 C 4.692 2.007,3.609 2.025,3.499 2.043 M9.330 9.044 C 8.849 9.124,8.379 9.337,7.960 9.662 C 7.646 9.907,2.476 15.103,2.329 15.323 C 2.066 15.715,1.947 16.039,1.478 17.642 C 1.011 19.240,0.994 19.311,1.014 19.590 C 1.052 20.135,1.371 20.602,1.875 20.850 C 2.110 20.966,2.174 20.980,2.479 20.979 C 2.794 20.977,2.937 20.943,4.360 20.525 C 6.121 20.008,6.454 19.871,6.920 19.468 C 7.498 18.968,12.341 14.069,12.500 13.823 C 13.161 12.802,13.162 11.420,12.502 10.426 C 12.165 9.918,11.594 9.449,11.039 9.223 C 10.561 9.028,9.864 8.955,9.330 9.044 M10.353 11.116 C 10.594 11.239,10.733 11.374,10.860 11.607 C 11.018 11.896,11.029 12.324,10.885 12.605 C 10.767 12.837,5.564 18.051,5.380 18.122 C 5.221 18.184,3.265 18.759,3.254 18.747 C 3.230 18.723,3.838 16.719,3.911 16.580 C 3.997 16.416,9.126 11.271,9.325 11.149 C 9.595 10.984,10.064 10.969,10.353 11.116 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FolderPenIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FolderPen = FolderPenIcon;