mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
20 lines
386 B
Plaintext
20 lines
386 B
Plaintext
@if (Label != null) {
|
|
<label for="@Id" class="form-label">@Label</label>
|
|
}
|
|
else if (LabelFragment != null) {
|
|
<label for="@Id" class="form-label">@LabelFragment</label>
|
|
}
|
|
|
|
@code {
|
|
|
|
[Parameter, EditorRequired]
|
|
public string Id { get; set; } = null!;
|
|
|
|
[Parameter]
|
|
public string? Label { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment? LabelFragment { get; set; }
|
|
|
|
}
|