TempMonitor/src/lib/components/ui/calendar/calendar-grid-row.svelte

9 lines
278 B
Svelte
Raw Normal View History

2025-05-18 13:18:46 +02:00
<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} />