Desk Multiple icon

The Desk 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.

Regular (outlined)

SVG

Filled

SVG

Use the Desk 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 { DeskMultiple24Regular, DeskMultiple24Filled } from "@fluentui/react-icons";

export function Example() {
  return <DeskMultiple24Regular aria-label="Desk Multiple" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_desk_multiple_24_regular.svg" width="24" height="24" alt="Desk 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="M4.62891 5C4.93778 4.12611 5.77121 3.5 6.75088 3.5H17.2509C19.8742 3.5 22.0009 5.62665 22.0009 8.25V16.75C22.0009 17.1642 21.6651 17.5 21.2509 17.5C20.8489 17.5 20.5208 17.1838 20.5018 16.7866V8.25C20.5018 6.45507 19.0467 5 17.2518 5H4.62891ZM2 8.25C2 7.00736 3.00736 6 4.25 6H17.25C18.4926 6 19.5 7.00736 19.5 8.25V19.25C19.5 19.6642 19.1642 20 18.75 20C18.3358 20 18 19.6642 18 19.25V11.5H11V17.75C11 18.9926 9.99264 20 8.75 20H4.25C3.00736 20 2 18.9926 2 17.75V8.25ZM9.5 11.5H3.5V17.75C3.5 18.1642 3.83579 18.5 4.25 18.5H8.75C9.16421 18.5 9.5 18.1642 9.5 17.75V11.5ZM3.5 10H18V8.25C18 7.83579 17.6642 7.5 17.25 7.5H4.25C3.83579 7.5 3.5 7.83579 3.5 8.25V10ZM5.75 13C5.33579 13 5 13.3358 5 13.75C5 14.1642 5.33579 14.5 5.75 14.5H7.25C7.66421 14.5 8 14.1642 8 13.75C8 13.3358 7.66421 13 7.25 13H5.75Z" 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/desk_multiple_24_regular.svg";

Details

NameDesk Multiple
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_desk_multiple_24_regular.svg
Filled fileic_fluent_desk_multiple_24_filled.svg
React componentsDeskMultiple24Regular, DeskMultiple24Filled
LicenseMIT (© Microsoft Corporation)

Related icons