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.

Regular (outlined)

SVG

Filled

SVG

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" />;
}

Mail Briefcase icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/mail_briefcase_48_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/mail_briefcase_48_regular.svg" width="48" height="48" alt="Mail Briefcase">

Mail Briefcase icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size48.MailBriefcase())" />

Mail Briefcase icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.mail_briefcase_48_regular)

Mail Briefcase icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xF0572;" FontSize="48" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xF0572;" FontSize="48" />

Mail Briefcase icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_mail_briefcase_48_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\f0572";
  font-size: 48px;
}

Mail Briefcase icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_mail_briefcase_48_regular" />

// Kotlin
R.drawable.ic_fluent_mail_briefcase_48_regular

Mail Briefcase icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .mailBriefcase48Regular)

Mail Briefcase icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'>…</svg>")

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

NameMail Briefcase
StylesRegular (outlined), Filled
Sizes48 px
Regular (outlined) fileic_fluent_mail_briefcase_48_regular.svg
Filled fileic_fluent_mail_briefcase_48_filled.svg
React (Regular)MailBriefcase48Regular
React (Filled)MailBriefcase48Filled
LicenseMIT (© Microsoft Corporation)

Keywords

envelopeemaildeliverymessagebriefcasemanagedworkcorporate

Related icons