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

5 lines
238 B
Plaintext
Raw Normal View History

2025-07-11 20:31:41 +00:00
@inherits ConfigurationBaseCore
<MudButton Variant="Variant.Filled" Color="@Color.Primary" StartIcon="@this.Icon" Disabled="@this.IsDisabled" Class="mt-3 mb-6" OnClick="@(async () => await this.ClickAsync())">
@this.Text
</MudButton>