@transferwise/icons 3.0.0-next.6 → 3.0.0-next.7
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/do-icon.component.d.ts +3 -0
- package/lib/angular/components/investments-icon.component.d.ts +3 -0
- package/lib/angular/components/verified-icon.component.d.ts +3 -0
- package/lib/angular/index.js +1 -1
- package/lib/components/do.d.ts +9 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/investments.d.ts +9 -0
- package/lib/components/verified.d.ts +9 -0
- package/lib/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface DoIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Do: FunctionComponent<DoIconProps>;
|
@@ -9,6 +9,7 @@ export * from './ach';
|
|
9
9
|
export * from './bank';
|
10
10
|
export * from './bar-chart';
|
11
11
|
export * from './balance';
|
12
|
+
export * from './investments';
|
12
13
|
export * from './barcode';
|
13
14
|
export * from './batch';
|
14
15
|
export * from './beach';
|
@@ -40,6 +41,7 @@ export * from './charity';
|
|
40
41
|
export * from './check-circle-fill';
|
41
42
|
export * from './check-circle';
|
42
43
|
export * from './check';
|
44
|
+
export * from './verified';
|
43
45
|
export * from './chevron-down';
|
44
46
|
export * from './chevron-left';
|
45
47
|
export * from './chevron-right';
|
@@ -89,6 +91,7 @@ export * from './groceries';
|
|
89
91
|
export * from './handshake';
|
90
92
|
export * from './contract-services';
|
91
93
|
export * from './happy-emoji';
|
94
|
+
export * from './do';
|
92
95
|
export * from './emoji';
|
93
96
|
export * from './headset';
|
94
97
|
export * from './cs';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface InvestmentsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Investments: FunctionComponent<InvestmentsIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface VerifiedIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Verified: FunctionComponent<VerifiedIconProps>;
|