@transferwise/icons 3.0.0-next.4 → 3.0.0-next.7
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/do-icon.component.d.ts +3 -0
- package/lib/angular/components/emoji-icon.component.d.ts +3 -0
- package/lib/angular/components/nearby-icon.component.d.ts +3 -0
- package/lib/angular/components/rewards-icon.component.d.ts +3 -0
- package/lib/angular/components/verified-icon.component.d.ts +3 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/do.d.ts +9 -0
- package/lib/components/emoji.d.ts +9 -0
- package/lib/components/index.d.ts +6 -1
- package/lib/components/nearby.d.ts +9 -0
- package/lib/components/rewards.d.ts +9 -0
- package/lib/components/verified.d.ts +9 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface DoIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Do: FunctionComponent<DoIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface EmojiIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Emoji: FunctionComponent<EmojiIconProps>;
|
@@ -9,6 +9,7 @@ export * from './ach';
|
|
9
9
|
export * from './bank';
|
10
10
|
export * from './bar-chart';
|
11
11
|
export * from './balance';
|
12
|
+
export * from './investments';
|
12
13
|
export * from './barcode';
|
13
14
|
export * from './batch';
|
14
15
|
export * from './beach';
|
@@ -40,6 +41,7 @@ export * from './charity';
|
|
40
41
|
export * from './check-circle-fill';
|
41
42
|
export * from './check-circle';
|
42
43
|
export * from './check';
|
44
|
+
export * from './verified';
|
43
45
|
export * from './chevron-down';
|
44
46
|
export * from './chevron-left';
|
45
47
|
export * from './chevron-right';
|
@@ -89,6 +91,8 @@ export * from './groceries';
|
|
89
91
|
export * from './handshake';
|
90
92
|
export * from './contract-services';
|
91
93
|
export * from './happy-emoji';
|
94
|
+
export * from './do';
|
95
|
+
export * from './emoji';
|
92
96
|
export * from './headset';
|
93
97
|
export * from './cs';
|
94
98
|
export * from './heart';
|
@@ -104,7 +108,6 @@ export * from './insert-card';
|
|
104
108
|
export * from './atm';
|
105
109
|
export * from './instagram';
|
106
110
|
export * from './insurance';
|
107
|
-
export * from './investments';
|
108
111
|
export * from './keep';
|
109
112
|
export * from './klarna';
|
110
113
|
export * from './leaf';
|
@@ -128,6 +131,7 @@ export * from './money';
|
|
128
131
|
export * from './more';
|
129
132
|
export * from './multi-currency';
|
130
133
|
export * from './navigate-away';
|
134
|
+
export * from './nearby';
|
131
135
|
export * from './new';
|
132
136
|
export * from './notification-active';
|
133
137
|
export * from './notification';
|
@@ -164,6 +168,7 @@ export * from './reload';
|
|
164
168
|
export * from './refresh';
|
165
169
|
export * from './request-receive';
|
166
170
|
export * from './request-send';
|
171
|
+
export * from './rewards';
|
167
172
|
export * from './sad-emoji';
|
168
173
|
export * from './dont';
|
169
174
|
export * from './search';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface NearbyIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Nearby: FunctionComponent<NearbyIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RewardsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Rewards: FunctionComponent<RewardsIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface VerifiedIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Verified: FunctionComponent<VerifiedIconProps>;
|