mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-21 00:05:36 +02:00
feat: implement season file management and UI updates for torrent downloads
This commit is contained in:
11
web/src/lib/components/checkmark-x.svelte
Normal file
11
web/src/lib/components/checkmark-x.svelte
Normal file
@@ -0,0 +1,11 @@
|
||||
<script>
|
||||
import X from '@lucide/svelte/icons/x';
|
||||
import Check from '@lucide/svelte/icons/check';
|
||||
|
||||
let {state} = $props();
|
||||
</script>
|
||||
{#if state}
|
||||
<Check class="stroke-green-500"/>
|
||||
{:else}
|
||||
<X class="stroke-rose-600"/>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user