@mamrp/components 1.0.38 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -884,9 +884,20 @@ function ConfirmationDialog({
884
884
  width: "100%",
885
885
  gap: "12px",
886
886
  alignItems: "center",
887
- padding: "2rem"
887
+ padding: 2
888
888
  }
889
889
  },
890
+ /* @__PURE__ */ React7.createElement(
891
+ Button3,
892
+ {
893
+ onClick: handleClose,
894
+ variant: "outlined",
895
+ color,
896
+ startIcon: /* @__PURE__ */ React7.createElement(MdOutlineCancel, { size: 15 }),
897
+ sx: { minWidth: "120px" }
898
+ },
899
+ "\u0627\u0646\u0635\u0631\u0627\u0641"
900
+ ),
890
901
  /* @__PURE__ */ React7.createElement(
891
902
  Button3,
892
903
  {
@@ -900,17 +911,6 @@ function ConfirmationDialog({
900
911
  startIcon: isLoading ? /* @__PURE__ */ React7.createElement(CircularProgress, { sx: { color: "white" }, size: 20 }) : React7.cloneElement(icon, { size: 16 })
901
912
  },
902
913
  actionTitle
903
- ),
904
- /* @__PURE__ */ React7.createElement(
905
- Button3,
906
- {
907
- onClick: handleClose,
908
- variant: "outlined",
909
- color,
910
- startIcon: /* @__PURE__ */ React7.createElement(MdOutlineCancel, { size: 15 }),
911
- sx: { minWidth: "120px" }
912
- },
913
- "\u0627\u0646\u0635\u0631\u0627\u0641"
914
914
  )
915
915
  )));
916
916
  }