import { type ReactNode } from "react"; import { THEME } from "../constants"; interface ButtonProps { children: ReactNode; onClick: (e: React.MouseEvent) => void; className?: string; disabled?: boolean; "aria-label"?: string; } export default function Button({ children, onClick, className = "", disabled = false, ...ariaProps }: ButtonProps) { return ( ); }