mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
33 lines
933 B
JavaScript
33 lines
933 B
JavaScript
import { AppBar, IconButton, makeStyles, Toolbar, Typography } from '@material-ui/core'
|
|
import CloseIcon from '@material-ui/icons/Close'
|
|
import { ArrowBack } from '@material-ui/icons'
|
|
|
|
const useStyles = makeStyles({
|
|
appBar: { position: 'relative' },
|
|
title: { marginLeft: '5px', flex: 1 },
|
|
})
|
|
|
|
export default function DialogHeader({ title, onClose, onBack }) {
|
|
const classes = useStyles()
|
|
|
|
return (
|
|
<AppBar className={classes.appBar}>
|
|
<Toolbar>
|
|
{onBack && (
|
|
<IconButton edge='start' color='inherit' onClick={onBack} aria-label='back'>
|
|
<ArrowBack />
|
|
</IconButton>
|
|
)}
|
|
|
|
<Typography variant='h6' className={classes.title}>
|
|
{title}
|
|
</Typography>
|
|
|
|
<IconButton autoFocus color='inherit' onClick={onClose} aria-label='close' style={{ marginRight: '-10px' }}>
|
|
<CloseIcon />
|
|
</IconButton>
|
|
</Toolbar>
|
|
</AppBar>
|
|
)
|
|
}
|