mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-20 07:41:37 +00:00
15 lines
579 B
Plaintext
15 lines
579 B
Plaintext
<MudText Typo="Typo.body1" Class="@this.Class">
|
|
<div style="display: flex; align-items: center; gap: 8px;">
|
|
<MudIcon Icon="@Icons.Material.Filled.ArrowRightAlt"/>
|
|
@if (this.IsConfigured)
|
|
{
|
|
<MudIcon Icon="@Icons.Material.Filled.CheckCircle" Color="Color.Success" Size="Size.Small"/>
|
|
<span>@this.ConfiguredText</span>
|
|
}
|
|
else
|
|
{
|
|
<MudIcon Icon="@Icons.Material.Filled.Cancel" Color="Color.Error" Size="Size.Small"/>
|
|
<span>@this.NotConfiguredText</span>
|
|
}
|
|
</div>
|
|
</MudText> |