// ** React Imports import { useState } from 'react' // ** MUI Imports import Button from '@mui/material/Button' import Dialog from '@mui/material/Dialog' import IconButton from '@mui/material/IconButton' import Typography from '@mui/material/Typography' import DialogTitle from '@mui/material/DialogTitle' import DialogContent from '@mui/material/DialogContent' import DialogActions from '@mui/material/DialogActions' // ** Icon Imports import Icon from 'src/@core/components/icon' const DialogCustomized = () => { // ** State const [open, setOpen] = useState(false) const handleClickOpen = () => setOpen(true) const handleClose = () => setOpen(false) return (
Modal title Chupa chups jelly-o candy sweet roll wafer cake chocolate bar. Brownie sweet roll topping cake chocolate cake cheesecake tiramisu chocolate cake. Jujubes liquorice chocolate bar pastry. Chocolate jujubes caramels pastry. Ice cream marshmallow dragée bonbon croissant. Carrot cake sweet donut ice cream bonbon oat cake danish sugar plum. Gingerbread gummies marzipan gingerbread. Soufflé toffee ice cream. Jelly-o pudding sweet roll bonbon. Marshmallow liquorice icing. Jelly beans chocolate bar chocolate marzipan candy fruitcake jujubes. `${theme.spacing(3)} !important` }}>
) } export default DialogCustomized