1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 22:36:45 +01:00

15 lines
354 B
HTML
Raw Normal View History

2018-03-02 21:55:04 -08:00
<svg class="loading-spinner-icon spin {{maskStyle ? 'mask-style' : ''}}"
2018-01-21 16:07:11 -08:00
style="width: {{size || 64}}px; height: {{size || 64}}px;"
2018-02-22 22:10:05 -08:00
aria-label="Loading"
2018-01-21 16:07:11 -08:00
>
2018-01-14 23:24:27 -08:00
<use xlink:href="#fa-spinner" />
</svg>
<style>
.loading-spinner-icon {
2018-01-14 23:24:27 -08:00
fill: var(--svg-fill);
}
.loading-spinner-icon.mask-style {
2018-01-14 23:24:27 -08:00
fill: var(--mask-svg-fill);
}
</style>