Mail Arrow Double Back icon
Used in general mail scenarios. The Mail Arrow Double Back 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 Mail Arrow Double Back 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 { MailArrowDoubleBack24Regular, MailArrowDoubleBack24Filled } from "@fluentui/react-icons";
export function Example() {
return <MailArrowDoubleBack24Regular aria-label="Mail Arrow Double Back" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_arrow_double_back_24_regular.svg" width="24" height="24" alt="Mail Arrow Double Back"> 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="M17.5 12C20.5376 12 23 9.53757 23 6.5C23 3.46243 20.5376 1 17.5 1C14.4624 1 12 3.46243 12 6.5C12 9.53757 14.4624 12 17.5 12ZM15.8536 4.85355L14.2071 6.5L15.8536 8.14645C16.0488 8.34171 16.0488 8.65829 15.8536 8.85355C15.6583 9.04882 15.3417 9.04882 15.1464 8.85355L13.1464 6.85355C12.9512 6.65829 12.9512 6.34171 13.1464 6.14645L15.1464 4.14645C15.3417 3.95118 15.6583 3.95118 15.8536 4.14645C16.0488 4.34171 16.0488 4.65829 15.8536 4.85355ZM18.8536 4.14645C19.0488 4.34171 19.0488 4.65829 18.8536 4.85355L17.7071 6H20C20.8284 6 21.5 6.67157 21.5 7.5V8C21.5 8.27614 21.2761 8.5 21 8.5C20.7239 8.5 20.5 8.27614 20.5 8V7.5C20.5 7.22386 20.2761 7 20 7H17.7071L18.8536 8.14645C19.0488 8.34171 19.0488 8.65829 18.8536 8.85355C18.6583 9.04882 18.3417 9.04882 18.1464 8.85355L16.1464 6.85355C15.9512 6.65829 15.9512 6.34171 16.1464 6.14645L18.1464 4.14645C18.3417 3.95118 18.6583 3.95118 18.8536 4.14645ZM20.5 16.75V12.2678C21.051 11.9806 21.5557 11.6168 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H11.4982C11.3004 4.47417 11.1572 4.97679 11.0764 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L13.3052 11.4654C13.7437 11.8363 14.232 12.1501 14.7587 12.3954L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75Z" 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/mail_arrow_double_back_24_regular.svg";Details
| Name | Mail Arrow Double Back |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_mail_arrow_double_back_24_regular.svg |
| Filled file | ic_fluent_mail_arrow_double_back_24_filled.svg |
| React components | MailArrowDoubleBack24Regular, MailArrowDoubleBack24Filled |
| License | MIT (© Microsoft Corporation) |