31 lines
780 B
Svelte
31 lines
780 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
|
import ChevronRightIcon from "@lucide/svelte/icons/chevron-right";
|
|
import { buttonVariants, type ButtonVariant } from "$lib/components/ui/button/index.js";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
variant = "ghost",
|
|
...restProps
|
|
}: CalendarPrimitive.NextButtonProps & {
|
|
variant?: ButtonVariant;
|
|
} = $props();
|
|
</script>
|
|
|
|
{#snippet Fallback()}
|
|
<ChevronRightIcon class="size-4" />
|
|
{/snippet}
|
|
|
|
<CalendarPrimitive.NextButton
|
|
bind:ref
|
|
class={cn(
|
|
buttonVariants({ variant }),
|
|
"size-(--cell-size) select-none bg-transparent p-0 disabled:opacity-50 rtl:rotate-180",
|
|
className
|
|
)}
|
|
children={children || Fallback}
|
|
{...restProps}
|
|
/>
|