@atlaskit/modal-dialog
Version:
A modal dialog displays content that requires user interaction, in a layer above the page.
13 lines (12 loc) • 405 B
TypeScript
import { type ModalDialogProps, type WidthNames } from '../types';
interface Width {
values: string[];
widths: {
[index in WidthNames]: number;
};
defaultValue: string;
}
export declare const width: Width;
export declare const dialogWidth: (input?: ModalDialogProps['width']) => string;
export declare const dialogHeight: (input?: ModalDialogProps['height']) => string;
export {};