Arrow Trending Checkmark icon
Used to indicate growth. The Arrow Trending Checkmark 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 Trending Checkmark 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 { ArrowTrendingCheckmark24Regular, ArrowTrendingCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowTrendingCheckmark24Regular aria-label="Arrow Trending Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_trending_checkmark_24_regular.svg" width="24" height="24" alt="Arrow Trending Checkmark"> 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="M20.25 3.00001C20.6642 3.00001 21 3.3358 21 3.75001L21 8.74997C21 9.16419 20.6642 9.49998 20.25 9.49998C19.8358 9.49998 19.5 9.16419 19.5 8.74998L19.5 5.56066L13.5303 11.5303C13.2374 11.8232 12.7626 11.8232 12.4697 11.5303L10.25 9.31066L4.28033 15.2803C3.98744 15.5732 3.51256 15.5732 3.21967 15.2803C2.92678 14.9874 2.92678 14.5126 3.21967 14.2197L9.71967 7.71967C10.0126 7.42678 10.4874 7.42678 10.7803 7.71967L13 9.93934L18.4394 4.50001L15.25 4.5C14.8358 4.5 14.5 4.16421 14.5 3.75C14.5 3.33578 14.8358 3 15.25 3L20.25 3.00001ZM23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12C20.5376 12 23 14.4624 23 17.5ZM20.8536 15.1464C20.6583 14.9512 20.3417 14.9512 20.1464 15.1464L16.5 18.7929L14.8536 17.1464C14.6583 16.9512 14.3417 16.9512 14.1464 17.1464C13.9512 17.3417 13.9512 17.6583 14.1464 17.8536L16.1464 19.8536C16.3417 20.0488 16.6583 20.0488 16.8536 19.8536L20.8536 15.8536C21.0488 15.6583 21.0488 15.3417 20.8536 15.1464Z" 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_trending_checkmark_24_regular.svg";Details
| Name | Arrow Trending Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_trending_checkmark_24_regular.svg |
| Filled file | ic_fluent_arrow_trending_checkmark_24_filled.svg |
| React components | ArrowTrendingCheckmark24Regular, ArrowTrendingCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |