@transferwise/icons 2.12.0 → 2.16.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.
@@ -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>;
@@ -0,0 +1,9 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface EmailAndPhoneIconProps {
4
+ size?: IconSize;
5
+ className?: string;
6
+ title?: string;
7
+ ['data-testid']?: string;
8
+ }
9
+ export declare const EmailAndPhone: FunctionComponent<EmailAndPhoneIconProps>;
@@ -40,6 +40,7 @@ export * from './cross-circle';
40
40
  export * from './cross';
41
41
  export * from './cs';
42
42
  export * from './defrost';
43
+ export * from './delivery';
43
44
  export * from './direct-debits';
44
45
  export * from './do';
45
46
  export * from './document';
@@ -50,6 +51,7 @@ export * from './drivers-license';
50
51
  export * from './e-commerce';
51
52
  export * from './eating-out';
52
53
  export * from './edit';
54
+ export * from './email-and-phone';
53
55
  export * from './email';
54
56
  export * from './emoji';
55
57
  export * from './entertainment';
@@ -83,6 +85,7 @@ export * from './insurance';
83
85
  export * from './investments';
84
86
  export * from './invite';
85
87
  export * from './klarna';
88
+ export * from './leaf';
86
89
  export * from './lightning';
87
90
  export * from './limit';
88
91
  export * from './link';
@@ -120,6 +123,7 @@ export * from './receive';
120
123
  export * from './recipients';
121
124
  export * from './refresh';
122
125
  export * from './rent';
126
+ export * from './request-receive';
123
127
  export * from './salary';
124
128
  export * from './sales-and-royalties';
125
129
  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>;