layer settings

This commit is contained in:
vcoppe
2024-04-14 15:36:41 +02:00
parent ac15f9064f
commit 6a8dfb5d5e
11 changed files with 346 additions and 5 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<HTMLDivElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<div class={cn("flex flex-col space-y-2 text-center sm:text-left", className)} {...$$restProps}>
<slot />
</div>