magick-icons 0.1.233 → 0.1.235
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/index.d.mts +1081 -1
- package/index.d.ts +1081 -1
- package/index.js +983 -69
- package/index.js.map +1 -1
- package/index.mjs +925 -71
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10170,6 +10170,1086 @@ interface MagickoGrid5Props extends React.SVGProps<SVGSVGElement> {
|
|
|
10170
10170
|
*/
|
|
10171
10171
|
declare const MagickoGrid5: React.ForwardRefExoticComponent<Omit<MagickoGrid5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10172
10172
|
|
|
10173
|
+
/**
|
|
10174
|
+
* Props for the MagickoGrid6 icon component
|
|
10175
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10176
|
+
*/
|
|
10177
|
+
interface MagickoGrid6Props extends React.SVGProps<SVGSVGElement> {
|
|
10178
|
+
size?: number | string;
|
|
10179
|
+
}
|
|
10180
|
+
/**
|
|
10181
|
+
* MagickoGrid6 icon component
|
|
10182
|
+
* @example
|
|
10183
|
+
* ```tsx
|
|
10184
|
+
* import { MagickoGrid6 } from 'magick-icons';
|
|
10185
|
+
*
|
|
10186
|
+
* <MagickoGrid6 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10187
|
+
* ```
|
|
10188
|
+
*/
|
|
10189
|
+
declare const MagickoGrid6: React.ForwardRefExoticComponent<Omit<MagickoGrid6Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10190
|
+
|
|
10191
|
+
/**
|
|
10192
|
+
* Props for the MagickoGrid7 icon component
|
|
10193
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10194
|
+
*/
|
|
10195
|
+
interface MagickoGrid7Props extends React.SVGProps<SVGSVGElement> {
|
|
10196
|
+
size?: number | string;
|
|
10197
|
+
}
|
|
10198
|
+
/**
|
|
10199
|
+
* MagickoGrid7 icon component
|
|
10200
|
+
* @example
|
|
10201
|
+
* ```tsx
|
|
10202
|
+
* import { MagickoGrid7 } from 'magick-icons';
|
|
10203
|
+
*
|
|
10204
|
+
* <MagickoGrid7 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10205
|
+
* ```
|
|
10206
|
+
*/
|
|
10207
|
+
declare const MagickoGrid7: React.ForwardRefExoticComponent<Omit<MagickoGrid7Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10208
|
+
|
|
10209
|
+
/**
|
|
10210
|
+
* Props for the MagickoGrid8 icon component
|
|
10211
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10212
|
+
*/
|
|
10213
|
+
interface MagickoGrid8Props extends React.SVGProps<SVGSVGElement> {
|
|
10214
|
+
size?: number | string;
|
|
10215
|
+
}
|
|
10216
|
+
/**
|
|
10217
|
+
* MagickoGrid8 icon component
|
|
10218
|
+
* @example
|
|
10219
|
+
* ```tsx
|
|
10220
|
+
* import { MagickoGrid8 } from 'magick-icons';
|
|
10221
|
+
*
|
|
10222
|
+
* <MagickoGrid8 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10223
|
+
* ```
|
|
10224
|
+
*/
|
|
10225
|
+
declare const MagickoGrid8: React.ForwardRefExoticComponent<Omit<MagickoGrid8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10226
|
+
|
|
10227
|
+
/**
|
|
10228
|
+
* Props for the MagickoGrid9 icon component
|
|
10229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10230
|
+
*/
|
|
10231
|
+
interface MagickoGrid9Props extends React.SVGProps<SVGSVGElement> {
|
|
10232
|
+
size?: number | string;
|
|
10233
|
+
}
|
|
10234
|
+
/**
|
|
10235
|
+
* MagickoGrid9 icon component
|
|
10236
|
+
* @example
|
|
10237
|
+
* ```tsx
|
|
10238
|
+
* import { MagickoGrid9 } from 'magick-icons';
|
|
10239
|
+
*
|
|
10240
|
+
* <MagickoGrid9 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10241
|
+
* ```
|
|
10242
|
+
*/
|
|
10243
|
+
declare const MagickoGrid9: React.ForwardRefExoticComponent<Omit<MagickoGrid9Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10244
|
+
|
|
10245
|
+
/**
|
|
10246
|
+
* Props for the MagickoGridAdd icon component
|
|
10247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10248
|
+
*/
|
|
10249
|
+
interface MagickoGridAddProps extends React.SVGProps<SVGSVGElement> {
|
|
10250
|
+
size?: number | string;
|
|
10251
|
+
}
|
|
10252
|
+
/**
|
|
10253
|
+
* MagickoGridAdd icon component
|
|
10254
|
+
* @example
|
|
10255
|
+
* ```tsx
|
|
10256
|
+
* import { MagickoGridAdd } from 'magick-icons';
|
|
10257
|
+
*
|
|
10258
|
+
* <MagickoGridAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
10259
|
+
* ```
|
|
10260
|
+
*/
|
|
10261
|
+
declare const MagickoGridAdd: React.ForwardRefExoticComponent<Omit<MagickoGridAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10262
|
+
|
|
10263
|
+
/**
|
|
10264
|
+
* Props for the MagickoGridEqual icon component
|
|
10265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10266
|
+
*/
|
|
10267
|
+
interface MagickoGridEqualProps extends React.SVGProps<SVGSVGElement> {
|
|
10268
|
+
size?: number | string;
|
|
10269
|
+
}
|
|
10270
|
+
/**
|
|
10271
|
+
* MagickoGridEqual icon component
|
|
10272
|
+
* @example
|
|
10273
|
+
* ```tsx
|
|
10274
|
+
* import { MagickoGridEqual } from 'magick-icons';
|
|
10275
|
+
*
|
|
10276
|
+
* <MagickoGridEqual size={24} className="text-blue-500" strokeWidth={2} />
|
|
10277
|
+
* ```
|
|
10278
|
+
*/
|
|
10279
|
+
declare const MagickoGridEqual: React.ForwardRefExoticComponent<Omit<MagickoGridEqualProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10280
|
+
|
|
10281
|
+
/**
|
|
10282
|
+
* Props for the MagickoGrids4 icon component
|
|
10283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10284
|
+
*/
|
|
10285
|
+
interface MagickoGrids4Props extends React.SVGProps<SVGSVGElement> {
|
|
10286
|
+
size?: number | string;
|
|
10287
|
+
}
|
|
10288
|
+
/**
|
|
10289
|
+
* MagickoGrids4 icon component
|
|
10290
|
+
* @example
|
|
10291
|
+
* ```tsx
|
|
10292
|
+
* import { MagickoGrids4 } from 'magick-icons';
|
|
10293
|
+
*
|
|
10294
|
+
* <MagickoGrids4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10295
|
+
* ```
|
|
10296
|
+
*/
|
|
10297
|
+
declare const MagickoGrids4: React.ForwardRefExoticComponent<Omit<MagickoGrids4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10298
|
+
|
|
10299
|
+
/**
|
|
10300
|
+
* Props for the MagickoGrinning icon component
|
|
10301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10302
|
+
*/
|
|
10303
|
+
interface MagickoGrinningProps extends React.SVGProps<SVGSVGElement> {
|
|
10304
|
+
size?: number | string;
|
|
10305
|
+
}
|
|
10306
|
+
/**
|
|
10307
|
+
* MagickoGrinning icon component
|
|
10308
|
+
* @example
|
|
10309
|
+
* ```tsx
|
|
10310
|
+
* import { MagickoGrinning } from 'magick-icons';
|
|
10311
|
+
*
|
|
10312
|
+
* <MagickoGrinning size={24} className="text-blue-500" strokeWidth={2} />
|
|
10313
|
+
* ```
|
|
10314
|
+
*/
|
|
10315
|
+
declare const MagickoGrinning: React.ForwardRefExoticComponent<Omit<MagickoGrinningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10316
|
+
|
|
10317
|
+
/**
|
|
10318
|
+
* Props for the MagickoHandcircle icon component
|
|
10319
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10320
|
+
*/
|
|
10321
|
+
interface MagickoHandcircleProps extends React.SVGProps<SVGSVGElement> {
|
|
10322
|
+
size?: number | string;
|
|
10323
|
+
}
|
|
10324
|
+
/**
|
|
10325
|
+
* MagickoHandcircle icon component
|
|
10326
|
+
* @example
|
|
10327
|
+
* ```tsx
|
|
10328
|
+
* import { MagickoHandcircle } from 'magick-icons';
|
|
10329
|
+
*
|
|
10330
|
+
* <MagickoHandcircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
10331
|
+
* ```
|
|
10332
|
+
*/
|
|
10333
|
+
declare const MagickoHandcircle: React.ForwardRefExoticComponent<Omit<MagickoHandcircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10334
|
+
|
|
10335
|
+
/**
|
|
10336
|
+
* Props for the MagickoHandtohand icon component
|
|
10337
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10338
|
+
*/
|
|
10339
|
+
interface MagickoHandtohandProps extends React.SVGProps<SVGSVGElement> {
|
|
10340
|
+
size?: number | string;
|
|
10341
|
+
}
|
|
10342
|
+
/**
|
|
10343
|
+
* MagickoHandtohand icon component
|
|
10344
|
+
* @example
|
|
10345
|
+
* ```tsx
|
|
10346
|
+
* import { MagickoHandtohand } from 'magick-icons';
|
|
10347
|
+
*
|
|
10348
|
+
* <MagickoHandtohand size={24} className="text-blue-500" strokeWidth={2} />
|
|
10349
|
+
* ```
|
|
10350
|
+
*/
|
|
10351
|
+
declare const MagickoHandtohand: React.ForwardRefExoticComponent<Omit<MagickoHandtohandProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10352
|
+
|
|
10353
|
+
/**
|
|
10354
|
+
* Props for the MagickoHappy icon component
|
|
10355
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10356
|
+
*/
|
|
10357
|
+
interface MagickoHappyProps extends React.SVGProps<SVGSVGElement> {
|
|
10358
|
+
size?: number | string;
|
|
10359
|
+
}
|
|
10360
|
+
/**
|
|
10361
|
+
* MagickoHappy icon component
|
|
10362
|
+
* @example
|
|
10363
|
+
* ```tsx
|
|
10364
|
+
* import { MagickoHappy } from 'magick-icons';
|
|
10365
|
+
*
|
|
10366
|
+
* <MagickoHappy size={24} className="text-blue-500" strokeWidth={2} />
|
|
10367
|
+
* ```
|
|
10368
|
+
*/
|
|
10369
|
+
declare const MagickoHappy: React.ForwardRefExoticComponent<Omit<MagickoHappyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10370
|
+
|
|
10371
|
+
/**
|
|
10372
|
+
* Props for the MagickoHappy1 icon component
|
|
10373
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10374
|
+
*/
|
|
10375
|
+
interface MagickoHappy1Props extends React.SVGProps<SVGSVGElement> {
|
|
10376
|
+
size?: number | string;
|
|
10377
|
+
}
|
|
10378
|
+
/**
|
|
10379
|
+
* MagickoHappy1 icon component
|
|
10380
|
+
* @example
|
|
10381
|
+
* ```tsx
|
|
10382
|
+
* import { MagickoHappy1 } from 'magick-icons';
|
|
10383
|
+
*
|
|
10384
|
+
* <MagickoHappy1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10385
|
+
* ```
|
|
10386
|
+
*/
|
|
10387
|
+
declare const MagickoHappy1: React.ForwardRefExoticComponent<Omit<MagickoHappy1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10388
|
+
|
|
10389
|
+
/**
|
|
10390
|
+
* Props for the MagickoHappyemoji icon component
|
|
10391
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10392
|
+
*/
|
|
10393
|
+
interface MagickoHappyemojiProps extends React.SVGProps<SVGSVGElement> {
|
|
10394
|
+
size?: number | string;
|
|
10395
|
+
}
|
|
10396
|
+
/**
|
|
10397
|
+
* MagickoHappyemoji icon component
|
|
10398
|
+
* @example
|
|
10399
|
+
* ```tsx
|
|
10400
|
+
* import { MagickoHappyemoji } from 'magick-icons';
|
|
10401
|
+
*
|
|
10402
|
+
* <MagickoHappyemoji size={24} className="text-blue-500" strokeWidth={2} />
|
|
10403
|
+
* ```
|
|
10404
|
+
*/
|
|
10405
|
+
declare const MagickoHappyemoji: React.ForwardRefExoticComponent<Omit<MagickoHappyemojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10406
|
+
|
|
10407
|
+
/**
|
|
10408
|
+
* Props for the MagickoHashtag icon component
|
|
10409
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10410
|
+
*/
|
|
10411
|
+
interface MagickoHashtagProps extends React.SVGProps<SVGSVGElement> {
|
|
10412
|
+
size?: number | string;
|
|
10413
|
+
}
|
|
10414
|
+
/**
|
|
10415
|
+
* MagickoHashtag icon component
|
|
10416
|
+
* @example
|
|
10417
|
+
* ```tsx
|
|
10418
|
+
* import { MagickoHashtag } from 'magick-icons';
|
|
10419
|
+
*
|
|
10420
|
+
* <MagickoHashtag size={24} className="text-blue-500" strokeWidth={2} />
|
|
10421
|
+
* ```
|
|
10422
|
+
*/
|
|
10423
|
+
declare const MagickoHashtag: React.ForwardRefExoticComponent<Omit<MagickoHashtagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10424
|
+
|
|
10425
|
+
/**
|
|
10426
|
+
* Props for the MagickoHashtag1 icon component
|
|
10427
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10428
|
+
*/
|
|
10429
|
+
interface MagickoHashtag1Props extends React.SVGProps<SVGSVGElement> {
|
|
10430
|
+
size?: number | string;
|
|
10431
|
+
}
|
|
10432
|
+
/**
|
|
10433
|
+
* MagickoHashtag1 icon component
|
|
10434
|
+
* @example
|
|
10435
|
+
* ```tsx
|
|
10436
|
+
* import { MagickoHashtag1 } from 'magick-icons';
|
|
10437
|
+
*
|
|
10438
|
+
* <MagickoHashtag1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10439
|
+
* ```
|
|
10440
|
+
*/
|
|
10441
|
+
declare const MagickoHashtag1: React.ForwardRefExoticComponent<Omit<MagickoHashtag1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10442
|
+
|
|
10443
|
+
/**
|
|
10444
|
+
* Props for the MagickoHeadphone icon component
|
|
10445
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10446
|
+
*/
|
|
10447
|
+
interface MagickoHeadphoneProps extends React.SVGProps<SVGSVGElement> {
|
|
10448
|
+
size?: number | string;
|
|
10449
|
+
}
|
|
10450
|
+
/**
|
|
10451
|
+
* MagickoHeadphone icon component
|
|
10452
|
+
* @example
|
|
10453
|
+
* ```tsx
|
|
10454
|
+
* import { MagickoHeadphone } from 'magick-icons';
|
|
10455
|
+
*
|
|
10456
|
+
* <MagickoHeadphone size={24} className="text-blue-500" strokeWidth={2} />
|
|
10457
|
+
* ```
|
|
10458
|
+
*/
|
|
10459
|
+
declare const MagickoHeadphone: React.ForwardRefExoticComponent<Omit<MagickoHeadphoneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10460
|
+
|
|
10461
|
+
/**
|
|
10462
|
+
* Props for the MagickoHeadphones icon component
|
|
10463
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10464
|
+
*/
|
|
10465
|
+
interface MagickoHeadphonesProps extends React.SVGProps<SVGSVGElement> {
|
|
10466
|
+
size?: number | string;
|
|
10467
|
+
}
|
|
10468
|
+
/**
|
|
10469
|
+
* MagickoHeadphones icon component
|
|
10470
|
+
* @example
|
|
10471
|
+
* ```tsx
|
|
10472
|
+
* import { MagickoHeadphones } from 'magick-icons';
|
|
10473
|
+
*
|
|
10474
|
+
* <MagickoHeadphones size={24} className="text-blue-500" strokeWidth={2} />
|
|
10475
|
+
* ```
|
|
10476
|
+
*/
|
|
10477
|
+
declare const MagickoHeadphones: React.ForwardRefExoticComponent<Omit<MagickoHeadphonesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10478
|
+
|
|
10479
|
+
/**
|
|
10480
|
+
* Props for the MagickoHealth icon component
|
|
10481
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10482
|
+
*/
|
|
10483
|
+
interface MagickoHealthProps extends React.SVGProps<SVGSVGElement> {
|
|
10484
|
+
size?: number | string;
|
|
10485
|
+
}
|
|
10486
|
+
/**
|
|
10487
|
+
* MagickoHealth icon component
|
|
10488
|
+
* @example
|
|
10489
|
+
* ```tsx
|
|
10490
|
+
* import { MagickoHealth } from 'magick-icons';
|
|
10491
|
+
*
|
|
10492
|
+
* <MagickoHealth size={24} className="text-blue-500" strokeWidth={2} />
|
|
10493
|
+
* ```
|
|
10494
|
+
*/
|
|
10495
|
+
declare const MagickoHealth: React.ForwardRefExoticComponent<Omit<MagickoHealthProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10496
|
+
|
|
10497
|
+
/**
|
|
10498
|
+
* Props for the MagickoHealth1 icon component
|
|
10499
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10500
|
+
*/
|
|
10501
|
+
interface MagickoHealth1Props extends React.SVGProps<SVGSVGElement> {
|
|
10502
|
+
size?: number | string;
|
|
10503
|
+
}
|
|
10504
|
+
/**
|
|
10505
|
+
* MagickoHealth1 icon component
|
|
10506
|
+
* @example
|
|
10507
|
+
* ```tsx
|
|
10508
|
+
* import { MagickoHealth1 } from 'magick-icons';
|
|
10509
|
+
*
|
|
10510
|
+
* <MagickoHealth1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10511
|
+
* ```
|
|
10512
|
+
*/
|
|
10513
|
+
declare const MagickoHealth1: React.ForwardRefExoticComponent<Omit<MagickoHealth1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10514
|
+
|
|
10515
|
+
/**
|
|
10516
|
+
* Props for the MagickoHeart icon component
|
|
10517
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10518
|
+
*/
|
|
10519
|
+
interface MagickoHeartProps extends React.SVGProps<SVGSVGElement> {
|
|
10520
|
+
size?: number | string;
|
|
10521
|
+
}
|
|
10522
|
+
/**
|
|
10523
|
+
* MagickoHeart icon component
|
|
10524
|
+
* @example
|
|
10525
|
+
* ```tsx
|
|
10526
|
+
* import { MagickoHeart } from 'magick-icons';
|
|
10527
|
+
*
|
|
10528
|
+
* <MagickoHeart size={24} className="text-blue-500" strokeWidth={2} />
|
|
10529
|
+
* ```
|
|
10530
|
+
*/
|
|
10531
|
+
declare const MagickoHeart: React.ForwardRefExoticComponent<Omit<MagickoHeartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10532
|
+
|
|
10533
|
+
/**
|
|
10534
|
+
* Props for the MagickoHeart1 icon component
|
|
10535
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10536
|
+
*/
|
|
10537
|
+
interface MagickoHeart1Props extends React.SVGProps<SVGSVGElement> {
|
|
10538
|
+
size?: number | string;
|
|
10539
|
+
}
|
|
10540
|
+
/**
|
|
10541
|
+
* MagickoHeart1 icon component
|
|
10542
|
+
* @example
|
|
10543
|
+
* ```tsx
|
|
10544
|
+
* import { MagickoHeart1 } from 'magick-icons';
|
|
10545
|
+
*
|
|
10546
|
+
* <MagickoHeart1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10547
|
+
* ```
|
|
10548
|
+
*/
|
|
10549
|
+
declare const MagickoHeart1: React.ForwardRefExoticComponent<Omit<MagickoHeart1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10550
|
+
|
|
10551
|
+
/**
|
|
10552
|
+
* Props for the MagickoHeartTap icon component
|
|
10553
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10554
|
+
*/
|
|
10555
|
+
interface MagickoHeartTapProps extends React.SVGProps<SVGSVGElement> {
|
|
10556
|
+
size?: number | string;
|
|
10557
|
+
}
|
|
10558
|
+
/**
|
|
10559
|
+
* MagickoHeartTap icon component
|
|
10560
|
+
* @example
|
|
10561
|
+
* ```tsx
|
|
10562
|
+
* import { MagickoHeartTap } from 'magick-icons';
|
|
10563
|
+
*
|
|
10564
|
+
* <MagickoHeartTap size={24} className="text-blue-500" strokeWidth={2} />
|
|
10565
|
+
* ```
|
|
10566
|
+
*/
|
|
10567
|
+
declare const MagickoHeartTap: React.ForwardRefExoticComponent<Omit<MagickoHeartTapProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10568
|
+
|
|
10569
|
+
/**
|
|
10570
|
+
* Props for the MagickoHearted icon component
|
|
10571
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10572
|
+
*/
|
|
10573
|
+
interface MagickoHeartedProps extends React.SVGProps<SVGSVGElement> {
|
|
10574
|
+
size?: number | string;
|
|
10575
|
+
}
|
|
10576
|
+
/**
|
|
10577
|
+
* MagickoHearted icon component
|
|
10578
|
+
* @example
|
|
10579
|
+
* ```tsx
|
|
10580
|
+
* import { MagickoHearted } from 'magick-icons';
|
|
10581
|
+
*
|
|
10582
|
+
* <MagickoHearted size={24} className="text-blue-500" strokeWidth={2} />
|
|
10583
|
+
* ```
|
|
10584
|
+
*/
|
|
10585
|
+
declare const MagickoHearted: React.ForwardRefExoticComponent<Omit<MagickoHeartedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10586
|
+
|
|
10587
|
+
/**
|
|
10588
|
+
* Props for the MagickoHome icon component
|
|
10589
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10590
|
+
*/
|
|
10591
|
+
interface MagickoHomeProps extends React.SVGProps<SVGSVGElement> {
|
|
10592
|
+
size?: number | string;
|
|
10593
|
+
}
|
|
10594
|
+
/**
|
|
10595
|
+
* MagickoHome icon component
|
|
10596
|
+
* @example
|
|
10597
|
+
* ```tsx
|
|
10598
|
+
* import { MagickoHome } from 'magick-icons';
|
|
10599
|
+
*
|
|
10600
|
+
* <MagickoHome size={24} className="text-blue-500" strokeWidth={2} />
|
|
10601
|
+
* ```
|
|
10602
|
+
*/
|
|
10603
|
+
declare const MagickoHome: React.ForwardRefExoticComponent<Omit<MagickoHomeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10604
|
+
|
|
10605
|
+
/**
|
|
10606
|
+
* Props for the MagickoHome2 icon component
|
|
10607
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10608
|
+
*/
|
|
10609
|
+
interface MagickoHome2Props extends React.SVGProps<SVGSVGElement> {
|
|
10610
|
+
size?: number | string;
|
|
10611
|
+
}
|
|
10612
|
+
/**
|
|
10613
|
+
* MagickoHome2 icon component
|
|
10614
|
+
* @example
|
|
10615
|
+
* ```tsx
|
|
10616
|
+
* import { MagickoHome2 } from 'magick-icons';
|
|
10617
|
+
*
|
|
10618
|
+
* <MagickoHome2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10619
|
+
* ```
|
|
10620
|
+
*/
|
|
10621
|
+
declare const MagickoHome2: React.ForwardRefExoticComponent<Omit<MagickoHome2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10622
|
+
|
|
10623
|
+
/**
|
|
10624
|
+
* Props for the MagickoHome21 icon component
|
|
10625
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10626
|
+
*/
|
|
10627
|
+
interface MagickoHome21Props extends React.SVGProps<SVGSVGElement> {
|
|
10628
|
+
size?: number | string;
|
|
10629
|
+
}
|
|
10630
|
+
/**
|
|
10631
|
+
* MagickoHome21 icon component
|
|
10632
|
+
* @example
|
|
10633
|
+
* ```tsx
|
|
10634
|
+
* import { MagickoHome21 } from 'magick-icons';
|
|
10635
|
+
*
|
|
10636
|
+
* <MagickoHome21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10637
|
+
* ```
|
|
10638
|
+
*/
|
|
10639
|
+
declare const MagickoHome21: React.ForwardRefExoticComponent<Omit<MagickoHome21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10640
|
+
|
|
10641
|
+
/**
|
|
10642
|
+
* Props for the MagickoHomeHashtag icon component
|
|
10643
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10644
|
+
*/
|
|
10645
|
+
interface MagickoHomeHashtagProps extends React.SVGProps<SVGSVGElement> {
|
|
10646
|
+
size?: number | string;
|
|
10647
|
+
}
|
|
10648
|
+
/**
|
|
10649
|
+
* MagickoHomeHashtag icon component
|
|
10650
|
+
* @example
|
|
10651
|
+
* ```tsx
|
|
10652
|
+
* import { MagickoHomeHashtag } from 'magick-icons';
|
|
10653
|
+
*
|
|
10654
|
+
* <MagickoHomeHashtag size={24} className="text-blue-500" strokeWidth={2} />
|
|
10655
|
+
* ```
|
|
10656
|
+
*/
|
|
10657
|
+
declare const MagickoHomeHashtag: React.ForwardRefExoticComponent<Omit<MagickoHomeHashtagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10658
|
+
|
|
10659
|
+
/**
|
|
10660
|
+
* Props for the MagickoHomeTrendDown icon component
|
|
10661
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10662
|
+
*/
|
|
10663
|
+
interface MagickoHomeTrendDownProps extends React.SVGProps<SVGSVGElement> {
|
|
10664
|
+
size?: number | string;
|
|
10665
|
+
}
|
|
10666
|
+
/**
|
|
10667
|
+
* MagickoHomeTrendDown icon component
|
|
10668
|
+
* @example
|
|
10669
|
+
* ```tsx
|
|
10670
|
+
* import { MagickoHomeTrendDown } from 'magick-icons';
|
|
10671
|
+
*
|
|
10672
|
+
* <MagickoHomeTrendDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
10673
|
+
* ```
|
|
10674
|
+
*/
|
|
10675
|
+
declare const MagickoHomeTrendDown: React.ForwardRefExoticComponent<Omit<MagickoHomeTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10676
|
+
|
|
10677
|
+
/**
|
|
10678
|
+
* Props for the MagickoHomeTrendUp icon component
|
|
10679
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10680
|
+
*/
|
|
10681
|
+
interface MagickoHomeTrendUpProps extends React.SVGProps<SVGSVGElement> {
|
|
10682
|
+
size?: number | string;
|
|
10683
|
+
}
|
|
10684
|
+
/**
|
|
10685
|
+
* MagickoHomeTrendUp icon component
|
|
10686
|
+
* @example
|
|
10687
|
+
* ```tsx
|
|
10688
|
+
* import { MagickoHomeTrendUp } from 'magick-icons';
|
|
10689
|
+
*
|
|
10690
|
+
* <MagickoHomeTrendUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
10691
|
+
* ```
|
|
10692
|
+
*/
|
|
10693
|
+
declare const MagickoHomeTrendUp: React.ForwardRefExoticComponent<Omit<MagickoHomeTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10694
|
+
|
|
10695
|
+
/**
|
|
10696
|
+
* Props for the MagickoHospital icon component
|
|
10697
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10698
|
+
*/
|
|
10699
|
+
interface MagickoHospitalProps extends React.SVGProps<SVGSVGElement> {
|
|
10700
|
+
size?: number | string;
|
|
10701
|
+
}
|
|
10702
|
+
/**
|
|
10703
|
+
* MagickoHospital icon component
|
|
10704
|
+
* @example
|
|
10705
|
+
* ```tsx
|
|
10706
|
+
* import { MagickoHospital } from 'magick-icons';
|
|
10707
|
+
*
|
|
10708
|
+
* <MagickoHospital size={24} className="text-blue-500" strokeWidth={2} />
|
|
10709
|
+
* ```
|
|
10710
|
+
*/
|
|
10711
|
+
declare const MagickoHospital: React.ForwardRefExoticComponent<Omit<MagickoHospitalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10712
|
+
|
|
10713
|
+
/**
|
|
10714
|
+
* Props for the MagickoHospital1 icon component
|
|
10715
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10716
|
+
*/
|
|
10717
|
+
interface MagickoHospital1Props extends React.SVGProps<SVGSVGElement> {
|
|
10718
|
+
size?: number | string;
|
|
10719
|
+
}
|
|
10720
|
+
/**
|
|
10721
|
+
* MagickoHospital1 icon component
|
|
10722
|
+
* @example
|
|
10723
|
+
* ```tsx
|
|
10724
|
+
* import { MagickoHospital1 } from 'magick-icons';
|
|
10725
|
+
*
|
|
10726
|
+
* <MagickoHospital1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10727
|
+
* ```
|
|
10728
|
+
*/
|
|
10729
|
+
declare const MagickoHospital1: React.ForwardRefExoticComponent<Omit<MagickoHospital1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10730
|
+
|
|
10731
|
+
/**
|
|
10732
|
+
* Props for the MagickoHospital2 icon component
|
|
10733
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10734
|
+
*/
|
|
10735
|
+
interface MagickoHospital2Props extends React.SVGProps<SVGSVGElement> {
|
|
10736
|
+
size?: number | string;
|
|
10737
|
+
}
|
|
10738
|
+
/**
|
|
10739
|
+
* MagickoHospital2 icon component
|
|
10740
|
+
* @example
|
|
10741
|
+
* ```tsx
|
|
10742
|
+
* import { MagickoHospital2 } from 'magick-icons';
|
|
10743
|
+
*
|
|
10744
|
+
* <MagickoHospital2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10745
|
+
* ```
|
|
10746
|
+
*/
|
|
10747
|
+
declare const MagickoHospital2: React.ForwardRefExoticComponent<Omit<MagickoHospital2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10748
|
+
|
|
10749
|
+
/**
|
|
10750
|
+
* Props for the MagickoHouse icon component
|
|
10751
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10752
|
+
*/
|
|
10753
|
+
interface MagickoHouseProps extends React.SVGProps<SVGSVGElement> {
|
|
10754
|
+
size?: number | string;
|
|
10755
|
+
}
|
|
10756
|
+
/**
|
|
10757
|
+
* MagickoHouse icon component
|
|
10758
|
+
* @example
|
|
10759
|
+
* ```tsx
|
|
10760
|
+
* import { MagickoHouse } from 'magick-icons';
|
|
10761
|
+
*
|
|
10762
|
+
* <MagickoHouse size={24} className="text-blue-500" strokeWidth={2} />
|
|
10763
|
+
* ```
|
|
10764
|
+
*/
|
|
10765
|
+
declare const MagickoHouse: React.ForwardRefExoticComponent<Omit<MagickoHouseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10766
|
+
|
|
10767
|
+
/**
|
|
10768
|
+
* Props for the MagickoHouse2 icon component
|
|
10769
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10770
|
+
*/
|
|
10771
|
+
interface MagickoHouse2Props extends React.SVGProps<SVGSVGElement> {
|
|
10772
|
+
size?: number | string;
|
|
10773
|
+
}
|
|
10774
|
+
/**
|
|
10775
|
+
* MagickoHouse2 icon component
|
|
10776
|
+
* @example
|
|
10777
|
+
* ```tsx
|
|
10778
|
+
* import { MagickoHouse2 } from 'magick-icons';
|
|
10779
|
+
*
|
|
10780
|
+
* <MagickoHouse2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10781
|
+
* ```
|
|
10782
|
+
*/
|
|
10783
|
+
declare const MagickoHouse2: React.ForwardRefExoticComponent<Omit<MagickoHouse2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10784
|
+
|
|
10785
|
+
/**
|
|
10786
|
+
* Props for the MagickoImage icon component
|
|
10787
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10788
|
+
*/
|
|
10789
|
+
interface MagickoImageProps extends React.SVGProps<SVGSVGElement> {
|
|
10790
|
+
size?: number | string;
|
|
10791
|
+
}
|
|
10792
|
+
/**
|
|
10793
|
+
* MagickoImage icon component
|
|
10794
|
+
* @example
|
|
10795
|
+
* ```tsx
|
|
10796
|
+
* import { MagickoImage } from 'magick-icons';
|
|
10797
|
+
*
|
|
10798
|
+
* <MagickoImage size={24} className="text-blue-500" strokeWidth={2} />
|
|
10799
|
+
* ```
|
|
10800
|
+
*/
|
|
10801
|
+
declare const MagickoImage: React.ForwardRefExoticComponent<Omit<MagickoImageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10802
|
+
|
|
10803
|
+
/**
|
|
10804
|
+
* Props for the MagickoImport01 icon component
|
|
10805
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10806
|
+
*/
|
|
10807
|
+
interface MagickoImport01Props extends React.SVGProps<SVGSVGElement> {
|
|
10808
|
+
size?: number | string;
|
|
10809
|
+
}
|
|
10810
|
+
/**
|
|
10811
|
+
* MagickoImport01 icon component
|
|
10812
|
+
* @example
|
|
10813
|
+
* ```tsx
|
|
10814
|
+
* import { MagickoImport01 } from 'magick-icons';
|
|
10815
|
+
*
|
|
10816
|
+
* <MagickoImport01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10817
|
+
* ```
|
|
10818
|
+
*/
|
|
10819
|
+
declare const MagickoImport01: React.ForwardRefExoticComponent<Omit<MagickoImport01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10820
|
+
|
|
10821
|
+
/**
|
|
10822
|
+
* Props for the MagickoImportArrow01 icon component
|
|
10823
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10824
|
+
*/
|
|
10825
|
+
interface MagickoImportArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
10826
|
+
size?: number | string;
|
|
10827
|
+
}
|
|
10828
|
+
/**
|
|
10829
|
+
* MagickoImportArrow01 icon component
|
|
10830
|
+
* @example
|
|
10831
|
+
* ```tsx
|
|
10832
|
+
* import { MagickoImportArrow01 } from 'magick-icons';
|
|
10833
|
+
*
|
|
10834
|
+
* <MagickoImportArrow01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10835
|
+
* ```
|
|
10836
|
+
*/
|
|
10837
|
+
declare const MagickoImportArrow01: React.ForwardRefExoticComponent<Omit<MagickoImportArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10838
|
+
|
|
10839
|
+
/**
|
|
10840
|
+
* Props for the MagickoImportArrow02 icon component
|
|
10841
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10842
|
+
*/
|
|
10843
|
+
interface MagickoImportArrow02Props extends React.SVGProps<SVGSVGElement> {
|
|
10844
|
+
size?: number | string;
|
|
10845
|
+
}
|
|
10846
|
+
/**
|
|
10847
|
+
* MagickoImportArrow02 icon component
|
|
10848
|
+
* @example
|
|
10849
|
+
* ```tsx
|
|
10850
|
+
* import { MagickoImportArrow02 } from 'magick-icons';
|
|
10851
|
+
*
|
|
10852
|
+
* <MagickoImportArrow02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10853
|
+
* ```
|
|
10854
|
+
*/
|
|
10855
|
+
declare const MagickoImportArrow02: React.ForwardRefExoticComponent<Omit<MagickoImportArrow02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10856
|
+
|
|
10857
|
+
/**
|
|
10858
|
+
* Props for the MagickoImportCircle01 icon component
|
|
10859
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10860
|
+
*/
|
|
10861
|
+
interface MagickoImportCircle01Props extends React.SVGProps<SVGSVGElement> {
|
|
10862
|
+
size?: number | string;
|
|
10863
|
+
}
|
|
10864
|
+
/**
|
|
10865
|
+
* MagickoImportCircle01 icon component
|
|
10866
|
+
* @example
|
|
10867
|
+
* ```tsx
|
|
10868
|
+
* import { MagickoImportCircle01 } from 'magick-icons';
|
|
10869
|
+
*
|
|
10870
|
+
* <MagickoImportCircle01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10871
|
+
* ```
|
|
10872
|
+
*/
|
|
10873
|
+
declare const MagickoImportCircle01: React.ForwardRefExoticComponent<Omit<MagickoImportCircle01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10874
|
+
|
|
10875
|
+
/**
|
|
10876
|
+
* Props for the MagickoImportCircle02 icon component
|
|
10877
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10878
|
+
*/
|
|
10879
|
+
interface MagickoImportCircle02Props extends React.SVGProps<SVGSVGElement> {
|
|
10880
|
+
size?: number | string;
|
|
10881
|
+
}
|
|
10882
|
+
/**
|
|
10883
|
+
* MagickoImportCircle02 icon component
|
|
10884
|
+
* @example
|
|
10885
|
+
* ```tsx
|
|
10886
|
+
* import { MagickoImportCircle02 } from 'magick-icons';
|
|
10887
|
+
*
|
|
10888
|
+
* <MagickoImportCircle02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10889
|
+
* ```
|
|
10890
|
+
*/
|
|
10891
|
+
declare const MagickoImportCircle02: React.ForwardRefExoticComponent<Omit<MagickoImportCircle02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10892
|
+
|
|
10893
|
+
/**
|
|
10894
|
+
* Props for the MagickoInfoCircle icon component
|
|
10895
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10896
|
+
*/
|
|
10897
|
+
interface MagickoInfoCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
10898
|
+
size?: number | string;
|
|
10899
|
+
}
|
|
10900
|
+
/**
|
|
10901
|
+
* MagickoInfoCircle icon component
|
|
10902
|
+
* @example
|
|
10903
|
+
* ```tsx
|
|
10904
|
+
* import { MagickoInfoCircle } from 'magick-icons';
|
|
10905
|
+
*
|
|
10906
|
+
* <MagickoInfoCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
10907
|
+
* ```
|
|
10908
|
+
*/
|
|
10909
|
+
declare const MagickoInfoCircle: React.ForwardRefExoticComponent<Omit<MagickoInfoCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10910
|
+
|
|
10911
|
+
/**
|
|
10912
|
+
* Props for the MagickoInfoCircle1 icon component
|
|
10913
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10914
|
+
*/
|
|
10915
|
+
interface MagickoInfoCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
10916
|
+
size?: number | string;
|
|
10917
|
+
}
|
|
10918
|
+
/**
|
|
10919
|
+
* MagickoInfoCircle1 icon component
|
|
10920
|
+
* @example
|
|
10921
|
+
* ```tsx
|
|
10922
|
+
* import { MagickoInfoCircle1 } from 'magick-icons';
|
|
10923
|
+
*
|
|
10924
|
+
* <MagickoInfoCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10925
|
+
* ```
|
|
10926
|
+
*/
|
|
10927
|
+
declare const MagickoInfoCircle1: React.ForwardRefExoticComponent<Omit<MagickoInfoCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10928
|
+
|
|
10929
|
+
/**
|
|
10930
|
+
* Props for the MagickoInfoSquare icon component
|
|
10931
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10932
|
+
*/
|
|
10933
|
+
interface MagickoInfoSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
10934
|
+
size?: number | string;
|
|
10935
|
+
}
|
|
10936
|
+
/**
|
|
10937
|
+
* MagickoInfoSquare icon component
|
|
10938
|
+
* @example
|
|
10939
|
+
* ```tsx
|
|
10940
|
+
* import { MagickoInfoSquare } from 'magick-icons';
|
|
10941
|
+
*
|
|
10942
|
+
* <MagickoInfoSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
10943
|
+
* ```
|
|
10944
|
+
*/
|
|
10945
|
+
declare const MagickoInfoSquare: React.ForwardRefExoticComponent<Omit<MagickoInfoSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10946
|
+
|
|
10947
|
+
/**
|
|
10948
|
+
* Props for the MagickoInformation icon component
|
|
10949
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10950
|
+
*/
|
|
10951
|
+
interface MagickoInformationProps extends React.SVGProps<SVGSVGElement> {
|
|
10952
|
+
size?: number | string;
|
|
10953
|
+
}
|
|
10954
|
+
/**
|
|
10955
|
+
* MagickoInformation icon component
|
|
10956
|
+
* @example
|
|
10957
|
+
* ```tsx
|
|
10958
|
+
* import { MagickoInformation } from 'magick-icons';
|
|
10959
|
+
*
|
|
10960
|
+
* <MagickoInformation size={24} className="text-blue-500" strokeWidth={2} />
|
|
10961
|
+
* ```
|
|
10962
|
+
*/
|
|
10963
|
+
declare const MagickoInformation: React.ForwardRefExoticComponent<Omit<MagickoInformationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10964
|
+
|
|
10965
|
+
/**
|
|
10966
|
+
* Props for the MagickoJoy icon component
|
|
10967
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10968
|
+
*/
|
|
10969
|
+
interface MagickoJoyProps extends React.SVGProps<SVGSVGElement> {
|
|
10970
|
+
size?: number | string;
|
|
10971
|
+
}
|
|
10972
|
+
/**
|
|
10973
|
+
* MagickoJoy icon component
|
|
10974
|
+
* @example
|
|
10975
|
+
* ```tsx
|
|
10976
|
+
* import { MagickoJoy } from 'magick-icons';
|
|
10977
|
+
*
|
|
10978
|
+
* <MagickoJoy size={24} className="text-blue-500" strokeWidth={2} />
|
|
10979
|
+
* ```
|
|
10980
|
+
*/
|
|
10981
|
+
declare const MagickoJoy: React.ForwardRefExoticComponent<Omit<MagickoJoyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10982
|
+
|
|
10983
|
+
/**
|
|
10984
|
+
* Props for the MagickoJoy2 icon component
|
|
10985
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10986
|
+
*/
|
|
10987
|
+
interface MagickoJoy2Props extends React.SVGProps<SVGSVGElement> {
|
|
10988
|
+
size?: number | string;
|
|
10989
|
+
}
|
|
10990
|
+
/**
|
|
10991
|
+
* MagickoJoy2 icon component
|
|
10992
|
+
* @example
|
|
10993
|
+
* ```tsx
|
|
10994
|
+
* import { MagickoJoy2 } from 'magick-icons';
|
|
10995
|
+
*
|
|
10996
|
+
* <MagickoJoy2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10997
|
+
* ```
|
|
10998
|
+
*/
|
|
10999
|
+
declare const MagickoJoy2: React.ForwardRefExoticComponent<Omit<MagickoJoy2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11000
|
+
|
|
11001
|
+
/**
|
|
11002
|
+
* Props for the MagickoKey icon component
|
|
11003
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11004
|
+
*/
|
|
11005
|
+
interface MagickoKeyProps extends React.SVGProps<SVGSVGElement> {
|
|
11006
|
+
size?: number | string;
|
|
11007
|
+
}
|
|
11008
|
+
/**
|
|
11009
|
+
* MagickoKey icon component
|
|
11010
|
+
* @example
|
|
11011
|
+
* ```tsx
|
|
11012
|
+
* import { MagickoKey } from 'magick-icons';
|
|
11013
|
+
*
|
|
11014
|
+
* <MagickoKey size={24} className="text-blue-500" strokeWidth={2} />
|
|
11015
|
+
* ```
|
|
11016
|
+
*/
|
|
11017
|
+
declare const MagickoKey: React.ForwardRefExoticComponent<Omit<MagickoKeyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11018
|
+
|
|
11019
|
+
/**
|
|
11020
|
+
* Props for the MagickoKeyboard icon component
|
|
11021
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11022
|
+
*/
|
|
11023
|
+
interface MagickoKeyboardProps extends React.SVGProps<SVGSVGElement> {
|
|
11024
|
+
size?: number | string;
|
|
11025
|
+
}
|
|
11026
|
+
/**
|
|
11027
|
+
* MagickoKeyboard icon component
|
|
11028
|
+
* @example
|
|
11029
|
+
* ```tsx
|
|
11030
|
+
* import { MagickoKeyboard } from 'magick-icons';
|
|
11031
|
+
*
|
|
11032
|
+
* <MagickoKeyboard size={24} className="text-blue-500" strokeWidth={2} />
|
|
11033
|
+
* ```
|
|
11034
|
+
*/
|
|
11035
|
+
declare const MagickoKeyboard: React.ForwardRefExoticComponent<Omit<MagickoKeyboardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11036
|
+
|
|
11037
|
+
/**
|
|
11038
|
+
* Props for the MagickoKeyboard1 icon component
|
|
11039
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11040
|
+
*/
|
|
11041
|
+
interface MagickoKeyboard1Props extends React.SVGProps<SVGSVGElement> {
|
|
11042
|
+
size?: number | string;
|
|
11043
|
+
}
|
|
11044
|
+
/**
|
|
11045
|
+
* MagickoKeyboard1 icon component
|
|
11046
|
+
* @example
|
|
11047
|
+
* ```tsx
|
|
11048
|
+
* import { MagickoKeyboard1 } from 'magick-icons';
|
|
11049
|
+
*
|
|
11050
|
+
* <MagickoKeyboard1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11051
|
+
* ```
|
|
11052
|
+
*/
|
|
11053
|
+
declare const MagickoKeyboard1: React.ForwardRefExoticComponent<Omit<MagickoKeyboard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11054
|
+
|
|
11055
|
+
/**
|
|
11056
|
+
* Props for the MagickoKeyboardOpen icon component
|
|
11057
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11058
|
+
*/
|
|
11059
|
+
interface MagickoKeyboardOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
11060
|
+
size?: number | string;
|
|
11061
|
+
}
|
|
11062
|
+
/**
|
|
11063
|
+
* MagickoKeyboardOpen icon component
|
|
11064
|
+
* @example
|
|
11065
|
+
* ```tsx
|
|
11066
|
+
* import { MagickoKeyboardOpen } from 'magick-icons';
|
|
11067
|
+
*
|
|
11068
|
+
* <MagickoKeyboardOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
11069
|
+
* ```
|
|
11070
|
+
*/
|
|
11071
|
+
declare const MagickoKeyboardOpen: React.ForwardRefExoticComponent<Omit<MagickoKeyboardOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11072
|
+
|
|
11073
|
+
/**
|
|
11074
|
+
* Props for the MagickoKissing icon component
|
|
11075
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11076
|
+
*/
|
|
11077
|
+
interface MagickoKissingProps extends React.SVGProps<SVGSVGElement> {
|
|
11078
|
+
size?: number | string;
|
|
11079
|
+
}
|
|
11080
|
+
/**
|
|
11081
|
+
* MagickoKissing icon component
|
|
11082
|
+
* @example
|
|
11083
|
+
* ```tsx
|
|
11084
|
+
* import { MagickoKissing } from 'magick-icons';
|
|
11085
|
+
*
|
|
11086
|
+
* <MagickoKissing size={24} className="text-blue-500" strokeWidth={2} />
|
|
11087
|
+
* ```
|
|
11088
|
+
*/
|
|
11089
|
+
declare const MagickoKissing: React.ForwardRefExoticComponent<Omit<MagickoKissingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11090
|
+
|
|
11091
|
+
/**
|
|
11092
|
+
* Props for the MagickoKissing1 icon component
|
|
11093
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11094
|
+
*/
|
|
11095
|
+
interface MagickoKissing1Props extends React.SVGProps<SVGSVGElement> {
|
|
11096
|
+
size?: number | string;
|
|
11097
|
+
}
|
|
11098
|
+
/**
|
|
11099
|
+
* MagickoKissing1 icon component
|
|
11100
|
+
* @example
|
|
11101
|
+
* ```tsx
|
|
11102
|
+
* import { MagickoKissing1 } from 'magick-icons';
|
|
11103
|
+
*
|
|
11104
|
+
* <MagickoKissing1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11105
|
+
* ```
|
|
11106
|
+
*/
|
|
11107
|
+
declare const MagickoKissing1: React.ForwardRefExoticComponent<Omit<MagickoKissing1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11108
|
+
|
|
11109
|
+
/**
|
|
11110
|
+
* Props for the MagickoLamp icon component
|
|
11111
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11112
|
+
*/
|
|
11113
|
+
interface MagickoLampProps extends React.SVGProps<SVGSVGElement> {
|
|
11114
|
+
size?: number | string;
|
|
11115
|
+
}
|
|
11116
|
+
/**
|
|
11117
|
+
* MagickoLamp icon component
|
|
11118
|
+
* @example
|
|
11119
|
+
* ```tsx
|
|
11120
|
+
* import { MagickoLamp } from 'magick-icons';
|
|
11121
|
+
*
|
|
11122
|
+
* <MagickoLamp size={24} className="text-blue-500" strokeWidth={2} />
|
|
11123
|
+
* ```
|
|
11124
|
+
*/
|
|
11125
|
+
declare const MagickoLamp: React.ForwardRefExoticComponent<Omit<MagickoLampProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11126
|
+
|
|
11127
|
+
/**
|
|
11128
|
+
* Props for the MagickoLamp1 icon component
|
|
11129
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11130
|
+
*/
|
|
11131
|
+
interface MagickoLamp1Props extends React.SVGProps<SVGSVGElement> {
|
|
11132
|
+
size?: number | string;
|
|
11133
|
+
}
|
|
11134
|
+
/**
|
|
11135
|
+
* MagickoLamp1 icon component
|
|
11136
|
+
* @example
|
|
11137
|
+
* ```tsx
|
|
11138
|
+
* import { MagickoLamp1 } from 'magick-icons';
|
|
11139
|
+
*
|
|
11140
|
+
* <MagickoLamp1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11141
|
+
* ```
|
|
11142
|
+
*/
|
|
11143
|
+
declare const MagickoLamp1: React.ForwardRefExoticComponent<Omit<MagickoLamp1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11144
|
+
|
|
11145
|
+
/**
|
|
11146
|
+
* Props for the MagickoLamp2 icon component
|
|
11147
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11148
|
+
*/
|
|
11149
|
+
interface MagickoLamp2Props extends React.SVGProps<SVGSVGElement> {
|
|
11150
|
+
size?: number | string;
|
|
11151
|
+
}
|
|
11152
|
+
/**
|
|
11153
|
+
* MagickoLamp2 icon component
|
|
11154
|
+
* @example
|
|
11155
|
+
* ```tsx
|
|
11156
|
+
* import { MagickoLamp2 } from 'magick-icons';
|
|
11157
|
+
*
|
|
11158
|
+
* <MagickoLamp2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11159
|
+
* ```
|
|
11160
|
+
*/
|
|
11161
|
+
declare const MagickoLamp2: React.ForwardRefExoticComponent<Omit<MagickoLamp2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11162
|
+
|
|
11163
|
+
/**
|
|
11164
|
+
* Props for the MagickoLampCharge icon component
|
|
11165
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11166
|
+
*/
|
|
11167
|
+
interface MagickoLampChargeProps extends React.SVGProps<SVGSVGElement> {
|
|
11168
|
+
size?: number | string;
|
|
11169
|
+
}
|
|
11170
|
+
/**
|
|
11171
|
+
* MagickoLampCharge icon component
|
|
11172
|
+
* @example
|
|
11173
|
+
* ```tsx
|
|
11174
|
+
* import { MagickoLampCharge } from 'magick-icons';
|
|
11175
|
+
*
|
|
11176
|
+
* <MagickoLampCharge size={24} className="text-blue-500" strokeWidth={2} />
|
|
11177
|
+
* ```
|
|
11178
|
+
*/
|
|
11179
|
+
declare const MagickoLampCharge: React.ForwardRefExoticComponent<Omit<MagickoLampChargeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11180
|
+
|
|
11181
|
+
/**
|
|
11182
|
+
* Props for the MagickoLampOn icon component
|
|
11183
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11184
|
+
*/
|
|
11185
|
+
interface MagickoLampOnProps extends React.SVGProps<SVGSVGElement> {
|
|
11186
|
+
size?: number | string;
|
|
11187
|
+
}
|
|
11188
|
+
/**
|
|
11189
|
+
* MagickoLampOn icon component
|
|
11190
|
+
* @example
|
|
11191
|
+
* ```tsx
|
|
11192
|
+
* import { MagickoLampOn } from 'magick-icons';
|
|
11193
|
+
*
|
|
11194
|
+
* <MagickoLampOn size={24} className="text-blue-500" strokeWidth={2} />
|
|
11195
|
+
* ```
|
|
11196
|
+
*/
|
|
11197
|
+
declare const MagickoLampOn: React.ForwardRefExoticComponent<Omit<MagickoLampOnProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11198
|
+
|
|
11199
|
+
/**
|
|
11200
|
+
* Props for the MagickoLampSlash icon component
|
|
11201
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11202
|
+
*/
|
|
11203
|
+
interface MagickoLampSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
11204
|
+
size?: number | string;
|
|
11205
|
+
}
|
|
11206
|
+
/**
|
|
11207
|
+
* MagickoLampSlash icon component
|
|
11208
|
+
* @example
|
|
11209
|
+
* ```tsx
|
|
11210
|
+
* import { MagickoLampSlash } from 'magick-icons';
|
|
11211
|
+
*
|
|
11212
|
+
* <MagickoLampSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
11213
|
+
* ```
|
|
11214
|
+
*/
|
|
11215
|
+
declare const MagickoLampSlash: React.ForwardRefExoticComponent<Omit<MagickoLampSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11216
|
+
|
|
11217
|
+
/**
|
|
11218
|
+
* Props for the MagickoLanguageCircle icon component
|
|
11219
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11220
|
+
*/
|
|
11221
|
+
interface MagickoLanguageCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
11222
|
+
size?: number | string;
|
|
11223
|
+
}
|
|
11224
|
+
/**
|
|
11225
|
+
* MagickoLanguageCircle icon component
|
|
11226
|
+
* @example
|
|
11227
|
+
* ```tsx
|
|
11228
|
+
* import { MagickoLanguageCircle } from 'magick-icons';
|
|
11229
|
+
*
|
|
11230
|
+
* <MagickoLanguageCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
11231
|
+
* ```
|
|
11232
|
+
*/
|
|
11233
|
+
declare const MagickoLanguageCircle: React.ForwardRefExoticComponent<Omit<MagickoLanguageCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11234
|
+
|
|
11235
|
+
/**
|
|
11236
|
+
* Props for the MagickoLanguageSquare icon component
|
|
11237
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11238
|
+
*/
|
|
11239
|
+
interface MagickoLanguageSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
11240
|
+
size?: number | string;
|
|
11241
|
+
}
|
|
11242
|
+
/**
|
|
11243
|
+
* MagickoLanguageSquare icon component
|
|
11244
|
+
* @example
|
|
11245
|
+
* ```tsx
|
|
11246
|
+
* import { MagickoLanguageSquare } from 'magick-icons';
|
|
11247
|
+
*
|
|
11248
|
+
* <MagickoLanguageSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
11249
|
+
* ```
|
|
11250
|
+
*/
|
|
11251
|
+
declare const MagickoLanguageSquare: React.ForwardRefExoticComponent<Omit<MagickoLanguageSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11252
|
+
|
|
10173
11253
|
/**
|
|
10174
11254
|
* Props for the Marketing icon component
|
|
10175
11255
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -10458,4 +11538,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
10458
11538
|
*/
|
|
10459
11539
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10460
11540
|
|
|
10461
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
11541
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguageCircle, type MagickoLanguageCircleProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|