mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-12 17:23:18 +03:00
14 lines
368 B
Svelte
14 lines
368 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
type $$Props = CalendarPrimitive.GridHeadProps;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CalendarPrimitive.GridHead class={cn(className)} {...$$restProps}>
|
|
<slot />
|
|
</CalendarPrimitive.GridHead>
|