mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
import { withStyles } from '@material-ui/core/styles'
|
|
import MuiDialogContent from '@material-ui/core/DialogContent'
|
|
|
|
export const DialogContent = withStyles((theme) => ({
|
|
root: {
|
|
padding: theme.spacing(2),
|
|
},
|
|
}))(MuiDialogContent)
|