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

5 lines
371 B
Plaintext
Raw Normal View History

<MudField Label="@this.Label" Variant="Variant.Outlined" Class="@this.FieldClasses" Disabled="@this.Disabled">
<MudSwitch T="bool" Size="@this.SwitchSize" Value="@this.Value" ValueChanged="@this.ValueChanged" Color="@this.Color" Validation="@this.Validation" Disabled="@this.Disabled">
2024-08-05 19:12:52 +00:00
@(this.Value ? this.LabelOn : this.LabelOff)
</MudSwitch>
</MudField>