aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Buttons/ButtonSubmit/ButtonSubmit.tsx
blob: fd7fc6282c8f2e785d6ef1d17b33367d0a1f8041 (plain)
1
2
3
4
5
6
7
8
9
10
11
import styles from '../Buttons.module.scss';

const ButtonSubmit: React.FunctionComponent = ({ children }) => {
  return (
    <button type="submit" className={`${styles.btn} ${styles.submit}`}>
      {children}
    </button>
  );
};

export default ButtonSubmit;