@bm-fe/icons 0.2.0-beta.0 → 0.2.0-beta.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.
@@ -1,23 +1,1203 @@
1
- import React, { CSSProperties } from 'react';
1
+ import React from 'react';
2
2
 
3
- interface IconBaseProps {
4
- /** 图标尺寸,支持数字或字符串(如 "1.25em" */
5
- size?: 12 | 16 | 20 | 24 | 32 | number | string;
6
- /** 自定义 className */
7
- className?: string;
8
- /** 自定义 style */
9
- style?: CSSProperties;
10
- /** 子元素(SVG 内容) */
11
- children?: React.ReactNode;
3
+ interface AcademyProps extends React.SVGProps<SVGSVGElement> {
4
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
5
+ size?: number | string;
12
6
  }
13
- /**
14
- * IconBase 基座组件
15
- * 提供统一的尺寸、样式处理
16
- */
17
- declare const IconBase: React.FC<IconBaseProps>;
7
+ declare const Academy: React.ForwardRefExoticComponent<Omit<AcademyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
18
8
 
19
- interface P2pProps extends Omit<IconBaseProps, 'children'> {
9
+ interface AddProps extends React.SVGProps<SVGSVGElement> {
10
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
11
+ size?: number | string;
20
12
  }
21
- declare const P2p: React.FC<P2pProps>;
13
+ declare const Add: React.ForwardRefExoticComponent<Omit<AddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
14
 
23
- export { IconBase, type IconBaseProps, P2p, type P2pProps };
15
+ interface Add2Props extends React.SVGProps<SVGSVGElement> {
16
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
17
+ size?: number | string;
18
+ }
19
+ declare const Add2: React.ForwardRefExoticComponent<Omit<Add2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
21
+ interface AddressProps extends React.SVGProps<SVGSVGElement> {
22
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
23
+ size?: number | string;
24
+ }
25
+ declare const Address: React.ForwardRefExoticComponent<Omit<AddressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
26
+
27
+ interface AEDProps extends React.SVGProps<SVGSVGElement> {
28
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
29
+ size?: number | string;
30
+ }
31
+ declare const AED: React.ForwardRefExoticComponent<Omit<AEDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
32
+
33
+ interface AffiliateProgramProps extends React.SVGProps<SVGSVGElement> {
34
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
35
+ size?: number | string;
36
+ }
37
+ declare const AffiliateProgram: React.ForwardRefExoticComponent<Omit<AffiliateProgramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ interface AiHubProps extends React.SVGProps<SVGSVGElement> {
40
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
41
+ size?: number | string;
42
+ }
43
+ declare const AiHub: React.ForwardRefExoticComponent<Omit<AiHubProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
44
+
45
+ interface AMDProps extends React.SVGProps<SVGSVGElement> {
46
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
47
+ size?: number | string;
48
+ }
49
+ declare const AMD: React.ForwardRefExoticComponent<Omit<AMDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
50
+
51
+ interface AmmProps extends React.SVGProps<SVGSVGElement> {
52
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
53
+ size?: number | string;
54
+ }
55
+ declare const Amm: React.ForwardRefExoticComponent<Omit<AmmProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
+
57
+ interface ApisProps extends React.SVGProps<SVGSVGElement> {
58
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
59
+ size?: number | string;
60
+ }
61
+ declare const Apis: React.ForwardRefExoticComponent<Omit<ApisProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
62
+
63
+ interface AppDownloadProps extends React.SVGProps<SVGSVGElement> {
64
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
65
+ size?: number | string;
66
+ }
67
+ declare const AppDownload: React.ForwardRefExoticComponent<Omit<AppDownloadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
68
+
69
+ interface AppleProps extends React.SVGProps<SVGSVGElement> {
70
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
71
+ size?: number | string;
72
+ }
73
+ declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
+
75
+ interface ArrowLeftProps extends React.SVGProps<SVGSVGElement> {
76
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
77
+ size?: number | string;
78
+ }
79
+ declare const ArrowLeft: React.ForwardRefExoticComponent<Omit<ArrowLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
80
+
81
+ interface ArrowRightProps extends React.SVGProps<SVGSVGElement> {
82
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
83
+ size?: number | string;
84
+ }
85
+ declare const ArrowRight: React.ForwardRefExoticComponent<Omit<ArrowRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
86
+
87
+ interface ArrowRight2Props extends React.SVGProps<SVGSVGElement> {
88
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
89
+ size?: number | string;
90
+ }
91
+ declare const ArrowRight2: React.ForwardRefExoticComponent<Omit<ArrowRight2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
93
+ interface ARSProps extends React.SVGProps<SVGSVGElement> {
94
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
95
+ size?: number | string;
96
+ }
97
+ declare const ARS: React.ForwardRefExoticComponent<Omit<ARSProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
98
+
99
+ interface AUDProps extends React.SVGProps<SVGSVGElement> {
100
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
101
+ size?: number | string;
102
+ }
103
+ declare const AUD: React.ForwardRefExoticComponent<Omit<AUDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
104
+
105
+ interface AvatarProps extends React.SVGProps<SVGSVGElement> {
106
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
107
+ size?: number | string;
108
+ }
109
+ declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
110
+
111
+ interface AZNProps extends React.SVGProps<SVGSVGElement> {
112
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
113
+ size?: number | string;
114
+ }
115
+ declare const AZN: React.ForwardRefExoticComponent<Omit<AZNProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
116
+
117
+ interface BackProps extends React.SVGProps<SVGSVGElement> {
118
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
119
+ size?: number | string;
120
+ }
121
+ declare const Back: React.ForwardRefExoticComponent<Omit<BackProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
122
+
123
+ interface BDTProps extends React.SVGProps<SVGSVGElement> {
124
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
125
+ size?: number | string;
126
+ }
127
+ declare const BDT: React.ForwardRefExoticComponent<Omit<BDTProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
+
129
+ interface BeaconProps extends React.SVGProps<SVGSVGElement> {
130
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
131
+ size?: number | string;
132
+ }
133
+ declare const Beacon: React.ForwardRefExoticComponent<Omit<BeaconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
134
+
135
+ interface BitmartCardProps extends React.SVGProps<SVGSVGElement> {
136
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
137
+ size?: number | string;
138
+ }
139
+ declare const BitmartCard: React.ForwardRefExoticComponent<Omit<BitmartCardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
140
+
141
+ interface BitmartTravelProps extends React.SVGProps<SVGSVGElement> {
142
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
143
+ size?: number | string;
144
+ }
145
+ declare const BitmartTravel: React.ForwardRefExoticComponent<Omit<BitmartTravelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
146
+
147
+ interface BmDiscoveryProps extends React.SVGProps<SVGSVGElement> {
148
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
149
+ size?: number | string;
150
+ }
151
+ declare const BmDiscovery: React.ForwardRefExoticComponent<Omit<BmDiscoveryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
152
+
153
+ interface BRLProps extends React.SVGProps<SVGSVGElement> {
154
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
155
+ size?: number | string;
156
+ }
157
+ declare const BRL: React.ForwardRefExoticComponent<Omit<BRLProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
158
+
159
+ interface BrokerProgramProps extends React.SVGProps<SVGSVGElement> {
160
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
161
+ size?: number | string;
162
+ }
163
+ declare const BrokerProgram: React.ForwardRefExoticComponent<Omit<BrokerProgramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
164
+
165
+ interface BYNProps extends React.SVGProps<SVGSVGElement> {
166
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
167
+ size?: number | string;
168
+ }
169
+ declare const BYN: React.ForwardRefExoticComponent<Omit<BYNProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
170
+
171
+ interface ClearProps extends React.SVGProps<SVGSVGElement> {
172
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
173
+ size?: number | string;
174
+ }
175
+ declare const Clear: React.ForwardRefExoticComponent<Omit<ClearProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
176
+
177
+ interface CloseProps extends React.SVGProps<SVGSVGElement> {
178
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
179
+ size?: number | string;
180
+ }
181
+ declare const Close: React.ForwardRefExoticComponent<Omit<CloseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
182
+
183
+ interface CloudBackupProps extends React.SVGProps<SVGSVGElement> {
184
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
185
+ size?: number | string;
186
+ }
187
+ declare const CloudBackup: React.ForwardRefExoticComponent<Omit<CloudBackupProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
188
+
189
+ interface CLPProps extends React.SVGProps<SVGSVGElement> {
190
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
191
+ size?: number | string;
192
+ }
193
+ declare const CLP: React.ForwardRefExoticComponent<Omit<CLPProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
194
+
195
+ interface CNYProps extends React.SVGProps<SVGSVGElement> {
196
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
197
+ size?: number | string;
198
+ }
199
+ declare const CNY: React.ForwardRefExoticComponent<Omit<CNYProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
200
+
201
+ interface CoinMProps extends React.SVGProps<SVGSVGElement> {
202
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
203
+ size?: number | string;
204
+ }
205
+ declare const CoinM: React.ForwardRefExoticComponent<Omit<CoinMProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
206
+
207
+ interface CommunityProps extends React.SVGProps<SVGSVGElement> {
208
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
209
+ size?: number | string;
210
+ }
211
+ declare const Community: React.ForwardRefExoticComponent<Omit<CommunityProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
212
+
213
+ interface COPProps extends React.SVGProps<SVGSVGElement> {
214
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
215
+ size?: number | string;
216
+ }
217
+ declare const COP: React.ForwardRefExoticComponent<Omit<COPProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ interface CopyProps extends React.SVGProps<SVGSVGElement> {
220
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
221
+ size?: number | string;
222
+ }
223
+ declare const Copy: React.ForwardRefExoticComponent<Omit<CopyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
224
+
225
+ interface CopyTradingProps extends React.SVGProps<SVGSVGElement> {
226
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
227
+ size?: number | string;
228
+ }
229
+ declare const CopyTrading: React.ForwardRefExoticComponent<Omit<CopyTradingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
230
+
231
+ interface CopyTradingClassicProps extends React.SVGProps<SVGSVGElement> {
232
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
233
+ size?: number | string;
234
+ }
235
+ declare const CopyTradingClassic: React.ForwardRefExoticComponent<Omit<CopyTradingClassicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ interface CreateProps extends React.SVGProps<SVGSVGElement> {
238
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
239
+ size?: number | string;
240
+ }
241
+ declare const Create: React.ForwardRefExoticComponent<Omit<CreateProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
242
+
243
+ interface CreditCardProps extends React.SVGProps<SVGSVGElement> {
244
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
245
+ size?: number | string;
246
+ }
247
+ declare const CreditCard: React.ForwardRefExoticComponent<Omit<CreditCardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
248
+
249
+ interface CryptoLoansProps extends React.SVGProps<SVGSVGElement> {
250
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
251
+ size?: number | string;
252
+ }
253
+ declare const CryptoLoans: React.ForwardRefExoticComponent<Omit<CryptoLoansProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
255
+ interface DailyDrawProps extends React.SVGProps<SVGSVGElement> {
256
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
257
+ size?: number | string;
258
+ }
259
+ declare const DailyDraw: React.ForwardRefExoticComponent<Omit<DailyDrawProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
260
+
261
+ interface DarkModeProps extends React.SVGProps<SVGSVGElement> {
262
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
263
+ size?: number | string;
264
+ }
265
+ declare const DarkMode: React.ForwardRefExoticComponent<Omit<DarkModeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
266
+
267
+ interface DeleteProps extends React.SVGProps<SVGSVGElement> {
268
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
269
+ size?: number | string;
270
+ }
271
+ declare const Delete: React.ForwardRefExoticComponent<Omit<DeleteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
272
+
273
+ interface Delete2Props extends React.SVGProps<SVGSVGElement> {
274
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
275
+ size?: number | string;
276
+ }
277
+ declare const Delete2: React.ForwardRefExoticComponent<Omit<Delete2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
278
+
279
+ interface DemoTradingProps extends React.SVGProps<SVGSVGElement> {
280
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
281
+ size?: number | string;
282
+ }
283
+ declare const DemoTrading: React.ForwardRefExoticComponent<Omit<DemoTradingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
284
+
285
+ interface DepositProps extends React.SVGProps<SVGSVGElement> {
286
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
287
+ size?: number | string;
288
+ }
289
+ declare const Deposit: React.ForwardRefExoticComponent<Omit<DepositProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
290
+
291
+ interface DetailProps extends React.SVGProps<SVGSVGElement> {
292
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
293
+ size?: number | string;
294
+ }
295
+ declare const Detail: React.ForwardRefExoticComponent<Omit<DetailProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
296
+
297
+ interface DexProps extends React.SVGProps<SVGSVGElement> {
298
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
299
+ size?: number | string;
300
+ }
301
+ declare const Dex: React.ForwardRefExoticComponent<Omit<DexProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
302
+
303
+ interface DiscordProps extends React.SVGProps<SVGSVGElement> {
304
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
305
+ size?: number | string;
306
+ }
307
+ declare const Discord: React.ForwardRefExoticComponent<Omit<DiscordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
308
+
309
+ interface DownProps extends React.SVGProps<SVGSVGElement> {
310
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
311
+ size?: number | string;
312
+ }
313
+ declare const Down: React.ForwardRefExoticComponent<Omit<DownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
314
+
315
+ interface DownloadProps extends React.SVGProps<SVGSVGElement> {
316
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
317
+ size?: number | string;
318
+ }
319
+ declare const Download: React.ForwardRefExoticComponent<Omit<DownloadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
320
+
321
+ interface DragProps extends React.SVGProps<SVGSVGElement> {
322
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
323
+ size?: number | string;
324
+ }
325
+ declare const Drag: React.ForwardRefExoticComponent<Omit<DragProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
326
+
327
+ interface DZDProps extends React.SVGProps<SVGSVGElement> {
328
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
329
+ size?: number | string;
330
+ }
331
+ declare const DZD: React.ForwardRefExoticComponent<Omit<DZDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
332
+
333
+ interface EarnOverviewProps extends React.SVGProps<SVGSVGElement> {
334
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
335
+ size?: number | string;
336
+ }
337
+ declare const EarnOverview: React.ForwardRefExoticComponent<Omit<EarnOverviewProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
338
+
339
+ interface EditProps extends React.SVGProps<SVGSVGElement> {
340
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
341
+ size?: number | string;
342
+ }
343
+ declare const Edit: React.ForwardRefExoticComponent<Omit<EditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
344
+
345
+ interface EGPProps extends React.SVGProps<SVGSVGElement> {
346
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
347
+ size?: number | string;
348
+ }
349
+ declare const EGP: React.ForwardRefExoticComponent<Omit<EGPProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
350
+
351
+ interface EmptyIllustrationProps extends React.SVGProps<SVGSVGElement> {
352
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
353
+ size?: number | string;
354
+ }
355
+ declare const EmptyIllustration: React.ForwardRefExoticComponent<Omit<EmptyIllustrationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
356
+
357
+ interface EnvelopeProps extends React.SVGProps<SVGSVGElement> {
358
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
359
+ size?: number | string;
360
+ }
361
+ declare const Envelope: React.ForwardRefExoticComponent<Omit<EnvelopeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
362
+
363
+ interface ErrorIllustrationProps extends React.SVGProps<SVGSVGElement> {
364
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
365
+ size?: number | string;
366
+ }
367
+ declare const ErrorIllustration: React.ForwardRefExoticComponent<Omit<ErrorIllustrationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
368
+
369
+ interface EURProps extends React.SVGProps<SVGSVGElement> {
370
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
371
+ size?: number | string;
372
+ }
373
+ declare const EUR: React.ForwardRefExoticComponent<Omit<EURProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
374
+
375
+ interface EventsCenterProps extends React.SVGProps<SVGSVGElement> {
376
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
377
+ size?: number | string;
378
+ }
379
+ declare const EventsCenter: React.ForwardRefExoticComponent<Omit<EventsCenterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
380
+
381
+ interface ExchangeProps extends React.SVGProps<SVGSVGElement> {
382
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
383
+ size?: number | string;
384
+ }
385
+ declare const Exchange: React.ForwardRefExoticComponent<Omit<ExchangeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
386
+
387
+ interface FacebookProps extends React.SVGProps<SVGSVGElement> {
388
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
389
+ size?: number | string;
390
+ }
391
+ declare const Facebook: React.ForwardRefExoticComponent<Omit<FacebookProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
392
+
393
+ interface FailProps extends React.SVGProps<SVGSVGElement> {
394
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
395
+ size?: number | string;
396
+ }
397
+ declare const Fail: React.ForwardRefExoticComponent<Omit<FailProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
398
+
399
+ interface FailFilledProps extends React.SVGProps<SVGSVGElement> {
400
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
401
+ size?: number | string;
402
+ }
403
+ declare const FailFilled: React.ForwardRefExoticComponent<Omit<FailFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
404
+
405
+ interface FiatConvertProps extends React.SVGProps<SVGSVGElement> {
406
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
407
+ size?: number | string;
408
+ }
409
+ declare const FiatConvert: React.ForwardRefExoticComponent<Omit<FiatConvertProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
410
+
411
+ interface FiatConvertOutlineProps extends React.SVGProps<SVGSVGElement> {
412
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
413
+ size?: number | string;
414
+ }
415
+ declare const FiatConvertOutline: React.ForwardRefExoticComponent<Omit<FiatConvertOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
416
+
417
+ interface FilterProps extends React.SVGProps<SVGSVGElement> {
418
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
419
+ size?: number | string;
420
+ }
421
+ declare const Filter: React.ForwardRefExoticComponent<Omit<FilterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
422
+
423
+ interface FoldProps extends React.SVGProps<SVGSVGElement> {
424
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
425
+ size?: number | string;
426
+ }
427
+ declare const Fold: React.ForwardRefExoticComponent<Omit<FoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
428
+
429
+ interface FuturesKingProps extends React.SVGProps<SVGSVGElement> {
430
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
431
+ size?: number | string;
432
+ }
433
+ declare const FuturesKing: React.ForwardRefExoticComponent<Omit<FuturesKingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
434
+
435
+ interface FuturesOverviewProps extends React.SVGProps<SVGSVGElement> {
436
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
437
+ size?: number | string;
438
+ }
439
+ declare const FuturesOverview: React.ForwardRefExoticComponent<Omit<FuturesOverviewProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
440
+
441
+ interface GBPProps extends React.SVGProps<SVGSVGElement> {
442
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
443
+ size?: number | string;
444
+ }
445
+ declare const GBP: React.ForwardRefExoticComponent<Omit<GBPProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
446
+
447
+ interface GHSProps extends React.SVGProps<SVGSVGElement> {
448
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
449
+ size?: number | string;
450
+ }
451
+ declare const GHS: React.ForwardRefExoticComponent<Omit<GHSProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
452
+
453
+ interface GiftProps extends React.SVGProps<SVGSVGElement> {
454
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
455
+ size?: number | string;
456
+ }
457
+ declare const Gift: React.ForwardRefExoticComponent<Omit<GiftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
458
+
459
+ interface GithubProps extends React.SVGProps<SVGSVGElement> {
460
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
461
+ size?: number | string;
462
+ }
463
+ declare const Github: React.ForwardRefExoticComponent<Omit<GithubProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
464
+
465
+ interface GoogleProps extends React.SVGProps<SVGSVGElement> {
466
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
467
+ size?: number | string;
468
+ }
469
+ declare const Google: React.ForwardRefExoticComponent<Omit<GoogleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
470
+
471
+ interface GridBotProps extends React.SVGProps<SVGSVGElement> {
472
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
473
+ size?: number | string;
474
+ }
475
+ declare const GridBot: React.ForwardRefExoticComponent<Omit<GridBotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
476
+
477
+ interface HideProps extends React.SVGProps<SVGSVGElement> {
478
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
479
+ size?: number | string;
480
+ }
481
+ declare const Hide: React.ForwardRefExoticComponent<Omit<HideProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
482
+
483
+ interface HistoryOrderProps extends React.SVGProps<SVGSVGElement> {
484
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
485
+ size?: number | string;
486
+ }
487
+ declare const HistoryOrder: React.ForwardRefExoticComponent<Omit<HistoryOrderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
488
+
489
+ interface HKDProps extends React.SVGProps<SVGSVGElement> {
490
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
491
+ size?: number | string;
492
+ }
493
+ declare const HKD: React.ForwardRefExoticComponent<Omit<HKDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
494
+
495
+ interface HotFilledProps extends React.SVGProps<SVGSVGElement> {
496
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
497
+ size?: number | string;
498
+ }
499
+ declare const HotFilled: React.ForwardRefExoticComponent<Omit<HotFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
500
+
501
+ interface HUFProps extends React.SVGProps<SVGSVGElement> {
502
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
503
+ size?: number | string;
504
+ }
505
+ declare const HUF: React.ForwardRefExoticComponent<Omit<HUFProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
506
+
507
+ interface IconPlaceholderProps extends React.SVGProps<SVGSVGElement> {
508
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
509
+ size?: number | string;
510
+ }
511
+ declare const IconPlaceholder: React.ForwardRefExoticComponent<Omit<IconPlaceholderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
512
+
513
+ interface IDRProps extends React.SVGProps<SVGSVGElement> {
514
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
515
+ size?: number | string;
516
+ }
517
+ declare const IDR: React.ForwardRefExoticComponent<Omit<IDRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
518
+
519
+ interface ImportProps extends React.SVGProps<SVGSVGElement> {
520
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
521
+ size?: number | string;
522
+ }
523
+ declare const Import: React.ForwardRefExoticComponent<Omit<ImportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
524
+
525
+ interface InfoProps extends React.SVGProps<SVGSVGElement> {
526
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
527
+ size?: number | string;
528
+ }
529
+ declare const Info: React.ForwardRefExoticComponent<Omit<InfoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
530
+
531
+ interface InfoFilledProps extends React.SVGProps<SVGSVGElement> {
532
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
533
+ size?: number | string;
534
+ }
535
+ declare const InfoFilled: React.ForwardRefExoticComponent<Omit<InfoFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
536
+
537
+ interface InoProps extends React.SVGProps<SVGSVGElement> {
538
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
539
+ size?: number | string;
540
+ }
541
+ declare const Ino: React.ForwardRefExoticComponent<Omit<InoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
542
+
543
+ interface INRProps extends React.SVGProps<SVGSVGElement> {
544
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
545
+ size?: number | string;
546
+ }
547
+ declare const INR: React.ForwardRefExoticComponent<Omit<INRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
548
+
549
+ interface InstagramProps extends React.SVGProps<SVGSVGElement> {
550
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
551
+ size?: number | string;
552
+ }
553
+ declare const Instagram: React.ForwardRefExoticComponent<Omit<InstagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
554
+
555
+ interface InstitutionProps extends React.SVGProps<SVGSVGElement> {
556
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
557
+ size?: number | string;
558
+ }
559
+ declare const Institution: React.ForwardRefExoticComponent<Omit<InstitutionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
560
+
561
+ interface IQDProps extends React.SVGProps<SVGSVGElement> {
562
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
563
+ size?: number | string;
564
+ }
565
+ declare const IQD: React.ForwardRefExoticComponent<Omit<IQDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
566
+
567
+ interface JODProps extends React.SVGProps<SVGSVGElement> {
568
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
569
+ size?: number | string;
570
+ }
571
+ declare const JOD: React.ForwardRefExoticComponent<Omit<JODProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
572
+
573
+ interface JPYProps extends React.SVGProps<SVGSVGElement> {
574
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
575
+ size?: number | string;
576
+ }
577
+ declare const JPY: React.ForwardRefExoticComponent<Omit<JPYProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
578
+
579
+ interface KESProps extends React.SVGProps<SVGSVGElement> {
580
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
581
+ size?: number | string;
582
+ }
583
+ declare const KES: React.ForwardRefExoticComponent<Omit<KESProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
584
+
585
+ interface KZTProps extends React.SVGProps<SVGSVGElement> {
586
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
587
+ size?: number | string;
588
+ }
589
+ declare const KZT: React.ForwardRefExoticComponent<Omit<KZTProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
590
+
591
+ interface LaunchPrimeProps extends React.SVGProps<SVGSVGElement> {
592
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
593
+ size?: number | string;
594
+ }
595
+ declare const LaunchPrime: React.ForwardRefExoticComponent<Omit<LaunchPrimeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
596
+
597
+ interface LightModeProps extends React.SVGProps<SVGSVGElement> {
598
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
599
+ size?: number | string;
600
+ }
601
+ declare const LightMode: React.ForwardRefExoticComponent<Omit<LightModeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
602
+
603
+ interface LinkedinProps extends React.SVGProps<SVGSVGElement> {
604
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
605
+ size?: number | string;
606
+ }
607
+ declare const Linkedin: React.ForwardRefExoticComponent<Omit<LinkedinProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
608
+
609
+ interface LoadingProps extends React.SVGProps<SVGSVGElement> {
610
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
611
+ size?: number | string;
612
+ }
613
+ declare const Loading: React.ForwardRefExoticComponent<Omit<LoadingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
614
+
615
+ interface LockProps extends React.SVGProps<SVGSVGElement> {
616
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
617
+ size?: number | string;
618
+ }
619
+ declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
620
+
621
+ interface MADProps extends React.SVGProps<SVGSVGElement> {
622
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
623
+ size?: number | string;
624
+ }
625
+ declare const MAD: React.ForwardRefExoticComponent<Omit<MADProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
626
+
627
+ interface ManualBackupProps extends React.SVGProps<SVGSVGElement> {
628
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
629
+ size?: number | string;
630
+ }
631
+ declare const ManualBackup: React.ForwardRefExoticComponent<Omit<ManualBackupProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
632
+
633
+ interface MarginProps extends React.SVGProps<SVGSVGElement> {
634
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
635
+ size?: number | string;
636
+ }
637
+ declare const Margin: React.ForwardRefExoticComponent<Omit<MarginProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
638
+
639
+ interface MarketsProps extends React.SVGProps<SVGSVGElement> {
640
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
641
+ size?: number | string;
642
+ }
643
+ declare const Markets: React.ForwardRefExoticComponent<Omit<MarketsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
644
+
645
+ interface MarkReadProps extends React.SVGProps<SVGSVGElement> {
646
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
647
+ size?: number | string;
648
+ }
649
+ declare const MarkRead: React.ForwardRefExoticComponent<Omit<MarkReadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
650
+
651
+ interface MediumProps extends React.SVGProps<SVGSVGElement> {
652
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
653
+ size?: number | string;
654
+ }
655
+ declare const Medium: React.ForwardRefExoticComponent<Omit<MediumProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
656
+
657
+ interface MessageProps extends React.SVGProps<SVGSVGElement> {
658
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
659
+ size?: number | string;
660
+ }
661
+ declare const Message: React.ForwardRefExoticComponent<Omit<MessageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
662
+
663
+ interface MetamaskProps extends React.SVGProps<SVGSVGElement> {
664
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
665
+ size?: number | string;
666
+ }
667
+ declare const Metamask: React.ForwardRefExoticComponent<Omit<MetamaskProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
668
+
669
+ interface MicrosoftProps extends React.SVGProps<SVGSVGElement> {
670
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
671
+ size?: number | string;
672
+ }
673
+ declare const Microsoft: React.ForwardRefExoticComponent<Omit<MicrosoftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
674
+
675
+ interface MobileRechargeProps extends React.SVGProps<SVGSVGElement> {
676
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
677
+ size?: number | string;
678
+ }
679
+ declare const MobileRecharge: React.ForwardRefExoticComponent<Omit<MobileRechargeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
680
+
681
+ interface MobileRechargeAltProps extends React.SVGProps<SVGSVGElement> {
682
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
683
+ size?: number | string;
684
+ }
685
+ declare const MobileRechargeAlt: React.ForwardRefExoticComponent<Omit<MobileRechargeAltProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
686
+
687
+ interface MoreProps extends React.SVGProps<SVGSVGElement> {
688
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
689
+ size?: number | string;
690
+ }
691
+ declare const More: React.ForwardRefExoticComponent<Omit<MoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
692
+
693
+ interface MRUProps extends React.SVGProps<SVGSVGElement> {
694
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
695
+ size?: number | string;
696
+ }
697
+ declare const MRU: React.ForwardRefExoticComponent<Omit<MRUProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
698
+
699
+ interface MXNProps extends React.SVGProps<SVGSVGElement> {
700
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
701
+ size?: number | string;
702
+ }
703
+ declare const MXN: React.ForwardRefExoticComponent<Omit<MXNProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
704
+
705
+ interface MYRProps extends React.SVGProps<SVGSVGElement> {
706
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
707
+ size?: number | string;
708
+ }
709
+ declare const MYR: React.ForwardRefExoticComponent<Omit<MYRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
710
+
711
+ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
712
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
713
+ size?: number | string;
714
+ }
715
+ declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
716
+
717
+ interface NewsProps extends React.SVGProps<SVGSVGElement> {
718
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
719
+ size?: number | string;
720
+ }
721
+ declare const News: React.ForwardRefExoticComponent<Omit<NewsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
722
+
723
+ interface NftMarketplaceProps extends React.SVGProps<SVGSVGElement> {
724
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
725
+ size?: number | string;
726
+ }
727
+ declare const NftMarketplace: React.ForwardRefExoticComponent<Omit<NftMarketplaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
728
+
729
+ interface NGNProps extends React.SVGProps<SVGSVGElement> {
730
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
731
+ size?: number | string;
732
+ }
733
+ declare const NGN: React.ForwardRefExoticComponent<Omit<NGNProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
734
+
735
+ interface NonSelectedProps extends React.SVGProps<SVGSVGElement> {
736
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
737
+ size?: number | string;
738
+ }
739
+ declare const NonSelected: React.ForwardRefExoticComponent<Omit<NonSelectedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
740
+
741
+ interface NotificationProps extends React.SVGProps<SVGSVGElement> {
742
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
743
+ size?: number | string;
744
+ }
745
+ declare const Notification: React.ForwardRefExoticComponent<Omit<NotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
746
+
747
+ interface NPRProps extends React.SVGProps<SVGSVGElement> {
748
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
749
+ size?: number | string;
750
+ }
751
+ declare const NPR: React.ForwardRefExoticComponent<Omit<NPRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
752
+
753
+ interface OkProps extends React.SVGProps<SVGSVGElement> {
754
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
755
+ size?: number | string;
756
+ }
757
+ declare const Ok: React.ForwardRefExoticComponent<Omit<OkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
758
+
759
+ interface P2pProps extends React.SVGProps<SVGSVGElement> {
760
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
761
+ size?: number | string;
762
+ }
763
+ declare const P2p: React.ForwardRefExoticComponent<Omit<P2pProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
764
+
765
+ interface PasteProps extends React.SVGProps<SVGSVGElement> {
766
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
767
+ size?: number | string;
768
+ }
769
+ declare const Paste: React.ForwardRefExoticComponent<Omit<PasteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
770
+
771
+ interface PGKProps extends React.SVGProps<SVGSVGElement> {
772
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
773
+ size?: number | string;
774
+ }
775
+ declare const PGK: React.ForwardRefExoticComponent<Omit<PGKProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
776
+
777
+ interface PHPProps extends React.SVGProps<SVGSVGElement> {
778
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
779
+ size?: number | string;
780
+ }
781
+ declare const PHP: React.ForwardRefExoticComponent<Omit<PHPProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
782
+
783
+ interface PKRProps extends React.SVGProps<SVGSVGElement> {
784
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
785
+ size?: number | string;
786
+ }
787
+ declare const PKR: React.ForwardRefExoticComponent<Omit<PKRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
788
+
789
+ interface PLNProps extends React.SVGProps<SVGSVGElement> {
790
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
791
+ size?: number | string;
792
+ }
793
+ declare const PLN: React.ForwardRefExoticComponent<Omit<PLNProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
794
+
795
+ interface PlusFilledProps extends React.SVGProps<SVGSVGElement> {
796
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
797
+ size?: number | string;
798
+ }
799
+ declare const PlusFilled: React.ForwardRefExoticComponent<Omit<PlusFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
800
+
801
+ interface PowerdropProps extends React.SVGProps<SVGSVGElement> {
802
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
803
+ size?: number | string;
804
+ }
805
+ declare const Powerdrop: React.ForwardRefExoticComponent<Omit<PowerdropProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
806
+
807
+ interface PredictionMarketProps extends React.SVGProps<SVGSVGElement> {
808
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
809
+ size?: number | string;
810
+ }
811
+ declare const PredictionMarket: React.ForwardRefExoticComponent<Omit<PredictionMarketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
812
+
813
+ interface PreMarketProps extends React.SVGProps<SVGSVGElement> {
814
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
815
+ size?: number | string;
816
+ }
817
+ declare const PreMarket: React.ForwardRefExoticComponent<Omit<PreMarketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
818
+
819
+ interface PrepaidCardProps extends React.SVGProps<SVGSVGElement> {
820
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
821
+ size?: number | string;
822
+ }
823
+ declare const PrepaidCard: React.ForwardRefExoticComponent<Omit<PrepaidCardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
824
+
825
+ interface ProgressFilledProps extends React.SVGProps<SVGSVGElement> {
826
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
827
+ size?: number | string;
828
+ }
829
+ declare const ProgressFilled: React.ForwardRefExoticComponent<Omit<ProgressFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
830
+
831
+ interface QrCodeProps extends React.SVGProps<SVGSVGElement> {
832
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
833
+ size?: number | string;
834
+ }
835
+ declare const QrCode: React.ForwardRefExoticComponent<Omit<QrCodeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
836
+
837
+ interface ReceiveProps extends React.SVGProps<SVGSVGElement> {
838
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
839
+ size?: number | string;
840
+ }
841
+ declare const Receive: React.ForwardRefExoticComponent<Omit<ReceiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
842
+
843
+ interface RedditProps extends React.SVGProps<SVGSVGElement> {
844
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
845
+ size?: number | string;
846
+ }
847
+ declare const Reddit: React.ForwardRefExoticComponent<Omit<RedditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
848
+
849
+ interface ReferralProgramProps extends React.SVGProps<SVGSVGElement> {
850
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
851
+ size?: number | string;
852
+ }
853
+ declare const ReferralProgram: React.ForwardRefExoticComponent<Omit<ReferralProgramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
854
+
855
+ interface RemoveFilledProps extends React.SVGProps<SVGSVGElement> {
856
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
857
+ size?: number | string;
858
+ }
859
+ declare const RemoveFilled: React.ForwardRefExoticComponent<Omit<RemoveFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
860
+
861
+ interface ReplayProps extends React.SVGProps<SVGSVGElement> {
862
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
863
+ size?: number | string;
864
+ }
865
+ declare const Replay: React.ForwardRefExoticComponent<Omit<ReplayProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
866
+
867
+ interface RewardsHubProps extends React.SVGProps<SVGSVGElement> {
868
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
869
+ size?: number | string;
870
+ }
871
+ declare const RewardsHub: React.ForwardRefExoticComponent<Omit<RewardsHubProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
872
+
873
+ interface RocketProps extends React.SVGProps<SVGSVGElement> {
874
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
875
+ size?: number | string;
876
+ }
877
+ declare const Rocket: React.ForwardRefExoticComponent<Omit<RocketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
878
+
879
+ interface RONProps extends React.SVGProps<SVGSVGElement> {
880
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
881
+ size?: number | string;
882
+ }
883
+ declare const RON: React.ForwardRefExoticComponent<Omit<RONProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
884
+
885
+ interface RUBProps extends React.SVGProps<SVGSVGElement> {
886
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
887
+ size?: number | string;
888
+ }
889
+ declare const RUB: React.ForwardRefExoticComponent<Omit<RUBProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
890
+
891
+ interface RwaProps extends React.SVGProps<SVGSVGElement> {
892
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
893
+ size?: number | string;
894
+ }
895
+ declare const Rwa: React.ForwardRefExoticComponent<Omit<RwaProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
896
+
897
+ interface SARProps extends React.SVGProps<SVGSVGElement> {
898
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
899
+ size?: number | string;
900
+ }
901
+ declare const SAR: React.ForwardRefExoticComponent<Omit<SARProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
902
+
903
+ interface ScanProps extends React.SVGProps<SVGSVGElement> {
904
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
905
+ size?: number | string;
906
+ }
907
+ declare const Scan: React.ForwardRefExoticComponent<Omit<ScanProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
908
+
909
+ interface SearchProps extends React.SVGProps<SVGSVGElement> {
910
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
911
+ size?: number | string;
912
+ }
913
+ declare const Search: React.ForwardRefExoticComponent<Omit<SearchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
914
+
915
+ interface SEKProps extends React.SVGProps<SVGSVGElement> {
916
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
917
+ size?: number | string;
918
+ }
919
+ declare const SEK: React.ForwardRefExoticComponent<Omit<SEKProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
920
+
921
+ interface SendProps extends React.SVGProps<SVGSVGElement> {
922
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
923
+ size?: number | string;
924
+ }
925
+ declare const Send: React.ForwardRefExoticComponent<Omit<SendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
926
+
927
+ interface SettingProps extends React.SVGProps<SVGSVGElement> {
928
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
929
+ size?: number | string;
930
+ }
931
+ declare const Setting: React.ForwardRefExoticComponent<Omit<SettingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
932
+
933
+ interface ShopProps extends React.SVGProps<SVGSVGElement> {
934
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
935
+ size?: number | string;
936
+ }
937
+ declare const Shop: React.ForwardRefExoticComponent<Omit<ShopProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
938
+
939
+ interface ShopOutlineProps extends React.SVGProps<SVGSVGElement> {
940
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
941
+ size?: number | string;
942
+ }
943
+ declare const ShopOutline: React.ForwardRefExoticComponent<Omit<ShopOutlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
944
+
945
+ interface ShowProps extends React.SVGProps<SVGSVGElement> {
946
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
947
+ size?: number | string;
948
+ }
949
+ declare const Show: React.ForwardRefExoticComponent<Omit<ShowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
950
+
951
+ interface SidebarProps extends React.SVGProps<SVGSVGElement> {
952
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
953
+ size?: number | string;
954
+ }
955
+ declare const Sidebar: React.ForwardRefExoticComponent<Omit<SidebarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
956
+
957
+ interface SmartWalletProps extends React.SVGProps<SVGSVGElement> {
958
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
959
+ size?: number | string;
960
+ }
961
+ declare const SmartWallet: React.ForwardRefExoticComponent<Omit<SmartWalletProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
962
+
963
+ interface SpotProps extends React.SVGProps<SVGSVGElement> {
964
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
965
+ size?: number | string;
966
+ }
967
+ declare const Spot: React.ForwardRefExoticComponent<Omit<SpotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
968
+
969
+ interface SpotDailyDrawProps extends React.SVGProps<SVGSVGElement> {
970
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
971
+ size?: number | string;
972
+ }
973
+ declare const SpotDailyDraw: React.ForwardRefExoticComponent<Omit<SpotDailyDrawProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
974
+
975
+ interface StakeBmxToListingProps extends React.SVGProps<SVGSVGElement> {
976
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
977
+ size?: number | string;
978
+ }
979
+ declare const StakeBmxToListing: React.ForwardRefExoticComponent<Omit<StakeBmxToListingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
980
+
981
+ interface StakeToVoteProps extends React.SVGProps<SVGSVGElement> {
982
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
983
+ size?: number | string;
984
+ }
985
+ declare const StakeToVote: React.ForwardRefExoticComponent<Omit<StakeToVoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
986
+
987
+ interface StakingProps extends React.SVGProps<SVGSVGElement> {
988
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
989
+ size?: number | string;
990
+ }
991
+ declare const Staking: React.ForwardRefExoticComponent<Omit<StakingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
992
+
993
+ interface StarProps extends React.SVGProps<SVGSVGElement> {
994
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
995
+ size?: number | string;
996
+ }
997
+ declare const Star: React.ForwardRefExoticComponent<Omit<StarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
998
+
999
+ interface StarFilledProps extends React.SVGProps<SVGSVGElement> {
1000
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1001
+ size?: number | string;
1002
+ }
1003
+ declare const StarFilled: React.ForwardRefExoticComponent<Omit<StarFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1004
+
1005
+ interface SuccessProps extends React.SVGProps<SVGSVGElement> {
1006
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1007
+ size?: number | string;
1008
+ }
1009
+ declare const Success: React.ForwardRefExoticComponent<Omit<SuccessProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1010
+
1011
+ interface SuccessFilledProps extends React.SVGProps<SVGSVGElement> {
1012
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1013
+ size?: number | string;
1014
+ }
1015
+ declare const SuccessFilled: React.ForwardRefExoticComponent<Omit<SuccessFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1016
+
1017
+ interface SupportProps extends React.SVGProps<SVGSVGElement> {
1018
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1019
+ size?: number | string;
1020
+ }
1021
+ declare const Support: React.ForwardRefExoticComponent<Omit<SupportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1022
+
1023
+ interface TelegramProps extends React.SVGProps<SVGSVGElement> {
1024
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1025
+ size?: number | string;
1026
+ }
1027
+ declare const Telegram: React.ForwardRefExoticComponent<Omit<TelegramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1028
+
1029
+ interface THBProps extends React.SVGProps<SVGSVGElement> {
1030
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1031
+ size?: number | string;
1032
+ }
1033
+ declare const THB: React.ForwardRefExoticComponent<Omit<THBProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1034
+
1035
+ interface ThirdPartyPaymentProps extends React.SVGProps<SVGSVGElement> {
1036
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1037
+ size?: number | string;
1038
+ }
1039
+ declare const ThirdPartyPayment: React.ForwardRefExoticComponent<Omit<ThirdPartyPaymentProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1040
+
1041
+ interface TiktokProps extends React.SVGProps<SVGSVGElement> {
1042
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1043
+ size?: number | string;
1044
+ }
1045
+ declare const Tiktok: React.ForwardRefExoticComponent<Omit<TiktokProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1046
+
1047
+ interface TimeProps extends React.SVGProps<SVGSVGElement> {
1048
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1049
+ size?: number | string;
1050
+ }
1051
+ declare const Time: React.ForwardRefExoticComponent<Omit<TimeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1052
+
1053
+ interface TokenManageProps extends React.SVGProps<SVGSVGElement> {
1054
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1055
+ size?: number | string;
1056
+ }
1057
+ declare const TokenManage: React.ForwardRefExoticComponent<Omit<TokenManageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1058
+
1059
+ interface TransferProps extends React.SVGProps<SVGSVGElement> {
1060
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1061
+ size?: number | string;
1062
+ }
1063
+ declare const Transfer: React.ForwardRefExoticComponent<Omit<TransferProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1064
+
1065
+ interface TRYProps extends React.SVGProps<SVGSVGElement> {
1066
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1067
+ size?: number | string;
1068
+ }
1069
+ declare const TRY: React.ForwardRefExoticComponent<Omit<TRYProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1070
+
1071
+ interface TWDProps extends React.SVGProps<SVGSVGElement> {
1072
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1073
+ size?: number | string;
1074
+ }
1075
+ declare const TWD: React.ForwardRefExoticComponent<Omit<TWDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1076
+
1077
+ interface TZSProps extends React.SVGProps<SVGSVGElement> {
1078
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1079
+ size?: number | string;
1080
+ }
1081
+ declare const TZS: React.ForwardRefExoticComponent<Omit<TZSProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1082
+
1083
+ interface UAHProps extends React.SVGProps<SVGSVGElement> {
1084
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1085
+ size?: number | string;
1086
+ }
1087
+ declare const UAH: React.ForwardRefExoticComponent<Omit<UAHProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1088
+
1089
+ interface UnfoldProps extends React.SVGProps<SVGSVGElement> {
1090
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1091
+ size?: number | string;
1092
+ }
1093
+ declare const Unfold: React.ForwardRefExoticComponent<Omit<UnfoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1094
+
1095
+ interface UpProps extends React.SVGProps<SVGSVGElement> {
1096
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1097
+ size?: number | string;
1098
+ }
1099
+ declare const Up: React.ForwardRefExoticComponent<Omit<UpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1100
+
1101
+ interface USDProps extends React.SVGProps<SVGSVGElement> {
1102
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1103
+ size?: number | string;
1104
+ }
1105
+ declare const USD: React.ForwardRefExoticComponent<Omit<USDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1106
+
1107
+ interface UZSProps extends React.SVGProps<SVGSVGElement> {
1108
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1109
+ size?: number | string;
1110
+ }
1111
+ declare const UZS: React.ForwardRefExoticComponent<Omit<UZSProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1112
+
1113
+ interface VESProps extends React.SVGProps<SVGSVGElement> {
1114
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1115
+ size?: number | string;
1116
+ }
1117
+ declare const VES: React.ForwardRefExoticComponent<Omit<VESProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1118
+
1119
+ interface VipProps extends React.SVGProps<SVGSVGElement> {
1120
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1121
+ size?: number | string;
1122
+ }
1123
+ declare const Vip: React.ForwardRefExoticComponent<Omit<VipProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1124
+
1125
+ interface VipExclusiveProps extends React.SVGProps<SVGSVGElement> {
1126
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1127
+ size?: number | string;
1128
+ }
1129
+ declare const VipExclusive: React.ForwardRefExoticComponent<Omit<VipExclusiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1130
+
1131
+ interface VkProps extends React.SVGProps<SVGSVGElement> {
1132
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1133
+ size?: number | string;
1134
+ }
1135
+ declare const Vk: React.ForwardRefExoticComponent<Omit<VkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1136
+
1137
+ interface VNDProps extends React.SVGProps<SVGSVGElement> {
1138
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1139
+ size?: number | string;
1140
+ }
1141
+ declare const VND: React.ForwardRefExoticComponent<Omit<VNDProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1142
+
1143
+ interface WalletProps extends React.SVGProps<SVGSVGElement> {
1144
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1145
+ size?: number | string;
1146
+ }
1147
+ declare const Wallet: React.ForwardRefExoticComponent<Omit<WalletProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1148
+
1149
+ interface WarningFilledProps extends React.SVGProps<SVGSVGElement> {
1150
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1151
+ size?: number | string;
1152
+ }
1153
+ declare const WarningFilled: React.ForwardRefExoticComponent<Omit<WarningFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1154
+
1155
+ interface WealthManagementProps extends React.SVGProps<SVGSVGElement> {
1156
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1157
+ size?: number | string;
1158
+ }
1159
+ declare const WealthManagement: React.ForwardRefExoticComponent<Omit<WealthManagementProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1160
+
1161
+ interface WhatsappProps extends React.SVGProps<SVGSVGElement> {
1162
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1163
+ size?: number | string;
1164
+ }
1165
+ declare const Whatsapp: React.ForwardRefExoticComponent<Omit<WhatsappProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1166
+
1167
+ interface XProps extends React.SVGProps<SVGSVGElement> {
1168
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1169
+ size?: number | string;
1170
+ }
1171
+ declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1172
+
1173
+ interface XAFProps extends React.SVGProps<SVGSVGElement> {
1174
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1175
+ size?: number | string;
1176
+ }
1177
+ declare const XAF: React.ForwardRefExoticComponent<Omit<XAFProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1178
+
1179
+ interface XInsightProps extends React.SVGProps<SVGSVGElement> {
1180
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1181
+ size?: number | string;
1182
+ }
1183
+ declare const XInsight: React.ForwardRefExoticComponent<Omit<XInsightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1184
+
1185
+ interface XOFProps extends React.SVGProps<SVGSVGElement> {
1186
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1187
+ size?: number | string;
1188
+ }
1189
+ declare const XOF: React.ForwardRefExoticComponent<Omit<XOFProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1190
+
1191
+ interface YoutubeProps extends React.SVGProps<SVGSVGElement> {
1192
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1193
+ size?: number | string;
1194
+ }
1195
+ declare const Youtube: React.ForwardRefExoticComponent<Omit<YoutubeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1196
+
1197
+ interface ZARProps extends React.SVGProps<SVGSVGElement> {
1198
+ /** Icon size — number (px) or string ("1.5em"). Default: "1em" */
1199
+ size?: number | string;
1200
+ }
1201
+ declare const ZAR: React.ForwardRefExoticComponent<Omit<ZARProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1202
+
1203
+ export { AED, type AEDProps, AMD, type AMDProps, ARS, type ARSProps, AUD, type AUDProps, AZN, type AZNProps, Academy, type AcademyProps, Add, Add2, type Add2Props, type AddProps, Address, type AddressProps, AffiliateProgram, type AffiliateProgramProps, AiHub, type AiHubProps, Amm, type AmmProps, Apis, type ApisProps, AppDownload, type AppDownloadProps, Apple, type AppleProps, ArrowLeft, type ArrowLeftProps, ArrowRight, ArrowRight2, type ArrowRight2Props, type ArrowRightProps, Avatar, type AvatarProps, BDT, type BDTProps, BRL, type BRLProps, BYN, type BYNProps, Back, type BackProps, Beacon, type BeaconProps, BitmartCard, type BitmartCardProps, BitmartTravel, type BitmartTravelProps, BmDiscovery, type BmDiscoveryProps, BrokerProgram, type BrokerProgramProps, CLP, type CLPProps, CNY, type CNYProps, COP, type COPProps, Clear, type ClearProps, Close, type CloseProps, CloudBackup, type CloudBackupProps, CoinM, type CoinMProps, Community, type CommunityProps, Copy, type CopyProps, CopyTrading, CopyTradingClassic, type CopyTradingClassicProps, type CopyTradingProps, Create, type CreateProps, CreditCard, type CreditCardProps, CryptoLoans, type CryptoLoansProps, DZD, type DZDProps, DailyDraw, type DailyDrawProps, DarkMode, type DarkModeProps, Delete, Delete2, type Delete2Props, type DeleteProps, DemoTrading, type DemoTradingProps, Deposit, type DepositProps, Detail, type DetailProps, Dex, type DexProps, Discord, type DiscordProps, Down, type DownProps, Download, type DownloadProps, Drag, type DragProps, EGP, type EGPProps, EUR, type EURProps, EarnOverview, type EarnOverviewProps, Edit, type EditProps, EmptyIllustration, type EmptyIllustrationProps, Envelope, type EnvelopeProps, ErrorIllustration, type ErrorIllustrationProps, EventsCenter, type EventsCenterProps, Exchange, type ExchangeProps, Facebook, type FacebookProps, Fail, FailFilled, type FailFilledProps, type FailProps, FiatConvert, FiatConvertOutline, type FiatConvertOutlineProps, type FiatConvertProps, Filter, type FilterProps, Fold, type FoldProps, FuturesKing, type FuturesKingProps, FuturesOverview, type FuturesOverviewProps, GBP, type GBPProps, GHS, type GHSProps, Gift, type GiftProps, Github, type GithubProps, Google, type GoogleProps, GridBot, type GridBotProps, HKD, type HKDProps, HUF, type HUFProps, Hide, type HideProps, HistoryOrder, type HistoryOrderProps, HotFilled, type HotFilledProps, IDR, type IDRProps, INR, type INRProps, IQD, type IQDProps, IconPlaceholder, type IconPlaceholderProps, Import, type ImportProps, Info, InfoFilled, type InfoFilledProps, type InfoProps, Ino, type InoProps, Instagram, type InstagramProps, Institution, type InstitutionProps, JOD, type JODProps, JPY, type JPYProps, KES, type KESProps, KZT, type KZTProps, LaunchPrime, type LaunchPrimeProps, LightMode, type LightModeProps, Linkedin, type LinkedinProps, Loading, type LoadingProps, Lock, type LockProps, MAD, type MADProps, MRU, type MRUProps, MXN, type MXNProps, MYR, type MYRProps, ManualBackup, type ManualBackupProps, Margin, type MarginProps, MarkRead, type MarkReadProps, Markets, type MarketsProps, Medium, type MediumProps, Message, type MessageProps, Metamask, type MetamaskProps, Microsoft, type MicrosoftProps, MobileRecharge, MobileRechargeAlt, type MobileRechargeAltProps, type MobileRechargeProps, More, type MoreProps, NGN, type NGNProps, NPR, type NPRProps, Network, type NetworkProps, News, type NewsProps, NftMarketplace, type NftMarketplaceProps, NonSelected, type NonSelectedProps, Notification, type NotificationProps, Ok, type OkProps, P2p, type P2pProps, PGK, type PGKProps, PHP, type PHPProps, PKR, type PKRProps, PLN, type PLNProps, Paste, type PasteProps, PlusFilled, type PlusFilledProps, Powerdrop, type PowerdropProps, PreMarket, type PreMarketProps, PredictionMarket, type PredictionMarketProps, PrepaidCard, type PrepaidCardProps, ProgressFilled, type ProgressFilledProps, QrCode, type QrCodeProps, RON, type RONProps, RUB, type RUBProps, Receive, type ReceiveProps, Reddit, type RedditProps, ReferralProgram, type ReferralProgramProps, RemoveFilled, type RemoveFilledProps, Replay, type ReplayProps, RewardsHub, type RewardsHubProps, Rocket, type RocketProps, Rwa, type RwaProps, SAR, type SARProps, SEK, type SEKProps, Scan, type ScanProps, Search, type SearchProps, Send, type SendProps, Setting, type SettingProps, Shop, ShopOutline, type ShopOutlineProps, type ShopProps, Show, type ShowProps, Sidebar, type SidebarProps, SmartWallet, type SmartWalletProps, Spot, SpotDailyDraw, type SpotDailyDrawProps, type SpotProps, StakeBmxToListing, type StakeBmxToListingProps, StakeToVote, type StakeToVoteProps, Staking, type StakingProps, Star, StarFilled, type StarFilledProps, type StarProps, Success, SuccessFilled, type SuccessFilledProps, type SuccessProps, Support, type SupportProps, THB, type THBProps, TRY, type TRYProps, TWD, type TWDProps, TZS, type TZSProps, Telegram, type TelegramProps, ThirdPartyPayment, type ThirdPartyPaymentProps, Tiktok, type TiktokProps, Time, type TimeProps, TokenManage, type TokenManageProps, Transfer, type TransferProps, UAH, type UAHProps, USD, type USDProps, UZS, type UZSProps, Unfold, type UnfoldProps, Up, type UpProps, VES, type VESProps, VND, type VNDProps, Vip, VipExclusive, type VipExclusiveProps, type VipProps, Vk, type VkProps, Wallet, type WalletProps, WarningFilled, type WarningFilledProps, WealthManagement, type WealthManagementProps, Whatsapp, type WhatsappProps, X, XAF, type XAFProps, XInsight, type XInsightProps, XOF, type XOFProps, type XProps, Youtube, type YoutubeProps, ZAR, type ZARProps };