Desktop Tag icon
The Desktop Tag icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. 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, 20 px
ic_fluent_desktop_tag_20_regular.svg
Desktop Tag icon in React
npm install @fluentui/react-icons
import { DesktopTag20Regular } from "@fluentui/react-icons";
export function Example() {
return <DesktopTag20Regular aria-label="Desktop Tag" />;
}Use the Desktop Tag 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 { DesktopTag20Regular, DesktopTag20Filled } from "@fluentui/react-icons";
export function Example() {
return <DesktopTag20Regular aria-label="Desktop Tag" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_desktop_tag_20_regular.svg" width="20" height="20" alt="Desktop Tag"> 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.38 11c.4 0 .8.16 1.08.45l3.1 3.14c.6.6.58 1.57-.02 2.15l-2.95 2.84a1.5 1.5 0 0 1-2.12-.03l-3.04-3.1a1.5 1.5 0 0 1-.43-1.06v-2.88c0-.83.68-1.51 1.51-1.51zM16 2a2 2 0 0 1 2 2v7.59l-.83-.85-.17-.15V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h6v1H8v2h2.59l.13.15.83.85H5.5a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2zm-2.25 11a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"/></svg>Details
| Name | Desktop Tag |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_desktop_tag_20_regular.svg |
| Filled file | ic_fluent_desktop_tag_20_filled.svg |
| React (Regular) | DesktopTag20Regular |
| React (Filled) | DesktopTag20Filled |
| License | MIT (© Microsoft Corporation) |