Desktop Cursor icon
Used in IT desktop control scenarios. The Desktop Cursor 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 Desktop Cursor 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 { DesktopCursor24Regular, DesktopCursor24Filled } from "@fluentui/react-icons";
export function Example() {
return <DesktopCursor24Regular aria-label="Desktop Cursor" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_desktop_cursor_24_regular.svg" width="24" height="24" alt="Desktop Cursor"> 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="M6.75 22.0004C6.33579 22.0004 6 21.6647 6 21.2504C6 20.8707 6.28215 20.5569 6.64823 20.5073L6.75 20.5004L8.499 20.5V18.002L4.25 18.0023C3.05914 18.0023 2.08436 17.0771 2.00519 15.9063L2 15.7523V5.25C2 4.05914 2.92516 3.08436 4.09595 3.00519L4.25 3H19.7488C20.9397 3 21.9145 3.92516 21.9936 5.09595L21.9988 5.25V15.7523C21.9988 16.1241 21.9086 16.4749 21.7489 16.784L20.4988 15.3979V5.25C20.4988 4.8703 20.2167 4.55651 19.8506 4.50685L19.7488 4.5H4.25C3.8703 4.5 3.55651 4.78215 3.50685 5.14823L3.5 5.25V15.7523C3.5 16.132 3.78215 16.4458 4.14823 16.4954L4.25 16.5023H14.0028L14.0021 18.002H9.998L9.999 20.5004H14.0009L14.0001 22.0004H6.75ZM15.4858 12.0504C15.7755 11.9391 16.1038 12.0178 16.3116 12.2482L22.6766 19.3057C22.8974 19.5505 22.9324 19.9109 22.7628 20.1937C22.5932 20.4765 22.2589 20.6153 21.9389 20.5359L18.4023 19.6577L16.3721 22.672C16.1878 22.9456 15.8463 23.0667 15.5308 22.9703C15.2153 22.8739 14.9998 22.5826 15 22.2527L15.0047 12.7501C15.0048 12.4398 15.1961 12.1616 15.4858 12.0504Z" 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/desktop_cursor_24_regular.svg";Details
| Name | Desktop Cursor |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_desktop_cursor_24_regular.svg |
| Filled file | ic_fluent_desktop_cursor_24_filled.svg |
| React components | DesktopCursor24Regular, DesktopCursor24Filled |
| License | MIT (© Microsoft Corporation) |