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

Props for the ActionConfirmDialog component.

interface ActionConfirmDialogProps {
    actionName: string;
    args: unknown;
    message: string;
    onConfirm: () => void;
    onCancel: () => void;
    isExecuting?: boolean;
    className?: string;
}

actionName

string

args

unknown

message

string

onConfirm

() => void

onCancel

() => void

isExecuting

boolean

className

string