UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.16 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-user-round" 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="M11.380 2.043 C 8.784 2.299,6.676 4.219,6.115 6.840 C 5.984 7.450,5.984 8.558,6.114 9.160 C 6.406 10.512,7.076 11.656,8.097 12.551 C 8.228 12.665,8.327 12.766,8.317 12.774 C 8.308 12.782,8.113 12.884,7.884 13.001 C 6.533 13.691,5.349 14.756,4.468 16.073 C 4.128 16.581,3.667 17.541,3.461 18.169 C 3.157 19.096,2.970 20.256,3.008 20.980 C 3.023 21.263,3.044 21.345,3.144 21.508 C 3.540 22.152,4.458 22.154,4.854 21.512 C 4.961 21.337,4.973 21.275,5.023 20.652 C 5.101 19.675,5.196 19.212,5.456 18.530 C 6.279 16.374,8.119 14.745,10.340 14.205 C 11.354 13.959,12.646 13.959,13.660 14.205 C 16.172 14.815,18.190 16.834,18.794 19.340 C 18.897 19.765,18.916 19.905,18.979 20.673 C 19.028 21.274,19.041 21.340,19.147 21.513 C 19.542 22.154,20.460 22.151,20.856 21.508 C 20.956 21.345,20.977 21.263,20.992 20.980 C 21.050 19.884,20.675 18.268,20.084 17.060 C 19.217 15.292,17.790 13.840,16.075 12.981 L 15.642 12.764 15.751 12.680 C 15.811 12.634,16.011 12.449,16.195 12.268 C 17.066 11.415,17.620 10.397,17.885 9.160 C 18.015 8.554,18.015 7.446,17.885 6.840 C 17.626 5.631,17.109 4.660,16.269 3.805 C 14.978 2.490,13.230 1.860,11.380 2.043 M12.605 4.058 C 14.074 4.280,15.310 5.324,15.797 6.755 C 15.897 7.050,16.000 7.680,16.000 8.000 C 16.000 8.322,15.897 8.951,15.796 9.245 C 15.321 10.632,14.195 11.628,12.773 11.917 C 10.563 12.368,8.396 10.845,8.058 8.605 C 7.986 8.121,7.986 7.879,8.058 7.395 C 8.314 5.698,9.675 4.324,11.358 4.061 C 11.816 3.990,12.144 3.989,12.605 4.058 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const UserRoundIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const UserRound = UserRoundIcon;