@transferwise/icons 2.21.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.
@@ -137,6 +137,7 @@ export * from './settings';
137
137
  export * from './share-android';
138
138
  export * from './share-ios';
139
139
  export * from './shield';
140
+ export * from './slider';
140
141
  export * from './software-and-web-hosting';
141
142
  export * from './star';
142
143
  export * from './switch';
@@ -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>;