@bbki.ng/components 2.4.7 → 2.4.8

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.d.ts CHANGED
@@ -50,6 +50,7 @@ declare type NavProps = {
50
50
  loading?: boolean;
51
51
  mini?: boolean;
52
52
  className?: string;
53
+ customLogo?: React__default.ReactNode;
53
54
  };
54
55
  declare const Nav: (props: NavProps) => JSX.Element;
55
56
 
package/dist/index.js CHANGED
@@ -215,7 +215,7 @@ var Nav = (props) => {
215
215
  const nav = useNavigate();
216
216
  return /* @__PURE__ */ React7.createElement("div", {
217
217
  className: `p-8 w-full flex items-center ${props.className}`
218
- }, /* @__PURE__ */ React7.createElement(Logo, {
218
+ }, props.customLogo || /* @__PURE__ */ React7.createElement(Logo, {
219
219
  className: "mr-8",
220
220
  onClick: () => {
221
221
  nav("/");