@atlaskit/modal-dialog
Version:
A modal dialog displays content that requires user interaction, in a layer above the page.
12 lines (11 loc) • 325 B
TypeScript
/** @jsx jsx */
import { ReactNode } from 'react';
import { jsx } from '@emotion/react';
interface PositionerProps {
children?: ReactNode;
stackIndex: number;
shouldScrollInViewport: boolean;
testId?: string;
}
declare const Positioner: (props: PositionerProps) => jsx.JSX.Element;
export default Positioner;