react-toastify#TypeOptions TypeScript Examples
The following examples show how to use
react-toastify#TypeOptions.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From slice-machine with Apache License 2.0 | 6 votes |
getIconAccordingToasterType = ({
type,
}: {
type: TypeOptions;
}): JSX.Element | undefined => {
switch (type) {
case toast.TYPE.INFO:
return <MdError />;
case toast.TYPE.ERROR:
return <MdDangerous />;
case toast.TYPE.SUCCESS:
return <MdDone />;
case toast.TYPE.WARNING:
return <MdWarning />;
}
}