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

10 lines
319 B
Plaintext
Raw Normal View History

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