UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.33 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-flame" 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.670 2.057 C 11.474 2.127,11.238 2.321,10.697 2.859 C 9.143 4.406,8.420 6.005,8.565 7.580 C 8.606 8.018,8.740 8.575,8.906 8.992 C 8.964 9.140,9.196 9.620,9.420 10.060 C 9.702 10.611,9.849 10.949,9.894 11.144 C 10.061 11.881,10.016 12.407,9.752 12.803 C 9.664 12.935,9.511 13.105,9.412 13.180 C 8.516 13.864,7.198 13.342,7.039 12.240 C 6.967 11.745,6.923 11.588,6.808 11.421 C 6.459 10.917,5.718 10.867,5.285 11.317 C 4.886 11.732,4.458 12.574,4.227 13.400 C 3.649 15.459,4.212 17.985,5.674 19.900 C 5.933 20.239,6.606 20.925,6.960 21.211 C 8.378 22.357,10.190 23.000,12.000 23.000 C 13.810 23.000,15.622 22.357,17.040 21.211 C 17.394 20.925,18.067 20.239,18.326 19.900 C 19.467 18.406,20.063 16.556,19.988 14.742 C 19.943 13.669,19.712 12.789,19.220 11.820 C 18.645 10.687,17.891 9.777,16.720 8.802 C 15.455 7.750,14.595 6.697,13.898 5.348 C 13.467 4.514,13.188 3.747,12.999 2.880 C 12.904 2.446,12.667 2.168,12.295 2.057 C 12.064 1.987,11.866 1.987,11.670 2.057 M11.658 5.295 C 12.433 7.176,13.675 8.859,15.280 10.201 C 15.988 10.794,16.362 11.160,16.735 11.625 C 17.682 12.806,18.087 14.063,17.967 15.448 C 17.912 16.079,17.838 16.452,17.671 16.940 C 16.988 18.944,15.291 20.428,13.160 20.885 C 12.554 21.015,11.446 21.015,10.840 20.885 C 7.966 20.269,5.984 17.823,6.004 14.920 C 6.007 14.495,6.026 14.480,6.282 14.699 C 7.199 15.486,8.607 15.712,9.764 15.258 C 10.745 14.874,11.508 14.061,11.833 13.054 C 11.965 12.646,12.014 12.236,11.989 11.728 C 11.946 10.821,11.785 10.293,11.211 9.165 C 10.682 8.125,10.596 7.874,10.571 7.300 C 10.547 6.759,10.612 6.452,10.856 5.942 C 10.995 5.652,11.478 4.901,11.505 4.932 C 11.508 4.937,11.577 5.100,11.658 5.295 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FlameIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Flame = FlameIcon;