fix: change AlertSnackbar variant from 'filled' to 'outlined'

This commit is contained in:
Karishma Shukla
2025-12-21 17:14:44 +05:30
committed by GitHub
parent 33bfbb6881
commit fda36a3f57

View File

@@ -7,7 +7,7 @@ const Alert = React.forwardRef<HTMLDivElement, AlertProps>(function Alert(
props,
ref,
) {
return <MuiAlert elevation={6} ref={ref} variant="filled" {...props} />;
return <MuiAlert elevation={6} ref={ref} variant="outlined" {...props} />;
});
export interface AlertSnackbarProps {