@transferwise/icons 3.5.1 → 3.6.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.
@@ -165,6 +165,7 @@ export * from './paperclip';
165
165
  export * from './passport';
166
166
  export * from './pay-in';
167
167
  export * from './salary';
168
+ export * from './payments';
168
169
  export * from './paypal';
169
170
  export * from './people';
170
171
  export * from './recipients';
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface PaymentsIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const Payments: FunctionComponent<PaymentsIconProps>;