Resize icon
Used in general resizing of content scenarios. The Resize 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.
Use the Resize 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 { Resize24Regular, Resize24Filled } from "@fluentui/react-icons";
export function Example() {
return <Resize24Regular aria-label="Resize" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_resize_24_regular.svg" width="24" height="24" alt="Resize"> 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.25 3H6.25C4.45507 3 3 4.45507 3 6.25V8.25C3 8.66421 3.33579 9 3.75 9C4.16421 9 4.5 8.66421 4.5 8.25V6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H10.25C10.6642 4.5 11 4.16421 11 3.75C11 3.33579 10.6642 3 10.25 3ZM4.5 17.75V13.25C4.5 12.2835 5.2835 11.5 6.25 11.5H10.75C11.7165 11.5 12.5 12.2835 12.5 13.25V17.75C12.5 18.7165 11.7165 19.5 10.75 19.5H6.25C5.2835 19.5 4.5 18.7165 4.5 17.75ZM10.75 21C12.5449 21 14 19.5449 14 17.75V13.25C14 11.4551 12.5449 10 10.75 10H6.25C4.45507 10 3 11.4551 3 13.25V17.75C3 19.5449 4.45507 21 6.25 21H10.75ZM15.75 21C15.3358 21 15 20.6642 15 20.25C15 19.8358 15.3358 19.5 15.75 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V13.75C19.5 13.3358 19.8358 13 20.25 13C20.6642 13 21 13.3358 21 13.75V17.75C21 19.5449 19.5449 21 17.75 21H15.75ZM21 10.25V6.25C21 4.45507 19.5449 3 17.75 3H13.75C13.3358 3 13 3.33579 13 3.75C13 4.16421 13.3358 4.5 13.75 4.5H17.75C18.7165 4.5 19.5 5.2835 19.5 6.25V10.25C19.5 10.6642 19.8358 11 20.25 11C20.6642 11 21 10.6642 21 10.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_24_regular.svg";Details
| Name | Resize |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_resize_24_regular.svg |
| Filled file | ic_fluent_resize_24_filled.svg |
| React components | Resize24Regular, Resize24Filled |
| License | MIT (© Microsoft Corporation) |