magick-icons 0.1.220 → 0.1.221
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 +541 -1
- package/index.d.ts +541 -1
- package/index.js +521 -71
- package/index.js.map +1 -1
- package/index.mjs +495 -75
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4212,6 +4212,546 @@ interface MagickoAiToolsProps extends React.SVGProps<SVGSVGElement> {
|
|
|
4212
4212
|
*/
|
|
4213
4213
|
declare const MagickoAiTools: React.ForwardRefExoticComponent<Omit<MagickoAiToolsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4214
4214
|
|
|
4215
|
+
/**
|
|
4216
|
+
* Props for the MagickoAiUsers icon component
|
|
4217
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4218
|
+
*/
|
|
4219
|
+
interface MagickoAiUsersProps extends React.SVGProps<SVGSVGElement> {
|
|
4220
|
+
size?: number | string;
|
|
4221
|
+
}
|
|
4222
|
+
/**
|
|
4223
|
+
* MagickoAiUsers icon component
|
|
4224
|
+
* @example
|
|
4225
|
+
* ```tsx
|
|
4226
|
+
* import { MagickoAiUsers } from 'magick-icons';
|
|
4227
|
+
*
|
|
4228
|
+
* <MagickoAiUsers size={24} className="text-blue-500" strokeWidth={2} />
|
|
4229
|
+
* ```
|
|
4230
|
+
*/
|
|
4231
|
+
declare const MagickoAiUsers: React.ForwardRefExoticComponent<Omit<MagickoAiUsersProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4232
|
+
|
|
4233
|
+
/**
|
|
4234
|
+
* Props for the MagickoAiWaterCycle icon component
|
|
4235
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4236
|
+
*/
|
|
4237
|
+
interface MagickoAiWaterCycleProps extends React.SVGProps<SVGSVGElement> {
|
|
4238
|
+
size?: number | string;
|
|
4239
|
+
}
|
|
4240
|
+
/**
|
|
4241
|
+
* MagickoAiWaterCycle icon component
|
|
4242
|
+
* @example
|
|
4243
|
+
* ```tsx
|
|
4244
|
+
* import { MagickoAiWaterCycle } from 'magick-icons';
|
|
4245
|
+
*
|
|
4246
|
+
* <MagickoAiWaterCycle size={24} className="text-blue-500" strokeWidth={2} />
|
|
4247
|
+
* ```
|
|
4248
|
+
*/
|
|
4249
|
+
declare const MagickoAiWaterCycle: React.ForwardRefExoticComponent<Omit<MagickoAiWaterCycleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4250
|
+
|
|
4251
|
+
/**
|
|
4252
|
+
* Props for the MagickoAiWeight icon component
|
|
4253
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4254
|
+
*/
|
|
4255
|
+
interface MagickoAiWeightProps extends React.SVGProps<SVGSVGElement> {
|
|
4256
|
+
size?: number | string;
|
|
4257
|
+
}
|
|
4258
|
+
/**
|
|
4259
|
+
* MagickoAiWeight icon component
|
|
4260
|
+
* @example
|
|
4261
|
+
* ```tsx
|
|
4262
|
+
* import { MagickoAiWeight } from 'magick-icons';
|
|
4263
|
+
*
|
|
4264
|
+
* <MagickoAiWeight size={24} className="text-blue-500" strokeWidth={2} />
|
|
4265
|
+
* ```
|
|
4266
|
+
*/
|
|
4267
|
+
declare const MagickoAiWeight: React.ForwardRefExoticComponent<Omit<MagickoAiWeightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4268
|
+
|
|
4269
|
+
/**
|
|
4270
|
+
* Props for the MagickoAirdrop icon component
|
|
4271
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4272
|
+
*/
|
|
4273
|
+
interface MagickoAirdropProps extends React.SVGProps<SVGSVGElement> {
|
|
4274
|
+
size?: number | string;
|
|
4275
|
+
}
|
|
4276
|
+
/**
|
|
4277
|
+
* MagickoAirdrop icon component
|
|
4278
|
+
* @example
|
|
4279
|
+
* ```tsx
|
|
4280
|
+
* import { MagickoAirdrop } from 'magick-icons';
|
|
4281
|
+
*
|
|
4282
|
+
* <MagickoAirdrop size={24} className="text-blue-500" strokeWidth={2} />
|
|
4283
|
+
* ```
|
|
4284
|
+
*/
|
|
4285
|
+
declare const MagickoAirdrop: React.ForwardRefExoticComponent<Omit<MagickoAirdropProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4286
|
+
|
|
4287
|
+
/**
|
|
4288
|
+
* Props for the MagickoAirplane icon component
|
|
4289
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4290
|
+
*/
|
|
4291
|
+
interface MagickoAirplaneProps extends React.SVGProps<SVGSVGElement> {
|
|
4292
|
+
size?: number | string;
|
|
4293
|
+
}
|
|
4294
|
+
/**
|
|
4295
|
+
* MagickoAirplane icon component
|
|
4296
|
+
* @example
|
|
4297
|
+
* ```tsx
|
|
4298
|
+
* import { MagickoAirplane } from 'magick-icons';
|
|
4299
|
+
*
|
|
4300
|
+
* <MagickoAirplane size={24} className="text-blue-500" strokeWidth={2} />
|
|
4301
|
+
* ```
|
|
4302
|
+
*/
|
|
4303
|
+
declare const MagickoAirplane: React.ForwardRefExoticComponent<Omit<MagickoAirplaneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4304
|
+
|
|
4305
|
+
/**
|
|
4306
|
+
* Props for the MagickoAirplane1 icon component
|
|
4307
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4308
|
+
*/
|
|
4309
|
+
interface MagickoAirplane1Props extends React.SVGProps<SVGSVGElement> {
|
|
4310
|
+
size?: number | string;
|
|
4311
|
+
}
|
|
4312
|
+
/**
|
|
4313
|
+
* MagickoAirplane1 icon component
|
|
4314
|
+
* @example
|
|
4315
|
+
* ```tsx
|
|
4316
|
+
* import { MagickoAirplane1 } from 'magick-icons';
|
|
4317
|
+
*
|
|
4318
|
+
* <MagickoAirplane1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4319
|
+
* ```
|
|
4320
|
+
*/
|
|
4321
|
+
declare const MagickoAirplane1: React.ForwardRefExoticComponent<Omit<MagickoAirplane1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4322
|
+
|
|
4323
|
+
/**
|
|
4324
|
+
* Props for the MagickoAirplaneSquare icon component
|
|
4325
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4326
|
+
*/
|
|
4327
|
+
interface MagickoAirplaneSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
4328
|
+
size?: number | string;
|
|
4329
|
+
}
|
|
4330
|
+
/**
|
|
4331
|
+
* MagickoAirplaneSquare icon component
|
|
4332
|
+
* @example
|
|
4333
|
+
* ```tsx
|
|
4334
|
+
* import { MagickoAirplaneSquare } from 'magick-icons';
|
|
4335
|
+
*
|
|
4336
|
+
* <MagickoAirplaneSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
4337
|
+
* ```
|
|
4338
|
+
*/
|
|
4339
|
+
declare const MagickoAirplaneSquare: React.ForwardRefExoticComponent<Omit<MagickoAirplaneSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4340
|
+
|
|
4341
|
+
/**
|
|
4342
|
+
* Props for the MagickoAirpod icon component
|
|
4343
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4344
|
+
*/
|
|
4345
|
+
interface MagickoAirpodProps extends React.SVGProps<SVGSVGElement> {
|
|
4346
|
+
size?: number | string;
|
|
4347
|
+
}
|
|
4348
|
+
/**
|
|
4349
|
+
* MagickoAirpod icon component
|
|
4350
|
+
* @example
|
|
4351
|
+
* ```tsx
|
|
4352
|
+
* import { MagickoAirpod } from 'magick-icons';
|
|
4353
|
+
*
|
|
4354
|
+
* <MagickoAirpod size={24} className="text-blue-500" strokeWidth={2} />
|
|
4355
|
+
* ```
|
|
4356
|
+
*/
|
|
4357
|
+
declare const MagickoAirpod: React.ForwardRefExoticComponent<Omit<MagickoAirpodProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4358
|
+
|
|
4359
|
+
/**
|
|
4360
|
+
* Props for the MagickoAirpods icon component
|
|
4361
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4362
|
+
*/
|
|
4363
|
+
interface MagickoAirpodsProps extends React.SVGProps<SVGSVGElement> {
|
|
4364
|
+
size?: number | string;
|
|
4365
|
+
}
|
|
4366
|
+
/**
|
|
4367
|
+
* MagickoAirpods icon component
|
|
4368
|
+
* @example
|
|
4369
|
+
* ```tsx
|
|
4370
|
+
* import { MagickoAirpods } from 'magick-icons';
|
|
4371
|
+
*
|
|
4372
|
+
* <MagickoAirpods size={24} className="text-blue-500" strokeWidth={2} />
|
|
4373
|
+
* ```
|
|
4374
|
+
*/
|
|
4375
|
+
declare const MagickoAirpods: React.ForwardRefExoticComponent<Omit<MagickoAirpodsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4376
|
+
|
|
4377
|
+
/**
|
|
4378
|
+
* Props for the MagickoAirpods1 icon component
|
|
4379
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4380
|
+
*/
|
|
4381
|
+
interface MagickoAirpods1Props extends React.SVGProps<SVGSVGElement> {
|
|
4382
|
+
size?: number | string;
|
|
4383
|
+
}
|
|
4384
|
+
/**
|
|
4385
|
+
* MagickoAirpods1 icon component
|
|
4386
|
+
* @example
|
|
4387
|
+
* ```tsx
|
|
4388
|
+
* import { MagickoAirpods1 } from 'magick-icons';
|
|
4389
|
+
*
|
|
4390
|
+
* <MagickoAirpods1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4391
|
+
* ```
|
|
4392
|
+
*/
|
|
4393
|
+
declare const MagickoAirpods1: React.ForwardRefExoticComponent<Omit<MagickoAirpods1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4394
|
+
|
|
4395
|
+
/**
|
|
4396
|
+
* Props for the MagickoAlarm icon component
|
|
4397
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4398
|
+
*/
|
|
4399
|
+
interface MagickoAlarmProps extends React.SVGProps<SVGSVGElement> {
|
|
4400
|
+
size?: number | string;
|
|
4401
|
+
}
|
|
4402
|
+
/**
|
|
4403
|
+
* MagickoAlarm icon component
|
|
4404
|
+
* @example
|
|
4405
|
+
* ```tsx
|
|
4406
|
+
* import { MagickoAlarm } from 'magick-icons';
|
|
4407
|
+
*
|
|
4408
|
+
* <MagickoAlarm size={24} className="text-blue-500" strokeWidth={2} />
|
|
4409
|
+
* ```
|
|
4410
|
+
*/
|
|
4411
|
+
declare const MagickoAlarm: React.ForwardRefExoticComponent<Omit<MagickoAlarmProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4412
|
+
|
|
4413
|
+
/**
|
|
4414
|
+
* Props for the MagickoAlarm1 icon component
|
|
4415
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4416
|
+
*/
|
|
4417
|
+
interface MagickoAlarm1Props extends React.SVGProps<SVGSVGElement> {
|
|
4418
|
+
size?: number | string;
|
|
4419
|
+
}
|
|
4420
|
+
/**
|
|
4421
|
+
* MagickoAlarm1 icon component
|
|
4422
|
+
* @example
|
|
4423
|
+
* ```tsx
|
|
4424
|
+
* import { MagickoAlarm1 } from 'magick-icons';
|
|
4425
|
+
*
|
|
4426
|
+
* <MagickoAlarm1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4427
|
+
* ```
|
|
4428
|
+
*/
|
|
4429
|
+
declare const MagickoAlarm1: React.ForwardRefExoticComponent<Omit<MagickoAlarm1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4430
|
+
|
|
4431
|
+
/**
|
|
4432
|
+
* Props for the MagickoAlignBottom icon component
|
|
4433
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4434
|
+
*/
|
|
4435
|
+
interface MagickoAlignBottomProps extends React.SVGProps<SVGSVGElement> {
|
|
4436
|
+
size?: number | string;
|
|
4437
|
+
}
|
|
4438
|
+
/**
|
|
4439
|
+
* MagickoAlignBottom icon component
|
|
4440
|
+
* @example
|
|
4441
|
+
* ```tsx
|
|
4442
|
+
* import { MagickoAlignBottom } from 'magick-icons';
|
|
4443
|
+
*
|
|
4444
|
+
* <MagickoAlignBottom size={24} className="text-blue-500" strokeWidth={2} />
|
|
4445
|
+
* ```
|
|
4446
|
+
*/
|
|
4447
|
+
declare const MagickoAlignBottom: React.ForwardRefExoticComponent<Omit<MagickoAlignBottomProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4448
|
+
|
|
4449
|
+
/**
|
|
4450
|
+
* Props for the MagickoAlignHorizontally icon component
|
|
4451
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4452
|
+
*/
|
|
4453
|
+
interface MagickoAlignHorizontallyProps extends React.SVGProps<SVGSVGElement> {
|
|
4454
|
+
size?: number | string;
|
|
4455
|
+
}
|
|
4456
|
+
/**
|
|
4457
|
+
* MagickoAlignHorizontally icon component
|
|
4458
|
+
* @example
|
|
4459
|
+
* ```tsx
|
|
4460
|
+
* import { MagickoAlignHorizontally } from 'magick-icons';
|
|
4461
|
+
*
|
|
4462
|
+
* <MagickoAlignHorizontally size={24} className="text-blue-500" strokeWidth={2} />
|
|
4463
|
+
* ```
|
|
4464
|
+
*/
|
|
4465
|
+
declare const MagickoAlignHorizontally: React.ForwardRefExoticComponent<Omit<MagickoAlignHorizontallyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4466
|
+
|
|
4467
|
+
/**
|
|
4468
|
+
* Props for the MagickoAlignLeft icon component
|
|
4469
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4470
|
+
*/
|
|
4471
|
+
interface MagickoAlignLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
4472
|
+
size?: number | string;
|
|
4473
|
+
}
|
|
4474
|
+
/**
|
|
4475
|
+
* MagickoAlignLeft icon component
|
|
4476
|
+
* @example
|
|
4477
|
+
* ```tsx
|
|
4478
|
+
* import { MagickoAlignLeft } from 'magick-icons';
|
|
4479
|
+
*
|
|
4480
|
+
* <MagickoAlignLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
4481
|
+
* ```
|
|
4482
|
+
*/
|
|
4483
|
+
declare const MagickoAlignLeft: React.ForwardRefExoticComponent<Omit<MagickoAlignLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4484
|
+
|
|
4485
|
+
/**
|
|
4486
|
+
* Props for the MagickoAlignLeft2 icon component
|
|
4487
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4488
|
+
*/
|
|
4489
|
+
interface MagickoAlignLeft2Props extends React.SVGProps<SVGSVGElement> {
|
|
4490
|
+
size?: number | string;
|
|
4491
|
+
}
|
|
4492
|
+
/**
|
|
4493
|
+
* MagickoAlignLeft2 icon component
|
|
4494
|
+
* @example
|
|
4495
|
+
* ```tsx
|
|
4496
|
+
* import { MagickoAlignLeft2 } from 'magick-icons';
|
|
4497
|
+
*
|
|
4498
|
+
* <MagickoAlignLeft2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4499
|
+
* ```
|
|
4500
|
+
*/
|
|
4501
|
+
declare const MagickoAlignLeft2: React.ForwardRefExoticComponent<Omit<MagickoAlignLeft2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4502
|
+
|
|
4503
|
+
/**
|
|
4504
|
+
* Props for the MagickoAlignRight icon component
|
|
4505
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4506
|
+
*/
|
|
4507
|
+
interface MagickoAlignRightProps extends React.SVGProps<SVGSVGElement> {
|
|
4508
|
+
size?: number | string;
|
|
4509
|
+
}
|
|
4510
|
+
/**
|
|
4511
|
+
* MagickoAlignRight icon component
|
|
4512
|
+
* @example
|
|
4513
|
+
* ```tsx
|
|
4514
|
+
* import { MagickoAlignRight } from 'magick-icons';
|
|
4515
|
+
*
|
|
4516
|
+
* <MagickoAlignRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
4517
|
+
* ```
|
|
4518
|
+
*/
|
|
4519
|
+
declare const MagickoAlignRight: React.ForwardRefExoticComponent<Omit<MagickoAlignRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4520
|
+
|
|
4521
|
+
/**
|
|
4522
|
+
* Props for the MagickoAlignTop icon component
|
|
4523
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4524
|
+
*/
|
|
4525
|
+
interface MagickoAlignTopProps extends React.SVGProps<SVGSVGElement> {
|
|
4526
|
+
size?: number | string;
|
|
4527
|
+
}
|
|
4528
|
+
/**
|
|
4529
|
+
* MagickoAlignTop icon component
|
|
4530
|
+
* @example
|
|
4531
|
+
* ```tsx
|
|
4532
|
+
* import { MagickoAlignTop } from 'magick-icons';
|
|
4533
|
+
*
|
|
4534
|
+
* <MagickoAlignTop size={24} className="text-blue-500" strokeWidth={2} />
|
|
4535
|
+
* ```
|
|
4536
|
+
*/
|
|
4537
|
+
declare const MagickoAlignTop: React.ForwardRefExoticComponent<Omit<MagickoAlignTopProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4538
|
+
|
|
4539
|
+
/**
|
|
4540
|
+
* Props for the MagickoAlignTop2 icon component
|
|
4541
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4542
|
+
*/
|
|
4543
|
+
interface MagickoAlignTop2Props extends React.SVGProps<SVGSVGElement> {
|
|
4544
|
+
size?: number | string;
|
|
4545
|
+
}
|
|
4546
|
+
/**
|
|
4547
|
+
* MagickoAlignTop2 icon component
|
|
4548
|
+
* @example
|
|
4549
|
+
* ```tsx
|
|
4550
|
+
* import { MagickoAlignTop2 } from 'magick-icons';
|
|
4551
|
+
*
|
|
4552
|
+
* <MagickoAlignTop2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4553
|
+
* ```
|
|
4554
|
+
*/
|
|
4555
|
+
declare const MagickoAlignTop2: React.ForwardRefExoticComponent<Omit<MagickoAlignTop2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4556
|
+
|
|
4557
|
+
/**
|
|
4558
|
+
* Props for the MagickoAlignVertically icon component
|
|
4559
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4560
|
+
*/
|
|
4561
|
+
interface MagickoAlignVerticallyProps extends React.SVGProps<SVGSVGElement> {
|
|
4562
|
+
size?: number | string;
|
|
4563
|
+
}
|
|
4564
|
+
/**
|
|
4565
|
+
* MagickoAlignVertically icon component
|
|
4566
|
+
* @example
|
|
4567
|
+
* ```tsx
|
|
4568
|
+
* import { MagickoAlignVertically } from 'magick-icons';
|
|
4569
|
+
*
|
|
4570
|
+
* <MagickoAlignVertically size={24} className="text-blue-500" strokeWidth={2} />
|
|
4571
|
+
* ```
|
|
4572
|
+
*/
|
|
4573
|
+
declare const MagickoAlignVertically: React.ForwardRefExoticComponent<Omit<MagickoAlignVerticallyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4574
|
+
|
|
4575
|
+
/**
|
|
4576
|
+
* Props for the MagickoAquarius icon component
|
|
4577
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4578
|
+
*/
|
|
4579
|
+
interface MagickoAquariusProps extends React.SVGProps<SVGSVGElement> {
|
|
4580
|
+
size?: number | string;
|
|
4581
|
+
}
|
|
4582
|
+
/**
|
|
4583
|
+
* MagickoAquarius icon component
|
|
4584
|
+
* @example
|
|
4585
|
+
* ```tsx
|
|
4586
|
+
* import { MagickoAquarius } from 'magick-icons';
|
|
4587
|
+
*
|
|
4588
|
+
* <MagickoAquarius size={24} className="text-blue-500" strokeWidth={2} />
|
|
4589
|
+
* ```
|
|
4590
|
+
*/
|
|
4591
|
+
declare const MagickoAquarius: React.ForwardRefExoticComponent<Omit<MagickoAquariusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4592
|
+
|
|
4593
|
+
/**
|
|
4594
|
+
* Props for the MagickoArchive icon component
|
|
4595
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4596
|
+
*/
|
|
4597
|
+
interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {
|
|
4598
|
+
size?: number | string;
|
|
4599
|
+
}
|
|
4600
|
+
/**
|
|
4601
|
+
* MagickoArchive icon component
|
|
4602
|
+
* @example
|
|
4603
|
+
* ```tsx
|
|
4604
|
+
* import { MagickoArchive } from 'magick-icons';
|
|
4605
|
+
*
|
|
4606
|
+
* <MagickoArchive size={24} className="text-blue-500" strokeWidth={2} />
|
|
4607
|
+
* ```
|
|
4608
|
+
*/
|
|
4609
|
+
declare const MagickoArchive: React.ForwardRefExoticComponent<Omit<MagickoArchiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4610
|
+
|
|
4611
|
+
/**
|
|
4612
|
+
* Props for the MagickoArchive1 icon component
|
|
4613
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4614
|
+
*/
|
|
4615
|
+
interface MagickoArchive1Props extends React.SVGProps<SVGSVGElement> {
|
|
4616
|
+
size?: number | string;
|
|
4617
|
+
}
|
|
4618
|
+
/**
|
|
4619
|
+
* MagickoArchive1 icon component
|
|
4620
|
+
* @example
|
|
4621
|
+
* ```tsx
|
|
4622
|
+
* import { MagickoArchive1 } from 'magick-icons';
|
|
4623
|
+
*
|
|
4624
|
+
* <MagickoArchive1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4625
|
+
* ```
|
|
4626
|
+
*/
|
|
4627
|
+
declare const MagickoArchive1: React.ForwardRefExoticComponent<Omit<MagickoArchive1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4628
|
+
|
|
4629
|
+
/**
|
|
4630
|
+
* Props for the MagickoArchive2 icon component
|
|
4631
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4632
|
+
*/
|
|
4633
|
+
interface MagickoArchive2Props extends React.SVGProps<SVGSVGElement> {
|
|
4634
|
+
size?: number | string;
|
|
4635
|
+
}
|
|
4636
|
+
/**
|
|
4637
|
+
* MagickoArchive2 icon component
|
|
4638
|
+
* @example
|
|
4639
|
+
* ```tsx
|
|
4640
|
+
* import { MagickoArchive2 } from 'magick-icons';
|
|
4641
|
+
*
|
|
4642
|
+
* <MagickoArchive2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4643
|
+
* ```
|
|
4644
|
+
*/
|
|
4645
|
+
declare const MagickoArchive2: React.ForwardRefExoticComponent<Omit<MagickoArchive2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4646
|
+
|
|
4647
|
+
/**
|
|
4648
|
+
* Props for the MagickoArchiveAdd icon component
|
|
4649
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4650
|
+
*/
|
|
4651
|
+
interface MagickoArchiveAddProps extends React.SVGProps<SVGSVGElement> {
|
|
4652
|
+
size?: number | string;
|
|
4653
|
+
}
|
|
4654
|
+
/**
|
|
4655
|
+
* MagickoArchiveAdd icon component
|
|
4656
|
+
* @example
|
|
4657
|
+
* ```tsx
|
|
4658
|
+
* import { MagickoArchiveAdd } from 'magick-icons';
|
|
4659
|
+
*
|
|
4660
|
+
* <MagickoArchiveAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
4661
|
+
* ```
|
|
4662
|
+
*/
|
|
4663
|
+
declare const MagickoArchiveAdd: React.ForwardRefExoticComponent<Omit<MagickoArchiveAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4664
|
+
|
|
4665
|
+
/**
|
|
4666
|
+
* Props for the MagickoArchiveBook1 icon component
|
|
4667
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4668
|
+
*/
|
|
4669
|
+
interface MagickoArchiveBook1Props extends React.SVGProps<SVGSVGElement> {
|
|
4670
|
+
size?: number | string;
|
|
4671
|
+
}
|
|
4672
|
+
/**
|
|
4673
|
+
* MagickoArchiveBook1 icon component
|
|
4674
|
+
* @example
|
|
4675
|
+
* ```tsx
|
|
4676
|
+
* import { MagickoArchiveBook1 } from 'magick-icons';
|
|
4677
|
+
*
|
|
4678
|
+
* <MagickoArchiveBook1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
4679
|
+
* ```
|
|
4680
|
+
*/
|
|
4681
|
+
declare const MagickoArchiveBook1: React.ForwardRefExoticComponent<Omit<MagickoArchiveBook1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4682
|
+
|
|
4683
|
+
/**
|
|
4684
|
+
* Props for the MagickoArchiveMinus icon component
|
|
4685
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4686
|
+
*/
|
|
4687
|
+
interface MagickoArchiveMinusProps extends React.SVGProps<SVGSVGElement> {
|
|
4688
|
+
size?: number | string;
|
|
4689
|
+
}
|
|
4690
|
+
/**
|
|
4691
|
+
* MagickoArchiveMinus icon component
|
|
4692
|
+
* @example
|
|
4693
|
+
* ```tsx
|
|
4694
|
+
* import { MagickoArchiveMinus } from 'magick-icons';
|
|
4695
|
+
*
|
|
4696
|
+
* <MagickoArchiveMinus size={24} className="text-blue-500" strokeWidth={2} />
|
|
4697
|
+
* ```
|
|
4698
|
+
*/
|
|
4699
|
+
declare const MagickoArchiveMinus: React.ForwardRefExoticComponent<Omit<MagickoArchiveMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4700
|
+
|
|
4701
|
+
/**
|
|
4702
|
+
* Props for the MagickoArchiveSlash icon component
|
|
4703
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4704
|
+
*/
|
|
4705
|
+
interface MagickoArchiveSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
4706
|
+
size?: number | string;
|
|
4707
|
+
}
|
|
4708
|
+
/**
|
|
4709
|
+
* MagickoArchiveSlash icon component
|
|
4710
|
+
* @example
|
|
4711
|
+
* ```tsx
|
|
4712
|
+
* import { MagickoArchiveSlash } from 'magick-icons';
|
|
4713
|
+
*
|
|
4714
|
+
* <MagickoArchiveSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
4715
|
+
* ```
|
|
4716
|
+
*/
|
|
4717
|
+
declare const MagickoArchiveSlash: React.ForwardRefExoticComponent<Omit<MagickoArchiveSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4718
|
+
|
|
4719
|
+
/**
|
|
4720
|
+
* Props for the MagickoArchiveTick icon component
|
|
4721
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4722
|
+
*/
|
|
4723
|
+
interface MagickoArchiveTickProps extends React.SVGProps<SVGSVGElement> {
|
|
4724
|
+
size?: number | string;
|
|
4725
|
+
}
|
|
4726
|
+
/**
|
|
4727
|
+
* MagickoArchiveTick icon component
|
|
4728
|
+
* @example
|
|
4729
|
+
* ```tsx
|
|
4730
|
+
* import { MagickoArchiveTick } from 'magick-icons';
|
|
4731
|
+
*
|
|
4732
|
+
* <MagickoArchiveTick size={24} className="text-blue-500" strokeWidth={2} />
|
|
4733
|
+
* ```
|
|
4734
|
+
*/
|
|
4735
|
+
declare const MagickoArchiveTick: React.ForwardRefExoticComponent<Omit<MagickoArchiveTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4736
|
+
|
|
4737
|
+
/**
|
|
4738
|
+
* Props for the MagickoArrowBack icon component
|
|
4739
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4740
|
+
*/
|
|
4741
|
+
interface MagickoArrowBackProps extends React.SVGProps<SVGSVGElement> {
|
|
4742
|
+
size?: number | string;
|
|
4743
|
+
}
|
|
4744
|
+
/**
|
|
4745
|
+
* MagickoArrowBack icon component
|
|
4746
|
+
* @example
|
|
4747
|
+
* ```tsx
|
|
4748
|
+
* import { MagickoArrowBack } from 'magick-icons';
|
|
4749
|
+
*
|
|
4750
|
+
* <MagickoArrowBack size={24} className="text-blue-500" strokeWidth={2} />
|
|
4751
|
+
* ```
|
|
4752
|
+
*/
|
|
4753
|
+
declare const MagickoArrowBack: React.ForwardRefExoticComponent<Omit<MagickoArrowBackProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4754
|
+
|
|
4215
4755
|
/**
|
|
4216
4756
|
* Props for the MagickoCheck icon component
|
|
4217
4757
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -4518,4 +5058,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
4518
5058
|
*/
|
|
4519
5059
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4520
5060
|
|
|
4521
|
-
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, MagickoCheck, type MagickoCheckProps, 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 };
|
|
5061
|
+
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, MagickoArrowBack, type MagickoArrowBackProps, MagickoCheck, type MagickoCheckProps, 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 };
|