@transferwise/icons 3.2.4 → 3.3.1
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/{stationary-icon.component.d.ts → confetti-icon.component.d.ts} +1 -1
- package/lib/angular/components/{office-expenses-icon.component.d.ts → crystal-ball-icon.component.d.ts} +1 -1
- package/lib/angular/components/disco-ball-icon.component.d.ts +6 -0
- package/lib/angular/components/money-bag-icon.component.d.ts +6 -0
- package/lib/angular/components/plane-icon.component.d.ts +6 -0
- package/lib/angular/components/rain-icon.component.d.ts +6 -0
- package/lib/angular/components/rainbow-icon.component.d.ts +6 -0
- package/lib/angular/components/stationery-icon.component.d.ts +6 -0
- package/lib/angular/components/sunglasses-icon.component.d.ts +6 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/{office-expenses.d.ts → confetti.d.ts} +2 -2
- package/lib/components/crystal-ball.d.ts +10 -0
- package/lib/components/disco-ball.d.ts +10 -0
- package/lib/components/index.d.ts +9 -2
- package/lib/components/money-bag.d.ts +10 -0
- package/lib/components/plane.d.ts +10 -0
- package/lib/components/rain.d.ts +10 -0
- package/lib/components/rainbow.d.ts +10 -0
- package/lib/components/{stationary.d.ts → stationery.d.ts} +2 -2
- package/lib/components/sunglasses.d.ts +10 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types.d.ts +1 -1
- package/package.json +1 -1
@@ -1,10 +1,10 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface ConfettiIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
filled?: boolean;
|
6
6
|
className?: string;
|
7
7
|
title?: string;
|
8
8
|
['data-testid']?: string;
|
9
9
|
}
|
10
|
-
export declare const
|
10
|
+
export declare const Confetti: FunctionComponent<ConfettiIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CrystalBallIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const CrystalBall: FunctionComponent<CrystalBallIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface DiscoBallIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const DiscoBall: FunctionComponent<DiscoBallIconProps>;
|
@@ -61,16 +61,19 @@ export * from './cog';
|
|
61
61
|
export * from './settings';
|
62
62
|
export * from './coins';
|
63
63
|
export * from './collapse';
|
64
|
+
export * from './confetti';
|
64
65
|
export * from './contactless';
|
65
66
|
export * from './convert';
|
66
67
|
export * from './cross-circle-fill';
|
67
68
|
export * from './cross-circle';
|
68
69
|
export * from './cross';
|
70
|
+
export * from './crystal-ball';
|
69
71
|
export * from './defrost';
|
70
72
|
export * from './delivery';
|
71
73
|
export * from './dial';
|
72
74
|
export * from './pin-code';
|
73
75
|
export * from './direct-debits';
|
76
|
+
export * from './disco-ball';
|
74
77
|
export * from './document';
|
75
78
|
export * from './documents';
|
76
79
|
export * from './download';
|
@@ -145,6 +148,7 @@ export * from './minus';
|
|
145
148
|
export * from './mobile-lock';
|
146
149
|
export * from './two-step';
|
147
150
|
export * from './mobile';
|
151
|
+
export * from './money-bag';
|
148
152
|
export * from './money';
|
149
153
|
export * from './more';
|
150
154
|
export * from './multi-currency';
|
@@ -175,6 +179,7 @@ export * from './expenses';
|
|
175
179
|
export * from './piggy-bank';
|
176
180
|
export * from './savings';
|
177
181
|
export * from './pix';
|
182
|
+
export * from './plane';
|
178
183
|
export * from './plus-circle';
|
179
184
|
export * from './plus';
|
180
185
|
export * from './qr-code';
|
@@ -182,6 +187,8 @@ export * from './question-mark-circle';
|
|
182
187
|
export * from './help-circle';
|
183
188
|
export * from './question-mark';
|
184
189
|
export * from './help';
|
190
|
+
export * from './rain';
|
191
|
+
export * from './rainbow';
|
185
192
|
export * from './receipt';
|
186
193
|
export * from './receive';
|
187
194
|
export * from './refund-receive';
|
@@ -234,10 +241,10 @@ export * from './spend-zloty';
|
|
234
241
|
export * from './split-money';
|
235
242
|
export * from './star-fill';
|
236
243
|
export * from './star';
|
237
|
-
export * from './
|
238
|
-
export * from './office-expenses';
|
244
|
+
export * from './stationery';
|
239
245
|
export * from './suitcase';
|
240
246
|
export * from './travel';
|
247
|
+
export * from './sunglasses';
|
241
248
|
export * from './switch';
|
242
249
|
export * from './target';
|
243
250
|
export * from './marketing';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface MoneyBagIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const MoneyBag: FunctionComponent<MoneyBagIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PlaneIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Plane: FunctionComponent<PlaneIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RainIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Rain: FunctionComponent<RainIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RainbowIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Rainbow: FunctionComponent<RainbowIconProps>;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface StationeryIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
filled?: boolean;
|
6
6
|
className?: string;
|
7
7
|
title?: string;
|
8
8
|
['data-testid']?: string;
|
9
9
|
}
|
10
|
-
export declare const
|
10
|
+
export declare const Stationery: FunctionComponent<StationeryIconProps>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SunglassesIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const Sunglasses: FunctionComponent<SunglassesIconProps>;
|