import React, { ButtonHTMLAttributes } from 'react'; type Props = { children: React.ReactNode; className?: string; } & ButtonHTMLAttributes; export default function Button({children, className= '', disabled = false, ...props}: Props) { return ( ) }