@sikka/hawa 0.0.117 → 0.0.118

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/styles.css CHANGED
@@ -752,6 +752,9 @@ video {
752
752
  .h-2 {
753
753
  height: 0.5rem;
754
754
  }
755
+ .h-4 {
756
+ height: 1rem;
757
+ }
755
758
  .h-32 {
756
759
  height: 8rem;
757
760
  }
@@ -814,6 +817,9 @@ video {
814
817
  .w-10 {
815
818
  width: 2.5rem;
816
819
  }
820
+ .w-4 {
821
+ width: 1rem;
822
+ }
817
823
  .w-11 {
818
824
  width: 2.75rem;
819
825
  }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ type SpinnerTypes = {};
3
+ export declare const HawaSpinner: React.FunctionComponent<SpinnerTypes>;
4
+ export {};
@@ -4,6 +4,8 @@ type StatTypes = {
4
4
  number?: string;
5
5
  helperText?: string;
6
6
  variant?: "plain" | "contained" | "outlined";
7
+ isLoading?: boolean;
8
+ handleClick?: () => void;
7
9
  };
8
10
  export declare const HawaStats: React.FunctionComponent<StatTypes>;
9
11
  export {};
@@ -25,6 +25,7 @@ export * from "./HawaCopyrights";
25
25
  export * from "./HawaTimeline";
26
26
  export * from "./Breadcrumb";
27
27
  export * from "./HawaStats";
28
+ export * from "./HawaSpinner";
28
29
  export * from "./HawaTextField";
29
30
  export * from "./HawaCardInput";
30
31
  export * from "./HawaPinInput";