WiFi 4 icon
Used in wifi connection scenarios. The WiFi 4 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 4 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 { Wifi424Regular, Wifi424Filled } from "@fluentui/react-icons";
export function Example() {
return <Wifi424Regular aria-label="WiFi 4" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_wifi_4_24_regular.svg" width="24" height="24" alt="WiFi 4"> 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="M10.9394 18.561C11.5253 19.1468 12.4751 19.1468 13.061 18.561C13.6468 17.9751 13.6468 17.0253 13.061 16.4394C12.4751 15.8535 11.5253 15.8535 10.9394 16.4394C10.3535 17.0253 10.3535 17.9751 10.9394 18.561Z" 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_4_24_regular.svg";Details
| Name | WiFi 4 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_wifi_4_24_regular.svg |
| Filled file | ic_fluent_wifi_4_24_filled.svg |
| React components | Wifi424Regular, Wifi424Filled |
| License | MIT (© Microsoft Corporation) |