mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 12:41:37 +00:00
17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
<MudStack Row="true" Class="mb-3">
|
|
<MudSelect
|
|
@bind-Value="@this.Value"
|
|
Label="@this.Label"
|
|
Placeholder="@this.Default.Value"
|
|
AdornmentIcon="@this.Icon"
|
|
Adornment="Adornment.Start"
|
|
Variant="Variant.Outlined"
|
|
Margin="Margin.Dense">
|
|
@foreach (var item in Items)
|
|
{
|
|
<MudSelectItem Value="@item.Value">
|
|
@item.Display
|
|
</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
</MudStack> |