Keep track of ICE and police locations in your city. Very much a work-in-progress and not ready yet, stay tuned I guess?
1<script lang="ts">
2 import { cn } from "$lib/utils/cn.js";
3 import type { HTMLAttributes } from "svelte/elements";
4
5 let { class: className, children, ...restProps }: HTMLAttributes<HTMLDivElement> = $props();
6</script>
7
8<div
9 data-slot="empty-header"
10 class={cn("flex max-w-sm flex-col items-center gap-2 text-center", className)}
11 {...restProps}
12>
13 {@render children?.()}
14</div>