@octopusdeploy/design-system-components
Version:
The design systems component library.
16 lines (15 loc) • 474 B
TypeScript
import * as React from "react";
export interface DialogBaseProps {
children?: React.ReactNode;
open: boolean;
onClose?: () => void;
onClosed?: () => void;
closeOnEscape?: boolean;
closeOnBackdropClick?: boolean;
accessibleName?: string;
autoFocusFirstElement?: boolean;
}
export declare function DialogBase(props: DialogBaseProps): import("react/jsx-runtime").JSX.Element;
export declare namespace DialogBase {
var displayName: string;
}