Laptop Off icon
The Laptop 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 Laptop 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 { LaptopOff24Regular, LaptopOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <LaptopOff24Regular aria-label="Laptop Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_laptop_off_24_regular.svg" width="24" height="24" alt="Laptop 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="M2.21973 2.21973C2.51262 1.92684 2.98738 1.92684 3.28027 2.21973L21.7803 20.7197C22.073 21.0126 22.0729 21.4874 21.7803 21.7803C21.4874 22.0731 21.0126 22.073 20.7197 21.7803L17.9395 19H2.75C2.33581 19 2.00003 18.6642 2 18.25C2 17.8358 2.33579 17.5 2.75 17.5H16.4395L14.9395 16H6.25C5.00738 16 4.00003 14.9926 4 13.75V6.25C4 5.9029 4.08042 5.57491 4.2207 5.28125L2.21973 3.28028C1.92685 2.98739 1.92687 2.51262 2.21973 2.21973ZM17.75 4C18.9926 4 20 5.00736 20 6.25V13.75C20 14.5815 19.5478 15.3059 18.877 15.6953L17.6816 14.5H17.75C18.1642 14.5 18.5 14.1642 18.5 13.75V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5H8.68164L7.18164 4H17.75ZM5.5 13.75C5.50003 14.1642 5.83581 14.5 6.25 14.5H13.4395L5.5 6.56055V13.75Z" 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/laptop_off_24_regular.svg";Details
| Name | Laptop Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_laptop_off_24_regular.svg |
| Filled file | ic_fluent_laptop_off_24_filled.svg |
| React components | LaptopOff24Regular, LaptopOff24Filled |
| License | MIT (© Microsoft Corporation) |