@transferwise/icons 2.18.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.
@@ -111,6 +111,7 @@ export * from './notification';
111
111
  export * from './office-expenses';
112
112
  export * from './owners-withdrawal';
113
113
  export * from './passport';
114
+ export * from './paypal';
114
115
  export * from './pending-circle';
115
116
  export * from './pending';
116
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>;