2025-01-23 12:20:41 +00:00
|
|
|
<MudStack Row="@true" AlignItems="AlignItems.Center">
|
|
|
|
<MudTextField
|
|
|
|
T="string"
|
|
|
|
ReadOnly="@true"
|
|
|
|
Label="@this.Label"
|
|
|
|
Text="@this.Value"
|
|
|
|
Variant="Variant.Outlined"
|
|
|
|
Margin="Margin.Dense"
|
|
|
|
Adornment="Adornment.Start"
|
2025-01-23 12:25:41 +00:00
|
|
|
AdornmentIcon="@this.Icon"
|
|
|
|
UserAttributes="@USER_INPUT_ATTRIBUTES" />
|
2025-01-23 12:20:41 +00:00
|
|
|
|
|
|
|
@if (this.ShowingCopyButton)
|
|
|
|
{
|
|
|
|
<MudTooltip Text="@this.ClipboardTooltip">
|
|
|
|
<MudIconButton Icon="@Icons.Material.Filled.ContentCopy" Size="Size.Medium" OnClick="@(() => this.CopyToClipboard(this.Value))"/>
|
|
|
|
</MudTooltip>
|
|
|
|
}
|
|
|
|
</MudStack>
|