UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

24 lines (23 loc) 840 B
export declare const ACTIONSHEETHEADER_CLASSNAME = "k-actionsheet-titlebar"; export type KendoActionSheetHeaderProps = { title?: string; subtitle?: string; actionsStart?: React.JSX.Element | React.JSX.Element[]; actionsEnd?: React.JSX.Element | React.JSX.Element[]; filter?: boolean; input?: boolean; inputValue?: string; inputPlaceholder?: string; adaptive?: boolean; /** * ID for the title element, used by aria-labelledby on the ActionSheet. * @aria Referenced by aria-labelledby on the ActionSheet dialog */ titleId?: string; }; export declare const ActionSheetHeader: { (props: KendoActionSheetHeaderProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; className: string; defaultOptions: {}; }; export default ActionSheetHeader;