import Link from 'next/link' import { ReactNode } from 'react' const Button: React.FC = ({ type = 'button', className, children, href, disabled=false, onClick, }) => { return href ? {children} : onClick ? : } interface ButtonProps { type?: 'button' | 'submit' | 'reset' className?: string children: ReactNode href?: string disabled?: boolean onClick?: () => void } export default Button