"use client"; import * as React from "react"; import { ChevronLeft, ChevronRight, ChevronUp, ChevronDown, } from "lucide-react"; import { DayPicker, UI, SelectionState, DayFlag } from "react-day-picker"; import { cn } from "@/src/utils/tailwind"; import { buttonVariants } from "@/src/components/ui/button"; export type CalendarProps = React.ComponentProps; function Calendar({ className, classNames, showOutsideDays = true, disabled, ...props }: CalendarProps) { return ( , }} {...props} /> ); } Calendar.displayName = "Calendar"; const Chevron = ({ orientation = "left" }) => { switch (orientation) { case "left": return ; case "right": return ; case "up": return ; case "down": return ; default: return null; } }; export { Calendar };