AI-Studio/app/MindWork AI Studio/Components/ConfigInfoRow.razor

11 lines
350 B
Plaintext
Raw Normal View History

<div style="display: flex; align-items: center; gap: 8px; @this.Item.Style">
<MudIcon Icon="@this.Item.Icon"/>
2026-02-19 19:30:24 +00:00
<span>
@this.Item.Text
2026-02-19 19:30:24 +00:00
</span>
@if (!string.IsNullOrWhiteSpace(this.Item.CopyValue))
2026-02-19 19:30:24 +00:00
{
<MudCopyClipboardButton TooltipMessage="@this.Item.CopyTooltip" StringContent="@this.Item.CopyValue"/>
2026-02-19 19:30:24 +00:00
}
</div>