@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 469 B
TypeScript
export type KendoCalendarViewProps = {
orientation?: 'vertical' | 'horizontal';
calendarView?: 'month' | 'year' | 'decade' | 'century';
};
export declare const CalendarView: {
(props: KendoCalendarViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
className: string;
defaultOptions: {
readonly orientation: "horizontal";
readonly calendarView: "month";
};
};
export default CalendarView;