mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:49:06 +00:00
11 lines
449 B
Plaintext
11 lines
449 B
Plaintext
<MudExpansionPanel Class="border-solid border rounded-lg" IsInitiallyExpanded="@this.IsExpanded">
|
|
<TitleContent>
|
|
<div class="d-flex align-center">
|
|
<MudIcon Icon="@this.HeaderIcon" Size="@this.IconSize" Color="@this.IconColor" class="mr-3"/>
|
|
<MudText Typo="Typo.h6">@this.HeaderText</MudText>
|
|
</div>
|
|
</TitleContent>
|
|
<ChildContent>
|
|
@this.ChildContent
|
|
</ChildContent>
|
|
</MudExpansionPanel> |