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

11 lines
350 B
Plaintext

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