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