Extended Dock icon

#fluent-icon The Extended Dock 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 Extended Dock 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 { ExtendedDock24Regular, ExtendedDock24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ExtendedDock24Regular aria-label="Extended Dock" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_extended_dock_24_regular.svg" width="24" height="24" alt="Extended Dock">

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="M6.25 10.9974C7.2165 10.9974 8 11.7809 8 12.7474V15.2474C8 16.2139 7.2165 16.9974 6.25 16.9974H3.75C2.7835 16.9974 2 16.2139 2 15.2474V12.7474C2 11.7809 2.7835 10.9974 3.75 10.9974H6.25ZM13.25 10.9974C14.2165 10.9974 15 11.7809 15 12.7474V15.2474C15 16.2139 14.2165 16.9974 13.25 16.9974H10.75C9.7835 16.9974 9 16.2139 9 15.2474V12.7474C9 11.7809 9.7835 10.9974 10.75 10.9974H13.25ZM20.25 10.9974C21.2165 10.9974 22 11.7809 22 12.7474V15.2474C22 16.2139 21.2165 16.9974 20.25 16.9974H17.75C16.7835 16.9974 16 16.2139 16 15.2474V12.7474C16 11.7809 16.7835 10.9974 17.75 10.9974H20.25ZM6.25 12.4974H3.75C3.61193 12.4974 3.5 12.6094 3.5 12.7474V15.2474C3.5 15.3855 3.61193 15.4974 3.75 15.4974H6.25C6.38807 15.4974 6.5 15.3855 6.5 15.2474V12.7474C6.5 12.6094 6.38807 12.4974 6.25 12.4974ZM13.25 12.4974H10.75C10.6119 12.4974 10.5 12.6094 10.5 12.7474V15.2474C10.5 15.3855 10.6119 15.4974 10.75 15.4974H13.25C13.3881 15.4974 13.5 15.3855 13.5 15.2474V12.7474C13.5 12.6094 13.3881 12.4974 13.25 12.4974ZM20.25 12.4974H17.75C17.6119 12.4974 17.5 12.6094 17.5 12.7474V15.2474C17.5 15.3855 17.6119 15.4974 17.75 15.4974H20.25C20.3881 15.4974 20.5 15.3855 20.5 15.2474V12.7474C20.5 12.6094 20.3881 12.4974 20.25 12.4974ZM7.96967 7.71967L11.4697 4.21967C11.7332 3.95612 12.1448 3.92936 12.4383 4.14131L12.5226 4.21206L16.1253 7.71206C16.4224 8.00068 16.4293 8.47551 16.1407 8.77261C15.8783 9.04269 15.462 9.07292 15.1653 8.85934L15.0801 8.78794L12.0076 5.80305L9.03033 8.78033C8.73744 9.07322 8.26256 9.07322 7.96967 8.78033C7.7034 8.51406 7.6792 8.0974 7.89705 7.80379L7.96967 7.71967L11.4697 4.21967L7.96967 7.71967Z" 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/extended_dock_24_regular.svg";

Details

NameExtended Dock
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_extended_dock_24_regular.svg
Filled fileic_fluent_extended_dock_24_filled.svg
React componentsExtendedDock24Regular, ExtendedDock24Filled
LicenseMIT (© Microsoft Corporation)

Related icons