import { ButtonHTMLAttributes } from 'react'; export default function SecondaryButton({ type = 'button', className = '', disabled, children, ...props }: ButtonHTMLAttributes) { return ( ); }