UNPKG

@erosnicolau/animated-text

Version:

Advanced React animated text component with comprehensive animation effects

12 lines 530 B
import { AnimationEasing, ComposableEffect } from '../types'; interface AnimatedLetterProps { letterIndex: number; content: string; effect: ComposableEffect; duration: number; easing: AnimationEasing; animatedItems: Set<number>; } declare const AnimatedLetter: import("react").MemoExoticComponent<({ letterIndex, content, effect, duration, easing, animatedItems }: AnimatedLetterProps) => import("react/jsx-runtime").JSX.Element>; export default AnimatedLetter; //# sourceMappingURL=AnimatedLetter.d.ts.map