UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.95 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-hand-helping" 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="M19.325 6.022 C 18.730 6.151,18.347 6.403,17.376 7.307 C 16.977 7.677,16.452 8.165,16.209 8.392 L 15.766 8.803 15.643 8.572 C 15.287 7.905,14.562 7.324,13.822 7.112 C 13.505 7.021,13.469 7.020,11.480 7.020 C 9.230 7.020,9.259 7.017,8.652 7.305 C 8.377 7.436,8.194 7.603,5.690 10.017 L 3.021 12.590 2.768 12.358 C 2.399 12.019,2.060 11.926,1.684 12.058 C 1.450 12.141,1.253 12.303,1.128 12.516 C 1.036 12.672,1.020 12.745,1.021 13.000 C 1.021 13.212,1.043 13.341,1.095 13.440 C 1.195 13.632,7.294 19.738,7.520 19.873 C 7.672 19.964,7.746 19.980,8.000 19.980 C 8.257 19.980,8.327 19.964,8.492 19.867 C 8.842 19.662,9.029 19.295,8.988 18.895 C 8.962 18.638,8.881 18.481,8.653 18.236 L 8.474 18.045 8.627 17.910 C 8.711 17.835,8.951 17.622,9.160 17.435 C 9.369 17.248,9.567 17.079,9.600 17.058 C 9.635 17.036,10.716 17.010,12.200 16.997 C 14.970 16.972,14.930 16.975,15.660 16.722 C 16.453 16.448,16.772 16.217,18.058 14.983 C 18.656 14.409,19.849 13.267,20.709 12.445 C 21.570 11.623,22.350 10.849,22.443 10.725 C 23.255 9.641,23.215 8.100,22.345 7.047 C 21.943 6.560,21.267 6.138,20.700 6.020 C 20.352 5.947,19.664 5.948,19.325 6.022 M20.389 8.021 C 20.780 8.185,21.005 8.518,21.007 8.939 C 21.010 9.429,21.367 9.056,16.052 14.129 C 15.732 14.435,15.525 14.597,15.329 14.696 C 14.764 14.980,14.859 14.971,12.000 15.000 C 9.145 15.029,9.255 15.019,8.654 15.304 C 8.463 15.395,8.260 15.539,8.053 15.731 C 7.506 16.238,7.091 16.600,7.054 16.600 C 7.035 16.600,6.437 16.017,5.725 15.305 L 4.431 14.011 6.975 11.555 C 8.612 9.975,9.565 9.083,9.649 9.052 C 9.742 9.018,10.259 9.004,11.443 9.002 C 13.363 9.000,13.398 9.004,13.697 9.303 C 13.970 9.577,14.057 9.919,13.945 10.290 C 13.872 10.533,13.707 10.740,13.484 10.872 L 13.300 10.980 12.020 11.001 C 11.146 11.016,10.704 11.038,10.627 11.071 C 10.431 11.156,10.239 11.327,10.128 11.516 C 10.037 11.672,10.020 11.746,10.020 12.000 C 10.020 12.257,10.036 12.327,10.133 12.492 C 10.263 12.713,10.502 12.901,10.732 12.963 C 10.837 12.992,11.353 13.001,12.236 12.991 C 13.509 12.976,13.595 12.970,13.860 12.883 C 14.249 12.755,14.549 12.597,14.829 12.372 C 14.961 12.266,15.787 11.513,16.664 10.698 C 17.542 9.883,18.529 8.967,18.857 8.663 C 19.185 8.359,19.527 8.077,19.617 8.036 C 19.818 7.944,20.189 7.937,20.389 8.021 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const HandHelpingIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const HandHelping = HandHelpingIcon;