UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

23 lines (22 loc) 847 B
import { ActionSheetFooter } from './actionsheet-footer'; import { ActionSheetHeader } from './actionsheet-header'; export declare const ACTIONSHEETVIEW_CLASSNAME = "k-actionsheet-view"; export type KendoActionSheetViewProps = { children?: React.JSX.Element | React.JSX.Element[]; header?: React.ReactElement<typeof ActionSheetHeader>; footer?: React.ReactElement<typeof ActionSheetFooter>; adaptive?: boolean; animated?: boolean; /** * ID for the title element, used by aria-labelledby on the ActionSheet. */ titleId?: string; }; export declare const ActionSheetView: { (props: KendoActionSheetViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: {}; className: string; defaultOptions: {}; }; export default ActionSheetView;