@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
17 lines (16 loc) • 653 B
TypeScript
export declare const ACTIONSHEETITEM_CLASSNAME = "k-actionsheet-item";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type KendoActionSheetItemProps = {
text?: string;
description?: string;
iconName?: string;
};
export type KendoActionSheetItemState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const ActionSheetItem: {
(props: KendoActionSheetItemProps & KendoActionSheetItemState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "disabled" | "selected" | "hover")[];
className: string;
};
export default ActionSheetItem;