open-vault/ui/app/templates/components/radial-progress.hbs

20 lines
423 B
Handlebars

<circle
data-test-path
class="path"
cx={{this.centerValue}}
cy={{this.centerValue}}
r={{this.r}}
fill="none"
stroke-width={{this.strokeWidth}}
></circle>
<circle
data-test-progress
class="progress-fill"
cx={{this.centerValue}}
cy={{this.centerValue}}
r={{this.r}}
fill="none"
stroke-width={{this.strokeWidth}}
stroke-dasharray={{this.c}}
stroke-dashoffset={{this.dashArrayOffset}}
></circle>