aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/BackToListButton.tsx
diff options
context:
space:
mode:
authorLena <lena.becker-3@mni.thm.de>2021-03-15 15:40:25 +0100
committerSascha <GlancingMind@outlook.com>2021-03-15 16:35:14 +0100
commit09fabc98a357454b2c4da4f08ce269bb4106c36a (patch)
tree3052b77b9990215c379bb8feaae5508152865c1f /webui/src/components/BackToListButton.tsx
parentac17596c1ab94b6426bb5b48e39ed0dd9038303e (diff)
downloadgit-bug-09fabc98a357454b2c4da4f08ce269bb4106c36a.tar.gz
Adjust Button #10
Diffstat (limited to 'webui/src/components/BackToListButton.tsx')
-rw-r--r--webui/src/components/BackToListButton.tsx36
1 files changed, 36 insertions, 0 deletions
diff --git a/webui/src/components/BackToListButton.tsx b/webui/src/components/BackToListButton.tsx
new file mode 100644
index 00000000..7ca53ad0
--- /dev/null
+++ b/webui/src/components/BackToListButton.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 BackToListButton() {
+ const classes = useStyles();
+
+ return (
+ <Button
+ variant="contained"
+ className={classes.backButton}
+ aria-label="back to issue list"
+ href="/"
+ >
+ <ArrowBackIcon />
+ Back to List
+ </Button>
+ );
+}
+
+export default BackToListButton;