Arrow Maximize icon
Used for expanding content. The Arrow Maximize 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 Arrow Maximize 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 { ArrowMaximize24Regular, ArrowMaximize24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowMaximize24Regular aria-label="Arrow Maximize" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_maximize_24_regular.svg" width="24" height="24" alt="Arrow Maximize"> 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="M19.25 4C19.6642 4 20 4.33579 20 4.75V12.25C20 12.6642 19.6642 13 19.25 13C18.8358 13 18.5 12.6642 18.5 12.25V6.56055L6.56055 18.5H12.25C12.6642 18.5 13 18.8358 13 19.25C13 19.6642 12.6642 20 12.25 20H4.75C4.33579 20 4 19.6642 4 19.25V11.75C4 11.3358 4.33579 11 4.75 11C5.16421 11 5.5 11.3358 5.5 11.75V17.4395L17.4395 5.5H11.75C11.3358 5.5 11 5.16421 11 4.75C11 4.33579 11.3358 4 11.75 4H19.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_24_regular.svg";Details
| Name | Arrow Maximize |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_maximize_24_regular.svg |
| Filled file | ic_fluent_arrow_maximize_24_filled.svg |
| React components | ArrowMaximize24Regular, ArrowMaximize24Filled |
| License | MIT (© Microsoft Corporation) |