UNPKG

rightui

Version:

Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity

9 lines (8 loc) 434 B
import { RangeCalendar as RangeCalendarPrimitive } from "bits-ui"; import { type ButtonVariant } from "../button/index.js"; type $$ComponentProps = RangeCalendarPrimitive.PrevButtonProps & { variant?: ButtonVariant; }; declare const RangeCalendarPrevButton: import("svelte").Component<$$ComponentProps, {}, "ref">; type RangeCalendarPrevButton = ReturnType<typeof RangeCalendarPrevButton>; export default RangeCalendarPrevButton;