@transferwise/icons 3.0.6 → 3.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.
- package/README.md +10 -12
- package/lib/angular/components/bill-split-icon.component.d.ts +6 -0
- package/lib/angular/components/interac-icon.component.d.ts +6 -0
- package/lib/angular/components/pix-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-dirham-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-dollar-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-euro-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-forint-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-franc-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-hryvnia-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-koruna-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-krone-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-kuna-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-leu-lei-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-lev-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-lira-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-pound-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-real-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-ringgit-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-rupee-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-rupiah-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-yen-icon.component.d.ts +6 -0
- package/lib/angular/components/spend-zloty-icon.component.d.ts +6 -0
- package/lib/angular/components/venmo-icon.component.d.ts +6 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/bill-split.d.ts +10 -0
- package/lib/components/index.d.ts +23 -0
- package/lib/components/interac.d.ts +10 -0
- package/lib/components/pix.d.ts +10 -0
- package/lib/components/spend-dirham.d.ts +10 -0
- package/lib/components/spend-dollar.d.ts +10 -0
- package/lib/components/spend-euro.d.ts +10 -0
- package/lib/components/spend-forint.d.ts +10 -0
- package/lib/components/spend-franc.d.ts +10 -0
- package/lib/components/spend-hryvnia.d.ts +10 -0
- package/lib/components/spend-koruna.d.ts +10 -0
- package/lib/components/spend-krone.d.ts +10 -0
- package/lib/components/spend-kuna.d.ts +10 -0
- package/lib/components/spend-leu-lei.d.ts +10 -0
- package/lib/components/spend-lev.d.ts +10 -0
- package/lib/components/spend-lira.d.ts +10 -0
- package/lib/components/spend-pound.d.ts +10 -0
- package/lib/components/spend-real.d.ts +10 -0
- package/lib/components/spend-ringgit.d.ts +10 -0
- package/lib/components/spend-rupee.d.ts +10 -0
- package/lib/components/spend-rupiah.d.ts +10 -0
- package/lib/components/spend-yen.d.ts +10 -0
- package/lib/components/spend-zloty.d.ts +10 -0
- package/lib/components/venmo.d.ts +10 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +2 -2
- package/package.json +4 -4
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface BillSplitIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const BillSplit: FunctionComponent<BillSplitIconProps>;
|
@@ -14,6 +14,7 @@ export * from './barcode';
|
|
14
14
|
export * from './batch';
|
15
15
|
export * from './beach';
|
16
16
|
export * from './holidays';
|
17
|
+
export * from './bill-split';
|
17
18
|
export * from './bills';
|
18
19
|
export * from './bin';
|
19
20
|
export * from './book';
|
@@ -109,6 +110,7 @@ export * from './insert-card';
|
|
109
110
|
export * from './atm';
|
110
111
|
export * from './instagram';
|
111
112
|
export * from './insurance';
|
113
|
+
export * from './interac';
|
112
114
|
export * from './keep';
|
113
115
|
export * from './klarna';
|
114
116
|
export * from './leaf';
|
@@ -157,6 +159,7 @@ export * from './pie-chart';
|
|
157
159
|
export * from './expenses';
|
158
160
|
export * from './piggy-bank';
|
159
161
|
export * from './savings';
|
162
|
+
export * from './pix';
|
160
163
|
export * from './plus-circle';
|
161
164
|
export * from './plus';
|
162
165
|
export * from './question-mark-circle';
|
@@ -191,6 +194,25 @@ export * from './speech-bubble';
|
|
191
194
|
export * from './chat';
|
192
195
|
export * from './speech-bubbles';
|
193
196
|
export * from './comments';
|
197
|
+
export * from './spend-dirham';
|
198
|
+
export * from './spend-dollar';
|
199
|
+
export * from './spend-euro';
|
200
|
+
export * from './spend-forint';
|
201
|
+
export * from './spend-franc';
|
202
|
+
export * from './spend-hryvnia';
|
203
|
+
export * from './spend-koruna';
|
204
|
+
export * from './spend-krone';
|
205
|
+
export * from './spend-kuna';
|
206
|
+
export * from './spend-leu-lei';
|
207
|
+
export * from './spend-lev';
|
208
|
+
export * from './spend-lira';
|
209
|
+
export * from './spend-pound';
|
210
|
+
export * from './spend-real';
|
211
|
+
export * from './spend-ringgit';
|
212
|
+
export * from './spend-rupee';
|
213
|
+
export * from './spend-rupiah';
|
214
|
+
export * from './spend-yen';
|
215
|
+
export * from './spend-zloty';
|
194
216
|
export * from './star-fill';
|
195
217
|
export * from './star';
|
196
218
|
export * from './stationary';
|
@@ -209,6 +231,7 @@ export * from './twitter';
|
|
209
231
|
export * from './upload';
|
210
232
|
export * from './upward-graph';
|
211
233
|
export * from './exchange-rate';
|
234
|
+
export * from './venmo';
|
212
235
|
export * from './warning';
|
213
236
|
export * from './alert';
|
214
237
|
export * from './whatsapp';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface InteracIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Interac: FunctionComponent<InteracIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PixIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Pix: FunctionComponent<PixIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendDirhamIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendDirham: FunctionComponent<SpendDirhamIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendDollarIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendDollar: FunctionComponent<SpendDollarIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendEuroIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendEuro: FunctionComponent<SpendEuroIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendForintIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendForint: FunctionComponent<SpendForintIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendFrancIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendFranc: FunctionComponent<SpendFrancIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendHryvniaIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendHryvnia: FunctionComponent<SpendHryvniaIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendKorunaIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendKoruna: FunctionComponent<SpendKorunaIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendKroneIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendKrone: FunctionComponent<SpendKroneIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendKunaIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendKuna: FunctionComponent<SpendKunaIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendLeuLeiIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendLeuLei: FunctionComponent<SpendLeuLeiIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendLevIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendLev: FunctionComponent<SpendLevIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendLiraIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendLira: FunctionComponent<SpendLiraIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendPoundIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendPound: FunctionComponent<SpendPoundIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendRealIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendReal: FunctionComponent<SpendRealIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendRinggitIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendRinggit: FunctionComponent<SpendRinggitIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendRupeeIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendRupee: FunctionComponent<SpendRupeeIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendRupiahIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendRupiah: FunctionComponent<SpendRupiahIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendYenIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendYen: FunctionComponent<SpendYenIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SpendZlotyIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SpendZloty: FunctionComponent<SpendZlotyIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface VenmoIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Venmo: FunctionComponent<VenmoIconProps>;
|