Files
gpw_next/GPW.CORE.Comp/ToastDisplay.razor
T
Samuele Locatelli d37766b3a3 GPW.Core.APi:
- update conf e test timb
2023-01-27 11:42:02 +01:00

19 lines
759 B
Plaintext

<div class="toast-container p-3 @cssPosition">
<div class="toast bg-light fade @toastCss" id="LiveToast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<span class="bg-primary px-2 text-light rounded me-2"><i class="fa-solid fa-clock"></i></span>
<strong class="me-auto">@TitleSx</strong>
<small>@TitleDx</small>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close" @onclick="() => doClose()"></button>
</div>
<div class="toast-body">
@if (@ChildContent != null)
{
<div>
@ChildContent
</div>
}
</div>
</div>
</div>