UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.08 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-wind" 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="M10.485 3.042 C 9.947 3.139,9.232 3.499,9.015 3.783 C 8.642 4.272,8.778 4.956,9.311 5.269 C 9.473 5.364,9.544 5.380,9.803 5.380 C 10.081 5.380,10.126 5.368,10.343 5.236 C 10.756 4.985,10.986 4.945,11.340 5.066 C 11.745 5.204,12.032 5.653,11.991 6.083 C 11.953 6.478,11.647 6.859,11.289 6.958 C 11.190 6.986,9.578 7.000,6.516 7.000 C 1.497 7.000,1.682 6.992,1.382 7.221 C 1.302 7.282,1.187 7.415,1.128 7.516 C 1.037 7.672,1.020 7.746,1.020 8.000 C 1.020 8.256,1.036 8.328,1.131 8.489 C 1.256 8.702,1.449 8.864,1.670 8.943 C 1.792 8.986,2.703 8.997,6.552 8.998 C 10.712 9.000,11.321 8.992,11.592 8.937 C 13.044 8.639,14.077 7.312,13.988 5.860 C 13.959 5.402,13.804 4.864,13.591 4.491 C 13.223 3.844,12.511 3.301,11.764 3.099 C 11.484 3.023,10.771 2.991,10.485 3.042 M18.980 6.044 C 18.204 6.156,17.491 6.534,16.948 7.120 C 16.615 7.480,16.507 7.697,16.509 8.000 C 16.515 8.582,17.016 9.047,17.575 8.989 C 17.871 8.958,18.056 8.852,18.360 8.537 C 18.539 8.352,18.701 8.229,18.880 8.144 C 19.114 8.033,19.177 8.020,19.500 8.023 C 19.813 8.026,19.894 8.042,20.120 8.147 C 20.442 8.297,20.686 8.541,20.852 8.879 C 20.968 9.114,20.980 9.172,20.979 9.503 C 20.978 9.830,20.965 9.893,20.849 10.128 C 20.694 10.442,20.407 10.724,20.089 10.873 L 19.860 10.980 10.800 11.000 C 3.669 11.016,1.716 11.031,1.627 11.070 C 1.428 11.158,1.239 11.328,1.128 11.516 C 1.037 11.672,1.020 11.746,1.020 12.000 C 1.020 12.257,1.036 12.327,1.133 12.492 C 1.261 12.710,1.502 12.901,1.723 12.961 C 1.823 12.988,4.931 12.998,10.986 12.990 C 19.723 12.980,20.111 12.976,20.360 12.905 C 21.889 12.469,22.914 11.200,22.989 9.652 C 23.012 9.174,22.975 8.884,22.832 8.440 C 22.308 6.808,20.684 5.799,18.980 6.044 M1.695 15.057 C 1.465 15.129,1.256 15.299,1.128 15.516 C 1.037 15.672,1.020 15.746,1.020 16.000 C 1.020 16.256,1.036 16.328,1.131 16.489 C 1.256 16.702,1.449 16.864,1.670 16.943 C 1.793 16.987,2.939 16.997,7.983 16.998 C 14.904 17.000,14.379 16.977,14.701 17.299 C 15.168 17.766,15.065 18.530,14.489 18.869 C 14.328 18.964,14.256 18.980,13.999 18.980 C 13.713 18.980,13.683 18.971,13.400 18.800 C 13.116 18.628,13.088 18.620,12.800 18.621 C 12.544 18.622,12.469 18.639,12.310 18.732 C 11.822 19.018,11.658 19.645,11.949 20.115 C 12.162 20.460,12.780 20.807,13.408 20.937 C 14.919 21.247,16.431 20.338,16.861 18.860 C 17.340 17.213,16.446 15.606,14.764 15.091 C 14.557 15.027,14.063 15.022,8.200 15.013 C 3.080 15.006,1.828 15.015,1.695 15.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const WindIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Wind = WindIcon;