@luscii-healthtech/web-ui 2.19.7 → 2.19.8
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.
|
@@ -2471,13 +2471,14 @@ var ConfirmationDialogTitle = function ConfirmationDialogTitle(props) {
|
|
|
2471
2471
|
|
|
2472
2472
|
return props.title ? /*#__PURE__*/React__default.createElement("div", {
|
|
2473
2473
|
"data-test-id": "confirmation-dialog-title",
|
|
2474
|
-
className: classNames("flex flex-col space-y-2", {
|
|
2474
|
+
className: classNames("flex flex-col space-y-2 text-center", {
|
|
2475
2475
|
"items-center justify-center": (_props$title = props.title) == null ? void 0 : _props$title.icon
|
|
2476
2476
|
})
|
|
2477
2477
|
}, props.title.icon && /*#__PURE__*/React__default.createElement(props.title.icon, {
|
|
2478
2478
|
className: "text-blue-800 dialog-header-icon h-12 w-12"
|
|
2479
2479
|
}), /*#__PURE__*/React__default.createElement(Title, {
|
|
2480
|
-
text: props.title.title
|
|
2480
|
+
text: props.title.title,
|
|
2481
|
+
type: "sm"
|
|
2481
2482
|
})) : null;
|
|
2482
2483
|
};
|
|
2483
2484
|
|