odaptos_design_system 1.4.44 → 1.4.45

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.
@@ -5136,10 +5136,12 @@ const Modal = ({
5136
5136
  className: styles$c.modal_buttons_container
5137
5137
  }, cancelText && onClose && /*#__PURE__*/React__default.createElement(Button, {
5138
5138
  text: cancelText,
5139
- variant: "tertiary",
5139
+ variant: "secondary",
5140
+ size: "sm",
5140
5141
  onClick: () => onClose()
5141
5142
  }), onConfirm && validationText && /*#__PURE__*/React__default.createElement(Button, {
5142
5143
  text: validationText,
5144
+ size: "sm",
5143
5145
  onClick: () => onConfirm(),
5144
5146
  disabled: disabled
5145
5147
  })))));