UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

15 lines (14 loc) 455 B
import { KendoComponent } from '../_types/component'; export type KendoSchedulerCellProps = { cellType?: string[]; allDay?: boolean; text?: string; colspan?: number; rowspan?: number; }; export declare const SchedulerCell: KendoComponent<KendoSchedulerCellProps & ((React.AllHTMLAttributes<HTMLDivElement> & { as: 'div'; }) | (React.HTMLAttributes<HTMLTableCellElement> & { as: 'th' | 'td'; }))>; export default SchedulerCell;