9 lines
240 B
React
9 lines
240 B
React
|
|
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)
|