@transferwise/icons 2.13.0 → 2.17.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/README.md +11 -0
- package/lib/angular/components/auto-convert-icon.component.d.ts +6 -0
- package/lib/angular/components/delivery-icon.component.d.ts +6 -0
- package/lib/angular/components/leaf-icon.component.d.ts +6 -0
- package/lib/angular/components/request-receive-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/delivery.d.ts +9 -0
- package/lib/components/index.d.ts +4 -0
- package/lib/components/leaf.d.ts +9 -0
- package/lib/components/request-receive.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 -487
@@ -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 DeliveryIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Delivery: FunctionComponent<DeliveryIconProps>;
|
@@ -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';
|
@@ -40,6 +41,7 @@ export * from './cross-circle';
|
|
40
41
|
export * from './cross';
|
41
42
|
export * from './cs';
|
42
43
|
export * from './defrost';
|
44
|
+
export * from './delivery';
|
43
45
|
export * from './direct-debits';
|
44
46
|
export * from './do';
|
45
47
|
export * from './document';
|
@@ -84,6 +86,7 @@ export * from './insurance';
|
|
84
86
|
export * from './investments';
|
85
87
|
export * from './invite';
|
86
88
|
export * from './klarna';
|
89
|
+
export * from './leaf';
|
87
90
|
export * from './lightning';
|
88
91
|
export * from './limit';
|
89
92
|
export * from './link';
|
@@ -121,6 +124,7 @@ export * from './receive';
|
|
121
124
|
export * from './recipients';
|
122
125
|
export * from './refresh';
|
123
126
|
export * from './rent';
|
127
|
+
export * from './request-receive';
|
124
128
|
export * from './salary';
|
125
129
|
export * from './sales-and-royalties';
|
126
130
|
export * from './savings';
|
@@ -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 RequestReceiveIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const RequestReceive: FunctionComponent<RequestReceiveIconProps>;
|