ingeniuscliq-core 0.1.33 → 0.1.34
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseStyleProps } from '../../../types/ui/main';
|
|
2
2
|
interface LogoProps extends BaseStyleProps {
|
|
3
3
|
to?: string;
|
|
4
|
+
icon?: string;
|
|
4
5
|
}
|
|
5
|
-
export declare function Logo({ className, to }: LogoProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function Logo({ className, to, icon }: LogoProps): import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|
package/dist/index.js
CHANGED
|
@@ -8447,8 +8447,8 @@ function Pc({ children: e, className: t = "", noValidate: n = !1, onSubmit: r =
|
|
|
8447
8447
|
} }) {
|
|
8448
8448
|
return /* @__PURE__ */ d("form", { className: t, noValidate: n, onSubmit: r, children: e });
|
|
8449
8449
|
}
|
|
8450
|
-
function iz({ className: e = "", to: t = "/store" }) {
|
|
8451
|
-
return /* @__PURE__ */ d(Ud, { className: "flex items-center gap-2", to: t, children: /* @__PURE__ */ d("img", { src:
|
|
8450
|
+
function iz({ className: e = "", to: t = "/store", icon: n = "/core/assets/logo.svg" }) {
|
|
8451
|
+
return /* @__PURE__ */ d(Ud, { className: "flex items-center gap-2", to: t, children: /* @__PURE__ */ d("img", { src: n, alt: "Logo", className: `w-48 h-20 ${e}` }) });
|
|
8452
8452
|
}
|
|
8453
8453
|
function IS({ className: e, ...t }) {
|
|
8454
8454
|
return /* @__PURE__ */ d(
|