// @ts-nocheck 'use client'; import React, { ReactNode } from 'react'; import { cn } from '../../lib/utils'; interface AuroraBackgroundProps extends React.HTMLProps { children: ReactNode; showRadialGradient?: boolean; } export const AuroraBackground = ({ className, children, showRadialGradient = true, ...props }: AuroraBackgroundProps) => { return (
{children}
); };