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 iconRight?: React.ReactNode iconLeft?: React.ReactNode height?: string | number width?: string | number padding?: string | number margin?: string | number } // eslint-disable-next-line react/display-name const Button = forwardRef( ( { children, onClick, className, buttonType = "primary", type = "button", disabled = false, iconRight, iconLeft, height, width, padding, margin, ...props }, ref ) => { return ( ) } ) export default Button