Files
gpx.studio/website/src/lib/components/ui/calendar/calendar-month.svelte
T

16 lines
404 B
Svelte
Raw Normal View History

2025-06-21 21:07:36 +02:00
<script lang="ts">
import { type WithElementRef, cn } from "$lib/utils.js";
import type { HTMLAttributes } from "svelte/elements";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLElement>> = $props();
</script>
2026-04-06 18:22:01 +02:00
<div {...restProps} bind:this={ref} class={cn("flex w-full flex-col gap-4", className)}>
2025-06-21 21:07:36 +02:00
{@render children?.()}
</div>