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.
14 lines • 421 B
TypeScript
import React from "react";
interface ClickSparkProps {
sparkColor?: string;
sparkSize?: number;
sparkRadius?: number;
sparkCount?: number;
duration?: number;
easing?: "linear" | "ease-in" | "ease-out" | "ease-in-out";
extraScale?: number;
children?: React.ReactNode;
}
declare const ClickSpark: React.FC<ClickSparkProps>;
export default ClickSpark;
//# sourceMappingURL=ClickSpark.d.ts.map