hive-react-kit 0.4.7 → 0.4.9
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/build.css +0 -15
- package/dist/components/landing-page/HiveContributionsLanding.d.ts +1 -0
- package/dist/index.cjs.js +74 -74
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +3390 -3401
- package/package.json +1 -1
package/dist/build.css
CHANGED
|
@@ -2951,21 +2951,6 @@
|
|
|
2951
2951
|
}
|
|
2952
2952
|
}
|
|
2953
2953
|
}
|
|
2954
|
-
.\[\&_svg\]\:h-5 {
|
|
2955
|
-
& svg {
|
|
2956
|
-
height: calc(var(--spacing) * 5);
|
|
2957
|
-
}
|
|
2958
|
-
}
|
|
2959
|
-
.\[\&_svg\]\:w-5 {
|
|
2960
|
-
& svg {
|
|
2961
|
-
width: calc(var(--spacing) * 5);
|
|
2962
|
-
}
|
|
2963
|
-
}
|
|
2964
|
-
.\[\&_svg\]\:shrink-0 {
|
|
2965
|
-
& svg {
|
|
2966
|
-
flex-shrink: 0;
|
|
2967
|
-
}
|
|
2968
|
-
}
|
|
2969
2954
|
.\[\&\>\*\]\:text-left {
|
|
2970
2955
|
&>* {
|
|
2971
2956
|
text-align: left;
|
|
@@ -13,6 +13,7 @@ interface HiveContributionsLandingProps {
|
|
|
13
13
|
isDividerShow?: boolean;
|
|
14
14
|
dividerColor?: string;
|
|
15
15
|
isExpensesCTA?: boolean;
|
|
16
|
+
onViewExpenses?: () => void;
|
|
16
17
|
extraSupporters?: SupporterItem[];
|
|
17
18
|
}
|
|
18
19
|
declare const HiveContributionsLanding: React.FC<HiveContributionsLandingProps>;
|