type ButtonProps = { onClick: () => void children: React.ReactNode disabled?: boolean className?: string } export const Button = ({ children, disabled, onClick, className }: ButtonProps) => { return (