import { type ReactNode } from "react"; import GlassContainer from "./GlassContainer"; import { GLASS_EFFECTS } from "../constants"; interface GlassButtonProps { children: ReactNode; onClick: (e: React.MouseEvent) => void; className?: string; disabled?: boolean; bgColor?: string; "aria-label"?: string; } export default function GlassButton({ children, onClick, className = "", disabled = false, bgColor = GLASS_EFFECTS.COLORS.BUTTON_BG, ...ariaProps }: GlassButtonProps) { return ( ); }