Arrow Reply Down icon

Used to reply only in Teams scenarios. Use Arrow Reply as default. The Arrow Reply Down 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 Reply Down 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 { ArrowReplyDown24Regular, ArrowReplyDown24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

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

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 5C20.6642 5 21 5.33579 21 5.75V6.25C21 10.5302 17.5302 14 13.25 14H5.56066L9.28033 17.7197C9.57322 18.0126 9.57322 18.4874 9.28033 18.7803C8.98744 19.0732 8.51256 19.0732 8.21967 18.7803L3.21967 13.7803C2.92678 13.4874 2.92678 13.0126 3.21967 12.7197L8.21967 7.71967C8.51256 7.42678 8.98744 7.42678 9.28033 7.71967C9.57322 8.01256 9.57322 8.48744 9.28033 8.78033L5.56066 12.5H13.25C16.7018 12.5 19.5 9.70178 19.5 6.25V5.75C19.5 5.33579 19.8358 5 20.25 5Z" 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_reply_down_24_regular.svg";

Details

NameArrow Reply Down
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_arrow_reply_down_24_regular.svg
Filled fileic_fluent_arrow_reply_down_24_filled.svg
React componentsArrowReplyDown24Regular, ArrowReplyDown24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

arrowdirectionbackreply

Related icons