import { ReactNode } from 'react'; import { cn } from '../../lib/utils'; export default function AnimatedGradientText({ children, className, }: { children: ReactNode; className?: string; }) { return (
{children}
); }