@if (visible) {
@if (mode === 'fullscreen') {
@if (title) {

{{ title }}

@if (showCloseButton) { }
}
@if (icon === 'success') { } @if (icon === 'info') { } @if (icon === 'warning') { } @if (icon === 'error') { }
@if (message) {
{{ message }}
}
@if (showActionButton) {
}
} @if (mode === 'modal') {
@if (title) {

{{ title }}

} @if (showCloseButton) { }
@if (message) {
{{ message }}
}
@if (showActionButton || showCloseButton) {
@if (showActionButton) { } @if (showCloseButton) { }
}
} @if (mode === 'corner') {
@if (icon === 'success') { } @if (icon === 'info') { } @if (icon === 'warning') { } @if (icon === 'error') { }
@if (title) {
{{ title }}
} @if (message) {
{{ message }}
}
@if (showCloseButton) { }
}
}