clqms-shadcn-v1/src/lib/components/ui/calendar/calendar-head-cell.svelte
2026-02-01 21:47:55 +07:00

19 lines
362 B
Svelte

<script>
import { Calendar as CalendarPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
...restProps
} = $props();
</script>
<CalendarPrimitive.HeadCell
bind:ref
class={cn(
"text-muted-foreground w-(--cell-size) rounded-md text-[0.8rem] font-normal",
className
)}
{...restProps}
/>