@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.58 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-file-key" 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="M5.499 1.043 C 4.380 1.232,3.461 2.048,3.114 3.160 L 3.020 3.460 3.020 12.000 L 3.020 20.540 3.114 20.840 C 3.422 21.827,4.173 22.578,5.160 22.886 L 5.460 22.980 12.000 22.980 L 18.540 22.980 18.840 22.886 C 19.816 22.582,20.554 21.851,20.886 20.860 L 20.980 20.580 20.991 13.723 C 21.001 7.466,20.996 6.848,20.936 6.663 C 20.876 6.475,20.673 6.262,18.225 3.816 C 16.452 2.043,15.527 1.147,15.420 1.096 C 15.266 1.023,15.085 1.020,10.480 1.014 C 7.851 1.011,5.609 1.024,5.499 1.043 M16.790 5.210 L 19.000 7.420 19.000 13.764 C 19.000 19.023,18.991 20.138,18.945 20.290 C 18.872 20.533,18.707 20.740,18.484 20.872 L 18.300 20.980 12.000 20.980 L 5.700 20.980 5.516 20.872 C 5.415 20.813,5.284 20.700,5.225 20.623 C 4.985 20.308,5.000 20.888,5.000 12.022 C 5.000 2.888,4.974 3.632,5.304 3.303 C 5.619 2.988,5.320 3.006,10.220 3.003 L 14.580 3.000 16.790 5.210 M15.640 9.068 C 15.486 9.121,15.155 9.434,13.380 11.202 L 11.300 13.274 11.017 13.179 C 9.357 12.617,7.633 13.491,7.114 15.160 C 6.979 15.594,6.979 16.406,7.114 16.840 C 7.421 17.826,8.174 18.579,9.160 18.886 C 9.594 19.021,10.406 19.021,10.840 18.886 C 11.807 18.585,12.551 17.853,12.873 16.887 C 12.963 16.615,12.975 16.513,12.976 16.000 C 12.976 15.452,12.970 15.400,12.851 15.060 L 12.726 14.700 13.861 13.562 L 14.996 12.424 15.210 12.627 C 15.477 12.879,15.632 12.961,15.895 12.988 C 16.295 13.029,16.662 12.842,16.867 12.492 C 16.964 12.327,16.980 12.258,16.979 12.000 C 16.978 11.646,16.924 11.524,16.629 11.212 L 16.428 11.000 16.629 10.788 C 16.924 10.476,16.978 10.354,16.979 10.000 C 16.980 9.745,16.964 9.672,16.872 9.516 C 16.617 9.083,16.121 8.903,15.640 9.068 M10.334 15.064 C 10.698 15.188,11.000 15.613,11.000 16.001 C 11.000 16.331,10.784 16.696,10.484 16.872 C 10.328 16.963,10.254 16.980,10.000 16.980 C 9.746 16.980,9.672 16.963,9.516 16.872 C 8.937 16.531,8.833 15.774,9.301 15.306 C 9.587 15.019,9.952 14.934,10.334 15.064 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const FileKeyIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const FileKey = FileKeyIcon;