@gardenfi/garden-book 0.1.94 → 0.1.96

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 ArrowSyncIcon: 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 HubIcon: React.FC<SvgProps>;
5
+ export {};
@@ -55,3 +55,5 @@ export { WarningIcon } from './WarningIcon';
55
55
  export { SwapHorizontalIcon } from './SwapHorizontalIcon';
56
56
  export { GasStationIcon } from './GasStationIcon';
57
57
  export { CancelIcon } from './CancelIcon';
58
+ export { ArrowSyncIcon } from './ArrowSyncIcon';
59
+ export { HubIcon } from './HubIcon';
@@ -3,11 +3,13 @@ import { FC, HTMLAttributes } from 'react';
3
3
  type AssetChainLogosProps = HTMLAttributes<HTMLDivElement> & {
4
4
  tokenLogo: string;
5
5
  chainLogo?: string;
6
+ iconStyles?: string;
6
7
  };
7
8
  /**
8
9
  * Chip
9
10
  * @param tokenLogo Token logo
10
11
  * @param chainLogo Chain logo (optional)
12
+ * @param iconStyles Additional styles for icons (optional)
11
13
  * @param props additional div props to be spread
12
14
  * @returns LogoStack component
13
15
  */
@@ -5,6 +5,7 @@ declare const meta: {
5
5
  component: import('react').FC<import('react').HTMLAttributes<HTMLDivElement> & {
6
6
  tokenLogo: string;
7
7
  chainLogo?: string;
8
+ iconStyles?: string;
8
9
  }>;
9
10
  parameters: {
10
11
  layout: string;
@@ -6,7 +6,7 @@ type BlogCardProps = {
6
6
  date: string;
7
7
  title: string;
8
8
  className?: string;
9
- description?: string;
9
+ thumbnailClassName?: string;
10
10
  };
11
11
  /**
12
12
  * BlogCard
@@ -15,7 +15,7 @@ type BlogCardProps = {
15
15
  * @param date of publishing for blog
16
16
  * @param title of the blog
17
17
  * @param className for the blog card itself
18
- * @param description of the blog
18
+ * @param thumbnailClassName for the image inside blog card
19
19
  * @returns BlogCard component
20
20
  */
21
21
  export declare const BlogCard: React.FC<BlogCardProps>;
@@ -8,7 +8,7 @@ declare const meta: {
8
8
  date: string;
9
9
  title: string;
10
10
  className?: string;
11
- description?: string;
11
+ thumbnailClassName?: string;
12
12
  }>;
13
13
  tags: string[];
14
14
  parameters: {