DocsReact UIui-componentsActionConfirmContainerProps
Package: @hexos/react-ui

Props for the ActionConfirmContainer component.

interface ActionConfirmContainerProps {
    className?: string;
    renderDialog?: (props: {
    actionName: string;
    args: unknown;
    message: string;
    onConfirm: () => void;
    onCancel: () => void;
    isExecuting: boolean;
  }) => React.ReactNode;
}

className

string

renderDialog

(props: { actionName: string; args: unknown; message: string; onConfirm: () => void; onCancel: () => void; isExecuting: boolean; }) => React.ReactNode