Mail Inbox Person icon
Used to represent mail inbox. The Mail Inbox Person icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 4 sizes from 16 to 48 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_mail_inbox_person_16_regular.svg
Mail Inbox Person icon in React
npm install @fluentui/react-icons
import { MailInboxPerson16Regular } from "@fluentui/react-icons";
export function Example() {
return <MailInboxPerson16Regular aria-label="Mail Inbox Person" />;
}Use the Mail Inbox Person 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 { MailInboxPerson16Regular, MailInboxPerson16Filled } from "@fluentui/react-icons";
export function Example() {
return <MailInboxPerson16Regular aria-label="Mail Inbox Person" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_inbox_person_20_regular.svg" width="20" height="20" alt="Mail Inbox Person"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h5.04a3 3 0 0 1 .01-1H6a2 2 0 0 1-2-2v-3h3.05c.05.26.14.62.32.97q.26.59.9 1.06.67.45 1.73.47 1.06-.02 1.72-.47.52-.37.79-.83a3 3 0 0 1 .75-2.2h-.76a.5.5 0 0 0-.5.5v.01l-.03.3q-.05.31-.23.72-.18.39-.57.66-.37.29-1.17.31c-.54 0-.9-.13-1.17-.3a2 2 0 0 1-.57-.67A3 3 0 0 1 8 10.5v-.01a.5.5 0 0 0-.5-.5H4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.04q.54.1 1 .36V6a3 3 0 0 0-3-3zm11.5 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0m1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5"/></svg>Details
| Name | Mail Inbox Person |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px, 32 px, 48 px |
| Regular (outlined) file | ic_fluent_mail_inbox_person_20_regular.svg |
| Filled file | ic_fluent_mail_inbox_person_20_filled.svg |
| React (Regular) | MailInboxPerson16Regular, MailInboxPerson20Regular, MailInboxPerson32Regular, MailInboxPerson48Regular |
| React (Filled) | MailInboxPerson16Filled, MailInboxPerson20Filled, MailInboxPerson32Filled, MailInboxPerson48Filled |
| License | MIT (© Microsoft Corporation) |