UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

9 lines (8 loc) 291 B
import { ToastContainerProps as ReactToastifyProps } from 'react-toastify'; export interface ToastContainerProps extends Omit<ReactToastifyProps, 'transition'> { /** * The appearance effect. * @default Slide */ transitionType?: 'Slide' | 'Bounce' | 'Zoom' | 'Flip'; }