@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
26 lines (25 loc) • 812 B
TypeScript
export declare const ACTIONSHEETITEM_CLASSNAME = "k-actionsheet-item";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type KendoActionSheetItemProps = {
/**
* Primary text label for the action item.
*/
text?: string;
/**
* Secondary description text.
*/
description?: string;
/**
* Icon name to display.
*/
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;