mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:09:06 +00:00
8 lines
379 B
Plaintext
8 lines
379 B
Plaintext
<MudList T="string" ReadOnly="@(!this.Clickable)" Class="@this.Classes">
|
|
@foreach(var item in this.Items)
|
|
{
|
|
<MudListItem T="string" Icon="@this.Icon" Style="display: flex; align-items: flex-start;">
|
|
<MudText Typo="Typo.body1" Style="text-align: justify; hyphens: auto;"><b>@item.Header:</b> @item.Text</MudText>
|
|
</MudListItem>
|
|
}
|
|
</MudList> |