import React from 'react' type Props = { children: string className?: string onClick: (e: React.MouseEvent) => void disabled?: boolean } const Button = React.forwardRef( ({ children, className = '', onClick, disabled }, ref) => ( ) ) Button.displayName = 'Button' export default Button