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.

14 lines 398 B
import React from "react"; interface FuzzyTextProps { children: React.ReactNode; fontSize?: number | string; fontWeight?: string | number; fontFamily?: string; color?: string; enableHover?: boolean; baseIntensity?: number; hoverIntensity?: number; } declare const FuzzyText: React.FC<FuzzyTextProps>; export default FuzzyText; //# sourceMappingURL=FuzzyText.d.ts.map