import { type ReactNode } from "react"; interface FrostedBoxProps { label?: string; children: ReactNode; className?: string; } export function FrostedBox({ label, children, className = "", }: FrostedBoxProps) { return (
{/* Extended frosted glass backdrop with mask */}
{/* Border */}
{/* Content */}
{label && ( {label} )} {children}
); }