@using SteUp.Shared.Components.Layout.Spinner @if (SuccessAnimation) {
@if (!string.IsNullOrWhiteSpace(Message)) {

@Message

}
} else {
@if (!string.IsNullOrWhiteSpace(Message)) {

@Message

}
}
@code { [Parameter] public required bool SuccessAnimation { get; set; } [Parameter] public required bool VisibleOverlay { get; set; } /// Testo opzionale mostrato sotto lo spinner/spunta (es. "Invio scheda 3 di 7…"). [Parameter] public string? Message { get; set; } }