mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
13 lines
383 B
Svelte
13 lines
383 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = CalendarPrimitive.GridProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CalendarPrimitive.Grid class={cn('w-full border-collapse space-y-1', className)} {...$$restProps}>
|
|
<slot />
|
|
</CalendarPrimitive.Grid>
|