@Text @code { [Parameter] public string? Text { get; set; } private string CssClass => Text switch { "Ready" or "Healthy" => "text-bg-success", "Creating" or "StartingWorker" or "WaitingForPipe" or "InitializingWorker" or "Closing" => "text-bg-info", "Closed" => "text-bg-secondary", "Faulted" => "text-bg-danger", _ => "text-bg-light text-dark border" }; }