// ** MUI Imports import Box from '@mui/material/Box' import Button from '@mui/material/Button' import Avatar from '@mui/material/Avatar' import IconButton from '@mui/material/IconButton' import Typography from '@mui/material/Typography' // ** Icon Imports import Icon from 'src/@core/components/icon' // ** Third Party Components import toast from 'react-hot-toast' const ToastCustom = () => { const handleClick = () => { return toast( t => ( John Doe Sure! 8:30pm works great! toast.dismiss(t.id)}> ), { style: { minWidth: '300px' } } ) } return ( Custom Make a toast using any custom content Custom ) } export default ToastCustom