file tabs

This commit is contained in:
vcoppe
2024-04-19 16:13:08 +02:00
parent 675b1bd919
commit 13af33903b
12 changed files with 207 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
type $$Props = HTMLAttributes<HTMLParagraphElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<p class={cn("text-sm text-muted-foreground", className)} {...$$restProps}>
<slot />
</p>