import { buttonVariants } from '@affine/admin/components/ui/button'; import { cn } from '@affine/admin/utils'; import { ChevronLeft, ChevronRight } from 'lucide-react'; import type * as React from 'react'; import { Chevron, DayPicker } from 'react-day-picker'; export type CalendarProps = React.ComponentProps; function Calendar({ className, classNames, showOutsideDays = true, ...props }: CalendarProps) { return ( { if (props.orientation === 'left') { return ; } if (props.orientation === 'right') { return ; } return ; }, }} {...props} /> ); } Calendar.displayName = 'Calendar'; export { Calendar };