b2f5f36207
* Revert "fix(icons): fix icons.svg url (#769)" This reverts commit1d34d45da7
. * Revert "perf: use prefetch instead of preload for svgs (#765)" This reverts commitb73dd548ae
. * Revert "perf: build separate icons.svg file (#762)" This reverts commitee45c07314
. * move svg to end of 2xx.html
23 lines
443 B
HTML
23 lines
443 B
HTML
<svg class="loading-spinner-icon spin {maskStyle ? 'mask-style' : ''}"
|
|
style="width: {size}px; height: {size}px;"
|
|
aria-label="Loading"
|
|
>
|
|
<use xlink:href="#fa-spinner" />
|
|
</svg>
|
|
<style>
|
|
.loading-spinner-icon {
|
|
fill: var(--svg-fill);
|
|
}
|
|
|
|
.loading-spinner-icon.mask-style {
|
|
fill: var(--mask-svg-fill);
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
maskStyle: false,
|
|
size: 64
|
|
})
|
|
}
|
|
</script> |