16 lines
376 B
Svelte
16 lines
376 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.HeaderProps = $props();
|
|
</script>
|
|
|
|
<CalendarPrimitive.Header
|
|
bind:ref
|
|
class={cn("relative flex w-full items-center justify-between pt-1", className)}
|
|
{...restProps}
|
|
/>
|