UNPKG

@sjsf/shadcn4-theme

Version:

The shadcn-svelte based theme for svelte-jsonschema-form

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