mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
10 lines
435 B
Plaintext
10 lines
435 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" Align="Align.Justify" Style="hyphens: auto; word-break: auto-phrase;">
|
|
<b>@item.Header:</b> @item.Text
|
|
</MudText>
|
|
</MudListItem>
|
|
}
|
|
</MudList> |