web/ProcessingStatus: replace icon with a more fitting one
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Run tests / check lockfile correctness (push) Has been cancelled
Run tests / web sanity check (push) Has been cancelled
Run tests / api sanity check (push) Has been cancelled

This commit is contained in:
wukko 2024-12-22 23:10:33 +06:00
parent 41600dab4f
commit 806a644a40
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -1,5 +1,5 @@
<script lang="ts">
import IconBlender from "@tabler/icons-svelte/IconBlender.svelte";
import IconRun from "@tabler/icons-svelte/IconRun.svelte";
export let indeterminate = false;
export let progress: number = 0;
@ -30,7 +30,7 @@
/>
</svg>
<div class="icon-holder">
<IconBlender />
<IconRun />
</div>
</button>