Files
pocket-id/frontend/src/lib/components/ui/calendar/calendar-grid-row.svelte
2025-05-07 16:43:24 +02:00

14 lines
373 B
Svelte

<script lang="ts">
import { Calendar as CalendarPrimitive } from 'bits-ui';
import { cn } from '$lib/utils/style.js';
type $$Props = CalendarPrimitive.GridRowProps;
let className: $$Props['class'] = undefined;
export { className as class };
</script>
<CalendarPrimitive.GridRow class={cn('flex', className)} {...$$restProps}>
<slot />
</CalendarPrimitive.GridRow>