@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
16 lines (15 loc) • 515 B
TypeScript
declare const states: ("focus" | "selected" | "highlighted")[];
export type KendoTableTdProps = {
text?: string;
colspan?: any;
rowspan?: any;
};
export type KendoTableTdState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const TableTd: {
(props: KendoTableTdProps & KendoTableTdState & React.HTMLAttributes<HTMLTableCellElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "selected" | "highlighted")[];
className: string;
};
export default TableTd;