This commit is contained in:
vcoppe
2024-04-08 17:12:39 +02:00
parent 411ae8e6a6
commit 4e0bb275fb
38 changed files with 1467 additions and 166 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
type $$Props = HTMLAttributes<HTMLSpanElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<span
class={cn("ml-auto text-xs tracking-widest text-muted-foreground", className)}
{...$$restProps}
>
<slot />
</span>