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.

17 lines 533 B
type BlurTextProps = { text?: string; delay?: number; className?: string; animateBy?: 'words' | 'letters'; direction?: 'top' | 'bottom'; threshold?: number; rootMargin?: string; animationFrom?: Record<string, string | number>; animationTo?: Array<Record<string, string | number>>; easing?: (t: number) => number; onAnimationComplete?: () => void; stepDuration?: number; }; declare const BlurText: React.FC<BlurTextProps>; export default BlurText; //# sourceMappingURL=BlurText.d.ts.map