@transferwise/components 44.0.1 → 44.1.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.
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
 
3
- export type AvatarSize = "sm" | "md" | "lg";
3
+ export type AvatarSize = "sm" | "md" | "lg" | 40 | 56;
4
4
 
5
5
  export type AvatarTheme = "light" | "dark";
6
6
 
@@ -1,5 +1,5 @@
1
1
  import { ReactElement } from 'react';
2
- type ProgressBarProps = {
2
+ export type ProgressBarProps = {
3
3
  className?: string;
4
4
  description?: string;
5
5
  id: string;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { ProgressBarProps } from './ProgressBar';
3
+ declare const _default: {
4
+ component: ({ className, description, id, title, progress, textEnd, }: ProgressBarProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
5
+ title: string;
6
+ };
7
+ export default _default;
8
+ export declare const Basic: () => JSX.Element;