@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
15 lines (14 loc) • 585 B
TypeScript
export declare const TABLEROW_CLASSNAME = "k-table-row";
declare const states: ("focus" | "disabled" | "selected" | "hover" | "highlighted")[];
export type KendoTableRowProps = {
alt?: boolean;
};
export type KendoTableRowState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const TableRow: {
(props: KendoTableRowProps & KendoTableRowState & React.HTMLAttributes<HTMLTableRowElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "disabled" | "selected" | "hover" | "highlighted")[];
className: string;
};
export default TableRow;