Arrow Reply All icon
Used to reply back in mail. The Arrow Reply All 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 All 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 { ArrowReplyAll24Regular, ArrowReplyAll24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowReplyAll24Regular aria-label="Arrow Reply All" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_reply_all_24_regular.svg" width="24" height="24" alt="Arrow Reply All"> 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 5.21967C9.57322 5.51256 9.57322 5.98744 9.28033 6.28033L4.81066 10.75L9.28033 15.2197C9.57322 15.5126 9.57322 15.9874 9.28033 16.2803C8.98744 16.5732 8.51256 16.5732 8.21967 16.2803L3.21967 11.2803C2.92678 10.9874 2.92678 10.5126 3.21967 10.2197L8.21967 5.21967C8.51256 4.92678 8.98744 4.92678 9.28033 5.21967ZM13.2803 5.21967C13.5732 5.51256 13.5732 5.98744 13.2803 6.28033L9.56066 10H13.25C17.5302 10 21 13.4698 21 17.75V18.25C21 18.6642 20.6642 19 20.25 19C19.8358 19 19.5 18.6642 19.5 18.25V17.75C19.5 14.2982 16.7018 11.5 13.25 11.5H9.56066L13.2803 15.2197C13.5732 15.5126 13.5732 15.9874 13.2803 16.2803C12.9874 16.5732 12.5126 16.5732 12.2197 16.2803L7.21967 11.2803C6.92678 10.9874 6.92678 10.5126 7.21967 10.2197L12.2197 5.21967C12.5126 4.92678 12.9874 4.92678 13.2803 5.21967Z" 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_all_24_regular.svg";Details
| Name | Arrow Reply All |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_reply_all_24_regular.svg |
| Filled file | ic_fluent_arrow_reply_all_24_filled.svg |
| React components | ArrowReplyAll24Regular, ArrowReplyAll24Filled |
| License | MIT (© Microsoft Corporation) |