Chat Mail icon
Used in real time chat scenarios (versus comment - different icon). The Chat Mail icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 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, 20 px
ic_fluent_chat_mail_20_regular.svg
Chat Mail icon in React
npm install @fluentui/react-icons
import { ChatMail20Regular } from "@fluentui/react-icons";
export function Example() {
return <ChatMail20Regular aria-label="Chat Mail" />;
}Use the Chat Mail 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 { ChatMail20Regular, ChatMail20Filled } from "@fluentui/react-icons";
export function Example() {
return <ChatMail20Regular aria-label="Chat Mail" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_chat_mail_20_regular.svg" width="20" height="20" alt="Chat Mail"> 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 6c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3A.5.5 0 0 1 6 6m.5 1.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1zM8 1a6 6 0 0 0-5.27 8.87l-.71 2.5a.5.5 0 0 0 .64.6L5 12.2q1.34.8 3 .81A6 6 0 0 0 8 1M3 7a5 5 0 1 1 2.33 4.23.5.5 0 0 0-.43-.06l-1.66.56.51-1.79a.5.5 0 0 0-.05-.39A5 5 0 0 1 3 7m9.28 7.95-2.4-1.2q.65-.19 1.26-.5l1.36.7 4.5-2.26V11a1 1 0 0 0-1-1h-1.67q.23-.48.38-1H16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-2.07q.5.07 1 .07v2a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-3.2l-4.28 2.15a.5.5 0 0 1-.44 0"/></svg>Details
| Name | Chat Mail |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_chat_mail_20_regular.svg |
| Filled file | ic_fluent_chat_mail_20_filled.svg |
| React (Regular) | ChatMail20Regular |
| React (Filled) | ChatMail20Filled |
| License | MIT (© Microsoft Corporation) |