@transferwise/icons 3.2.0 → 3.2.2

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,5 +1,6 @@
1
1
  export * from './alert-circle-fill';
2
2
  export * from './alert-circle';
3
+ export * from './alert';
3
4
  export * from './arrow-down';
4
5
  export * from './arrow-left';
5
6
  export * from './arrow-right';
@@ -113,6 +114,7 @@ export * from './image';
113
114
  export * from './picture';
114
115
  export * from './info-circle-fill';
115
116
  export * from './info-circle';
117
+ export * from './info';
116
118
  export * from './insert-card';
117
119
  export * from './atm';
118
120
  export * from './instagram';
@@ -173,12 +175,15 @@ export * from './savings';
173
175
  export * from './pix';
174
176
  export * from './plus-circle';
175
177
  export * from './plus';
178
+ export * from './qr-code';
176
179
  export * from './question-mark-circle';
177
180
  export * from './help-circle';
178
181
  export * from './question-mark';
179
182
  export * from './help';
180
183
  export * from './receipt';
181
184
  export * from './receive';
185
+ export * from './refund-receive';
186
+ export * from './refund-sent';
182
187
  export * from './reload';
183
188
  export * from './refresh';
184
189
  export * from './request-receive';
@@ -246,7 +251,6 @@ export * from './exchange-rate';
246
251
  export * from './venmo';
247
252
  export * from './wallet';
248
253
  export * from './warning';
249
- export * from './alert';
250
254
  export * from './whatsapp';
251
255
  export * from './withdrawal';
252
256
  export * from './owners-withdrawal';
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface InfoIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const Info: FunctionComponent<InfoIconProps>;
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface QrCodeIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const QrCode: FunctionComponent<QrCodeIconProps>;
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface RefundReceiveIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const RefundReceive: FunctionComponent<RefundReceiveIconProps>;
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface RefundSentIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const RefundSent: FunctionComponent<RefundSentIconProps>;