mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 02:11:20 +00:00
13 lines
359 B
Svelte
13 lines
359 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils";
|
|
|
|
type $$Props = CalendarPrimitive.GridBodyProps;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CalendarPrimitive.GridBody class={cn(className)} {...$$restProps}>
|
|
<slot />
|
|
</CalendarPrimitive.GridBody>
|