30 lines
734 B
Plaintext
30 lines
734 B
Plaintext
<div class="paper @Class" style="width: @Width; @Style">
|
|
<b class="text-title">@Title</b>
|
|
<span class="text-data" style="color: @Color">@Data</span>
|
|
<span class="text-unit">@Unit</span>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Unit { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Color { get; set; } = "var(--dashboard-text-common-color)";
|
|
|
|
[Parameter]
|
|
public string Data { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Class { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Width { get; set; } = "14.17%";
|
|
|
|
}
|