import styles from './button.module.css' import { forwardRef, Ref } from 'react' type Props = React.HTMLProps & { children: React.ReactNode buttonType?: 'primary' | 'secondary' className?: string onClick?: (e: React.MouseEvent) => void } // eslint-disable-next-line react/display-name const Button = forwardRef( ({ children, onClick, className, buttonType = 'primary', type = 'button', disabled = false, ...props }, ref) => { return ( ) } ) export default Button