diff options
author | Lena <lena.becker-3@mni.thm.de> | 2021-03-13 23:12:24 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-15 16:35:14 +0100 |
commit | cd02d80ca2458be40d64d2e945670e0aeeb30fcc (patch) | |
tree | af0ffd54a3acad78e821a89f58d1c766c69bf680 /webui/src/pages/bug/BackButton.tsx | |
parent | 07f3163296b187ddf7069c05ca94f5ebaf43413c (diff) | |
download | git-bug-cd02d80ca2458be40d64d2e945670e0aeeb30fcc.tar.gz |
Make BackButton a component and Add it to NewBugPage #10
Diffstat (limited to 'webui/src/pages/bug/BackButton.tsx')
-rw-r--r-- | webui/src/pages/bug/BackButton.tsx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/webui/src/pages/bug/BackButton.tsx b/webui/src/pages/bug/BackButton.tsx new file mode 100644 index 00000000..4c73dd0a --- /dev/null +++ b/webui/src/pages/bug/BackButton.tsx @@ -0,0 +1,36 @@ +import React from 'react'; + +import Button from '@material-ui/core/Button'; +import { makeStyles } from '@material-ui/core/styles'; +import ArrowBackIcon from '@material-ui/icons/ArrowBack'; + +const useStyles = makeStyles((theme) => ({ + backButton: { + position: 'sticky', + top: '80px', + backgroundColor: theme.palette.primary.dark, + color: theme.palette.primary.contrastText, + '&:hover': { + backgroundColor: theme.palette.primary.main, + color: theme.palette.primary.contrastText, + }, + }, +})); + +function BackButton() { + const classes = useStyles(); + + return ( + <Button + variant="contained" + className={classes.backButton} + aria-label="back to issue list" + href="/" + > + <ArrowBackIcon /> + Back to List + </Button> + ); +} + +export default BackButton; |