"use client"; import * as React from "react"; import { DayPicker } from "react-day-picker"; import { CaretLeft, CaretRight } from "~/icons"; import { cn } from "~/cn"; import { buttonVariants } from "~/button"; export type CalendarProps = React.ComponentProps; function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) { return ( , IconRight: ({ ...props }) => , }} {...props} /> ); } Calendar.displayName = "Calendar"; export { Calendar };