WiFi 3 icon
Used in wifi connection scenarios. The WiFi 3 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 3 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 { Wifi324Regular, Wifi324Filled } from "@fluentui/react-icons";
export function Example() {
return <Wifi324Regular aria-label="WiFi 3" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_wifi_3_24_regular.svg" width="24" height="24" alt="WiFi 3"> 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.9392 16.4392C11.5251 15.8533 12.475 15.8533 13.0608 16.4392C13.6467 17.025 13.6467 17.9749 13.0608 18.5608C12.475 19.1466 11.5251 19.1466 10.9392 18.5608C10.3534 17.9749 10.3534 17.025 10.9392 16.4392ZM8.44219 13.8195C10.4307 11.831 13.6548 11.831 15.6433 13.8195C16.0909 14.2671 16.4591 14.8168 16.7154 15.4017C16.8816 15.7811 16.7089 16.2234 16.3295 16.3896C15.9501 16.5559 15.5078 16.3831 15.3415 16.0037C15.1584 15.5859 14.8948 15.1924 14.5826 14.8802C13.1799 13.4774 10.9056 13.4774 9.50285 14.8802C9.19234 15.1907 8.94023 15.5689 8.75565 15.9907C8.58961 16.3702 8.14738 16.5432 7.7679 16.3772C7.38842 16.2111 7.2154 15.7689 7.38145 15.3894C7.6389 14.801 7.99528 14.2664 8.44219 13.8195Z" 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_3_24_regular.svg";Details
| Name | WiFi 3 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_wifi_3_24_regular.svg |
| Filled file | ic_fluent_wifi_3_24_filled.svg |
| React components | Wifi324Regular, Wifi324Filled |
| License | MIT (© Microsoft Corporation) |