import React from 'react'; import { Toaster as Sonner } from 'sonner'; import { Icons } from '../Icons'; type ToasterProps = React.ComponentProps; const Toaster = ({ ...props }: ToasterProps) => { return ( } icons={{ warning: , info: , success: , error: , }} theme="dark" richColors="true" toastOptions={{ style: { width: '430px', // Set a maximum width right: '8px', }, }} {...props} /> ); }; export { Toaster };