// ** MUI Imports import Box from '@mui/material/Box' import Button from '@mui/material/Button' 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 ToastCustomPosition = () => { const handleClick = () => { return toast.success('Always at the bottom.', { position: 'bottom-right' }) } return ( Custom Position You can change the toast's position as you like. ) } export default ToastCustomPosition