mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 01:52:14 +00:00
25 lines
900 B
Plaintext
25 lines
900 B
Plaintext
|
|
<MudPaper Outlined="true" Class="@this.Class">
|
||
|
|
<div style="display: flex; align-items: center; gap: 8px; margin-bottom: 8px;">
|
||
|
|
<MudIcon Icon="@this.HeaderIcon" Size="Size.Small"/>
|
||
|
|
<MudText Typo="Typo.subtitle2">
|
||
|
|
@this.HeaderText
|
||
|
|
</MudText>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
@foreach (var item in this.Items)
|
||
|
|
{
|
||
|
|
<ConfigInfoRow Icon="@item.Icon"
|
||
|
|
Text="@item.Text"
|
||
|
|
CopyValue="@item.CopyValue"
|
||
|
|
CopyTooltip="@item.CopyTooltip"
|
||
|
|
Style="@(item.Style)"/>
|
||
|
|
}
|
||
|
|
|
||
|
|
@if (this.ShowWarning)
|
||
|
|
{
|
||
|
|
<div style="display: flex; align-items: center; gap: 8px; margin-top: 4px;">
|
||
|
|
<MudIcon Icon="@Icons.Material.Filled.Warning" Size="Size.Small" Color="Color.Warning"/>
|
||
|
|
<MudText Typo="Typo.subtitle2">@this.WarningText</MudText>
|
||
|
|
</div>
|
||
|
|
}
|
||
|
|
</MudPaper>
|