import { ComponentPropsWithoutRef } from "react"; import { cn } from "@/lib/utils"; interface MovingGradientProps extends ComponentPropsWithoutRef<"div"> { animated?: boolean; gradientClassName?: string; } export default function MovingGradient({ children, className, animated = true, gradientClassName, ...props }: MovingGradientProps) { const backgroundClassName = "pointer-events-none absolute h-full w-full"; return (