@using Sandbox;
@using Sandbox.UI;
@inherits Panel
<root class="data-row">
<span class="label">@Label</span>
<span class="value" style="color: @(ValueColor ?? "#ffffff");">@Value</span>
</root>
@code {
[Property] public string Label { get; set; } = "";
[Property] public string Value { get; set; } = "";
[Property] public string ValueColor { get; set; } = null;
}