tracks lexicons and how many times they appeared on the jetstream
1<script lang="ts">
2 interface Props {
3 dontShowBsky: boolean;
4 onBskyToggle: () => void;
5 }
6
7 let { dontShowBsky, onBskyToggle }: Props = $props();
8</script>
9
10<!-- svelte-ignore a11y_click_events_have_key_events -->
11<!-- svelte-ignore a11y_no_static_element_interactions -->
12<button
13 onclick={onBskyToggle}
14 class="wsbadge !mt-0 !font-normal bg-blue-100 dark:bg-blue-900 hover:bg-blue-200 dark:hover:bg-blue-800 border-blue-300 dark:border-blue-700"
15>
16 <input checked={dontShowBsky} type="checkbox" />
17 <span class="ml-0.5 text-black dark:text-gray-200"> hide app.bsky.* </span>
18</button>