UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

19 lines (18 loc) 732 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; }; export declare const ActionSheetView: { (props: KendoActionSheetViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: {}; className: string; defaultOptions: {}; }; export default ActionSheetView;