diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-16 13:40:12 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-16 13:40:12 +0100 |
| commit | eb459cc248a5940a14193b20d263ffee3d345026 (patch) | |
| tree | 92ea7b91d4481b4b61f86bef5299227e0bca1c3d /src/components/Buttons/ButtonSubmit | |
| parent | 94f1c1fbea903e677476a167e51b549bb0c53330 (diff) | |
chore: create contact page
Diffstat (limited to 'src/components/Buttons/ButtonSubmit')
| -rw-r--r-- | src/components/Buttons/ButtonSubmit/ButtonSubmit.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Buttons/ButtonSubmit/ButtonSubmit.tsx b/src/components/Buttons/ButtonSubmit/ButtonSubmit.tsx new file mode 100644 index 0000000..fd7fc62 --- /dev/null +++ b/src/components/Buttons/ButtonSubmit/ButtonSubmit.tsx @@ -0,0 +1,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; |
