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.

12 lines (10 loc) 363 B
// Copyright (c) TotalSoft. // This source code is licensed under the MIT license. import { ToastContainerProps as ReactToastifyProps } from 'react-toastify' export interface ToastContainerProps extends Omit<ReactToastifyProps, 'transition'> { /** * The appearance effect. * @default Slide */ transitionType?: 'Slide' | 'Bounce' | 'Zoom' | 'Flip' }