mirror of
https://github.com/faiztyanirh/clqms-shadcn-v1.git
synced 2026-04-26 19:06:33 +07:00
19 lines
362 B
Svelte
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}
|
|
/> |