UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.53 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-bean" 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="M15.200 1.042 C 13.152 1.296,11.287 2.439,10.183 4.116 C 9.715 4.827,9.469 5.384,9.203 6.332 C 8.900 7.417,8.682 7.877,8.280 8.282 C 7.878 8.688,7.401 8.909,6.220 9.237 C 4.572 9.695,3.269 10.595,2.290 11.952 C 1.972 12.393,1.521 13.294,1.343 13.845 C 0.937 15.098,0.894 16.536,1.226 17.760 C 2.007 20.634,4.326 22.623,7.292 22.963 C 7.810 23.022,8.976 22.993,9.740 22.901 C 12.076 22.621,14.284 21.817,16.220 20.540 C 19.951 18.080,22.370 14.170,22.901 9.740 C 22.993 8.976,23.022 7.810,22.963 7.292 C 22.689 4.900,21.334 2.904,19.240 1.806 C 18.554 1.446,17.961 1.245,17.140 1.094 C 16.748 1.022,15.608 0.991,15.200 1.042 M16.980 3.099 C 17.982 3.309,18.783 3.741,19.503 4.459 C 19.983 4.936,20.220 5.268,20.505 5.860 C 20.987 6.860,21.099 7.917,20.899 9.568 C 20.558 12.376,19.336 14.952,17.370 17.003 C 15.314 19.149,12.645 20.492,9.620 20.903 C 8.913 20.999,7.733 21.021,7.280 20.946 C 6.107 20.752,5.158 20.255,4.371 19.424 C 3.713 18.729,3.300 17.932,3.094 16.960 C 2.997 16.505,2.997 15.432,3.094 15.006 C 3.328 13.973,3.756 13.198,4.507 12.446 L 4.961 11.992 5.330 12.383 C 5.534 12.598,5.843 12.879,6.017 13.007 C 6.604 13.438,7.389 13.784,8.100 13.925 C 8.561 14.016,9.534 13.996,10.040 13.885 C 11.971 13.459,13.463 11.973,13.879 10.060 C 14.129 8.908,13.978 7.771,13.434 6.712 C 13.158 6.175,12.855 5.776,12.383 5.330 L 11.992 4.961 12.446 4.507 C 13.488 3.466,14.690 2.979,16.120 3.017 C 16.417 3.025,16.804 3.062,16.980 3.099 M11.341 7.130 C 11.571 7.436,11.802 7.893,11.902 8.240 C 12.001 8.583,12.004 9.348,11.907 9.720 C 11.671 10.632,10.939 11.465,10.094 11.784 C 9.068 12.171,8.032 12.019,7.144 11.352 C 6.913 11.178,6.880 11.140,6.944 11.117 C 6.986 11.102,7.262 11.012,7.557 10.918 C 9.337 10.350,10.301 9.404,10.896 7.640 C 10.973 7.409,11.056 7.144,11.080 7.050 C 11.104 6.957,11.130 6.880,11.138 6.880 C 11.146 6.880,11.238 6.992,11.341 7.130 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const BeanIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Bean = BeanIcon;