@100mslive/hms-ai-ui
Version:
100ms AI UI components
9 lines (8 loc) • 342 B
TypeScript
import * as React from "react";
import { DayPicker } from "react-day-picker";
export type CalendarProps = React.ComponentProps<typeof DayPicker>;
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): React.JSX.Element;
declare namespace Calendar {
var displayName: string;
}
export { Calendar };