Cursor Prohibited icon
The Cursor Prohibited icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_cursor_prohibited_16_regular.svg
Cursor Prohibited icon in React
npm install @fluentui/react-icons
import { CursorProhibited16Regular } from "@fluentui/react-icons";
export function Example() {
return <CursorProhibited16Regular aria-label="Cursor Prohibited" />;
}Use the Cursor 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 { CursorProhibited16Regular, CursorProhibited16Filled } from "@fluentui/react-icons";
export function Example() {
return <CursorProhibited16Regular aria-label="Cursor Prohibited" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_cursor_prohibited_20_regular.svg" width="20" height="20" alt="Cursor Prohibited"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0m1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.5 3.5 0 0 1-.7-2.1M14.5 9c-.79 0-1.51-.26-2.1-.7l4.9-4.9q.68.9.7 2.1A3.5 3.5 0 0 1 14.5 9m2.5 3.12-1.47-1.22q.6-.1 1.14-.35l.97.8a1 1 0 0 1-.63 1.77h-5.6c-.43 0-.85.2-1.13.52l-3.52 4.07A1 1 0 0 1 5 17.06v-14a1 1 0 0 1 1.64-.77l2.48 2.05Q9 4.9 9 5.5v.03L6 3.06v14l3.52-4.07a2.5 2.5 0 0 1 1.9-.87z"/></svg>Details
| Name | Cursor Prohibited |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_cursor_prohibited_20_regular.svg |
| Filled file | ic_fluent_cursor_prohibited_20_filled.svg |
| React (Regular) | CursorProhibited16Regular, CursorProhibited20Regular |
| React (Filled) | CursorProhibited16Filled, CursorProhibited20Filled |
| License | MIT (© Microsoft Corporation) |