Resize Small icon

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

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

Use it in HTML

Reference the SVG file directly:

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

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.25ZM7.95001 10.25C7.95001 9.00736 8.95737 8 10.2 8H13.7C14.9427 8 15.95 9.00736 15.95 10.25V13.75C15.95 14.9926 14.9427 16 13.7 16H10.2C8.95737 16 7.95001 14.9926 7.95001 13.75V10.25ZM10.2 9.5C9.7858 9.5 9.45001 9.83579 9.45001 10.25V13.75C9.45001 14.1642 9.7858 14.5 10.2 14.5H13.7C14.1142 14.5 14.45 14.1642 14.45 13.75V10.25C14.45 9.83579 14.1142 9.5 13.7 9.5H10.2ZM17.75 4.5C18.7165 4.5 19.5 5.2835 19.5 6.25V7.75C19.5 8.16421 19.8358 8.5 20.25 8.5C20.6642 8.5 21 8.16421 21 7.75V6.25C21 4.45507 19.5449 3 17.75 3H16.25C15.8358 3 15.5 3.33579 15.5 3.75C15.5 4.16421 15.8358 4.5 16.25 4.5L17.75 4.5ZM17.75 19.5C18.7165 19.5 19.5 18.7165 19.5 17.75V16.25C19.5 15.8358 19.8358 15.5 20.25 15.5C20.6642 15.5 21 15.8358 21 16.25V17.75C21 19.5449 19.5449 21 17.75 21H16.25C15.8358 21 15.5 20.6642 15.5 20.25C15.5 19.8358 15.8358 19.5 16.25 19.5H17.75ZM6.25 19.5C5.2835 19.5 4.5 18.7165 4.5 17.75L4.5 16.25C4.5 15.8358 4.16421 15.5 3.75 15.5C3.33579 15.5 3 15.8358 3 16.25V17.75C3 19.5449 4.45507 21 6.25 21H7.75C8.16421 21 8.5 20.6642 8.5 20.25C8.5 19.8358 8.16421 19.5 7.75 19.5H6.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_small_24_regular.svg";

Details

NameResize Small
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_resize_small_24_regular.svg
Filled fileic_fluent_resize_small_24_filled.svg
React componentsResizeSmall24Regular, ResizeSmall24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

scalefiteditcontentmanipulate

Related icons