Cursor Hover Off icon

The Cursor Hover Off 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 Cursor Hover Off 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 { CursorHoverOff24Regular, CursorHoverOff24Filled } from "@fluentui/react-icons";

export function Example() {
  return <CursorHoverOff24Regular aria-label="Cursor Hover Off" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_cursor_hover_off_24_regular.svg" width="24" height="24" alt="Cursor Hover Off">

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="M3.28034 2.21968C2.98745 1.92678 2.51257 1.92677 2.21968 2.21966C1.92678 2.51255 1.92677 2.98743 2.21966 3.28032L3.26511 4.32579C2.50953 4.75586 2 5.56843 2 6.50001V15.5C2 16.8807 3.11929 18 4.5 18H9V16.5H4.5C3.94772 16.5 3.5 16.0523 3.5 15.5V6.50001C3.5 5.96753 3.91619 5.53225 4.44101 5.50172L10 11.0608V21.25C10 21.5786 10.2138 21.8688 10.5275 21.9663C10.8413 22.0637 11.1819 21.9456 11.368 21.6749L13.8348 18.0869L17.877 18.9379L20.7194 21.7805C21.0123 22.0734 21.4872 22.0734 21.7801 21.7805C22.073 21.4876 22.073 21.0127 21.7801 20.7198L3.28034 2.21968ZM11.5 12.5608L15.9354 16.9963L13.6545 16.5161C13.3582 16.4537 13.0535 16.5756 12.882 16.8251L11.5 18.8353V12.5608ZM20.5 15.5C20.5 15.9951 20.1401 16.4062 19.6677 16.486L20.8109 17.6292C21.5244 17.1889 22 16.4 22 15.5V6.50001C22 5.1193 20.8807 4.00001 19.5 4.00001H7.18195L8.68192 5.50001H19.5C20.0523 5.50001 20.5 5.94772 20.5 6.50001V15.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/cursor_hover_off_24_regular.svg";

Details

NameCursor Hover Off
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_cursor_hover_off_24_regular.svg
Filled fileic_fluent_cursor_hover_off_24_filled.svg
React componentsCursorHoverOff24Regular, CursorHoverOff24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

arrowinteractclick.usedinusercursorscenarios.

Related icons