Skip to content

Commit

Permalink
fix(core): update Message Box status icons (#11996)
Browse files Browse the repository at this point in the history
  • Loading branch information
InnaAtanasova committed Jun 11, 2024
1 parent 91006a4 commit 47ff78a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ export class MessageBoxSemanticIconComponent {
get _semanticIcon(): string {
switch (this.messageBoxConfig.type) {
case 'error':
return 'message-error';
return 'error';
case 'success':
return 'message-success';
return 'sys-enter-2';
case 'warning':
return 'message-warning';
return 'alert';
case 'information':
return 'message-information';
return 'information';
case 'confirmation':
return 'question-mark';
return 'sys-help-2';
default:
return '';
}
Expand Down

0 comments on commit 47ff78a

Please sign in to comment.