Mail Unread icon

Used in general mail scenarios. The Mail Unread 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 Mail Unread 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 { MailUnread24Regular, MailUnread24Filled } from "@fluentui/react-icons";

export function Example() {
  return <MailUnread24Regular aria-label="Mail Unread" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_mail_unread_24_regular.svg" width="24" height="24" alt="Mail Unread">

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="M22 7.82929C23.1652 7.41746 24 6.30622 24 5C24 3.34315 22.6569 2 21 2C19.6797 2 18.5586 2.85291 18.1576 4.03781C18.0554 4.33985 18 4.66345 18 5C18 5.17036 18.0142 5.3374 18.0415 5.5C18.2311 6.63044 19.053 7.54651 20.131 7.87222C20.1469 7.87701 20.1628 7.88166 20.1787 7.88619C20.4397 7.96032 20.7152 8 21 8C21.3506 8 21.6872 7.93984 22 7.82929ZM5.25 4H16.6115C16.5385 4.32161 16.5 4.65631 16.5 5C16.5 5.169 16.5093 5.33583 16.5275 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L18.4905 8.73583C19.0365 9.10336 19.6675 9.35433 20.3479 9.45309L12.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.75V9.47254C20.6642 9.49068 20.831 9.5 21 9.5C21.3437 9.5 21.6784 9.46147 22 9.38849V16.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 4Z" 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_unread_24_regular.svg";

Details

NameMail Unread
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_mail_unread_24_regular.svg
Filled fileic_fluent_mail_unread_24_filled.svg
React componentsMailUnread24Regular, MailUnread24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

envelopeemaildeliverymessagebadgeunreadnotification

Related icons