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 383 B
import React, { ReactNode } from "react"; interface FadeContentProps { children: ReactNode; blur?: boolean; duration?: number; easing?: string; delay?: number; threshold?: number; initialOpacity?: number; className?: string; } declare const FadeContent: React.FC<FadeContentProps>; export default FadeContent; //# sourceMappingURL=FadeContent.d.ts.map