@transferwise/icons 2.19.0 → 2.22.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.
@@ -110,6 +110,7 @@ export * from './notification-active';
110
110
  export * from './notification';
111
111
  export * from './office-expenses';
112
112
  export * from './owners-withdrawal';
113
+ export * from './paperclip';
113
114
  export * from './passport';
114
115
  export * from './paypal';
115
116
  export * from './pending-circle';
@@ -136,6 +137,7 @@ export * from './settings';
136
137
  export * from './share-android';
137
138
  export * from './share-ios';
138
139
  export * from './shield';
140
+ export * from './slider';
139
141
  export * from './software-and-web-hosting';
140
142
  export * from './star';
141
143
  export * from './switch';
@@ -0,0 +1,9 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface PaperclipIconProps {
4
+ size?: IconSize;
5
+ className?: string;
6
+ title?: string;
7
+ ['data-testid']?: string;
8
+ }
9
+ export declare const Paperclip: FunctionComponent<PaperclipIconProps>;
@@ -0,0 +1,9 @@
1
+ import { FunctionComponent } from 'react';
2
+ import { IconSize } from '../types';
3
+ export interface SliderIconProps {
4
+ size?: IconSize;
5
+ className?: string;
6
+ title?: string;
7
+ ['data-testid']?: string;
8
+ }
9
+ export declare const Slider: FunctionComponent<SliderIconProps>;