Files
pocket-id/frontend/src/lib/components/ui/calendar/calendar-grid-row.svelte

14 lines
373 B
Svelte
Raw Normal View History

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