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.
10 lines • 318 B
TypeScript
import React from "react";
interface CircularTextProps {
text: string;
spinDuration?: number;
onHover?: "slowDown" | "speedUp" | "pause" | "goBonkers";
className?: string;
}
declare const CircularText: React.FC<CircularTextProps>;
export default CircularText;
//# sourceMappingURL=CircularText.d.ts.map