import clsx from "clsx"; import { ChevronLeft, ChevronRight } from "lucide-react"; import { Button, Calendar, CalendarCell, CalendarGrid, CalendarGridBody, CalendarGridHeader, CalendarHeaderCell, type CalendarProps, type DateValue, Heading, } from "react-aria-components"; import styles from "./Calendar.module.css"; export interface SendouCalendarProps extends CalendarProps { className?: string; } export function SendouCalendar({ className, ...rest }: SendouCalendarProps) { return (
{(day) => ( {day} )} {(date) => ( )}
); }