@transferwise/icons 2.23.0-ve.1 → 2.23.0-ve.4
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/components/{linkedIn.d.ts → building.d.ts} +2 -2
- package/lib/components/check-circle-fill.d.ts +9 -0
- package/lib/components/{buildings.d.ts → clock-fill.d.ts} +2 -2
- package/lib/components/cross-circle-fill.d.ts +9 -0
- package/lib/components/{alert.d.ts → globe.d.ts} +2 -2
- package/lib/components/index.d.ts +10 -6
- package/lib/components/{Instagram.d.ts → instagram.d.ts} +0 -0
- package/lib/components/linkedin.d.ts +9 -0
- package/lib/components/{PayPal.d.ts → paypal.d.ts} +2 -2
- package/lib/components/star-fill.d.ts +9 -0
- package/lib/components/{globe-24.d.ts → theme.d.ts} +2 -2
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +25 -24
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface BuildingIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const Building: FunctionComponent<BuildingIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CheckCircleFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CheckCircleFill: FunctionComponent<CheckCircleFillIconProps>;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface ClockFillIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const ClockFill: FunctionComponent<ClockFillIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CrossCircleFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CrossCircleFill: FunctionComponent<CrossCircleFillIconProps>;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface GlobeIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const Globe: FunctionComponent<GlobeIconProps>;
|
@@ -1,5 +1,4 @@
|
|
1
1
|
export * from './alert-circle';
|
2
|
-
export * from './alert';
|
3
2
|
export * from './arrow-down';
|
4
3
|
export * from './arrow-left';
|
5
4
|
export * from './arrow-right';
|
@@ -16,7 +15,7 @@ export * from './bin';
|
|
16
15
|
export * from './book';
|
17
16
|
export * from './boxes';
|
18
17
|
export * from './briefcase';
|
19
|
-
export * from './
|
18
|
+
export * from './building';
|
20
19
|
export * from './bulb';
|
21
20
|
export * from './calendar-check';
|
22
21
|
export * from './calendar';
|
@@ -27,6 +26,7 @@ export * from './card-wise';
|
|
27
26
|
export * from './card';
|
28
27
|
export * from './cash-register';
|
29
28
|
export * from './charity';
|
29
|
+
export * from './check-circle-fill';
|
30
30
|
export * from './check-circle';
|
31
31
|
export * from './check';
|
32
32
|
export * from './chevron-down';
|
@@ -34,11 +34,13 @@ export * from './chevron-left';
|
|
34
34
|
export * from './chevron-right';
|
35
35
|
export * from './chevron-up';
|
36
36
|
export * from './chip';
|
37
|
+
export * from './clock-fill';
|
37
38
|
export * from './clock';
|
38
39
|
export * from './cog';
|
39
40
|
export * from './collapse';
|
40
41
|
export * from './contactless';
|
41
42
|
export * from './convert';
|
43
|
+
export * from './cross-circle-fill';
|
42
44
|
export * from './cross-circle';
|
43
45
|
export * from './cross';
|
44
46
|
export * from './defrost';
|
@@ -64,7 +66,7 @@ export * from './fpx';
|
|
64
66
|
export * from './freeze';
|
65
67
|
export * from './general';
|
66
68
|
export * from './gift-box';
|
67
|
-
export * from './globe
|
69
|
+
export * from './globe';
|
68
70
|
export * from './graph';
|
69
71
|
export * from './groceries';
|
70
72
|
export * from './handshake';
|
@@ -77,7 +79,7 @@ export * from './ideal';
|
|
77
79
|
export * from './image';
|
78
80
|
export * from './info-circle';
|
79
81
|
export * from './insert-card';
|
80
|
-
export * from './
|
82
|
+
export * from './instagram';
|
81
83
|
export * from './insurance';
|
82
84
|
export * from './investments';
|
83
85
|
export * from './keep';
|
@@ -86,7 +88,7 @@ export * from './leaf';
|
|
86
88
|
export * from './lightning-bolt';
|
87
89
|
export * from './limit';
|
88
90
|
export * from './link';
|
89
|
-
export * from './
|
91
|
+
export * from './linkedin';
|
90
92
|
export * from './list';
|
91
93
|
export * from './log-in';
|
92
94
|
export * from './log-out';
|
@@ -108,7 +110,7 @@ export * from './padlock';
|
|
108
110
|
export * from './paperclip';
|
109
111
|
export * from './passport';
|
110
112
|
export * from './pay-in';
|
111
|
-
export * from './
|
113
|
+
export * from './paypal';
|
112
114
|
export * from './people';
|
113
115
|
export * from './percentage-circle';
|
114
116
|
export * from './person';
|
@@ -139,12 +141,14 @@ export * from './speech-bubble-message';
|
|
139
141
|
export * from './speech-bubble-pending';
|
140
142
|
export * from './speech-bubble';
|
141
143
|
export * from './speech-bubbles';
|
144
|
+
export * from './star-fill';
|
142
145
|
export * from './star';
|
143
146
|
export * from './stationary';
|
144
147
|
export * from './suitcase';
|
145
148
|
export * from './switch';
|
146
149
|
export * from './target';
|
147
150
|
export * from './team';
|
151
|
+
export * from './theme';
|
148
152
|
export * from './transfer';
|
149
153
|
export * from './transport';
|
150
154
|
export * from './trustly';
|
File without changes
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface LinkedinIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Linkedin: FunctionComponent<LinkedinIconProps>;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface PaypalIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const Paypal: FunctionComponent<PaypalIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface StarFillIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const StarFill: FunctionComponent<StarFillIconProps>;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface ThemeIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const Theme: FunctionComponent<ThemeIconProps>;
|