UNPKG

@atlaskit/modal-dialog

Version:

A modal dialog displays content that requires user interaction, in a layer above the page.

12 lines (11 loc) 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.dialogHeight = void 0; var dialogHeight = exports.dialogHeight = function dialogHeight(input) { if (!input) { return 'auto'; } return typeof input === 'number' ? "".concat(input, "px") : input; };