UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.43 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-bomb" 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="M17.466 1.039 C 17.172 1.093,16.725 1.236,16.501 1.349 C 16.078 1.562,15.832 1.765,14.974 2.611 L 14.089 3.485 13.734 3.381 C 11.673 2.780,9.256 2.915,7.220 3.746 C 5.972 4.255,4.910 4.967,3.919 5.958 C 1.953 7.926,0.919 10.544,1.013 13.320 C 1.084 15.439,1.752 17.328,3.033 19.040 C 3.430 19.570,4.305 20.464,4.800 20.847 C 6.242 21.961,7.787 22.624,9.600 22.907 C 10.247 23.008,11.753 23.008,12.400 22.907 C 14.638 22.557,16.504 21.620,18.062 20.062 C 19.620 18.504,20.557 16.638,20.907 14.400 C 21.008 13.753,21.008 12.246,20.906 11.600 C 20.827 11.093,20.720 10.606,20.595 10.185 L 20.514 9.910 21.369 9.045 C 22.260 8.145,22.430 7.941,22.630 7.540 C 23.253 6.286,23.084 4.865,22.184 3.795 L 21.928 3.490 22.347 3.075 C 22.900 2.527,22.980 2.391,22.980 2.000 C 22.980 1.746,22.963 1.672,22.872 1.516 C 22.618 1.084,22.134 0.905,21.660 1.066 C 21.507 1.118,21.362 1.232,20.983 1.601 L 20.500 2.070 20.205 1.820 C 19.601 1.309,18.914 1.045,18.120 1.019 C 17.867 1.011,17.573 1.020,17.466 1.039 M18.618 3.156 C 18.816 3.254,19.032 3.449,19.808 4.228 C 20.926 5.351,20.980 5.433,20.980 6.001 C 20.980 6.518,20.866 6.718,20.183 7.398 C 19.886 7.694,19.636 7.928,19.627 7.918 C 19.619 7.908,19.499 7.729,19.361 7.520 C 18.952 6.902,18.615 6.491,18.062 5.939 C 17.504 5.382,17.089 5.042,16.480 4.642 C 16.271 4.505,16.092 4.385,16.082 4.375 C 16.048 4.341,17.101 3.314,17.277 3.209 C 17.688 2.965,18.190 2.945,18.618 3.156 M12.340 5.119 C 14.244 5.445,15.884 6.393,17.152 7.900 C 19.602 10.814,19.602 15.172,17.153 18.100 C 16.388 19.015,15.523 19.693,14.471 20.200 C 12.267 21.265,9.733 21.265,7.529 20.200 C 6.477 19.693,5.612 19.015,4.847 18.100 C 2.848 15.711,2.440 12.302,3.816 9.500 C 5.047 6.996,7.429 5.333,10.207 5.040 C 10.724 4.986,11.791 5.025,12.340 5.119 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const BombIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Bomb = BombIcon;