Resize Large icon

Used in general resizing of content scenarios. The Resize Large 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 Resize Large 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 { ResizeLarge24Regular, ResizeLarge24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ResizeLarge24Regular aria-label="Resize Large" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_resize_large_24_regular.svg" width="24" height="24" alt="Resize Large">

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 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25V7.75C4.5 8.16421 4.16421 8.5 3.75 8.5C3.33579 8.5 3 8.16421 3 7.75V6.25C3 4.45507 4.45507 3 6.25 3H7.75C8.16421 3 8.5 3.33579 8.5 3.75C8.5 4.16421 8.16421 4.5 7.75 4.5H6.25ZM19.5 6.25C19.5 5.2835 18.7165 4.5 17.75 4.5L16.25 4.5C15.8358 4.5 15.5 4.16421 15.5 3.75C15.5 3.33579 15.8358 3 16.25 3H17.75C19.5449 3 21 4.45507 21 6.25V7.75C21 8.16421 20.6642 8.5 20.25 8.5C19.8358 8.5 19.5 8.16421 19.5 7.75V6.25ZM19.5 17.75C19.5 18.7165 18.7165 19.5 17.75 19.5H16.25C15.8358 19.5 15.5 19.8358 15.5 20.25C15.5 20.6642 15.8358 21 16.25 21H17.75C19.5449 21 21 19.5449 21 17.75V16.25C21 15.8358 20.6642 15.5 20.25 15.5C19.8358 15.5 19.5 15.8358 19.5 16.25V17.75ZM4.5 17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H7.75C8.16421 19.5 8.5 19.8358 8.5 20.25C8.5 20.6642 8.16421 21 7.75 21H6.25C4.45507 21 3 19.5449 3 17.75V16.25C3 15.8358 3.33579 15.5 3.75 15.5C4.16421 15.5 4.5 15.8358 4.5 16.25L4.5 17.75ZM8.25006 6C7.00742 6 6.00006 7.00736 6.00006 8.25V15.7498C6.00006 16.9925 7.00742 17.9998 8.25006 17.9998H15.7499C16.9925 17.9998 17.9999 16.9925 17.9999 15.7498V8.25C17.9999 7.00736 16.9925 6 15.7499 6H8.25006ZM7.50006 8.25C7.50006 7.83579 7.83585 7.5 8.25006 7.5H15.7499C16.1641 7.5 16.4999 7.83579 16.4999 8.25V15.7498C16.4999 16.164 16.1641 16.4998 15.7499 16.4998H8.25006C7.83585 16.4998 7.50006 16.164 7.50006 15.7498V8.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/resize_large_24_regular.svg";

Details

NameResize Large
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_resize_large_24_regular.svg
Filled fileic_fluent_resize_large_24_filled.svg
React componentsResizeLarge24Regular, ResizeLarge24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

scalefiteditcontentmanipulate

Related icons