Some checks failed
CI / Unit & Component Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Unit & Component Tests (pull_request) Failing after 1m23s
CI / Backend Unit Tests (pull_request) Failing after 2m38s
CI / E2E Tests (pull_request) Failing after 1h14m58s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
288 B
Svelte
15 lines
288 B
Svelte
<script lang="ts">
|
|
type Props = {
|
|
extraCount: number;
|
|
};
|
|
|
|
let { extraCount }: Props = $props();
|
|
</script>
|
|
|
|
<span
|
|
aria-hidden="true"
|
|
class="inline-flex shrink-0 items-center rounded-full border border-line bg-muted px-2 py-0.5 text-[14px] font-bold text-ink-2"
|
|
>
|
|
+{extraCount}
|
|
</span>
|