import { cn } from "@/lib/utils"; import { ComponentPropsWithoutRef } from "react"; export interface AnimatedGradientTextProps extends ComponentPropsWithoutRef<"div"> { speed?: number; colorFrom?: string; colorTo?: string; } export function AnimatedGradientText({ children, className, speed = 1, colorFrom = "#ffaa40", colorTo = "#9c40ff", ...props }: AnimatedGradientTextProps) { return ( {children} ); }