mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-06-19 22:31:22 +00:00
38 lines
875 B
TypeScript
38 lines
875 B
TypeScript
import * as React from 'react';
|
|
import Button from '@mui/material/Button';
|
|
import Snackbar, { SnackbarCloseReason } from '@mui/material/Snackbar';
|
|
import Alert from '@mui/material/Alert';
|
|
|
|
export const CustomizedSnackbars = ({open, setOpen, info, setInfo}) => {
|
|
|
|
|
|
|
|
const handleClose = (
|
|
event?: React.SyntheticEvent | Event,
|
|
reason?: SnackbarCloseReason,
|
|
) => {
|
|
if (reason === 'clickaway') {
|
|
return;
|
|
}
|
|
|
|
setOpen(false);
|
|
setInfo(null)
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Snackbar anchorOrigin={{ vertical: 'bottom', horizontal: 'center' }} open={open} autoHideDuration={6000} onClose={handleClose}>
|
|
<Alert
|
|
|
|
|
|
onClose={handleClose}
|
|
severity={info?.type}
|
|
variant="filled"
|
|
sx={{ width: '100%' }}
|
|
>
|
|
{info?.message}
|
|
</Alert>
|
|
</Snackbar>
|
|
</div>
|
|
);
|
|
} |