@underverse-ui/underverse 1.0.26 → 1.0.27
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -237,7 +237,7 @@ var Badge = ({
|
|
|
237
237
|
onRemove?.();
|
|
238
238
|
};
|
|
239
239
|
const baseClasses = cn(
|
|
240
|
-
"inline-flex items-center border transition-all duration-200",
|
|
240
|
+
"inline-flex items-center rounded-md border transition-all duration-200 tracking-wide",
|
|
241
241
|
"focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-1",
|
|
242
242
|
variantStyles[variant],
|
|
243
243
|
clickable && clickableVariantStyles[variant],
|
|
@@ -284,7 +284,7 @@ var Badge = ({
|
|
|
284
284
|
}
|
|
285
285
|
);
|
|
286
286
|
}
|
|
287
|
-
return /* @__PURE__ */ jsxs2("span", { className: cn(baseClasses, "
|
|
287
|
+
return /* @__PURE__ */ jsxs2("span", { className: cn(baseClasses, "gap-1", sizeStyles[size], className), onClick: handleClick, role: "status", children: [
|
|
288
288
|
Icon && /* @__PURE__ */ jsx2(
|
|
289
289
|
Icon,
|
|
290
290
|
{
|