@izhann/react-cursor-fx
Version:
Interactive cursor effects for React and Next.js applications — zero runtime dependencies
14 lines (13 loc) • 413 B
TypeScript
import type React from "react";
interface CursorSpotlightProps {
/** Spotlight fill color (use rgba for transparency) */
color?: string;
/** Diameter of the spotlight in px */
size?: number;
/** CSS z-index */
zIndex?: number;
/** CSS mix-blend-mode */
blend?: React.CSSProperties["mixBlendMode"];
}
export declare const CursorSpotlight: React.FC<CursorSpotlightProps>;
export {};