UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.94 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-output" 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.042 C 2.385 2.234,1.481 3.031,1.116 4.140 C 1.027 4.410,1.023 4.478,1.009 6.037 C 0.993 7.849,0.994 7.860,1.276 8.173 C 1.464 8.381,1.708 8.488,1.997 8.488 C 2.405 8.488,2.724 8.282,2.905 7.900 C 2.998 7.702,2.999 7.689,3.000 6.297 C 3.000 4.666,3.011 4.595,3.303 4.303 C 3.608 3.998,3.593 4.000,5.961 4.000 C 8.158 4.000,8.249 4.007,8.513 4.195 C 8.579 4.242,8.819 4.554,9.046 4.890 C 9.684 5.829,9.891 6.093,10.166 6.316 C 10.497 6.583,10.975 6.817,11.400 6.918 C 11.730 6.997,11.861 6.999,15.923 7.000 C 20.649 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 12.060 18.991 C 5.653 19.000,3.780 18.992,3.641 18.954 C 3.373 18.880,3.069 18.566,2.976 18.266 C 2.832 17.804,2.462 17.520,2.006 17.520 C 1.716 17.520,1.551 17.580,1.345 17.761 C 1.016 18.050,0.933 18.433,1.091 18.927 C 1.239 19.387,1.455 19.741,1.797 20.084 C 2.266 20.556,2.742 20.818,3.350 20.940 C 3.626 20.995,4.586 21.001,12.120 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.160 5.000 L 11.780 4.980 11.613 4.891 C 11.409 4.781,11.285 4.629,10.759 3.840 C 10.204 3.007,9.805 2.605,9.278 2.346 C 8.596 2.011,8.723 2.024,6.060 2.015 C 4.762 2.011,3.609 2.023,3.499 2.042 M4.640 9.069 C 4.488 9.121,4.205 9.384,2.825 10.755 C 1.040 12.530,1.001 12.578,1.001 13.000 C 1.001 13.420,1.043 13.472,2.806 15.226 C 3.694 16.109,4.481 16.862,4.555 16.899 C 5.010 17.128,5.601 16.944,5.867 16.492 C 5.964 16.327,5.980 16.258,5.979 16.000 C 5.979 15.787,5.957 15.660,5.904 15.560 C 5.864 15.483,5.514 15.101,5.127 14.710 L 4.423 14.000 8.301 13.998 C 11.437 13.997,12.209 13.986,12.330 13.943 C 12.551 13.864,12.744 13.702,12.869 13.489 C 12.964 13.328,12.980 13.256,12.980 13.000 C 12.980 12.746,12.963 12.672,12.872 12.516 C 12.813 12.415,12.698 12.282,12.618 12.221 C 12.320 11.994,12.435 12.000,8.265 12.000 L 4.423 12.000 5.127 11.290 C 5.514 10.900,5.864 10.517,5.904 10.440 C 5.957 10.340,5.979 10.213,5.979 10.000 C 5.980 9.745,5.964 9.672,5.872 9.516 C 5.617 9.083,5.121 8.902,4.640 9.069 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FolderOutputIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FolderOutput = FolderOutputIcon;