Tab Desktop Multiple icon
Used in large screen browser tab scenarios. Contains option variants. The Tab Desktop Multiple 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 Multiple 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 { TabDesktopMultiple24Regular, TabDesktopMultiple24Filled } from "@fluentui/react-icons";
export function Example() {
return <TabDesktopMultiple24Regular aria-label="Tab Desktop Multiple" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tab_desktop_multiple_24_regular.svg" width="24" height="24" alt="Tab Desktop Multiple"> 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="M9.24834 22C7.53753 22 6.13547 20.6781 6.00781 19H7.51606C7.63737 19.8481 8.36672 20.5 9.24834 20.5H17.2483C19.0433 20.5 20.4983 19.0449 20.4983 17.25V9.25C20.4983 8.36838 19.8464 7.63903 18.9983 7.51772V6.00947C20.6765 6.13713 21.9983 7.53919 21.9983 9.25V17.25C21.9983 19.8734 19.8717 22 17.2483 22H9.24834ZM2 5.25C2 3.45507 3.45507 2 5.25 2H14.75C16.5449 2 18 3.45507 18 5.25V14.75C18 16.5449 16.5449 18 14.75 18H5.25C3.45507 18 2 16.5449 2 14.75V5.25ZM5.25 3.5C4.2835 3.5 3.5 4.2835 3.5 5.25V14.75C3.5 15.7165 4.2835 16.5 5.25 16.5H14.75C15.7165 16.5 16.5 15.7165 16.5 14.75V7.5H10.75C9.50736 7.5 8.5 6.49264 8.5 5.25V3.5H5.25ZM10 3.5V5.25C10 5.66421 10.3358 6 10.75 6H16.5V5.25C16.5 4.2835 15.7165 3.5 14.75 3.5H10Z" 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_multiple_24_regular.svg";Details
| Name | Tab Desktop Multiple |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_tab_desktop_multiple_24_regular.svg |
| Filled file | ic_fluent_tab_desktop_multiple_24_filled.svg |
| React components | TabDesktopMultiple24Regular, TabDesktopMultiple24Filled |
| License | MIT (© Microsoft Corporation) |