UNPKG

@izhann/react-cursor-fx

Version:

Interactive cursor effects for React and Next.js applications

11 lines (10 loc) 277 B
import type React from "react"; import type { ReactNode } from "react"; interface CursorTargetProps { children: ReactNode; variant: string; onEnter?: () => void; onLeave?: () => void; } export declare const CursorTarget: React.FC<CursorTargetProps>; export {};