Server Surface icon
Used to represent a server environments. The Server Surface 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_server_surface_16_regular.svg
Server Surface icon in React
npm install @fluentui/react-icons
import { ServerSurface16Regular } from "@fluentui/react-icons";
export function Example() {
return <ServerSurface16Regular aria-label="Server Surface" />;
}Use the Server Surface 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 { ServerSurface16Regular, ServerSurface16Filled } from "@fluentui/react-icons";
export function Example() {
return <ServerSurface16Regular aria-label="Server Surface" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_server_surface_16_regular.svg" width="16" height="16" alt="Server Surface"> 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="m13.97 14.32-1.5-4A.5.5 0 0 0 12 10h-1V2.5A1.5 1.5 0 0 0 9.5 1h-4A1.5 1.5 0 0 0 4 2.5V10H3a.5.5 0 0 0-.47.32l-1.5 4a.5.5 0 0 0 .47.68h12a.5.5 0 0 0 .47-.68M5 2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zM2.22 14l1.13-3H4v.5A1.5 1.5 0 0 0 5.5 13h4a1.5 1.5 0 0 0 1.5-1.5V11h.65l1.13 3zM6 4.5a.5.5 0 0 1 .5-.5h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5m0 4a.5.5 0 0 1 .5-.5h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5"/></svg>Details
| Name | Server Surface |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_server_surface_16_regular.svg |
| Filled file | ic_fluent_server_surface_16_filled.svg |
| React (Regular) | ServerSurface16Regular |
| React (Filled) | ServerSurface16Filled |
| License | MIT (© Microsoft Corporation) |