ConstSnackbar configuration (see SnackBarProps)
Snackbar component with animated alert message
// Success notification
<Snackbar
snackBarId="success-msg"
message="Operation completed"
open={isOpen}
type="success"
onClose={handleClose}
/>
// Error with action button
<Snackbar
snackBarId="error-msg"
message="An error occurred"
open={isOpen}
type="error"
button={<Button onClick={handleRetry}>Retry</Button>}
/>
Material-UI Snackbar component for displaying app/map notification messages.
Combines Material-UI's Snackbar with Alert to provide animated feedback messages with type-based styling (success, error, warning, info). Supports custom action buttons and close callbacks. Uses React Spring animations for fade-in effect.