UNPKG

@appletosolutions/reactbits

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

19 lines 498 B
import React from "react"; export interface DotGridProps { dotSize?: number; gap?: number; baseColor?: string; activeColor?: string; proximity?: number; speedTrigger?: number; shockRadius?: number; shockStrength?: number; maxSpeed?: number; resistance?: number; returnDuration?: number; className?: string; style?: React.CSSProperties; } declare const DotGrid: React.FC<DotGridProps>; export default DotGrid; //# sourceMappingURL=DotGrid.d.ts.map