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