mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-31 03:36:36 +00:00
17 lines
437 B
Svelte
17 lines
437 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils/style.js';
|
|
|
|
type $$Props = CalendarPrimitive.HeadCellProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CalendarPrimitive.HeadCell
|
|
class={cn('text-muted-foreground w-9 rounded-md text-[0.8rem] font-normal', className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</CalendarPrimitive.HeadCell>
|