sprint-asia-custom-component 0.1.124 → 0.1.125
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 +2 -1
- package/package.json +1 -1
- package/src/components/chip/index.js +2 -1
package/dist/index.js
CHANGED
|
@@ -357,7 +357,8 @@
|
|
|
357
357
|
return /*#__PURE__*/React__default["default"].createElement("a", {
|
|
358
358
|
className: `
|
|
359
359
|
${type == "white" && "text-black border-black bg-white"}
|
|
360
|
-
${type == "neutral" && "text-neutral300 border-neutral40 bg-
|
|
360
|
+
${type == "neutral" && "text-neutral300 border-neutral40 bg-neutral10"}
|
|
361
|
+
${type == "gray" && "text-neutral300 border-neutral40 bg-white"}
|
|
361
362
|
${type == "success" && "text-success600 border-success600 bg-success50"}
|
|
362
363
|
${type == "primary" && "text-primary500 border-primary500 bg-primary50"}
|
|
363
364
|
${type == "dropdown" && "text-primary500 border-primary500 bg-primary50"}
|
package/package.json
CHANGED
|
@@ -5,7 +5,8 @@ const Chip = ({ title = "Approve", type = "success", onClick }) => {
|
|
|
5
5
|
<a
|
|
6
6
|
className={`
|
|
7
7
|
${type == "white" && "text-black border-black bg-white"}
|
|
8
|
-
${type == "neutral" && "text-neutral300 border-neutral40 bg-
|
|
8
|
+
${type == "neutral" && "text-neutral300 border-neutral40 bg-neutral10"}
|
|
9
|
+
${type == "gray" && "text-neutral300 border-neutral40 bg-white"}
|
|
9
10
|
${type == "success" && "text-success600 border-success600 bg-success50"}
|
|
10
11
|
${type == "primary" && "text-primary500 border-primary500 bg-primary50"}
|
|
11
12
|
${type == "dropdown" && "text-primary500 border-primary500 bg-primary50"}
|