@loja-integrada/admin-components 0.15.1 → 0.15.2

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.
@@ -2658,8 +2658,8 @@ var badgeTypes = {
2658
2658
  warning: 'bg-warning-dark'
2659
2659
  };
2660
2660
  var badgeSizes = {
2661
- "default": 'px-2 py-0.5',
2662
- small: 'px-1'
2661
+ "default": 'px-2 py-0.5 text-xs',
2662
+ small: 'px-1.5 text-[0.70rem]'
2663
2663
  };
2664
2664
 
2665
2665
  var BadgeComponent = function BadgeComponent(_ref) {
@@ -2673,7 +2673,7 @@ var BadgeComponent = function BadgeComponent(_ref) {
2673
2673
  return React__default.createElement("div", {
2674
2674
  className: "badge items-center justify-center rounded-full " + badgeTypes[type] + " " + badgeSizes[size] + " " + (expanded ? 'flex w-full' : 'inline-flex')
2675
2675
  }, React__default.createElement("span", {
2676
- className: "text-xs tracking-4 font-semibold text-base-1"
2676
+ className: "tracking-4 font-semibold text-base-1"
2677
2677
  }, text));
2678
2678
  };
2679
2679