mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-04 01:22:32 +00:00
14 lines
362 B
Svelte
14 lines
362 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = CalendarPrimitive.GridBodyProps;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<CalendarPrimitive.GridBody class={cn(className)} {...$$restProps}>
|
||
|
<slot />
|
||
|
</CalendarPrimitive.GridBody>
|