UNPKG

reactbits-animation

Version:

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

16 lines 449 B
import React from "react"; type MetaBallsProps = { color?: string; speed?: number; enableMouseInteraction?: boolean; hoverSmoothness?: number; animationSize?: number; ballCount?: number; clumpFactor?: number; cursorBallSize?: number; cursorBallColor?: string; enableTransparency?: boolean; }; declare const MetaBalls: React.FC<MetaBallsProps>; export default MetaBalls; //# sourceMappingURL=MetaBalls.d.ts.map