WiFi 1 icon
Used in wifi connection scenarios. The WiFi 1 icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the WiFi 1 icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { Wifi124Regular, Wifi124Filled } from "@fluentui/react-icons";
export function Example() {
return <Wifi124Regular aria-label="WiFi 1" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_wifi_1_24_regular.svg" width="24" height="24" alt="WiFi 1"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.7449 10.7506C18.3357 11.3414 18.8472 12.058 19.2369 12.8199C19.4255 13.1886 19.2795 13.6405 18.9107 13.8291C18.5419 14.0177 18.09 13.8717 17.9014 13.5029C17.5811 12.8766 17.1608 12.2878 16.6843 11.8112C14.1216 9.24857 9.96674 9.24857 7.40409 11.8112C6.90627 12.309 6.50186 12.8688 6.1905 13.4844C6.00354 13.854 5.55234 14.0021 5.18272 13.8151C4.8131 13.6281 4.66503 13.1769 4.85198 12.8073C5.23479 12.0505 5.73283 11.3612 6.34343 10.7506C9.49187 7.60212 14.5965 7.60212 17.7449 10.7506ZM15.6431 13.8194C16.0907 14.267 16.4589 14.8167 16.7152 15.4016C16.8814 15.781 16.7087 16.2233 16.3293 16.3895C15.9499 16.5558 15.5076 16.383 15.3413 16.0036C15.1582 15.5858 14.8946 15.1922 14.5824 14.8801C13.1797 13.4773 10.9054 13.4773 9.50266 14.8801C9.19214 15.1906 8.94004 15.5688 8.75546 15.9906C8.58941 16.3701 8.14718 16.5431 7.76771 16.3771C7.38823 16.211 7.21521 15.7688 7.38125 15.3893C7.6387 14.8009 7.99509 14.2663 8.442 13.8194C10.4305 11.8309 13.6546 11.8309 15.6431 13.8194ZM20.4481 8.27868C20.9571 8.78773 21.4378 9.3693 21.8562 9.97556C22.0915 10.3165 22.0059 10.7836 21.665 11.0188C21.3241 11.2541 20.857 11.1685 20.6217 10.8276C20.2537 10.2944 19.8308 9.78273 19.3874 9.33934C15.3074 5.25928 8.69231 5.25928 4.61225 9.33934C4.19038 9.76121 3.77196 10.2728 3.39022 10.8231C3.15412 11.1634 2.68683 11.2479 2.34649 11.0118C2.00615 10.7757 1.92166 10.3084 2.15776 9.9681C2.58792 9.34803 3.06233 8.76794 3.55159 8.27868C8.21743 3.61284 15.7823 3.61284 20.4481 8.27868ZM13.0606 16.4391C13.6465 17.0249 13.6465 17.9748 13.0606 18.5607C12.4748 19.1465 11.5249 19.1465 10.9391 18.5607C10.3532 17.9748 10.3532 17.0249 10.9391 16.4391C11.5249 15.8532 12.4748 15.8532 13.0606 16.4391Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/wifi_1_24_regular.svg";Details
| Name | WiFi 1 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_wifi_1_24_regular.svg |
| Filled file | ic_fluent_wifi_1_24_filled.svg |
| React components | Wifi124Regular, Wifi124Filled |
| License | MIT (© Microsoft Corporation) |