mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
18 lines
431 B
TypeScript
18 lines
431 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;
|