UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

10 lines (9 loc) 364 B
export declare const CHIPACTION_CLASSNAME = "k-chip-action"; export declare enum chipActionType { REMOVE = "remove", MORE = "more" } export type KendoChipActionProps = { type?: chipActionType | string; }; export declare const ChipAction: (props: KendoChipActionProps & React.HTMLAttributes<HTMLSpanElement>) => import("react/jsx-runtime").JSX.Element;