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.

11 lines 407 B
import { ReactNode } from "react"; interface GradientTextProps { children: ReactNode; className?: string; colors?: string[]; animationSpeed?: number; showBorder?: boolean; } export default function GradientText({ children, className, colors, animationSpeed, showBorder, }: GradientTextProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GradientText.d.ts.map