@transferwise/icons 3.0.0-next.5 → 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/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/index.d.ts +2 -1
- package/lib/components/{investments.d.ts → nearby.d.ts} +2 -2
- 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
@@ -105,7 +105,6 @@ export * from './insert-card';
|
|
105
105
|
export * from './atm';
|
106
106
|
export * from './instagram';
|
107
107
|
export * from './insurance';
|
108
|
-
export * from './investments';
|
109
108
|
export * from './keep';
|
110
109
|
export * from './klarna';
|
111
110
|
export * from './leaf';
|
@@ -129,6 +128,7 @@ export * from './money';
|
|
129
128
|
export * from './more';
|
130
129
|
export * from './multi-currency';
|
131
130
|
export * from './navigate-away';
|
131
|
+
export * from './nearby';
|
132
132
|
export * from './new';
|
133
133
|
export * from './notification-active';
|
134
134
|
export * from './notification';
|
@@ -165,6 +165,7 @@ export * from './reload';
|
|
165
165
|
export * from './refresh';
|
166
166
|
export * from './request-receive';
|
167
167
|
export * from './request-send';
|
168
|
+
export * from './rewards';
|
168
169
|
export * from './sad-emoji';
|
169
170
|
export * from './dont';
|
170
171
|
export * from './search';
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface NearbyIconProps {
|
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 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>;
|