Skip to content

Commit 6d72943

Browse files
committed
chore: fix icon spinner wobble
1 parent 6d03bf5 commit 6d72943

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/.vitepress/components/ListItem.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ onMounted(async () => {
4242
<li :style="color">
4343
<div ref="el" class="icon-container">
4444
<div class="icon-wrapper" :class="state ? 'flip' : ''">
45-
<Icon icon="carbon:circle-dash" class="icon-spinner" width="1.2em" height="1.2em" />
45+
<svg xmlns="http://www.w3.org/2000/svg" width="1.2em" height="1.2em" viewBox="0 0 32 32" class="icon-spinner">
46+
<circle cx="16" cy="16" r="13" fill="none" stroke="currentColor" stroke-width="2" stroke-dasharray="8 4" />
47+
</svg>
4648
</div>
4749
<div class="icon-wrapper" :class="state === 2 ? '' : 'flip'">
4850
<Icon icon="carbon:close-outline" class="icon-error" width="1.2em" height="1.2em" />

0 commit comments

Comments
 (0)