Desktop Off icon
Used to represent stationary work stations, large screen devices, office, and actions in general computer scenarios. The Desktop Off 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 Desktop Off 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 { DesktopOff24Regular, DesktopOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <DesktopOff24Regular aria-label="Desktop Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_desktop_off_24_regular.svg" width="24" height="24" alt="Desktop Off"> 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="M3.28034 2.21968C2.98745 1.92678 2.51257 1.92677 2.21968 2.21966C1.92678 2.51255 1.92677 2.98743 2.21966 3.28032L2.62875 3.68942C2.2394 4.09392 2 4.64379 2 5.24957V15.7518L2.00519 15.9059C2.08436 17.0767 3.05914 18.0018 4.25 18.0018L8.499 18.0016V20.4996L6.75 20.5L6.64823 20.5069C6.28215 20.5565 6 20.8703 6 21.25C6 21.6642 6.33579 22 6.75 22H17.25L17.3518 21.9932C17.7178 21.9435 18 21.6297 18 21.25C18 20.8358 17.6642 20.5 17.25 20.5L15.499 20.4996V18.0016L16.9407 18.0017L20.7194 21.7805C21.0123 22.0734 21.4872 22.0734 21.7801 21.7805C22.073 21.4876 22.073 21.0127 21.7801 20.7198L3.28034 2.21968ZM15.4409 16.5018H4.25L4.14823 16.495C3.78215 16.4453 3.5 16.1315 3.5 15.7518V5.24957L3.50685 5.1478C3.52739 4.9964 3.59311 4.85935 3.68999 4.75068L15.4409 16.5018ZM19.7488 16.5018H19.6835L20.8793 17.6977C21.5488 17.3078 21.9988 16.5824 21.9988 15.7518V5.24957L21.9936 5.09552C21.9145 3.92473 20.9397 2.99957 19.7488 2.99957H6.18154L7.68151 4.49957H19.7488L19.8506 4.50642C20.2167 4.55608 20.4988 4.86988 20.4988 5.24957V15.7518L20.492 15.8536C20.4423 16.2197 20.1285 16.5018 19.7488 16.5018ZM13.998 18.0016L13.999 20.5H9.999L9.998 18.0016H13.998Z" 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/desktop_off_24_regular.svg";Details
| Name | Desktop Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_desktop_off_24_regular.svg |
| Filled file | ic_fluent_desktop_off_24_filled.svg |
| React components | DesktopOff24Regular, DesktopOff24Filled |
| License | MIT (© Microsoft Corporation) |