Home > @uniformdev/design-system > ModalProps

ModalProps type

Signature:

type ModalProps = {
    header?: React__default.ReactNode;
    children?: React__default.ReactNode;
    onRequestClose: (() => void) | undefined;
    modalSize?: 'sm' | 'md' | 'lg';
    width?: string;
    height?: string;
    withoutContentPadding?: boolean;
    withoutContentBackground?: boolean;
    buttonGroup?: ReactNode;
    disableBodyScroll?: boolean;
} & React__default.HTMLProps<HTMLDialogElement>;