@bbki.ng/components 1.5.32 → 1.5.33

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
@@ -233,9 +233,11 @@ var Breadcrumb = (props) => {
233
233
  const offsetCls = (0, import_classnames3.default)({ "relative top-[2px]": isNonEnName });
234
234
  const link = path ? /* @__PURE__ */ import_react4.default.createElement(Link, {
235
235
  to: path,
236
- className: offsetCls
236
+ className: offsetCls,
237
+ style: { padding: 4 }
237
238
  }, name) : /* @__PURE__ */ import_react4.default.createElement("span", {
238
- className: (0, import_classnames3.default)("text-gray-400", offsetCls)
239
+ className: (0, import_classnames3.default)("text-gray-400", offsetCls),
240
+ style: { padding: 4 }
239
241
  }, name);
240
242
  return /* @__PURE__ */ import_react4.default.createElement("span", {
241
243
  key: path || name
package/dist/index.mjs CHANGED
@@ -172,9 +172,11 @@ var Breadcrumb = (props) => {
172
172
  const offsetCls = classNames3({ "relative top-[2px]": isNonEnName });
173
173
  const link = path ? /* @__PURE__ */ React5.createElement(Link, {
174
174
  to: path,
175
- className: offsetCls
175
+ className: offsetCls,
176
+ style: { padding: 4 }
176
177
  }, name) : /* @__PURE__ */ React5.createElement("span", {
177
- className: classNames3("text-gray-400", offsetCls)
178
+ className: classNames3("text-gray-400", offsetCls),
179
+ style: { padding: 4 }
178
180
  }, name);
179
181
  return /* @__PURE__ */ React5.createElement("span", {
180
182
  key: path || name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/components",
3
- "version": "1.5.32",
3
+ "version": "1.5.33",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",