# WindowCursorIcon

`import { WindowCursorIcon } from "destack:display/binding";`

Standard system cursor icon.

```ds title="WindowCursorIcon"
export enum WindowCursorIcon {
    Default = 1,
    Text = 2,
    Crosshair = 3,
    Pointer = 4,
    Help = 5,
    Wait = 6,
    Move = 7,
    NotAllowed = 8,
    Grab = 9,
    Grabbing = 10,
    ResizeHorizontal = 11,
    ResizeVertical = 12,
    ResizeNesw = 13,
    ResizeNwse = 14,
    ZoomIn = 15,
    ZoomOut = 16,
}
```

[language/library/src/display/binding/window.ds:37:70](https://github.com/destack-sh/destack/blob/main/language/library/src/display/binding/window.ds#L37-L70)

## Variants

### `Default = 1`

Default platform pointer icon.

### `Text = 2`

Text insertion icon.

### `Crosshair = 3`

Crosshair icon.

### `Pointer = 4`

Hand pointer icon.

### `Help = 5`

Context help icon.

### `Wait = 6`

Busy icon.

### `Move = 7`

Move icon.

### `NotAllowed = 8`

Prohibited operation icon.

### `Grab = 9`

Grab icon.

### `Grabbing = 10`

Active grab icon.

### `ResizeHorizontal = 11`

Horizontal resize icon.

### `ResizeVertical = 12`

Vertical resize icon.

### `ResizeNesw = 13`

Northeast-southwest resize icon.

### `ResizeNwse = 14`

Northwest-southeast resize icon.

### `ZoomIn = 15`

Zoom in icon.

### `ZoomOut = 16`

Zoom out icon.
