@openhands/ui
Version:
OpenHands UI Components
8 lines (7 loc) • 390 B
TypeScript
import { PropsWithChildren } from 'react';
import { BaseProps, HTMLProps } from '../../shared/types';
export type DialogProps = HTMLProps<"div"> & {
open: boolean;
onOpenChange(value: boolean): void;
} & BaseProps;
export declare const Dialog: ({ open, onOpenChange, className, children, testId, }: PropsWithChildren<DialogProps>) => import("react/jsx-runtime").JSX.Element | null;