UNPKG

@marlon-chaviano/field-kit

Version:

A collection of reusable and accessible form components built with React, TailwindCSS, and fully integrated with React Hook Form...

9 lines (8 loc) 630 B
import * as React from "react"; import { DayButton, DayPicker } from "react-day-picker"; import { Button } from "../../components/ui/button"; declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & { buttonVariant?: React.ComponentProps<typeof Button>["variant"]; }): import("react/jsx-runtime").JSX.Element; declare function CalendarDayButton({ className, day, modifiers, ...props }: React.ComponentProps<typeof DayButton>): import("react/jsx-runtime").JSX.Element; export { Calendar, CalendarDayButton };