RWKV-Runner/frontend/src/components/CustomToastContainer.tsx
2023-06-25 00:07:14 +08:00

17 lines
469 B
TypeScript

import commonStore from '../stores/commonStore';
import { ToastContainer } from 'react-toastify';
export const CustomToastContainer = () =>
<ToastContainer
style={{ width: '350px' }}
position="top-center"
autoClose={4000}
pauseOnHover={true}
hideProgressBar={true}
newestOnTop={true}
closeOnClick={false}
rtl={false}
pauseOnFocusLoss={false}
draggable={false}
theme={commonStore.settings.darkMode ? 'dark' : 'light'}
/>;