kwant-ui 3.28.1 → 3.28.3

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.
@@ -1,9 +1,5 @@
1
1
  declare const Gauge: import("styled-components").StyledComponent<"svg", any, {}, never>;
2
2
  declare const Label: import("styled-components").StyledComponent<"text", any, {}, never>;
3
- declare const LowLabel: import("styled-components").StyledComponent<"text", any, {
4
- width: number;
5
- }, never>;
6
- declare const HighLabel: import("styled-components").StyledComponent<"text", any, {
7
- width: number;
8
- }, never>;
3
+ declare const LowLabel: import("styled-components").StyledComponent<"text", any, {}, never>;
4
+ declare const HighLabel: import("styled-components").StyledComponent<"text", any, {}, never>;
9
5
  export { Gauge, Label, LowLabel, HighLabel };
@@ -5,6 +5,7 @@ export declare namespace TextComponent {
5
5
  children?: React.ReactNode;
6
6
  type?: Type;
7
7
  weight?: Weight;
8
+ className?: string;
8
9
  };
9
10
  type Category = 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'caption' | 'link' | 'title';
10
11
  type Weight = 'regular' | 'medium' | 'semiBold';