mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
14 lines
440 B
TypeScript
14 lines
440 B
TypeScript
import { ToastContainer, type ToastContainerProps } from 'react-toastify';
|
|
|
|
import { usePreferencesStore } from '@/stores/preferences';
|
|
|
|
interface ToasterThemedProps extends Omit<ToastContainerProps, 'theme'> {}
|
|
|
|
function ToasterThemed(props: ToasterThemedProps) {
|
|
const darkMode = usePreferencesStore(state => state.darkMode);
|
|
|
|
return <ToastContainer theme={darkMode ? 'dark' : 'light'} {...props} />;
|
|
}
|
|
|
|
export default ToasterThemed;
|