@arolariu/components
Version:
🎨 70+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
11 lines • 459 B
TypeScript
import { type Transition } from "motion/react";
import * as React from "react";
interface GradientTextProps extends React.HTMLAttributes<HTMLSpanElement> {
text: string;
gradient?: string;
neon?: boolean;
transition?: Transition;
}
declare const GradientText: React.ForwardRefExoticComponent<GradientTextProps & React.RefAttributes<HTMLSpanElement>>;
export { GradientText, type GradientTextProps };
//# sourceMappingURL=gradient-text.d.ts.map