Mail Read icon
Used in general mail scenarios. The Mail Read 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 Read 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 { MailRead24Regular, MailRead24Filled } from "@fluentui/react-icons";
export function Example() {
return <MailRead24Regular aria-label="Mail Read" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_read_24_regular.svg" width="24" height="24" alt="Mail Read"> 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="M13.1908 2.33927C12.462 1.88471 11.538 1.88471 10.8092 2.33927L3.05924 7.1732C2.40039 7.58415 2 8.30578 2 9.08228V16.75C2 18.5449 3.45507 20 5.25 20H18.75C20.5449 20 22 18.5449 22 16.75V9.08228C22 8.30578 21.5996 7.58415 20.9408 7.1732L13.1908 2.33927ZM11.6031 3.61199C11.846 3.46047 12.154 3.46047 12.3969 3.61199L19.6389 8.12906L12 12.1495L4.36109 8.12906L11.6031 3.61199ZM3.5 9.37093L11.6507 13.6608C11.8693 13.7758 12.1307 13.7758 12.3493 13.6608L20.5 9.37093V16.75C20.5 17.7165 19.7165 18.5 18.75 18.5H5.25C4.2835 18.5 3.5 17.7165 3.5 16.75V9.37093Z" 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_read_24_regular.svg";Details
| Name | Mail Read |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_mail_read_24_regular.svg |
| Filled file | ic_fluent_mail_read_24_filled.svg |
| React components | MailRead24Regular, MailRead24Filled |
| License | MIT (© Microsoft Corporation) |