@transferwise/icons 2.23.0-ve.2 → 2.23.0-ve.3
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/components/ach.d.ts +9 -0
- package/lib/components/activity.d.ts +9 -0
- package/lib/components/alert.d.ts +9 -0
- package/lib/components/atm.d.ts +9 -0
- package/lib/components/{globe-24.d.ts → balance.d.ts} +2 -2
- package/lib/components/card-number.d.ts +9 -0
- package/lib/components/card-transferwise.d.ts +9 -0
- package/lib/components/chat.d.ts +9 -0
- package/lib/components/chip-pin.d.ts +9 -0
- package/lib/components/comments.d.ts +9 -0
- package/lib/components/contract-services.d.ts +9 -0
- package/lib/components/cost-of-goods-sold.d.ts +9 -0
- package/lib/components/cs.d.ts +9 -0
- package/lib/components/do.d.ts +9 -0
- package/lib/components/dont.d.ts +9 -0
- package/lib/components/drivers-license.d.ts +9 -0
- package/lib/components/e-commerce.d.ts +9 -0
- package/lib/components/email-and-phone.d.ts +9 -0
- package/lib/components/emoji.d.ts +9 -0
- package/lib/components/exchange-rate.d.ts +9 -0
- package/lib/components/expenses.d.ts +9 -0
- package/lib/components/family.d.ts +9 -0
- package/lib/components/feedback.d.ts +9 -0
- package/lib/components/globe.d.ts +9 -0
- package/lib/components/help-circle.d.ts +9 -0
- package/lib/components/help.d.ts +9 -0
- package/lib/components/holidays.d.ts +9 -0
- package/lib/components/home.d.ts +9 -0
- package/lib/components/index.d.ts +54 -1
- package/lib/components/insights.d.ts +9 -0
- package/lib/components/invite.d.ts +9 -0
- package/lib/components/lightning.d.ts +9 -0
- package/lib/components/lock.d.ts +9 -0
- package/lib/components/marketing.d.ts +9 -0
- package/lib/components/office-expenses.d.ts +9 -0
- package/lib/components/owners-withdrawal.d.ts +9 -0
- package/lib/components/pending-circle.d.ts +9 -0
- package/lib/components/pending.d.ts +9 -0
- package/lib/components/picture.d.ts +9 -0
- package/lib/components/pin-code.d.ts +9 -0
- package/lib/components/profile.d.ts +9 -0
- package/lib/components/recipients.d.ts +9 -0
- package/lib/components/refresh.d.ts +9 -0
- package/lib/components/rent.d.ts +9 -0
- package/lib/components/salary.d.ts +9 -0
- package/lib/components/sales-and-royalties.d.ts +9 -0
- package/lib/components/savings.d.ts +9 -0
- package/lib/components/settings.d.ts +9 -0
- package/lib/components/successful-schedule.d.ts +9 -0
- package/lib/components/tax.d.ts +9 -0
- package/lib/components/theme.d.ts +9 -0
- package/lib/components/travel.d.ts +9 -0
- package/lib/components/two-step.d.ts +9 -0
- package/lib/components/unlock.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 +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface AchIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Ach: FunctionComponent<AchIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ActivityIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Activity: FunctionComponent<ActivityIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface AlertIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Alert: FunctionComponent<AlertIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface AtmIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Atm: FunctionComponent<AtmIconProps>;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FunctionComponent } from 'react';
|
2
2
|
import { IconSize } from '../types';
|
3
|
-
export interface
|
3
|
+
export interface BalanceIconProps {
|
4
4
|
size?: IconSize;
|
5
5
|
className?: string;
|
6
6
|
title?: string;
|
7
7
|
['data-testid']?: string;
|
8
8
|
}
|
9
|
-
export declare const
|
9
|
+
export declare const Balance: FunctionComponent<BalanceIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CardNumberIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CardNumber: FunctionComponent<CardNumberIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CardTransferwiseIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CardTransferwise: FunctionComponent<CardTransferwiseIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ChatIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Chat: FunctionComponent<ChatIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ChipPinIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const ChipPin: FunctionComponent<ChipPinIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CommentsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Comments: FunctionComponent<CommentsIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ContractServicesIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const ContractServices: FunctionComponent<ContractServicesIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CostOfGoodsSoldIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const CostOfGoodsSold: FunctionComponent<CostOfGoodsSoldIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface CsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Cs: FunctionComponent<CsIconProps>;
|
@@ -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>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface DontIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Dont: FunctionComponent<DontIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface DriversLicenseIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const DriversLicense: FunctionComponent<DriversLicenseIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ECommerceIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const ECommerce: FunctionComponent<ECommerceIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface EmailAndPhoneIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const EmailAndPhone: FunctionComponent<EmailAndPhoneIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface EmojiIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Emoji: FunctionComponent<EmojiIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ExchangeRateIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const ExchangeRate: FunctionComponent<ExchangeRateIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ExpensesIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Expenses: FunctionComponent<ExpensesIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface FamilyIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Family: FunctionComponent<FamilyIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface FeedbackIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Feedback: FunctionComponent<FeedbackIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface GlobeIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Globe: FunctionComponent<GlobeIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface HelpCircleIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const HelpCircle: FunctionComponent<HelpCircleIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface HelpIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Help: FunctionComponent<HelpIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface HolidaysIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Holidays: FunctionComponent<HolidaysIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface HomeIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Home: FunctionComponent<HomeIconProps>;
|
@@ -1,9 +1,14 @@
|
|
1
|
+
export * from './ach';
|
2
|
+
export * from './activity';
|
1
3
|
export * from './alert-circle';
|
4
|
+
export * from './alert';
|
2
5
|
export * from './arrow-down';
|
3
6
|
export * from './arrow-left';
|
4
7
|
export * from './arrow-right';
|
5
8
|
export * from './arrow-up';
|
9
|
+
export * from './atm';
|
6
10
|
export * from './auto-convert';
|
11
|
+
export * from './balance';
|
7
12
|
export * from './bank-transfer';
|
8
13
|
export * from './bank';
|
9
14
|
export * from './bar-chart';
|
@@ -22,73 +27,100 @@ export * from './calendar';
|
|
22
27
|
export * from './camera';
|
23
28
|
export * from './car';
|
24
29
|
export * from './card-detail';
|
30
|
+
export * from './card-number';
|
31
|
+
export * from './card-transferwise';
|
25
32
|
export * from './card-wise';
|
26
33
|
export * from './card';
|
27
34
|
export * from './cash-register';
|
28
35
|
export * from './charity';
|
36
|
+
export * from './chat';
|
29
37
|
export * from './check-circle';
|
30
38
|
export * from './check';
|
31
39
|
export * from './chevron-down';
|
32
40
|
export * from './chevron-left';
|
33
41
|
export * from './chevron-right';
|
34
42
|
export * from './chevron-up';
|
43
|
+
export * from './chip-pin';
|
35
44
|
export * from './chip';
|
36
45
|
export * from './clock';
|
37
46
|
export * from './cog';
|
38
47
|
export * from './collapse';
|
48
|
+
export * from './comments';
|
39
49
|
export * from './contactless';
|
50
|
+
export * from './contract-services';
|
40
51
|
export * from './convert';
|
52
|
+
export * from './cost-of-goods-sold';
|
41
53
|
export * from './cross-circle';
|
42
54
|
export * from './cross';
|
55
|
+
export * from './cs';
|
43
56
|
export * from './defrost';
|
44
57
|
export * from './delivery';
|
45
58
|
export * from './dial';
|
46
59
|
export * from './direct-debits';
|
60
|
+
export * from './do';
|
47
61
|
export * from './document';
|
48
62
|
export * from './documents';
|
63
|
+
export * from './dont';
|
49
64
|
export * from './download';
|
65
|
+
export * from './drivers-license';
|
66
|
+
export * from './e-commerce';
|
50
67
|
export * from './eating-out';
|
51
68
|
export * from './edit';
|
52
69
|
export * from './email-and-mobile';
|
70
|
+
export * from './email-and-phone';
|
53
71
|
export * from './email';
|
72
|
+
export * from './emoji';
|
54
73
|
export * from './entertainment';
|
74
|
+
export * from './exchange-rate';
|
55
75
|
export * from './expand';
|
76
|
+
export * from './expenses';
|
56
77
|
export * from './eye-shut';
|
57
78
|
export * from './eye';
|
58
79
|
export * from './face-id';
|
59
80
|
export * from './facebook';
|
81
|
+
export * from './family';
|
60
82
|
export * from './fast-flag';
|
83
|
+
export * from './feedback';
|
61
84
|
export * from './fingerprint';
|
62
85
|
export * from './fpx';
|
63
86
|
export * from './freeze';
|
64
87
|
export * from './general';
|
65
88
|
export * from './gift-box';
|
66
|
-
export * from './globe
|
89
|
+
export * from './globe';
|
67
90
|
export * from './graph';
|
68
91
|
export * from './groceries';
|
69
92
|
export * from './handshake';
|
70
93
|
export * from './happy-emoji';
|
71
94
|
export * from './headset';
|
72
95
|
export * from './heart';
|
96
|
+
export * from './help-circle';
|
97
|
+
export * from './help';
|
98
|
+
export * from './holidays';
|
99
|
+
export * from './home';
|
73
100
|
export * from './house';
|
74
101
|
export * from './id';
|
75
102
|
export * from './ideal';
|
76
103
|
export * from './image';
|
77
104
|
export * from './info-circle';
|
78
105
|
export * from './insert-card';
|
106
|
+
export * from './insights';
|
79
107
|
export * from './Instagram';
|
80
108
|
export * from './insurance';
|
81
109
|
export * from './investments';
|
110
|
+
export * from './invite';
|
82
111
|
export * from './keep';
|
83
112
|
export * from './klarna';
|
84
113
|
export * from './leaf';
|
85
114
|
export * from './lightning-bolt';
|
115
|
+
export * from './lightning';
|
86
116
|
export * from './limit';
|
87
117
|
export * from './link';
|
88
118
|
export * from './linkedIn';
|
89
119
|
export * from './list';
|
120
|
+
export * from './lock';
|
90
121
|
export * from './log-in';
|
91
122
|
export * from './log-out';
|
123
|
+
export * from './marketing';
|
92
124
|
export * from './menu';
|
93
125
|
export * from './messenger';
|
94
126
|
export * from './minus-circle';
|
@@ -102,31 +134,45 @@ export * from './navigate-away';
|
|
102
134
|
export * from './new';
|
103
135
|
export * from './notification-active';
|
104
136
|
export * from './notification';
|
137
|
+
export * from './office-expenses';
|
138
|
+
export * from './owners-withdrawal';
|
105
139
|
export * from './padlock-unlocked';
|
106
140
|
export * from './padlock';
|
107
141
|
export * from './paperclip';
|
108
142
|
export * from './passport';
|
109
143
|
export * from './pay-in';
|
110
144
|
export * from './PayPal';
|
145
|
+
export * from './pending-circle';
|
146
|
+
export * from './pending';
|
111
147
|
export * from './people';
|
112
148
|
export * from './percentage-circle';
|
113
149
|
export * from './person';
|
114
150
|
export * from './personal-care';
|
115
151
|
export * from './phone';
|
152
|
+
export * from './picture';
|
116
153
|
export * from './pie-chart';
|
117
154
|
export * from './piggy-bank';
|
155
|
+
export * from './pin-code';
|
118
156
|
export * from './plus-circle';
|
119
157
|
export * from './plus';
|
158
|
+
export * from './profile';
|
120
159
|
export * from './question-mark-circle';
|
121
160
|
export * from './question-mark';
|
122
161
|
export * from './receipt';
|
123
162
|
export * from './receive';
|
163
|
+
export * from './recipients';
|
164
|
+
export * from './refresh';
|
124
165
|
export * from './reload';
|
166
|
+
export * from './rent';
|
125
167
|
export * from './request-receive';
|
126
168
|
export * from './request-send';
|
127
169
|
export * from './sad-emoji';
|
170
|
+
export * from './salary';
|
171
|
+
export * from './sales-and-royalties';
|
172
|
+
export * from './savings';
|
128
173
|
export * from './search';
|
129
174
|
export * from './send';
|
175
|
+
export * from './settings';
|
130
176
|
export * from './share-android';
|
131
177
|
export * from './share-ios';
|
132
178
|
export * from './shield';
|
@@ -140,16 +186,23 @@ export * from './speech-bubble';
|
|
140
186
|
export * from './speech-bubbles';
|
141
187
|
export * from './star';
|
142
188
|
export * from './stationary';
|
189
|
+
export * from './successful-schedule';
|
143
190
|
export * from './suitcase';
|
144
191
|
export * from './switch';
|
145
192
|
export * from './target';
|
193
|
+
export * from './tax';
|
146
194
|
export * from './team';
|
195
|
+
export * from './theme';
|
147
196
|
export * from './transfer';
|
148
197
|
export * from './transport';
|
198
|
+
export * from './travel';
|
149
199
|
export * from './trustly';
|
150
200
|
export * from './twitter';
|
201
|
+
export * from './two-step';
|
202
|
+
export * from './unlock';
|
151
203
|
export * from './upload';
|
152
204
|
export * from './upward-graph';
|
205
|
+
export * from './verified';
|
153
206
|
export * from './warning';
|
154
207
|
export * from './whatsapp';
|
155
208
|
export * from './withdrawal';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface InsightsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Insights: FunctionComponent<InsightsIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface InviteIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Invite: FunctionComponent<InviteIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface LightningIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Lightning: FunctionComponent<LightningIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface LockIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Lock: FunctionComponent<LockIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface MarketingIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Marketing: FunctionComponent<MarketingIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface OfficeExpensesIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const OfficeExpenses: FunctionComponent<OfficeExpensesIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface OwnersWithdrawalIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const OwnersWithdrawal: FunctionComponent<OwnersWithdrawalIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PendingCircleIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const PendingCircle: FunctionComponent<PendingCircleIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PendingIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Pending: FunctionComponent<PendingIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PictureIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Picture: FunctionComponent<PictureIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface PinCodeIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const PinCode: FunctionComponent<PinCodeIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface ProfileIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Profile: FunctionComponent<ProfileIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RecipientsIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Recipients: FunctionComponent<RecipientsIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RefreshIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Refresh: FunctionComponent<RefreshIconProps>;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { FunctionComponent } from 'react';
|
2
|
+
import { IconSize } from '../types';
|
3
|
+
export interface RentIconProps {
|
4
|
+
size?: IconSize;
|
5
|
+
className?: string;
|
6
|
+
title?: string;
|
7
|
+
['data-testid']?: string;
|
8
|
+
}
|
9
|
+
export declare const Rent: FunctionComponent<RentIconProps>;
|