Box Dismiss icon

Used for shipping, production scenarios. The Box 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 Box 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 { BoxDismiss24Regular, BoxDismiss24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_box_dismiss_24_regular.svg" width="24" height="24" alt="Box 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="M10.5911 2.51301C11.4947 2.14671 12.5053 2.14671 13.4089 2.51301L20.9075 5.55298C21.5679 5.82071 22 6.46216 22 7.17477V12.8105C21.5557 12.3842 21.051 12.0204 20.5 11.7332V7.77292L12.7503 10.7651V13.0635C12.0581 13.8041 11.5371 14.7067 11.2503 15.7083V10.7638L3.5 7.74979V16.8275C3.5 16.9293 3.56173 17.0209 3.65607 17.0592L11.1547 20.0991C11.1863 20.112 11.2183 20.1241 11.2503 20.1354V19.2936C11.5098 20.1998 11.961 21.0249 12.5572 21.7224C11.898 21.8214 11.2187 21.7437 10.5911 21.4892L3.09252 18.4493C2.43211 18.1815 2 17.5401 2 16.8275V7.17477C2 6.46216 2.43211 5.82071 3.09252 5.55298L10.5911 2.51301ZM12.8453 3.90312C12.3032 3.68334 11.6968 3.68334 11.1547 3.90312L9.24097 4.67894L16.7678 7.60604L19.437 6.57542L12.8453 3.90312ZM14.6911 8.40787L7.21472 5.50039L4.59029 6.56435L12.0013 9.44642L14.6911 8.40787ZM23 17.501C23 20.5385 20.5376 23.001 17.5 23.001C14.4624 23.001 12 20.5385 12 17.501C12 14.4634 14.4624 12.001 17.5 12.001C20.5376 12.001 23 14.4634 23 17.501ZM15.8536 15.1474C15.6583 14.9522 15.3417 14.9522 15.1464 15.1474C14.9512 15.3427 14.9512 15.6593 15.1464 15.8545L16.7929 17.501L15.1464 19.1474C14.9512 19.3427 14.9512 19.6593 15.1464 19.8545C15.3417 20.0498 15.6583 20.0498 15.8536 19.8545L17.5 18.2081L19.1464 19.8545C19.3417 20.0498 19.6583 20.0498 19.8536 19.8545C20.0488 19.6593 20.0488 19.3427 19.8536 19.1474L18.2071 17.501L19.8536 15.8545C20.0488 15.6593 20.0488 15.3427 19.8536 15.1474C19.6583 14.9522 19.3417 14.9522 19.1464 15.1474L17.5 16.7939L15.8536 15.1474Z" 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/box_dismiss_24_regular.svg";

Details

NameBox Dismiss
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_box_dismiss_24_regular.svg
Filled fileic_fluent_box_dismiss_24_filled.svg
React componentsBoxDismiss24Regular, BoxDismiss24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

packageshippingcargoproduction

Related icons