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

5 lines
224 B
Plaintext
Raw Normal View History

@inherits ConfigurationBaseCore
<MudSwitch T="bool" Disabled="@this.IsDisabled" Value="@this.State()" ValueChanged="@this.OptionChanged" Color="Color.Primary">
@(this.State() ? this.LabelOn : this.LabelOff)
</MudSwitch>