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