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-description"
10 class={cn(
11 "text-muted-foreground [&>a:hover]:text-primary text-sm/relaxed [&>a]:underline [&>a]:underline-offset-4",
12 className
13 )}
14 {...restProps}
15>
16 {@render children?.()}
17</div>