Mail Inbox Arrow Up icon
Used to represent mail inbox. The Mail Inbox Arrow Up 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 Inbox Arrow Up 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 { MailInboxArrowUp24Regular, MailInboxArrowUp24Filled } from "@fluentui/react-icons";
export function Example() {
return <MailInboxArrowUp24Regular aria-label="Mail Inbox Arrow Up" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_inbox_arrow_up_24_regular.svg" width="24" height="24" alt="Mail Inbox Arrow Up"> 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.4986 3.99907C10.3006 4.47354 10.1573 4.9765 10.0764 5.50009L6.25 5.5C5.33183 5.5 4.57881 6.20711 4.5058 7.10647L4.5 7.25V14H9C9.3797 14 9.69349 14.2822 9.74315 14.6482L9.75 14.75C9.75 15.9926 10.7574 17 12 17C13.2426 17 14.25 15.9926 14.25 14.75C14.25 14.3703 14.5322 14.0565 14.8982 14.0068L15 14H19.5L19.5011 12.2672C20.052 11.98 20.5566 11.616 21.0008 11.1896L21 18.75C21 20.483 19.6435 21.8992 17.9344 21.9949L17.75 22H6.25C4.51697 22 3.10075 20.6435 3.00514 18.9344L3 18.75V7.25C3 5.51697 4.35645 4.10075 6.06558 4.00514L6.25 4L10.4986 3.99907ZM8.32501 15.5H4.5V18.75C4.5 19.6682 5.20711 20.4212 6.10647 20.4942L6.25 20.5H17.75C18.6682 20.5 19.4212 19.7929 19.4942 18.8935L19.5 18.75V15.5H15.675C15.3404 17.1483 13.9247 18.404 12.2003 18.4947L12 18.5C10.253 18.5 8.78498 17.3053 8.36837 15.6884L8.32501 15.5ZM16.5 1C19.5376 1 22 3.46243 22 6.5C22 9.53757 19.5376 12 16.5 12C13.4624 12 11 9.53757 11 6.5C11 3.46243 13.4624 1 16.5 1ZM16.6281 3.01661L16.5424 3.00178L16.488 3L16.432 3.005L16.3719 3.01661L16.2886 3.04674L16.2153 3.08884L16.1589 3.13444L13.6464 5.64645L13.5886 5.71569C13.4705 5.8862 13.4705 6.1138 13.5886 6.28431L13.6464 6.35355L13.7157 6.41141C13.8862 6.52953 14.1138 6.52953 14.2843 6.41141L14.3536 6.35355L15.999 4.708L16 10L16.0081 10.0899C16.0451 10.294 16.206 10.4549 16.4101 10.4919L16.5 10.5L16.5899 10.4919C16.794 10.4549 16.9549 10.294 16.9919 10.0899L17 10L16.999 4.706L18.6464 6.35355L18.7157 6.41141C18.9106 6.5464 19.18 6.52712 19.3536 6.35355C19.5271 6.17999 19.5464 5.91056 19.4114 5.71569L19.3536 5.64645L16.806 3.104L16.7585 3.07189L16.691 3.03779L16.6281 3.01661Z" 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_inbox_arrow_up_24_regular.svg";Details
| Name | Mail Inbox Arrow Up |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_mail_inbox_arrow_up_24_regular.svg |
| Filled file | ic_fluent_mail_inbox_arrow_up_24_filled.svg |
| React components | MailInboxArrowUp24Regular, MailInboxArrowUp24Filled |
| License | MIT (© Microsoft Corporation) |