Mail Briefcase icon
Used to represent corporate email account. The Mail Briefcase icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 48 px grid. 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, 48 px
ic_fluent_mail_briefcase_48_regular.svg
Mail Briefcase icon in React
npm install @fluentui/react-icons
import { MailBriefcase48Regular } from "@fluentui/react-icons";
export function Example() {
return <MailBriefcase48Regular aria-label="Mail Briefcase" />;
}Use the Mail Briefcase 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 { MailBriefcase48Regular, MailBriefcase48Filled } from "@fluentui/react-icons";
export function Example() {
return <MailBriefcase48Regular aria-label="Mail Briefcase" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_briefcase_48_regular.svg" width="48" height="48" alt="Mail Briefcase"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M29 5.5V7h-2a3 3 0 0 0-3 3v11a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3V10a3 3 0 0 0-3-3h-2V5.5A3.5 3.5 0 0 0 37.5 2h-5A3.5 3.5 0 0 0 29 5.5M32.5 4h5c.83 0 1.5.67 1.5 1.5V7h-8V5.5c0-.83.67-1.5 1.5-1.5M10.25 9H22.1q-.1.48-.1 1v1.5H10.25a3.75 3.75 0 0 0-3.75 3.75v.81L24 25.35l.29-.15c.78.5 1.71.8 2.71.8h1.13l-3.55 1.87c-.36.2-.8.2-1.17 0L6.5 18.89v15.86a3.75 3.75 0 0 0 3.75 3.75h27.5a3.75 3.75 0 0 0 3.75-3.75V26H43q.52 0 1-.1v8.85C44 38.2 41.2 41 37.75 41h-27.5A6.25 6.25 0 0 1 4 34.75v-19.5C4 11.8 6.8 9 10.25 9"/></svg>Details
| Name | Mail Briefcase |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 48 px |
| Regular (outlined) file | ic_fluent_mail_briefcase_48_regular.svg |
| Filled file | ic_fluent_mail_briefcase_48_filled.svg |
| React (Regular) | MailBriefcase48Regular |
| React (Filled) | MailBriefcase48Filled |
| License | MIT (© Microsoft Corporation) |