@transferwise/icons 3.0.1 → 3.0.2
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.
- package/lib/angular/components/facebook-square-icon.component.d.ts +3 -0
- package/lib/angular/components/software-and-web-hosting-icon.component.d.ts +3 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/facebook-square.d.ts +10 -0
- package/lib/components/index.d.ts +2 -0
- package/lib/components/software-and-web-hosting.d.ts +10 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface FacebookSquareIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const FacebookSquare: FunctionComponent<FacebookSquareIconProps>;
|
@@ -78,6 +78,7 @@ export * from './eye-shut';
|
|
78
78
|
export * from './eye';
|
79
79
|
export * from './face-id';
|
80
80
|
export * from './facebook';
|
81
|
+
export * from './facebook-square';
|
81
82
|
export * from './fast-flag';
|
82
83
|
export * from './fingerprint';
|
83
84
|
export * from './fpx';
|
@@ -181,6 +182,7 @@ export * from './e-commerce';
|
|
181
182
|
export * from './slider';
|
182
183
|
export * from './sofort';
|
183
184
|
export * from './software-and-hosting';
|
185
|
+
export * from './software-and-web-hosting';
|
184
186
|
export * from './speech-bubble-message';
|
185
187
|
export * from './feedback';
|
186
188
|
export * from './speech-bubble-pending';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface SoftwareAndWebHostingIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
filled?: boolean;
|
6
|
+
className?: string;
|
7
|
+
title?: string;
|
8
|
+
['data-testid']?: string;
|
9
|
+
}
|
10
|
+
export declare const SoftwareAndWebHosting: FunctionComponent<SoftwareAndWebHostingIconProps>;
|