import { ChevronLeft, ChevronRight } from "lucide-react"; import { DayPicker } from "react-day-picker"; import { cn } from "@/lib/utils"; import { buttonVariants } from "@/components/ui/button"; import { useDateLocale } from "@/hooks/use-date-locale"; export type CalendarProps = React.ComponentProps; function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) { const locale = useDateLocale(); return ( , IconRight: () => , }} {...props} /> ); } Calendar.displayName = "Calendar"; export { Calendar };