@gardenfi/garden-book 0.2.3-beta.0 → 0.2.3-beta.1

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.
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const EncryptedIcon: React.FC<SvgProps>;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const Rotate360Icon: React.FC<SvgProps>;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const RoutingIcon: React.FC<SvgProps>;
5
+ export {};
@@ -72,3 +72,6 @@ export { XSolidIcon } from './XSolidIcon';
72
72
  export { XIcon } from './XIcon';
73
73
  export { ZellicIcon } from './ZellicIcon';
74
74
  export { SearchIconThin } from './SearchIconThin';
75
+ export { Rotate360Icon } from './Rotate360Icon';
76
+ export { EncryptedIcon } from './EncryptedIcon';
77
+ export { RoutingIcon } from './RoutingIcon';
@@ -2,6 +2,8 @@ import { default as React } from 'react';
2
2
 
3
3
  type FooterProps = React.HTMLAttributes<HTMLDivElement> & {
4
4
  network?: string;
5
+ navigate?: (path: string) => void;
6
+ maskUrl?: string;
5
7
  };
6
8
  export declare const Footer: React.FC<FooterProps>;
7
9
  export {};
@@ -4,6 +4,8 @@ declare const meta: {
4
4
  title: string;
5
5
  component: import('react').FC<import('react').HTMLAttributes<HTMLDivElement> & {
6
6
  network?: string;
7
+ navigate?: (path: string) => void;
8
+ maskUrl?: string;
7
9
  }>;
8
10
  tags: string[];
9
11
  parameters: {
@@ -1,6 +1,7 @@
1
1
  type FooterBackgroundAnimationProps = {
2
2
  isMobile: boolean;
3
3
  isLogoHovered: boolean;
4
+ maskUrl?: string;
4
5
  };
5
- export declare const FooterBackgroundAnimation: ({ isMobile, isLogoHovered, }: FooterBackgroundAnimationProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const FooterBackgroundAnimation: ({ isMobile, isLogoHovered, maskUrl, }: FooterBackgroundAnimationProps) => import("react/jsx-runtime").JSX.Element;
6
7
  export {};
@@ -13,6 +13,7 @@ type FooterLinksProps = {
13
13
  listClassName?: string;
14
14
  isRoutes?: boolean;
15
15
  isHomepage?: boolean;
16
+ navigate?: (path: string) => void;
16
17
  };
17
18
  export declare const FooterLinks: React.FC<FooterLinksProps>;
18
19
  export {};