mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-20 11:01:37 +00:00
11 lines
350 B
Plaintext
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>
|