import { cn } from "@/lib/cn";
import type { HTMLAttributes } from "react";

export function GlassPanel({
  className,
  ...props
}: HTMLAttributes<HTMLDivElement>) {
  return (
    <div
      className={cn(
        "rounded-2xl border border-white/50 bg-white/55 shadow-[0_8px_40px_-12px_rgba(15,31,68,0.25)] backdrop-blur-xl",
        className
      )}
      {...props}
    />
  );
}
