UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.77 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-cloud-lightning" 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="M8.260 2.044 C 6.592 2.216,5.124 2.832,3.851 3.893 C 2.388 5.113,1.422 6.833,1.094 8.800 C 0.997 9.382,0.997 10.664,1.094 11.220 C 1.291 12.354,1.717 13.472,2.283 14.341 C 3.047 15.516,4.204 16.551,5.417 17.148 C 5.759 17.316,5.795 17.325,6.047 17.309 C 6.733 17.263,7.157 16.634,6.937 15.989 C 6.848 15.729,6.638 15.535,6.177 15.286 C 4.521 14.393,3.444 12.898,3.075 10.980 C 2.993 10.554,3.004 9.470,3.096 8.980 C 3.404 7.325,4.276 5.977,5.643 5.040 C 7.654 3.663,10.343 3.664,12.360 5.043 C 13.464 5.797,14.202 6.753,14.661 8.020 C 14.833 8.496,14.883 8.593,15.026 8.725 C 15.298 8.978,15.298 8.978,16.760 9.004 C 18.272 9.031,18.445 9.057,19.039 9.355 C 19.449 9.560,19.717 9.763,20.065 10.130 C 20.542 10.632,20.822 11.188,20.940 11.866 C 21.142 13.025,20.833 14.055,20.028 14.906 C 19.485 15.479,18.873 15.811,18.115 15.941 C 17.909 15.977,17.671 16.035,17.587 16.070 C 17.377 16.159,17.104 16.473,17.040 16.699 C 16.898 17.207,17.210 17.783,17.703 17.921 C 18.200 18.060,19.379 17.758,20.220 17.276 C 21.596 16.487,22.525 15.220,22.885 13.640 C 22.987 13.196,23.026 12.292,22.963 11.827 C 22.669 9.624,21.138 7.833,19.027 7.223 C 18.478 7.064,18.245 7.036,17.297 7.012 L 16.414 6.989 16.244 6.620 C 15.885 5.838,15.406 5.140,14.781 4.488 C 13.610 3.267,12.100 2.448,10.454 2.141 C 9.776 2.015,8.909 1.977,8.260 2.044 M12.671 11.064 C 12.563 11.097,12.415 11.186,12.327 11.271 C 12.168 11.425,9.149 16.412,9.054 16.680 C 8.933 17.018,9.033 17.435,9.299 17.701 C 9.580 17.983,9.681 18.000,11.027 18.000 C 11.672 18.000,12.200 18.011,12.200 18.024 C 12.200 18.037,11.728 18.833,11.152 19.794 C 10.575 20.754,10.081 21.603,10.054 21.680 C 9.901 22.107,10.096 22.626,10.499 22.862 C 10.840 23.061,11.299 23.028,11.624 22.780 C 11.718 22.708,12.216 21.913,13.333 20.049 C 14.200 18.603,14.932 17.350,14.960 17.264 C 15.072 16.916,14.920 16.452,14.618 16.221 C 14.352 16.018,14.212 16.000,12.936 16.000 L 11.764 16.000 12.864 14.166 C 13.867 12.494,13.967 12.312,13.987 12.111 C 14.020 11.798,13.917 11.513,13.695 11.297 C 13.411 11.021,13.066 10.942,12.671 11.064 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CloudLightningIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CloudLightning = CloudLightningIcon;