Skip to main content

cssTransition

ParameterTypeRequiredDefaultDescription
enterstringβœ“-The class name that will be used when the toast enter
exitstringβœ“-The class name that will be used when the toast exit
appendPositionbool✘falseAppend or not the position to the class name: yourClassName--top-right, yourClassName--bottom-left...
collapsebool✘trueCollapse toast after exit animation
collapseDurationnumber✘300The collapse duration

Usage​

import { cssTransition } from 'react-toastify';

const Zoom = cssTransition({
enter: 'zoomIn',
exit: 'zoomOut',
appendPosition: false,
collapse: true,
collapseDuration: 300
});