AI-Studio/app/MindWork AI Studio/Components/ConfigInfoRow.razor
2026-02-19 20:30:24 +01:00

10 lines
319 B
Plaintext

<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>