@transferwise/icons 3.1.1 → 3.1.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.
- package/lib/angular/components/alert-circle-fill-icon.component.d.ts +6 -0
- package/lib/angular/components/cash-app-icon.component.d.ts +6 -0
- package/lib/angular/components/coins-icon.component.d.ts +6 -0
- package/lib/angular/components/general-fill-icon.component.d.ts +6 -0
- package/lib/angular/components/general-filled-icon.component.d.ts +6 -0
- package/lib/angular/components/graduation-cap-icon.component.d.ts +6 -0
- package/lib/angular/components/info-circle-fill-icon.component.d.ts +6 -0
- package/lib/angular/components/jar-icon.component.d.ts +6 -0
- package/lib/angular/components/location-marker-icon.component.d.ts +6 -0
- package/lib/angular/components/mass-payout-icon.component.d.ts +6 -0
- package/lib/angular/components/minus-circle-fill-icon.component.d.ts +6 -0
- package/lib/angular/components/split-money-icon.component.d.ts +6 -0
- package/lib/angular/components/wallet-icon.component.d.ts +6 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/alert-circle-fill.d.ts +10 -0
- package/lib/components/cash-app.d.ts +10 -0
- package/lib/components/coins.d.ts +10 -0
- package/lib/components/general-fill.d.ts +10 -0
- package/lib/components/general-filled.d.ts +10 -0
- package/lib/components/graduation-cap.d.ts +10 -0
- package/lib/components/index.d.ts +13 -0
- package/lib/components/info-circle-fill.d.ts +10 -0
- package/lib/components/jar.d.ts +10 -0
- package/lib/components/location-marker.d.ts +10 -0
- package/lib/components/mass-payout.d.ts +10 -0
- package/lib/components/minus-circle-fill.d.ts +10 -0
- package/lib/components/split-money.d.ts +10 -0
- package/lib/components/wallet.d.ts +10 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +3 -3
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface AlertCircleFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const AlertCircleFill: FunctionComponent<AlertCircleFillIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CashAppIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const CashApp: FunctionComponent<CashAppIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CoinsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Coins: FunctionComponent<CoinsIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface GeneralFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const GeneralFill: FunctionComponent<GeneralFillIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface GeneralFilledIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const GeneralFilled: FunctionComponent<GeneralFilledIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface GraduationCapIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const GraduationCap: FunctionComponent<GraduationCapIconProps>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
export * from './alert-circle-fill';
|
1
2
|
export * from './alert-circle';
|
2
3
|
export * from './arrow-down';
|
3
4
|
export * from './arrow-left';
|
@@ -36,6 +37,7 @@ export * from './card-number';
|
|
36
37
|
export * from './card-wise';
|
37
38
|
export * from './card-transferwise';
|
38
39
|
export * from './card';
|
40
|
+
export * from './cash-app';
|
39
41
|
export * from './cash-register';
|
40
42
|
export * from './sales-and-royalties';
|
41
43
|
export * from './charity';
|
@@ -54,6 +56,7 @@ export * from './clock';
|
|
54
56
|
export * from './pending-circle';
|
55
57
|
export * from './cog';
|
56
58
|
export * from './settings';
|
59
|
+
export * from './coins';
|
57
60
|
export * from './collapse';
|
58
61
|
export * from './contactless';
|
59
62
|
export * from './convert';
|
@@ -84,10 +87,13 @@ export * from './fast-flag';
|
|
84
87
|
export * from './fingerprint';
|
85
88
|
export * from './fpx';
|
86
89
|
export * from './freeze';
|
90
|
+
export * from './general-fill';
|
91
|
+
export * from './general-filled';
|
87
92
|
export * from './general';
|
88
93
|
export * from './gift-box';
|
89
94
|
export * from './invite';
|
90
95
|
export * from './globe';
|
96
|
+
export * from './graduation-cap';
|
91
97
|
export * from './graph';
|
92
98
|
export * from './groceries';
|
93
99
|
export * from './handshake';
|
@@ -105,12 +111,14 @@ export * from './id';
|
|
105
111
|
export * from './ideal';
|
106
112
|
export * from './image';
|
107
113
|
export * from './picture';
|
114
|
+
export * from './info-circle-fill';
|
108
115
|
export * from './info-circle';
|
109
116
|
export * from './insert-card';
|
110
117
|
export * from './atm';
|
111
118
|
export * from './instagram';
|
112
119
|
export * from './insurance';
|
113
120
|
export * from './interac';
|
121
|
+
export * from './jar';
|
114
122
|
export * from './keep';
|
115
123
|
export * from './klarna';
|
116
124
|
export * from './leaf';
|
@@ -121,10 +129,13 @@ export * from './link';
|
|
121
129
|
export * from './linkedin';
|
122
130
|
export * from './list';
|
123
131
|
export * from './activity';
|
132
|
+
export * from './location-marker';
|
124
133
|
export * from './log-in';
|
125
134
|
export * from './log-out';
|
135
|
+
export * from './mass-payout';
|
126
136
|
export * from './menu';
|
127
137
|
export * from './messenger';
|
138
|
+
export * from './minus-circle-fill';
|
128
139
|
export * from './minus-circle';
|
129
140
|
export * from './minus';
|
130
141
|
export * from './mobile-lock';
|
@@ -213,6 +224,7 @@ export * from './spend-rupee';
|
|
213
224
|
export * from './spend-rupiah';
|
214
225
|
export * from './spend-yen';
|
215
226
|
export * from './spend-zloty';
|
227
|
+
export * from './split-money';
|
216
228
|
export * from './star-fill';
|
217
229
|
export * from './star';
|
218
230
|
export * from './stationary';
|
@@ -232,6 +244,7 @@ export * from './upload';
|
|
232
244
|
export * from './upward-graph';
|
233
245
|
export * from './exchange-rate';
|
234
246
|
export * from './venmo';
|
247
|
+
export * from './wallet';
|
235
248
|
export * from './warning';
|
236
249
|
export * from './alert';
|
237
250
|
export * from './whatsapp';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface InfoCircleFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const InfoCircleFill: FunctionComponent<InfoCircleFillIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface JarIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Jar: FunctionComponent<JarIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface LocationMarkerIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const LocationMarker: FunctionComponent<LocationMarkerIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface MassPayoutIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const MassPayout: FunctionComponent<MassPayoutIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface MinusCircleFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const MinusCircleFill: FunctionComponent<MinusCircleFillIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SplitMoneyIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SplitMoney: FunctionComponent<SplitMoneyIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface WalletIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Wallet: FunctionComponent<WalletIconProps>;
|