1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-17 22:34:48 +02:00
Files

16 lines
509 B
Plaintext

<MudStack Row Spacing="0" Justify="Justify.Center" Class="@Class">
<MudText Class="ms-2" Typo="LabelTypo" Style="@($"color:{YellowColor}")">One</MudText>
<MudText Typo="LabelTypo">Sw</MudText>
<MudText Typo="LabelTypo" Style="@($"color:{YellowColor}")">i</MudText>
<MudText Typo="LabelTypo">ss</MudText>
</MudStack>
@code
{
[Parameter] public Typo LabelTypo { get; set; } = Typo.h5;
[Parameter] public string? Class { get; set; }
private const string YellowColor = "#ffe016";
}