Gordon Pedersen
0c3836b0c8
I was overcomplicating everything trying to reduce the render lag. Just simplify it a bit. It works.
16 lines
395 B
Text
16 lines
395 B
Text
<article id="@id" class="@(string.IsNullOrEmpty(@class)?"":@class) middle-align center-align">
|
|
<div>
|
|
<i class="extra square @icon"></i>
|
|
<div class="space"></div>
|
|
<progress class="circle"></progress>
|
|
</div>
|
|
</article>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string id { get; set; }
|
|
[Parameter]
|
|
public string? @class { get; set; }
|
|
[Parameter]
|
|
public string icon { get; set; }
|
|
}
|