UI/Silkicon.razor
@using Sandbox.UI

@namespace HC3

@inherits Panel

<root>
    <img src="silkicons/@(Icon).png" style="width:@(Width)px; height:@(Height)px;" />
</root>

@code
{
    [Parameter] 
    public string Icon { get; set; } = "heart";

    public int Width { get; set; } = 12;
    public int Height { get; set; } = 12;
}