import * as React from "react" import { ChevronLeft, ChevronRight } from "lucide-react" import { DayPicker, type DayPickerProps } from "react-day-picker" import { cn } from "~/lib/utils" import { buttonVariants } from "~/components/ui/button" export type CalendarProps = DayPickerProps function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) { return ( { const Icon = orientation === "left" ? ChevronLeft : ChevronRight return }, }} {...props} /> ) } Calendar.displayName = "Calendar" export { Calendar }