import { ChevronLeft, ChevronRight } from 'lucide-react' import { DayPicker } from 'react-day-picker' import type React from 'react' import { buttonVariants } from './button' import { cn } from './lib/cn' export type CalendarProps = React.ComponentProps function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) { return ( , IconRight: () => , }} {...props} /> ) } Calendar.displayName = 'Calendar' export { Calendar }