Arrow Maximize Top Left Bottom Right icon

The Arrow Maximize 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 Maximize 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 { ArrowMaximizeTopLeftBottomRight24Regular, ArrowMaximizeTopLeftBottomRight24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_arrow_maximize_top_left_bottom_right_24_regular.svg" width="24" height="24" alt="Arrow Maximize 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="M12.25 4C12.6642 4 13 4.33579 13 4.75C13 5.16421 12.6642 5.5 12.25 5.5H6.56055L18.5 17.4395V11.75C18.5 11.3358 18.8358 11 19.25 11C19.6642 11 20 11.3358 20 11.75V19.25C20 19.6642 19.6642 20 19.25 20H11.75C11.3358 20 11 19.6642 11 19.25C11 18.8358 11.3358 18.5 11.75 18.5H17.4395L5.5 6.56055V12.25C5.5 12.6642 5.16421 13 4.75 13C4.33579 13 4 12.6642 4 12.25V4.75C4 4.33579 4.33579 4 4.75 4H12.25Z" 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_maximize_top_left_bottom_right_24_regular.svg";

Details

NameArrow Maximize Top Left Bottom Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_arrow_maximize_top_left_bottom_right_24_regular.svg
Filled fileic_fluent_arrow_maximize_top_left_bottom_right_24_filled.svg
React componentsArrowMaximizeTopLeftBottomRight24Regular, ArrowMaximizeTopLeftBottomRight24Filled
LicenseMIT (© Microsoft Corporation)

Related icons