UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.5 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-log-in" 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="M14.695 2.056 C 14.465 2.129,14.255 2.300,14.128 2.516 C 14.037 2.672,14.020 2.746,14.020 3.000 C 14.020 3.256,14.036 3.328,14.131 3.489 C 14.256 3.702,14.449 3.864,14.670 3.943 C 14.788 3.985,15.278 3.997,16.963 3.998 C 19.415 4.000,19.391 3.998,19.697 4.303 C 20.024 4.631,20.000 4.009,20.000 12.001 C 20.000 17.907,19.991 19.138,19.945 19.290 C 19.872 19.533,19.707 19.740,19.484 19.872 L 19.300 19.980 17.020 20.000 C 15.319 20.015,14.711 20.033,14.627 20.070 C 14.428 20.158,14.239 20.328,14.128 20.516 C 14.037 20.672,14.020 20.746,14.020 21.000 C 14.020 21.257,14.036 21.327,14.133 21.492 C 14.262 21.711,14.502 21.901,14.728 21.962 C 14.831 21.990,15.679 22.000,17.232 21.991 C 19.565 21.978,19.582 21.978,19.860 21.885 C 20.847 21.557,21.581 20.816,21.886 19.840 L 21.980 19.540 21.980 12.000 L 21.980 4.460 21.886 4.160 C 21.581 3.181,20.829 2.425,19.861 2.122 L 19.540 2.022 17.200 2.013 C 15.351 2.005,14.825 2.014,14.695 2.056 M9.695 6.057 C 9.466 6.129,9.256 6.299,9.128 6.516 C 9.036 6.672,9.020 6.745,9.021 7.000 C 9.021 7.212,9.043 7.341,9.095 7.440 C 9.135 7.517,9.936 8.350,10.874 9.290 L 12.579 11.000 7.736 11.000 C 3.748 11.000,2.861 11.010,2.710 11.055 C 2.467 11.128,2.260 11.293,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.792 12.987,3.728 12.997,7.699 12.998 L 12.579 13.000 10.874 14.710 C 9.936 15.650,9.135 16.483,9.095 16.560 C 9.043 16.659,9.021 16.788,9.021 17.000 C 9.020 17.258,9.036 17.327,9.133 17.492 C 9.263 17.714,9.502 17.901,9.736 17.965 C 9.938 18.019,10.266 17.989,10.445 17.899 C 10.519 17.862,11.756 16.659,13.194 15.226 C 16.036 12.393,15.999 12.435,15.999 12.000 C 15.999 11.564,16.039 11.609,13.174 8.754 C 10.628 6.215,10.533 6.125,10.323 6.064 C 10.066 5.988,9.919 5.987,9.695 6.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const LogInIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const LogIn = LogInIcon;