Network Adapter icon
Used to represent a network adapter for devices. The Network Adapter icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_network_adapter_16_regular.svg
Network Adapter icon in React
npm install @fluentui/react-icons
import { NetworkAdapter16Regular } from "@fluentui/react-icons";
export function Example() {
return <NetworkAdapter16Regular aria-label="Network Adapter" />;
}Use the Network Adapter 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 { NetworkAdapter16Regular, NetworkAdapter16Filled } from "@fluentui/react-icons";
export function Example() {
return <NetworkAdapter16Regular aria-label="Network Adapter" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_network_adapter_16_regular.svg" width="16" height="16" alt="Network Adapter"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M4 6.5v3a.5.5 0 1 1-1 0v-3a.5.5 0 1 1 1 0M6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5m3 0a.5.5 0 0 0-.5.5v3a.5.5 0 1 0 1 0v-3a.5.5 0 0 0-.5-.5m3 0a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5m2.5-.5v5a1.5 1.5 0 0 1-1.5 1.5H13v1.5a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5V12H2v1.5a.5.5 0 0 1-1 0V3H.5a.5.5 0 0 1 0-1H1a1 1 0 0 1 1 1v1h11.5A1.5 1.5 0 0 1 15 5.5M7 13h2v-1H7zm5-1h-2v1h2zm2-6.5a.5.5 0 0 0-.5-.5H2v6h11.5a.5.5 0 0 0 .5-.5z"/></svg>Details
| Name | Network Adapter |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_network_adapter_16_regular.svg |
| Filled file | ic_fluent_network_adapter_16_filled.svg |
| React (Regular) | NetworkAdapter16Regular |
| React (Filled) | NetworkAdapter16Filled |
| License | MIT (© Microsoft Corporation) |