Arrow Minimize Top Left Bottom Right icon

The Arrow Minimize Top Left Bottom Right 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 Arrow Minimize Top Left Bottom Right 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 { ArrowMinimizeTopLeftBottomRight24Regular, ArrowMinimizeTopLeftBottomRight24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ArrowMinimizeTopLeftBottomRight24Regular aria-label="Arrow Minimize Top Left Bottom Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_arrow_minimize_top_left_bottom_right_24_regular.svg" width="24" height="24" alt="Arrow Minimize Top Left Bottom Right">

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="M21.25 13C21.6642 13 22 13.3358 22 13.75C22 14.1642 21.6642 14.5 21.25 14.5H15.5605L21.7803 20.7197C22.0732 21.0126 22.0732 21.4874 21.7803 21.7803C21.4874 22.0732 21.0126 22.0732 20.7197 21.7803L14.5 15.5605V21.25C14.5 21.6642 14.1642 22 13.75 22C13.3358 22 13 21.6642 13 21.25V13.75C13 13.3358 13.3358 13 13.75 13H21.25ZM10.25 2C10.6642 2 11 2.33579 11 2.75V10.25C11 10.6642 10.6642 11 10.25 11H2.75C2.33579 11 2 10.6642 2 10.25C2 9.83579 2.33579 9.5 2.75 9.5H8.43945L2.21973 3.28027C1.92683 2.98738 1.92683 2.51262 2.21973 2.21973C2.51262 1.92683 2.98738 1.92683 3.28027 2.21973L9.5 8.43945V2.75C9.5 2.33579 9.83579 2 10.25 2Z" 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/arrow_minimize_top_left_bottom_right_24_regular.svg";

Details

NameArrow Minimize Top Left Bottom Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_arrow_minimize_top_left_bottom_right_24_regular.svg
Filled fileic_fluent_arrow_minimize_top_left_bottom_right_24_filled.svg
React componentsArrowMinimizeTopLeftBottomRight24Regular, ArrowMinimizeTopLeftBottomRight24Filled
LicenseMIT (© Microsoft Corporation)

Related icons