Arrow Autofit Up icon
Used for adjusting content size. Dotted versions are used for autofit. Contains height & width variants. The Arrow Autofit Up 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 Autofit Up 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 { ArrowAutofitUp24Regular, ArrowAutofitUp24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowAutofitUp24Regular aria-label="Arrow Autofit Up" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_autofit_up_24_regular.svg" width="24" height="24" alt="Arrow Autofit Up"> 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="M16.2764 3.16797C16.5709 2.92772 17.0057 2.94519 17.2803 3.21972L19.7803 5.71972C20.0731 6.0126 20.0731 6.48738 19.7803 6.78027C19.4874 7.07313 19.0126 7.07313 18.7197 6.78027L17.5 5.56054V20.25C17.5 20.6642 17.1642 21 16.75 21C16.3358 21 16 20.6642 16 20.25V5.56054L14.7803 6.78027C14.4874 7.07313 14.0126 7.07313 13.7197 6.78027C13.4269 6.48738 13.4269 6.0126 13.7197 5.71972L16.2197 3.21972L16.2764 3.16797ZM11.25 4C11.6642 4 11.9999 4.33584 12 4.75C12 5.16419 11.6642 5.5 11.25 5.5H6.25C5.83582 5.5 5.50006 5.83584 5.5 6.25V17.75C5.50003 18.1642 5.8358 18.5 6.25 18.5H13.25C13.6642 18.5 13.9999 18.8358 14 19.25C14 19.6642 13.6642 20 13.25 20H6.25C5.00737 20 4.00003 18.9926 4 17.75V6.25C4.00006 5.00741 5.0074 4 6.25 4H11.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_autofit_up_24_regular.svg";Details
| Name | Arrow Autofit Up |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_autofit_up_24_regular.svg |
| Filled file | ic_fluent_arrow_autofit_up_24_filled.svg |
| React components | ArrowAutofitUp24Regular, ArrowAutofitUp24Filled |
| License | MIT (© Microsoft Corporation) |