UNPKG

566 BTypeScriptView Raw
1import * as React from 'react';
2export declare const PopoverPosition: {
3 top: string;
4 bottom: string;
5 left: string;
6 right: string;
7};
8export declare const PopoverDialog: React.FunctionComponent<PopoverDialogProps>;
9export interface PopoverDialogProps extends React.HTMLProps<HTMLDivElement> {
10 /** PopoverDialog position */
11 position?: 'top' | 'bottom' | 'left' | 'right';
12 /** PopoverDialog additional class */
13 className?: string;
14 /** PopoverDialog body */
15 children: React.ReactNode;
16}
17//# sourceMappingURL=PopoverDialog.d.ts.map
\No newline at end of file