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.

13 lines 378 B
import React from "react"; export interface ScrambledTextProps { radius?: number; duration?: number; speed?: number; scrambleChars?: string; className?: string; style?: React.CSSProperties; children: React.ReactNode; } declare const ScrambledText: React.FC<ScrambledTextProps>; export default ScrambledText; //# sourceMappingURL=ScrambleText.d.ts.map