@transferwise/icons 3.0.0-next.3 → 3.0.0-next.6
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/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/index.js +1 -1
- package/lib/components/{investments.d.ts → emoji.d.ts} +2 -2
- package/lib/components/index.d.ts +3 -1
- package/lib/components/nearby.d.ts +9 -0
- package/lib/components/rewards.d.ts +9 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
- package/lib/angular/components/investments-icon.component.d.ts +0 -3
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface EmojiIconProps {
|
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 Emoji: FunctionComponent<EmojiIconProps>;
|
@@ -89,6 +89,7 @@ export * from './groceries';
|
|
89
89
|
export * from './handshake';
|
90
90
|
export * from './contract-services';
|
91
91
|
export * from './happy-emoji';
|
92
|
+
export * from './emoji';
|
92
93
|
export * from './headset';
|
93
94
|
export * from './cs';
|
94
95
|
export * from './heart';
|
@@ -104,7 +105,6 @@ export * from './insert-card';
|
|
104
105
|
export * from './atm';
|
105
106
|
export * from './instagram';
|
106
107
|
export * from './insurance';
|
107
|
-
export * from './investments';
|
108
108
|
export * from './keep';
|
109
109
|
export * from './klarna';
|
110
110
|
export * from './leaf';
|
@@ -128,6 +128,7 @@ export * from './money';
|
|
128
128
|
export * from './more';
|
129
129
|
export * from './multi-currency';
|
130
130
|
export * from './navigate-away';
|
131
|
+
export * from './nearby';
|
131
132
|
export * from './new';
|
132
133
|
export * from './notification-active';
|
133
134
|
export * from './notification';
|
@@ -164,6 +165,7 @@ export * from './reload';
|
|
164
165
|
export * from './refresh';
|
165
166
|
export * from './request-receive';
|
166
167
|
export * from './request-send';
|
168
|
+
export * from './rewards';
|
167
169
|
export * from './sad-emoji';
|
168
170
|
export * from './dont';
|
169
171
|
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>;
|