Files
sexy/packages/frontend/src/lib/components/ui/calendar/calendar-grid-body.svelte

13 lines
318 B
Svelte
Raw Normal View History

<script lang="ts">
import { Calendar as CalendarPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
...restProps
}: CalendarPrimitive.GridBodyProps = $props();
</script>
<CalendarPrimitive.GridBody bind:ref class={cn(className)} {...restProps} />