d93c92e4f5
* add NavHeader component * use NavHeader in SplashPage component and application.hbs * let download button take a block * add RadialProgress component * use RadialProgress in ShamirFlow component * style up the RadialProgress component * update ember-basic-dropdown, ember-basic-dropdown-hover * rework operation token generation workflow * directly depend on ember-maybe-in-element
21 lines
382 B
Handlebars
21 lines
382 B
Handlebars
<circle
|
|
data-test-path
|
|
class="path"
|
|
cx="{{centerValue}}"
|
|
cy="{{centerValue}}"
|
|
r="{{r}}"
|
|
fill="none"
|
|
stroke-width="{{strokeWidth}}"
|
|
/>
|
|
<circle
|
|
data-test-progress
|
|
class="progress-fill"
|
|
cx="{{centerValue}}"
|
|
cy="{{centerValue}}"
|
|
r="{{r}}"
|
|
fill="none"
|
|
stroke-width="{{strokeWidth}}"
|
|
stroke-dasharray="{{c}}"
|
|
stroke-dashoffset="{{dashArrayOffset}}"
|
|
/>
|