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