Mail Edit icon

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

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

Use it in HTML

Reference the SVG file directly:

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

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="M18.75 3H5.25L5.06558 3.00514C3.35645 3.10075 2 4.51697 2 6.25V15.75L2.00514 15.9344C2.10075 17.6435 3.51697 19 5.25 19H11.717C11.9006 18.5781 12.1624 18.1927 12.4903 17.8648L12.855 17.5H5.25L5.10647 17.4942C4.20711 17.4212 3.5 16.6682 3.5 15.75V8.374L11.6507 12.6637L11.7468 12.706C11.9431 12.7764 12.1619 12.7623 12.3493 12.6637L20.5 8.373V11.0071C21.0085 10.9738 21.5233 11.0582 22 11.2603V6.25L21.9949 6.06558C21.8992 4.35645 20.483 3 18.75 3ZM5.25 4.5H18.75L18.8935 4.5058C19.7929 4.57881 20.5 5.33183 20.5 6.25V6.678L12 11.1525L3.5 6.679V6.25L3.5058 6.10647C3.57881 5.20711 4.33183 4.5 5.25 4.5ZM19.0999 12.6695L13.1974 18.5719C12.8533 18.916 12.6092 19.3472 12.4911 19.8194L12.0334 21.6501C11.8344 22.4462 12.5556 23.1674 13.3517 22.9683L15.1824 22.5106C15.6545 22.3926 16.0857 22.1485 16.4299 21.8043L22.3323 15.9019C23.2249 15.0093 23.2249 13.5621 22.3323 12.6695C21.4397 11.7768 19.9925 11.7768 19.0999 12.6695Z" 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_edit_24_regular.svg";

Details

NameMail Edit
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_mail_edit_24_regular.svg
Filled fileic_fluent_mail_edit_24_filled.svg
React componentsMailEdit24Regular, MailEdit24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

envelopeemaildeliverymessagepencil

Related icons