Tab Desktop Link icon
Used in large screen browser tab scenarios. Contains option variants. The Tab Desktop Link 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 Tab Desktop Link 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 { TabDesktopLink24Regular, TabDesktopLink24Filled } from "@fluentui/react-icons";
export function Example() {
return <TabDesktopLink24Regular aria-label="Tab Desktop Link" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tab_desktop_link_24_regular.svg" width="24" height="24" alt="Tab Desktop Link"> 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="M5.75 3C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H11.3328C11.1472 20.5319 11.0338 20.0273 11.0065 19.5H5.75C5.05964 19.5 4.5 18.9404 4.5 18.25V5.75C4.5 5.05964 5.05964 4.5 5.75 4.5H11V5.75C11 6.99264 12.0074 8 13.25 8H19.5V14.5065C20.0273 14.5338 20.5319 14.6472 21 14.8328V5.75C21 4.23122 19.7688 3 18.25 3H5.75ZM19.5 6.5H13.25C12.8358 6.5 12.5 6.16421 12.5 5.75V4.5H18.25C18.9404 4.5 19.5 5.05964 19.5 5.75V6.5ZM23 19.25C23 17.1789 21.3211 15.5 19.25 15.5L19.1482 15.5068C18.7822 15.5565 18.5 15.8703 18.5 16.25C18.5 16.6642 18.8358 17 19.25 17L19.404 17.0052C20.5748 17.0844 21.5 18.0591 21.5 19.25C21.5 20.4926 20.4926 21.5 19.25 21.5L19.2466 21.5046L19.1448 21.5119C18.779 21.5633 18.4983 21.8783 18.5 22.258C18.5019 22.6722 18.8392 23.0065 19.2534 23.0046V23L19.4523 22.9948C21.4276 22.8913 23 21.2543 23 19.25ZM16.5 16.25C16.5 15.8358 16.1642 15.5 15.75 15.5L15.5508 15.5052C13.5724 15.6087 12 17.2457 12 19.25C12 21.3211 13.6789 23 15.75 23L15.8518 22.9932C16.2178 22.9435 16.5 22.6297 16.5 22.25C16.5 21.8358 16.1642 21.5 15.75 21.5L15.596 21.4948C14.4252 21.4156 13.5 20.4409 13.5 19.25C13.5 18.0074 14.5074 17 15.75 17L15.8518 16.9932C16.2178 16.9435 16.5 16.6297 16.5 16.25ZM20 19.25C20 18.8358 19.6642 18.5 19.25 18.5H15.75L15.6482 18.5068C15.2822 18.5565 15 18.8703 15 19.25C15 19.6642 15.3358 20 15.75 20H19.25L19.3518 19.9932C19.7178 19.9435 20 19.6297 20 19.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/tab_desktop_link_24_regular.svg";Details
| Name | Tab Desktop Link |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_tab_desktop_link_24_regular.svg |
| Filled file | ic_fluent_tab_desktop_link_24_filled.svg |
| React components | TabDesktopLink24Regular, TabDesktopLink24Filled |
| License | MIT (© Microsoft Corporation) |