mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 14:49:06 +00:00
5 lines
333 B
Plaintext
5 lines
333 B
Plaintext
<MudField Label="@this.Label" Variant="Variant.Outlined" Class="mb-3" Disabled="@this.Disabled">
|
|
<MudSwitch T="bool" Value="@this.Value" ValueChanged="@this.ValueChanged" Color="@this.Color" Validation="@this.Validation" Disabled="@this.Disabled">
|
|
@(this.Value ? this.LabelOn : this.LabelOff)
|
|
</MudSwitch>
|
|
</MudField> |