@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.
16 lines • 449 B
TypeScript
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