@gardenfi/garden-book 0.1.94 → 0.1.96-beta.0
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/components/atoms/Icons/ArrowSyncIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/HubIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/index.d.ts +2 -0
- package/dist/components/molecules/AssetChainLogos/AssetChainLogos.d.ts +2 -0
- package/dist/components/molecules/AssetChainLogos/AssetChainLogos.stories.d.ts +1 -0
- package/dist/components/organisms/BlogCard/BlogCard.d.ts +2 -2
- package/dist/components/organisms/BlogCard/BlogCard.stories.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +1 -1
- package/dist/ui.es.js +105 -83
- package/dist/ui.umd.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
*/
|
|
@@ -6,7 +6,7 @@ type BlogCardProps = {
|
|
|
6
6
|
date: string;
|
|
7
7
|
title: string;
|
|
8
8
|
className?: string;
|
|
9
|
-
|
|
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
|
|
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>;
|