rightui
Version:
Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity
9 lines (8 loc) • 399 B
TypeScript
import { Calendar as CalendarPrimitive } from "bits-ui";
import { type ButtonVariant } from "../button/index.js";
type $$ComponentProps = CalendarPrimitive.NextButtonProps & {
variant?: ButtonVariant;
};
declare const CalendarNextButton: import("svelte").Component<$$ComponentProps, {}, "ref">;
type CalendarNextButton = ReturnType<typeof CalendarNextButton>;
export default CalendarNextButton;