Tablet Laptop icon
Used to represent tablet and laptop scenarios. The Tablet Laptop 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 Tablet Laptop 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 { TabletLaptop24Regular, TabletLaptop24Filled } from "@fluentui/react-icons";
export function Example() {
return <TabletLaptop24Regular aria-label="Tablet Laptop" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tablet_laptop_24_regular.svg" width="24" height="24" alt="Tablet Laptop"> 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="M21.2494 16.4998C21.6636 16.4998 21.9994 16.8356 21.9994 17.2498C21.9994 17.6295 21.7172 17.9433 21.3511 17.993L21.2494 17.9998L16.5 17.9996V16.4996L21.2494 16.4998ZM4 10H5.49924L5.5 6.75034C5.5 6.61226 5.61193 6.50034 5.75 6.50034H18.25C18.3881 6.50034 18.5 6.61226 18.5 6.75034V14.2506C18.5 14.3887 18.3881 14.5006 18.25 14.5006L16.5 14.5006V16.0006L18.25 16.0006C19.2165 16.0006 20 15.2171 20 14.2506V6.75034C20 5.78384 19.2165 5.00034 18.25 5.00034H5.75C4.7835 5.00034 4 5.78384 4 6.75034V10ZM7.75 17C7.33579 17 7 17.3358 7 17.75C7 18.1642 7.33579 18.5 7.75 18.5H10.25C10.6642 18.5 11 18.1642 11 17.75C11 17.3358 10.6642 17 10.25 17H7.75ZM4.25 11C3.00736 11 2 12.0074 2 13.25V18.75C2 19.9926 3.00736 21 4.25 21H13.25C14.4926 21 15.5 19.9926 15.5 18.75V13.25C15.5 12.0074 14.4926 11 13.25 11H4.25ZM3.5 13.25C3.5 12.8358 3.83579 12.5 4.25 12.5H13.25C13.6642 12.5 14 12.8358 14 13.25V18.75C14 19.1642 13.6642 19.5 13.25 19.5H4.25C3.83579 19.5 3.5 19.1642 3.5 18.75V13.25Z" 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/tablet_laptop_24_regular.svg";Details
| Name | Tablet Laptop |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_tablet_laptop_24_regular.svg |
| Filled file | ic_fluent_tablet_laptop_24_filled.svg |
| React components | TabletLaptop24Regular, TabletLaptop24Filled |
| License | MIT (© Microsoft Corporation) |