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