import * as React from "react" import { ChevronLeftIcon, ChevronRightIcon } from "lucide-react" import { DayPicker } from "react-day-picker" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" function Calendar({ className, classNames, showOutsideDays = true, ...props }: React.ComponentProps) { return ( orientation === "left" ? ( ) : ( ), }} {...props} /> ) } export { Calendar }