@transferwise/icons 3.3.1 → 3.4.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.
@@ -242,6 +242,7 @@ export * from './split-money';
242
242
  export * from './star-fill';
243
243
  export * from './star';
244
244
  export * from './stationery';
245
+ export * from './office-expenses';
245
246
  export * from './suitcase';
246
247
  export * from './travel';
247
248
  export * from './sunglasses';
@@ -0,0 +1,10 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface OfficeExpensesIconProps {
4
+ size?: IconSize;
5
+ filled?: boolean;
6
+ className?: string;
7
+ title?: string;
8
+ ['data-testid']?: string;
9
+ }
10
+ export declare const OfficeExpenses: FunctionComponent<OfficeExpensesIconProps>;