summaryrefslogtreecommitdiff
path: root/client/src/components/BackButton/BackButton.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/components/BackButton/BackButton.jsx')
-rw-r--r--client/src/components/BackButton/BackButton.jsx14
1 files changed, 9 insertions, 5 deletions
diff --git a/client/src/components/BackButton/BackButton.jsx b/client/src/components/BackButton/BackButton.jsx
index ff99eb6..fdb85f1 100644
--- a/client/src/components/BackButton/BackButton.jsx
+++ b/client/src/components/BackButton/BackButton.jsx
@@ -1,3 +1,4 @@
+import { Typography } from '@mui/material'
import React from 'react'
import styles from './BackButton.module.css'
@@ -10,11 +11,14 @@ const BackButton = ({ onClick, onChange }) => {
type="submit"
onChange={onChange}
>
- <img
- className={styles.submit__image}
- src={`${process.env.PUBLIC_URL}/assets/images/back.svg`}
- alt=""
- />
+ <div className={styles.submit__content}>
+ <img
+ className={styles.submit__image}
+ src={`${process.env.PUBLIC_URL}/assets/images/back.svg`}
+ alt=""
+ />
+ <Typography sx={{ fontSize: '1.5rem', fontWeight: 'bolder', margin: '10px', color: '#323c7a' }}>Back</Typography>
+ </div>
</button>
</>
)