@transferwise/icons 2.15.0 → 2.19.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/leaf-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 +4 -0
- package/lib/components/leaf.d.ts +9 -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
- package/CHANGELOG.md +0 -495
@@ -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';
|
@@ -85,6 +87,7 @@ export * from './insurance';
|
|
85
87
|
export * from './investments';
|
86
88
|
export * from './invite';
|
87
89
|
export * from './klarna';
|
90
|
+
export * from './leaf';
|
88
91
|
export * from './lightning';
|
89
92
|
export * from './limit';
|
90
93
|
export * from './link';
|
@@ -108,6 +111,7 @@ export * from './notification';
|
|
108
111
|
export * from './office-expenses';
|
109
112
|
export * from './owners-withdrawal';
|
110
113
|
export * from './passport';
|
114
|
+
export * from './paypal';
|
111
115
|
export * from './pending-circle';
|
112
116
|
export * from './pending';
|
113
117
|
export * from './personal-care';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface LeafIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Leaf: FunctionComponent<LeafIconProps>;
|
@@ -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>;
|