@atlaskit/modal-dialog
Version:
A modal dialog displays content that requires user interaction, in a layer above the page.
11 lines (10 loc) • 490 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { ModalDialogProps } from '../../types';
import type { InternalModalDialogProps } from '../types';
export declare const dialogWidth: (input?: ModalDialogProps["width"]) => string;
export declare const dialogHeight: (input?: ModalDialogProps["height"]) => string;
declare const ModalDialog: React.ForwardRefExoticComponent<React.PropsWithoutRef<InternalModalDialogProps> & React.RefAttributes<HTMLElement>>;
export default ModalDialog;