How to pack a layer of div outside the confirm confirmation box of antdesign

such as the title: because you need a custom style, you want to wrap a layer of div on the outer layer of confirm

 confirm({
    title: "Are you sure delete this task?",
    content: "Some descriptions",
    okText: "Yes",
    okType: "danger",
    okButtonProps: {
      disabled: true,
    },
    cancelText: "No",
    onOk() {
      console.log("OK");
    },
    onCancel() {
      console.log("Cancel");
    },
  });

could you tell me how to write?

May.20,2022

this is the className property that can be configured directly

Menu