import React from "react"; export interface GlassButtonProps { children: React.ReactNode; onClick?: () => void; className?: string; disabled?: boolean; type?: "button" | "submit" | "reset"; } export const GlassButton: React.FC = ({ children, onClick, className = "", disabled = false, type = "button", }) => { return ( ); };