type Props = React.ButtonHTMLAttributes & { variant?: "primary" | "secondary" | "ghost" | "danger" }; export default function Button({ variant = "secondary", className = "", ...props }: Props) { return