Merge pull request #928 from getmaxun/alert-theme

feat(ui): match theme of standard & outlined alerts
This commit is contained in:
Karishma Shukla
2026-01-04 18:08:52 +05:30
committed by GitHub
2 changed files with 16 additions and 11 deletions

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 {