'use client'; import * as React from 'react'; import { HTMLMotionProps, motion, type Transition } from 'motion/react'; import { cn } from '@workspace/ui/lib/utils'; type GradientBackgroundProps = HTMLMotionProps<'div'> & { transition?: Transition; }; function GradientBackground({ className, transition = { duration: 15, ease: 'easeInOut', repeat: Infinity }, ...props }: GradientBackgroundProps) { return ( ); } export { GradientBackground, type GradientBackgroundProps };