mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-26 15:01:20 +00:00
12 lines
331 B
Svelte
12 lines
331 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils';
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
|
|
type $$Props = HTMLAttributes<HTMLDivElement>;
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<div class={cn('space-y-2', className)} {...$$restProps}>
|
|
<slot />
|
|
</div>
|