12 lines
328 B
Svelte
12 lines
328 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: CalendarPrimitive.GridHeadProps = $props();
|
|
</script>
|
|
|
|
<CalendarPrimitive.GridHead bind:ref class={cn(className)} {...restProps} />
|