Document Multiple Prohibited icon
Used to represent general file types and actions. The Document Multiple 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 Document Multiple 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 { DocumentMultipleProhibited24Regular, DocumentMultipleProhibited24Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentMultipleProhibited24Regular aria-label="Document Multiple Prohibited" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_multiple_prohibited_24_regular.svg" width="24" height="24" alt="Document Multiple 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="M5.5028 4.62704L5.5 6.75V11.0764C4.97679 11.1572 4.47417 11.3004 4 11.4982V6.75C4 5.76929 4.62745 4.93512 5.5028 4.62704ZM17.7468 19.5042H12.6851C12.84 19.0261 12.9409 18.5237 12.9807 18.0042H17.7468C18.161 18.0042 18.4968 17.6684 18.4968 17.2542L18.4964 9.003L15.25 9.00389C14.0591 9.00389 13.0844 8.07873 13.0052 6.90794L13 6.75389L12.9994 3.5H8.75241C8.33819 3.5 8.00241 3.83579 8.00241 4.25V11.1745C7.5209 11.0606 7.01869 11.0002 6.50241 11V4.25C6.50241 3.00736 7.50977 2 8.75241 2H13.1284C13.7254 2 14.2979 2.23723 14.7199 2.65947L19.3383 7.28054C19.7599 7.70246 19.9968 8.27456 19.9968 8.87107V17.2542C19.9968 18.4968 18.9895 19.5042 17.7468 19.5042ZM14.4994 4.561L14.5 6.75389C14.5 7.13359 14.7822 7.44738 15.1482 7.49704L15.25 7.50389L17.4404 7.503L14.4994 4.561ZM11.1864 22.0042C11.6134 21.5601 11.9778 21.0554 12.2655 20.5043L17.3663 20.5045C17.0573 21.3782 16.224 22.0042 15.2444 22.0042H11.1864ZM12 17.5C12 20.5376 9.53757 23 6.5 23C3.46243 23 1 20.5376 1 17.5C1 14.4624 3.46243 12 6.5 12C9.53757 12 12 14.4624 12 17.5ZM2.5 17.5C2.5 18.3335 2.75495 19.1075 3.19112 19.7482L8.74822 14.1911C8.10751 13.755 7.33353 13.5 6.5 13.5C4.29086 13.5 2.5 15.2909 2.5 17.5ZM6.5 21.5C8.70914 21.5 10.5 19.7091 10.5 17.5C10.5 16.6665 10.245 15.8925 9.80888 15.2518L4.25178 20.8089C4.89249 21.245 5.66647 21.5 6.5 21.5Z" 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/document_multiple_prohibited_24_regular.svg";Details
| Name | Document Multiple Prohibited |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_document_multiple_prohibited_24_regular.svg |
| Filled file | ic_fluent_document_multiple_prohibited_24_filled.svg |
| React components | DocumentMultipleProhibited24Regular, DocumentMultipleProhibited24Filled |
| License | MIT (© Microsoft Corporation) |