mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-20 09:15:42 +03:00
14 lines
373 B
Svelte
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>
|