@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
9 lines (8 loc) • 385 B
TypeScript
import { KendoComponent } from '../_types/component';
export declare const CHECKBOXITEM_CLASSNAME = "k-checkbox-list-item";
declare const states: never[];
export type KendoCheckboxItemState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const CheckboxItem: KendoComponent<KendoCheckboxItemState & React.HTMLAttributes<HTMLLIElement>>;
export default CheckboxItem;