interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
  children: React.ReactNode;
}

function Button({ children, ...props }: ButtonProps) {
  return (
    <button
      className="rounded-xl bg-white text-black border border-black py-2 px-6 text-base hover:bg-gray-200 transition-colors"
      {...props}
    >
      {children}
    </button>
  );
}

export default Button;
