mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
13 lines
271 B
Svelte
13 lines
271 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils";
|
|
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<div
|
|
class={cn("flex flex-col space-y-1.5 text-center sm:text-left", className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</div>
|