Arrow Reply icon
Used to reply back in mail. Contains directional variants. The Arrow Reply 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 Reply 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 { ArrowReply24Regular, ArrowReply24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowReply24Regular aria-label="Arrow Reply" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_reply_24_regular.svg" width="24" height="24" alt="Arrow Reply"> 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="M9.28033 6.28033C9.57322 5.98744 9.57322 5.51256 9.28033 5.21967C8.98744 4.92678 8.51256 4.92678 8.21967 5.21967L3.21967 10.2197C2.92678 10.5126 2.92678 10.9874 3.21967 11.2803L8.21967 16.2803C8.51256 16.5732 8.98744 16.5732 9.28033 16.2803C9.57322 15.9874 9.57322 15.5126 9.28033 15.2197L5.56066 11.5H13.25C16.7018 11.5 19.5 14.2982 19.5 17.75V18.25C19.5 18.6642 19.8358 19 20.25 19C20.6642 19 21 18.6642 21 18.25V17.75C21 13.4698 17.5302 10 13.25 10H5.56066L9.28033 6.28033Z" 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_24_regular.svg";Details
| Name | Arrow Reply |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_reply_24_regular.svg |
| Filled file | ic_fluent_arrow_reply_24_filled.svg |
| React components | ArrowReply24Regular, ArrowReply24Filled |
| License | MIT (© Microsoft Corporation) |