Drawer Dismiss icon

The Drawer Dismiss 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 Drawer Dismiss 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 { DrawerDismiss24Regular, DrawerDismiss24Filled } from "@fluentui/react-icons";

export function Example() {
  return <DrawerDismiss24Regular aria-label="Drawer Dismiss" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_drawer_dismiss_24_regular.svg" width="24" height="24" alt="Drawer Dismiss">

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="M22 6.5C22 9.53757 19.5376 12 16.5 12C13.4624 12 11 9.53757 11 6.5C11 3.46243 13.4624 1 16.5 1C19.5376 1 22 3.46243 22 6.5ZM14.8536 4.14645C14.6583 3.95118 14.3417 3.95118 14.1464 4.14645C13.9512 4.34171 13.9512 4.65829 14.1464 4.85355L15.7929 6.5L14.1464 8.14645C13.9512 8.34171 13.9512 8.65829 14.1464 8.85355C14.3417 9.04882 14.6583 9.04882 14.8536 8.85355L16.5 7.20711L18.1464 8.85355C18.3417 9.04882 18.6583 9.04882 18.8536 8.85355C19.0488 8.65829 19.0488 8.34171 18.8536 8.14645L17.2071 6.5L18.8536 4.85355C19.0488 4.65829 19.0488 4.34171 18.8536 4.14645C18.6583 3.95118 18.3417 3.95118 18.1464 4.14645L16.5 5.79289L14.8536 4.14645ZM21 11.1904C20.5557 11.6168 20.051 11.9806 19.5 12.2678V14H14.9423C14.56 14 14.25 14.31 14.25 14.6923V14.75C14.25 15.9926 13.2426 17 12 17C10.7574 17 9.75 15.9926 9.75 14.75V14.6923C9.75 14.31 9.44004 14 9.05769 14H4.5V9.5H10.7322C10.4876 9.03068 10.2986 8.52777 10.1739 8H4.5V7.25C4.5 6.2835 5.2835 5.5 6.25 5.5H10.0764C10.1572 4.97679 10.3004 4.47417 10.4982 4H6.25C4.45507 4 3 5.45507 3 7.25V18.75C3 20.5449 4.45508 22 6.25 22H17.75C19.5449 22 21 20.5449 21 18.75V11.1904ZM19.5 15.5V18.75C19.5 19.7165 18.7165 20.5 17.75 20.5H6.25C5.2835 20.5 4.5 19.7165 4.5 18.75V15.5H8.32501C8.67247 17.2117 10.1858 18.5 12 18.5C13.8142 18.5 15.3275 17.2117 15.675 15.5H19.5Z" 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/drawer_dismiss_24_regular.svg";

Details

NameDrawer Dismiss
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_drawer_dismiss_24_regular.svg
Filled fileic_fluent_drawer_dismiss_24_filled.svg
React componentsDrawerDismiss24Regular, DrawerDismiss24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

collectionanalog

Related icons