import * as React from 'react'; import { toast, ToastBar, Toaster } from 'react-hot-toast'; import { HiX } from 'react-icons/hi'; export default function DismissableToast() { return (
{(t) => ( {({ icon, message }) => ( <> {icon} {message} {t.type !== 'loading' && ( )} )} )}
); }