sprint-asia-custom-component 0.1.78 → 0.1.79

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
@@ -351,7 +351,7 @@
351
351
  }) => {
352
352
  return /*#__PURE__*/React__default["default"].createElement("a", {
353
353
  className: `
354
- ${type == "white" && "text-neutral300 border-white bg-neutral40"}
354
+ ${type == "white" && "text-neutral300 border-neutral40 bg-white"}
355
355
  ${type == "neutral" && "text-neutral300 border-neutral300 bg-neutral30"}
356
356
  ${type == "success" && "text-success600 border-success600 bg-success50"}
357
357
  ${type == "primary" && "text-primary500 border-primary500 bg-primary50"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sprint-asia-custom-component",
3
3
  "main": "dist/index.js",
4
- "version": "0.1.78",
4
+ "version": "0.1.79",
5
5
  "private": false,
6
6
  "dependencies": {
7
7
  "@headlessui/react": "^1.7.18",
@@ -4,7 +4,7 @@ const Chip = ({ title = "Approve", type = "success", onClick }) => {
4
4
  return (
5
5
  <a
6
6
  className={`
7
- ${type == "white" && "text-neutral300 border-white bg-neutral40"}
7
+ ${type == "white" && "text-neutral300 border-neutral40 bg-white"}
8
8
  ${type == "neutral" && "text-neutral300 border-neutral300 bg-neutral30"}
9
9
  ${type == "success" && "text-success600 border-success600 bg-success50"}
10
10
  ${type == "primary" && "text-primary500 border-primary500 bg-primary50"}