UNPKG

@phazr/custom-cursor

Version:

A lightweight and highly customizable React component for creating unique and interactive cursor experiences.

10 lines (9 loc) 266 B
interface CursorProps { className?: string; springConfig?: { damping?: number; stiffness?: number; }; } export default function Cursor({ className, springConfig, }: CursorProps): import("react/jsx-runtime").JSX.Element | null; export {};