Laptop Shield icon
Used in security on laptop scenarios. The Laptop Shield icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. 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_laptop_shield_16_regular.svg
Laptop Shield icon in React
npm install @fluentui/react-icons
import { LaptopShield16Regular } from "@fluentui/react-icons";
export function Example() {
return <LaptopShield16Regular aria-label="Laptop Shield" />;
}Use the Laptop Shield 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 { LaptopShield16Regular, LaptopShield16Filled } from "@fluentui/react-icons";
export function Example() {
return <LaptopShield16Regular aria-label="Laptop Shield" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_laptop_shield_20_regular.svg" width="20" height="20" alt="Laptop Shield"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M15.12 9.96c.2-.19.56-.19.76 0 .5.49 1.48 1.26 2.68 1.41.24.04.44.22.44.44v2.11c0 2.84-2.78 3.87-3.39 4.06a.4.4 0 0 1-.22 0c-.6-.19-3.39-1.22-3.39-4.06v-2.1c0-.23.2-.41.44-.45a5 5 0 0 0 2.68-1.4m-4 5.04q.13.54.34 1H2.5a.5.5 0 0 1 0-1zM15 5a2 2 0 0 1 2 2v2.6l-.24-.19-.19-.17-.11-.1q-.21-.16-.46-.24V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h6v1H5a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2z"/></svg>Details
| Name | Laptop Shield |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_laptop_shield_20_regular.svg |
| Filled file | ic_fluent_laptop_shield_20_filled.svg |
| React (Regular) | LaptopShield16Regular, LaptopShield20Regular |
| React (Filled) | LaptopShield16Filled, LaptopShield20Filled |
| License | MIT (© Microsoft Corporation) |