Tablet icon
Used to represent touch tablet devices. The Tablet 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 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 { Tablet24Regular, Tablet24Filled } from "@fluentui/react-icons";
export function Example() {
return <Tablet24Regular aria-label="Tablet" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tablet_24_regular.svg" width="24" height="24" alt="Tablet"> 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="M19.7488 4C20.9915 4 21.9988 5.00736 21.9988 6.25V17.7523C21.9988 18.9949 20.9915 20.0023 19.7488 20.0023H4.25C3.00736 20.0023 2 18.9949 2 17.7523V6.25C2 5.00736 3.00736 4 4.25 4H19.7488ZM19.7488 5.5H4.25C3.83579 5.5 3.5 5.83579 3.5 6.25V17.7523C3.5 18.1665 3.83579 18.5023 4.25 18.5023H19.7488C20.163 18.5023 20.4988 18.1665 20.4988 17.7523V6.25C20.4988 5.83579 20.163 5.5 19.7488 5.5ZM10.25 15.5004H13.75C14.1642 15.5004 14.5 15.8362 14.5 16.2504C14.5 16.6301 14.2178 16.9439 13.8518 16.9936L13.75 17.0004H10.25C9.83579 17.0004 9.5 16.6647 9.5 16.2504C9.5 15.8707 9.78215 15.5569 10.1482 15.5073L10.25 15.5004H13.75H10.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_24_regular.svg";Details
| Name | Tablet |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_tablet_24_regular.svg |
| Filled file | ic_fluent_tablet_24_filled.svg |
| React components | Tablet24Regular, Tablet24Filled |
| License | MIT (© Microsoft Corporation) |