Mail Inbox Checkmark icon
Used to represent mail inbox. The Mail Inbox Checkmark 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.
Use the Mail Inbox Checkmark 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 { MailInboxCheckmark24Regular, MailInboxCheckmark24Filled } from "@fluentui/react-icons";
export function Example() {
return <MailInboxCheckmark24Regular aria-label="Mail Inbox Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_inbox_checkmark_24_regular.svg" width="24" height="24" alt="Mail Inbox Checkmark"> 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="M22 6.5C22 9.53757 19.5376 12 16.5 12C13.4624 12 11 9.53757 11 6.5C11 3.46243 13.4624 1 16.5 1C19.5376 1 22 3.46243 22 6.5ZM19.8536 4.14645C19.6583 3.95118 19.3417 3.95118 19.1464 4.14645L15.5 7.79289L13.8536 6.14645C13.6583 5.95118 13.3417 5.95118 13.1464 6.14645C12.9512 6.34171 12.9512 6.65829 13.1464 6.85355L15.1464 8.85355C15.3417 9.04882 15.6583 9.04882 15.8536 8.85355L19.8536 4.85355C20.0488 4.65829 20.0488 4.34171 19.8536 4.14645ZM19.5 12.2678V14H15L14.8982 14.0068C14.5322 14.0565 14.25 14.3703 14.25 14.75L14.2448 14.904C14.1656 16.0748 13.1909 17 12 17C10.7574 17 9.75 15.9926 9.75 14.75L9.74315 14.6482C9.69349 14.2822 9.3797 14 9 14H4.5V7.25L4.5058 7.10647C4.57881 6.20711 5.33183 5.5 6.25 5.5H10.0764C10.1572 4.97679 10.3004 4.47417 10.4982 4H6.25L6.06558 4.00515C4.35645 4.10075 3 5.51697 3 7.25V18.75L3.00514 18.9344C3.10075 20.6435 4.51697 22 6.25 22H17.75L17.9344 21.9949C19.6435 21.8992 21 20.483 21 18.75V11.1904C20.5557 11.6168 20.051 11.9806 19.5 12.2678ZM4.5 18.75V15.5H8.32501L8.36837 15.6884C8.78498 17.3053 10.253 18.5 12 18.5L12.2003 18.4947C13.9247 18.404 15.3404 17.1483 15.675 15.5H19.5V18.75L19.4942 18.8935C19.4212 19.7929 18.6682 20.5 17.75 20.5H6.25L6.10647 20.4942C5.20711 20.4212 4.5 19.6682 4.5 18.75Z" 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_inbox_checkmark_24_regular.svg";Details
| Name | Mail Inbox Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_mail_inbox_checkmark_24_regular.svg |
| Filled file | ic_fluent_mail_inbox_checkmark_24_filled.svg |
| React components | MailInboxCheckmark24Regular, MailInboxCheckmark24Filled |
| License | MIT (© Microsoft Corporation) |