sprint-asia-custom-component 0.1.22 → 0.1.23
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
|
@@ -23779,9 +23779,9 @@
|
|
|
23779
23779
|
className: "py-1"
|
|
23780
23780
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
23781
23781
|
className: `
|
|
23782
|
-
${textColor == "default" && "text-black"}
|
|
23783
|
-
${textColor == "success" && "text-success500"}
|
|
23784
|
-
|
|
23782
|
+
${textColor == "default" && "text-black font-semibold text-base"}
|
|
23783
|
+
${textColor == "success" && "text-success500 font-semibold text-base"}
|
|
23784
|
+
`
|
|
23785
23785
|
}, value)));
|
|
23786
23786
|
};
|
|
23787
23787
|
|
package/package.json
CHANGED
|
@@ -10,9 +10,9 @@ const Description = ({
|
|
|
10
10
|
{title && <p className="text-sm font-normal text-black mb-1">{title}</p>}
|
|
11
11
|
<div className='py-1'>
|
|
12
12
|
<p className={`
|
|
13
|
-
${textColor == "default" && "text-black"}
|
|
14
|
-
${textColor == "success" && "text-success500"}
|
|
15
|
-
|
|
13
|
+
${textColor == "default" && "text-black font-semibold text-base"}
|
|
14
|
+
${textColor == "success" && "text-success500 font-semibold text-base"}
|
|
15
|
+
`}>{value}</p>
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
18
|
);
|