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