@transferwise/icons 2.17.0 → 2.21.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/calendar-success-icon.component.d.ts +6 -0
- package/lib/angular/components/paperclip-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/calendar-success.d.ts +9 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/paperclip.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
@@ -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>;
|
@@ -16,6 +16,7 @@ export * from './bills';
|
|
16
16
|
export * from './bin';
|
17
17
|
export * from './book';
|
18
18
|
export * from './briefcase';
|
19
|
+
export * from './calendar-success';
|
19
20
|
export * from './calendar';
|
20
21
|
export * from './camera';
|
21
22
|
export * from './card-number';
|
@@ -109,7 +110,9 @@ export * from './notification-active';
|
|
109
110
|
export * from './notification';
|
110
111
|
export * from './office-expenses';
|
111
112
|
export * from './owners-withdrawal';
|
113
|
+
export * from './paperclip';
|
112
114
|
export * from './passport';
|
115
|
+
export * from './paypal';
|
113
116
|
export * from './pending-circle';
|
114
117
|
export * from './pending';
|
115
118
|
export * from './personal-care';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PaperclipIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Paperclip: FunctionComponent<PaperclipIconProps>;
|
@@ -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>;
|