7 lines
176 B
Svelte
7 lines
176 B
Svelte
<script>
|
|
import { verdictShort, vClass } from '$lib/utils.js';
|
|
let { label } = $props();
|
|
</script>
|
|
|
|
<span class="verdict-pill {vClass(label)}">{verdictShort(label)}</span>
|