AI-Studio/app/MindWork AI Studio/Components/MudTextSwitch.razor

5 lines
333 B
Plaintext
Raw Normal View History

2024-08-05 19:12:52 +00:00
<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>