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