13 lines
344 B
Svelte
13 lines
344 B
Svelte
<script lang="ts">
|
|
import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: RangeCalendarPrimitive.GridRowProps = $props();
|
|
</script>
|
|
|
|
<RangeCalendarPrimitive.GridRow bind:ref class={cn("flex", className)} {...restProps} />
|