UNPKG

@izhann/react-cursor-fx

Version:

Interactive cursor effects for React and Next.js applications

10 lines (9 loc) 214 B
import type React from "react"; interface CursorProps { size?: number; zIndex?: number; showOnTouch?: boolean; trailLength?: number; } export declare const Cursor: React.FC<CursorProps>; export {};