vault/ui/app/components/radial-progress.hbs
2025-08-01 10:04:25 -06:00

25 lines
499 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
}}
<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>