@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
21 lines (20 loc) • 651 B
TypeScript
declare const options: {
size: ("small" | "medium" | "large")[];
};
export type KendoColumnMenuMulticheckItemOptions = {
size?: (typeof options.size)[number] | null;
};
export type KendoColumnMenuMulticheckItemProps = KendoColumnMenuMulticheckItemOptions & {
text: string;
};
export declare const ColumnMenuMulticheckItem: {
(props: KendoColumnMenuMulticheckItemProps & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {
size: ("small" | "medium" | "large")[];
};
defaultOptions: {
size: "medium";
};
};
export default ColumnMenuMulticheckItem;