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