sprint-asia-custom-component 0.1.172 → 0.1.173
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.js
CHANGED
|
@@ -23874,9 +23874,9 @@
|
|
|
23874
23874
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23875
23875
|
className: "w-full"
|
|
23876
23876
|
}, title && /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23877
|
-
className: "text-sm font-normal text-black
|
|
23877
|
+
className: "text-sm font-normal text-black"
|
|
23878
23878
|
}, title), value && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23879
|
-
className: "
|
|
23879
|
+
className: "whitespace-pre-line flex items-center"
|
|
23880
23880
|
}, icon && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
23881
23881
|
className: "mr-2"
|
|
23882
23882
|
}, icon), /*#__PURE__*/React__default["default"].createElement("p", {
|
package/package.json
CHANGED
|
@@ -13,9 +13,9 @@ const Description = ({
|
|
|
13
13
|
}) => {
|
|
14
14
|
return (
|
|
15
15
|
<div className="w-full">
|
|
16
|
-
{title && <p className="text-sm font-normal text-black
|
|
16
|
+
{title && <p className="text-sm font-normal text-black">{title}</p>}
|
|
17
17
|
{value && (
|
|
18
|
-
<div className="
|
|
18
|
+
<div className="whitespace-pre-line flex items-center">
|
|
19
19
|
{
|
|
20
20
|
icon && <div className="mr-2">{icon}</div>
|
|
21
21
|
}
|