mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-03 18:32:12 +00:00
14 lines
353 B
Svelte
14 lines
353 B
Svelte
<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 sm:text-left', className)} {...$$restProps}>
|
|
<slot />
|
|
</div>
|