diff options
Diffstat (limited to 'client/src/components/BackButton/BackButton.jsx')
-rw-r--r-- | client/src/components/BackButton/BackButton.jsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/client/src/components/BackButton/BackButton.jsx b/client/src/components/BackButton/BackButton.jsx new file mode 100644 index 0000000..c02681b --- /dev/null +++ b/client/src/components/BackButton/BackButton.jsx @@ -0,0 +1,23 @@ +import React from 'react' +import styles from './BackButton.module.css' + +const BackButton = ({ onClick, onChange }) => { + return ( + <> + <button + onClick={onClick} + className={styles.submit} + type="submit" + onChange={onChange} + > + <img + className={styles.submit__image} + src={`${process.env.PUBLIC_URL}/assets/images/next_icon.svg`} + alt="" + /> + </button> + </> + ) +} + +export default BackButton |