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