wavyjs
Version:
Reusable React + TypeScript component and hooks library with Tailwind, Framer Motion, and GSAP.
17 lines • 565 B
TypeScript
import { default as React } from 'react';
export interface InteractiveBoxGridProps {
/** Size of each box */
boxSize?: number;
/** Distance between boxes */
spacing?: number;
/** Max cursor interaction distance */
maxDistance?: number;
/** Strength of movement (0–1) */
moveStrength?: number;
/** Extra classes for styling */
className?: string;
boxColor?: string;
}
declare const InteractiveBoxGrid: React.FC<InteractiveBoxGridProps>;
export default InteractiveBoxGrid;
//# sourceMappingURL=InteractiveBoxGrid.d.ts.map