UNPKG

@octopusdeploy/design-system-components

Version:
10 lines (9 loc) 287 B
import type { ReactNode } from "react"; import type React from "react"; interface OverlayProps { children?: ReactNode; onClick?: () => void; isClosing?: boolean; } export declare function Overlay({ children, onClick, isClosing }: OverlayProps): React.ReactPortal; export {};