UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.13 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-house-wifi" 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.490 1.044 C 11.161 1.099,10.805 1.230,10.504 1.408 C 10.332 1.509,8.853 2.749,6.604 4.677 C 4.611 6.386,2.910 7.855,2.824 7.942 C 2.621 8.148,2.355 8.558,2.227 8.862 C 1.991 9.425,1.996 9.280,2.009 14.660 L 2.020 19.580 2.114 19.860 C 2.446 20.851,3.184 21.582,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.816 21.582,21.554 20.851,21.886 19.860 L 21.980 19.580 21.991 14.660 C 22.004 9.293,22.010 9.453,21.776 8.878 C 21.649 8.566,21.386 8.156,21.176 7.942 C 20.848 7.608,13.721 1.533,13.509 1.407 C 12.946 1.071,12.169 0.931,11.490 1.044 M12.425 3.092 C 12.492 3.127,14.178 4.553,16.172 6.262 C 19.266 8.913,19.810 9.395,19.888 9.554 L 19.980 9.740 19.992 14.380 C 20.001 17.644,19.992 19.081,19.961 19.224 C 19.905 19.484,19.724 19.731,19.486 19.871 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.415 19.813,4.283 19.700,4.224 19.621 C 3.987 19.312,3.998 19.561,4.009 14.439 L 4.020 9.740 4.111 9.554 C 4.189 9.396,4.733 8.914,7.789 6.294 C 9.761 4.603,11.410 3.194,11.454 3.163 C 11.691 2.994,12.167 2.959,12.425 3.092 M11.440 8.024 C 9.796 8.165,8.526 8.570,7.267 9.356 C 6.665 9.731,6.256 10.059,6.138 10.259 C 5.755 10.913,6.254 11.760,7.022 11.760 C 7.236 11.760,7.459 11.657,7.828 11.389 C 8.275 11.064,8.579 10.883,9.048 10.661 C 10.612 9.920,12.519 9.808,14.199 10.359 C 14.884 10.584,15.523 10.917,16.172 11.389 C 16.366 11.530,16.597 11.671,16.687 11.702 C 17.353 11.937,18.061 11.366,17.988 10.653 C 17.955 10.337,17.811 10.122,17.441 9.841 C 16.216 8.908,14.790 8.314,13.264 8.100 C 12.842 8.040,11.766 7.996,11.440 8.024 M11.185 12.060 C 10.430 12.183,9.706 12.487,9.061 12.951 C 8.802 13.137,8.721 13.222,8.627 13.406 C 8.298 14.049,8.673 14.754,9.400 14.858 C 9.647 14.894,9.895 14.810,10.212 14.584 C 10.514 14.369,10.965 14.154,11.280 14.075 C 11.601 13.995,12.435 14.004,12.760 14.091 C 13.078 14.176,13.523 14.390,13.762 14.572 C 14.076 14.812,14.196 14.858,14.500 14.858 C 14.829 14.858,15.034 14.768,15.239 14.535 C 15.419 14.330,15.491 14.140,15.490 13.875 C 15.487 13.449,15.304 13.198,14.707 12.800 C 14.204 12.465,13.662 12.240,13.020 12.098 C 12.617 12.009,11.625 11.988,11.185 12.060 M11.695 16.055 C 11.464 16.130,11.255 16.300,11.128 16.516 C 11.037 16.672,11.020 16.746,11.020 17.000 C 11.020 17.257,11.036 17.327,11.133 17.492 C 11.651 18.374,12.998 18.018,12.998 17.000 C 12.998 16.623,12.792 16.281,12.463 16.112 C 12.265 16.010,11.911 15.984,11.695 16.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const HouseWifiIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const HouseWifi = HouseWifiIcon;