UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.52 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-wifi-low" 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.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 WifiLowIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const WifiLow = WifiLowIcon;