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