@transferwise/icons 3.2.1 → 3.2.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.
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface CardCvcIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const CardCvc: FunctionComponent<CardCvcIconProps>;
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface ClockBorderlessIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const ClockBorderless: FunctionComponent<ClockBorderlessIconProps>;
@@ -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';
@@ -32,6 +33,7 @@ export * from './calendar';
32
33
  export * from './camera';
33
34
  export * from './car';
34
35
  export * from './drivers-license';
36
+ export * from './card-cvc';
35
37
  export * from './card-detail';
36
38
  export * from './card-number';
37
39
  export * from './card-wise';
@@ -51,6 +53,7 @@ export * from './chevron-right';
51
53
  export * from './chevron-up';
52
54
  export * from './chip';
53
55
  export * from './chip-pin';
56
+ export * from './clock-borderless';
54
57
  export * from './clock-fill';
55
58
  export * from './clock';
56
59
  export * from './pending-circle';
@@ -113,6 +116,7 @@ export * from './image';
113
116
  export * from './picture';
114
117
  export * from './info-circle-fill';
115
118
  export * from './info-circle';
119
+ export * from './info';
116
120
  export * from './insert-card';
117
121
  export * from './atm';
118
122
  export * from './instagram';
@@ -173,12 +177,15 @@ export * from './savings';
173
177
  export * from './pix';
174
178
  export * from './plus-circle';
175
179
  export * from './plus';
180
+ export * from './qr-code';
176
181
  export * from './question-mark-circle';
177
182
  export * from './help-circle';
178
183
  export * from './question-mark';
179
184
  export * from './help';
180
185
  export * from './receipt';
181
186
  export * from './receive';
187
+ export * from './refund-receive';
188
+ export * from './refund-sent';
182
189
  export * from './reload';
183
190
  export * from './refresh';
184
191
  export * from './request-receive';
@@ -246,7 +253,6 @@ export * from './exchange-rate';
246
253
  export * from './venmo';
247
254
  export * from './wallet';
248
255
  export * from './warning';
249
- export * from './alert';
250
256
  export * from './whatsapp';
251
257
  export * from './withdrawal';
252
258
  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>;