@transferwise/icons 2.16.0 → 2.20.0
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/auto-convert-icon.component.d.ts +6 -0
- package/lib/angular/components/calendar-success-icon.component.d.ts +6 -0
- package/lib/angular/components/paypal-icon.component.d.ts +6 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/auto-convert.d.ts +9 -0
- package/lib/components/calendar-success.d.ts +9 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/paypal.d.ts +9 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface AutoConvertIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const AutoConvert: FunctionComponent<AutoConvertIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CalendarSuccessIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CalendarSuccess: FunctionComponent<CalendarSuccessIconProps>;
|
@@ -7,6 +7,7 @@ export * from './arrow-left';
|
|
7
7
|
export * from './arrow-right';
|
8
8
|
export * from './arrow-up';
|
9
9
|
export * from './atm';
|
10
|
+
export * from './auto-convert';
|
10
11
|
export * from './balance';
|
11
12
|
export * from './bank';
|
12
13
|
export * from './barcode';
|
@@ -15,6 +16,7 @@ export * from './bills';
|
|
15
16
|
export * from './bin';
|
16
17
|
export * from './book';
|
17
18
|
export * from './briefcase';
|
19
|
+
export * from './calendar-success';
|
18
20
|
export * from './calendar';
|
19
21
|
export * from './camera';
|
20
22
|
export * from './card-number';
|
@@ -109,6 +111,7 @@ export * from './notification';
|
|
109
111
|
export * from './office-expenses';
|
110
112
|
export * from './owners-withdrawal';
|
111
113
|
export * from './passport';
|
114
|
+
export * from './paypal';
|
112
115
|
export * from './pending-circle';
|
113
116
|
export * from './pending';
|
114
117
|
export * from './personal-care';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PaypalIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Paypal: FunctionComponent<PaypalIconProps>;
|