Files
trevstack/client/src/lib/ui/range-calendar/range-calendar-grid-row.svelte
2025-05-13 17:19:12 -04:00

13 lines
344 B
Svelte

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