Files
SethDiscordBot/WebUI/Components/Shared/ModernLabel.razor

7 lines
173 B
Plaintext

<label class="form-label fw-semibold text-secondary" style="font-size: 1rem;">
@Text
</label>
@code {
[Parameter] public string Text { get; set; } = string.Empty;
}