Arrow Down Right icon

Used for general arrow scenarios. The Arrow Down Right 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 Arrow Down Right 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 { ArrowDownRight24Regular, ArrowDownRight24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ArrowDownRight24Regular aria-label="Arrow Down Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_arrow_down_right_24_regular.svg" width="24" height="24" alt="Arrow Down Right">

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.7507 21.0049C10.3365 21.0049 10.0007 20.6692 10.0007 20.2549C10.0007 19.8407 10.3365 19.5049 10.7507 19.5049H18.4198L3.22003 4.30517C2.92145 4.00659 2.92145 3.52251 3.22003 3.22393C3.5186 2.92536 4.00269 2.92536 4.30126 3.22393L19.5007 18.4234V10.7549C19.5007 10.3407 19.8365 10.0049 20.2507 10.0049C20.6649 10.0049 21.0007 10.3407 21.0007 10.7549V20.2549C21.0007 20.6692 20.6649 21.0049 20.2507 21.0049H10.7507Z" 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_down_right_24_regular.svg";

Details

NameArrow Down Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_arrow_down_right_24_regular.svg
Filled fileic_fluent_arrow_down_right_24_filled.svg
React componentsArrowDownRight24Regular, ArrowDownRight24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

arrowupdirectionpoint

Related icons