@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.09 kB
JavaScript
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-wifi-high" 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.096 9.038 C 8.589 9.265,6.250 10.302,4.504 11.960 C 4.004 12.435,3.885 12.815,4.095 13.260 C 4.276 13.642,4.595 13.848,5.003 13.848 C 5.319 13.848,5.515 13.745,5.940 13.357 C 7.045 12.347,8.410 11.615,9.840 11.267 C 10.603 11.081,11.112 11.023,12.000 11.023 C 13.495 11.023,14.626 11.281,15.940 11.921 C 16.772 12.326,17.405 12.760,18.169 13.450 C 18.518 13.764,18.693 13.848,19.000 13.848 C 19.405 13.848,19.724 13.641,19.905 13.260 C 20.112 12.822,19.995 12.436,19.515 11.978 C 17.939 10.470,15.821 9.451,13.580 9.121 C 12.948 9.028,11.678 8.986,11.096 9.038 M11.321 14.046 C 10.280 14.155,9.231 14.579,8.360 15.244 C 7.699 15.749,7.512 16.013,7.512 16.444 C 7.512 16.877,7.793 17.255,8.205 17.378 C 8.465 17.455,8.534 17.455,8.785 17.381 C 8.920 17.341,9.080 17.240,9.282 17.068 C 9.659 16.748,9.893 16.589,10.231 16.423 C 10.843 16.123,11.287 16.023,12.000 16.023 C 13.068 16.023,13.837 16.318,14.718 17.068 C 14.920 17.240,15.080 17.341,15.215 17.381 C 15.466 17.455,15.535 17.455,15.795 17.378 C 16.207 17.255,16.488 16.877,16.488 16.444 C 16.488 16.013,16.301 15.749,15.640 15.244 C 14.396 14.294,12.905 13.881,11.321 14.046 M11.695 19.055 C 11.464 19.130,11.255 19.300,11.128 19.516 C 11.037 19.672,11.020 19.746,11.020 20.000 C 11.020 20.257,11.036 20.327,11.133 20.492 C 11.651 21.374,12.998 21.018,12.998 20.000 C 12.998 19.623,12.792 19.281,12.463 19.112 C 12.265 19.010,11.911 18.984,11.695 19.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const WifiHighIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const WifiHigh = WifiHighIcon;