import style from './index.module.scss';
import classNames from 'classnames';
interface ButtonProps {
  title: string;
  className?: string;

  onClick?: () => void;
}
export default function Button({ title, onClick, className }: ButtonProps) {
  const classes = classNames('botfoundry-btn', style['std-button'], className);
  return (
    <button className={classes} onClick={onClick}>
      {title}
    </button>
  );
}
