@Label
@Value
@if (!string.IsNullOrWhiteSpace(Detail)) {
@Detail
}
@code { [Parameter] public string Label { get; set; } = string.Empty; [Parameter] public string Value { get; set; } = string.Empty; [Parameter] public string? Detail { get; set; } }