You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
640 B
17 lines
640 B
@namespace Connected.Components
|
|
@inherits UIComponent
|
|
|
|
<div @attributes="UserAttributes" class="@DivClassname" role="progressbar" style="@Style" aria-valuenow="@Value">
|
|
<svg class="mud-progress-circular-svg" viewBox="22 22 44 44">
|
|
@if (Indeterminate)
|
|
{
|
|
<circle class="@SvgClassname" cx="44" cy="44" r="20" fill="none" stroke-width="@StrokeWidth"></circle>
|
|
}
|
|
else
|
|
{
|
|
<circle class="@SvgClassname" cx="44" cy="44" r="20" fill="none" stroke-width="@StrokeWidth" style="stroke-dasharray: @_magicNumber; stroke-dashoffset: @_svgValue;"></circle>
|
|
}
|
|
</svg>
|
|
</div>
|
|
|