UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

11 lines (10 loc) 289 B
import React from "react"; export type KendoBaseProps = { as?: React.ElementType; }; export interface KendoComponent<P> extends React.FunctionComponent<P & KendoBaseProps> { className: string; moduleName: string | null; folderName: string | null; [key: string]: any; }