const Button = ({ text, ...props }) => (
  <button className={styles.main} {...props}>{text}</button>
);