Mail Alert icon

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

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

Use it in HTML

Reference the SVG file directly:

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

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.5025 1C15.2934 1 13.5025 2.79086 13.5025 5L13.5023 8L12.5539 8.80035C12.2462 9.06004 12.0923 9.18988 12.0457 9.29132C11.9312 9.54071 12.0391 9.8358 12.2875 9.95252C12.3885 10 12.5898 10 12.9925 10H22.0121C22.4148 10 22.6162 10 22.7172 9.95252C22.9656 9.8358 23.0735 9.5407 22.9589 9.29131C22.9123 9.18987 22.7584 9.06001 22.4507 8.80031L21.5025 8V5C21.5025 2.79086 19.7116 1 17.5025 1ZM19.0025 11C18.7842 11.5826 18.195 12 17.5025 12C16.81 12 16.2208 11.5826 16.0025 11H19.0025ZM22 16.75V11L20.5 11V16.75L20.4942 16.8935C20.4212 17.7929 19.6682 18.5 18.75 18.5H5.25L5.10647 18.4942C4.20711 18.4212 3.5 17.6682 3.5 16.75V9.374L11.6507 13.6637L11.7468 13.706C11.9431 13.7764 12.1619 13.7623 12.3493 13.6637L15.4503 12.0313C15.2878 11.8289 15.1559 11.6003 15.0624 11.3509L14.9309 11L14.1893 11L12 12.1525L3.5 7.679V7.25L3.5058 7.10647C3.57881 6.20711 4.33183 5.5 5.25 5.5H12.4988L12.4988 5C12.4988 4.65753 12.5333 4.32311 12.5989 4H5.25L5.06558 4.00514C3.35645 4.10075 2 5.51697 2 7.25V16.75L2.00514 16.9344C2.10075 18.6435 3.51697 20 5.25 20H18.75L18.9344 19.9949C20.6435 19.8992 22 18.483 22 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_alert_24_regular.svg";

Details

NameMail Alert
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_mail_alert_24_regular.svg
Filled fileic_fluent_mail_alert_24_filled.svg
React componentsMailAlert24Regular, MailAlert24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

envelopeemaildeliverymessagebellnotification

Related icons