Mail Prohibited icon
Used in general mail scenarios. The Mail Prohibited 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 Prohibited 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 { MailProhibited24Regular, MailProhibited24Filled } from "@fluentui/react-icons";
export function Example() {
return <MailProhibited24Regular aria-label="Mail Prohibited" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_mail_prohibited_24_regular.svg" width="24" height="24" alt="Mail Prohibited"> 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="M23 6.5C23 9.53757 20.5376 12 17.5 12C14.4624 12 12 9.53757 12 6.5C12 3.46243 14.4624 1 17.5 1C20.5376 1 23 3.46243 23 6.5ZM13.5 6.5C13.5 7.33353 13.755 8.10751 14.1911 8.74822L19.7482 3.19112C19.1075 2.75495 18.3335 2.5 17.5 2.5C15.2909 2.5 13.5 4.29086 13.5 6.5ZM17.5 10.5C19.7091 10.5 21.5 8.70914 21.5 6.5C21.5 5.66647 21.245 4.89249 20.8089 4.25178L15.2518 9.80888C15.8925 10.245 16.6665 10.5 17.5 10.5ZM20.5 16.75V12.2678C21.051 11.9806 21.5557 11.6168 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H11.4982C11.3004 4.47417 11.1572 4.97679 11.0764 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L13.3052 11.4654C13.7437 11.8363 14.232 12.1501 14.7587 12.3954L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.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_prohibited_24_regular.svg";Details
| Name | Mail Prohibited |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_mail_prohibited_24_regular.svg |
| Filled file | ic_fluent_mail_prohibited_24_filled.svg |
| React components | MailProhibited24Regular, MailProhibited24Filled |
| License | MIT (© Microsoft Corporation) |