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 • 427 B
TypeScript
interface FallingTextProps {
text?: string;
highlightWords?: string[];
highlightClass?: string;
trigger?: "auto" | "scroll" | "click" | "hover";
backgroundColor?: string;
wireframes?: boolean;
gravity?: number;
mouseConstraintStiffness?: number;
fontSize?: string;
}
declare const FallingText: React.FC<FallingTextProps>;
export default FallingText;
//# sourceMappingURL=FallingText.d.ts.map