UNPKG

@izhann/react-cursor-fx

Version:

Interactive cursor effects for React and Next.js applications — zero runtime dependencies

14 lines (13 loc) 394 B
import type React from "react"; interface CursorProps { zIndex?: number; showOnTouch?: boolean; trailLength?: number; /** * When true, the cursor squashes and stretches in the direction of travel * based on spring velocity. Applies only to circle shapes without a label. */ elongate?: boolean; } export declare const Cursor: React.FC<CursorProps>; export {};