de7e742731
- aggiunta nuova path e rename
23 lines
763 B
Plaintext
23 lines
763 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>
|
|
|
|
|
|
|