Mangiang 959c5fb0a6
Some checks failed
continuous-integration/drone/push Build is failing
fix: Fix theme handling
2021-12-19 12:51:52 -05:00

26 lines
692 B
TypeScript

import {Box, Theme, Typography} from '@mui/material'
import {makeStyles} from '@mui/styles'
const useStyles = makeStyles((theme: Theme) => ({
footerHolder: {
display: 'flex',
flex: '0 1 3vh',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
padding: '0 10vw 0 10vw',
backgroundColor: theme.palette.background.default,
color: theme.palette.text.primary
}
}))
export const Footer = () => {
const classes = useStyles()
return (
<Box className={classes.footerHolder}>
<Typography id={"footer"}>SPT-Aki ©2021 Created by Rev and Shirito</Typography>
</Box>
)
}