mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-20 15:55:42 +02:00
13 lines
242 B
Svelte
13 lines
242 B
Svelte
<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}
|