Files
qbtmud/Lantean.QBTMud/Components/UI/TickSwitch.razor
2024-10-22 09:57:50 +01:00

16 lines
379 B
Plaintext

@inherits MudSwitch<T>
@typeparam T
@{
base.BuildRenderTree(__builder);
}
@code{
protected override void OnParametersSet()
{
if (Value is bool boolValue)
{
this.ThumbIcon = boolValue ? Icons.Material.Filled.Done : Icons.Material.Filled.Close;
this.ThumbIconColor = boolValue ? Color.Success : Color.Error;
}
}
}