Interface ICursorMutableProps

interface ICursorMutableProps {
    __mutableProp?: true;
    autoStop?: boolean;
    enabled?: boolean;
    height?: string | number;
    lerp?: number;
    width?: string | number;
}

Hierarchy (View Summary)

Properties

__mutableProp?: true
autoStop?: boolean

Stops rendering the cursor automatically when its coordinates and size closely match the target values.

true
enabled?: boolean

Enables or disables the custom cursor interactions.

true
height?: string | number

The initial height of the custom cursor. Supports css units like px, rem, vw, vh, svh.

50
lerp?: number

Linear interpolation factor for smooth cursor movement. The value must be between 0 and 1, with higher values indicating faster movement.

0.2
width?: string | number

The initial width of the custom cursor. Supports css units like px, rem, vw, vh, svh.

50