aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/components/BackToListButton.tsx
blob: 7ca53ad05ae8595c7790500d7322d1a0e9aa0d21 (plain) (tree)


















                                                         
                             














                                     
                                
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;