Prohibited Multiple icon

Used to represent blocked or unauthorized access for files, accounts, etc. The Prohibited Multiple 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.

Regular (outlined)

SVG

Filled

SVG

Use the Prohibited Multiple 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 { ProhibitedMultiple24Regular, ProhibitedMultiple24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ProhibitedMultiple24Regular aria-label="Prohibited Multiple" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_prohibited_multiple_24_regular.svg" width="24" height="24" alt="Prohibited Multiple">

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="M5.6967 5.6967C8.44665 2.94675 12.8008 2.7787 15.7468 5.19255L5.19255 15.7468C2.7787 12.8008 2.94675 8.44665 5.6967 5.6967ZM6.25321 16.8074L16.8074 6.25321C19.2213 9.19922 19.0532 13.5534 16.3033 16.3033C13.5534 19.0532 9.19922 19.2213 6.25321 16.8074ZM17.364 4.63604C13.8492 1.12132 8.15076 1.12132 4.63604 4.63604C1.12132 8.15076 1.12132 13.8492 4.63604 17.364C8.15076 20.8787 13.8492 20.8787 17.364 17.364C20.8787 13.8492 20.8787 8.15076 17.364 4.63604ZM21 11C21 16.5229 16.5228 21 11 21C10.1363 21 9.2981 20.8905 8.49866 20.6846C9.76475 21.3644 11.2123 21.75 12.75 21.75C17.7205 21.75 21.75 17.7206 21.75 12.75C21.75 11.2124 21.3644 9.76486 20.6846 8.49878C20.8905 9.29821 21 10.1363 21 11Z" 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/prohibited_multiple_24_regular.svg";

Details

NameProhibited Multiple
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_prohibited_multiple_24_regular.svg
Filled fileic_fluent_prohibited_multiple_24_filled.svg
React componentsProhibitedMultiple24Regular, ProhibitedMultiple24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

blockslashnoaccessunauthorizedmissingpermission

Related icons