magick-icons 0.1.231 → 0.1.232
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 +509 -67
- package/index.js.map +1 -1
- package/index.mjs +483 -71
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9090,6 +9090,546 @@ interface MagickoExitArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
|
9090
9090
|
*/
|
|
9091
9091
|
declare const MagickoExitArrow01: React.ForwardRefExoticComponent<Omit<MagickoExitArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9092
9092
|
|
|
9093
|
+
/**
|
|
9094
|
+
* Props for the MagickoExitArrow02 icon component
|
|
9095
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9096
|
+
*/
|
|
9097
|
+
interface MagickoExitArrow02Props extends React.SVGProps<SVGSVGElement> {
|
|
9098
|
+
size?: number | string;
|
|
9099
|
+
}
|
|
9100
|
+
/**
|
|
9101
|
+
* MagickoExitArrow02 icon component
|
|
9102
|
+
* @example
|
|
9103
|
+
* ```tsx
|
|
9104
|
+
* import { MagickoExitArrow02 } from 'magick-icons';
|
|
9105
|
+
*
|
|
9106
|
+
* <MagickoExitArrow02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9107
|
+
* ```
|
|
9108
|
+
*/
|
|
9109
|
+
declare const MagickoExitArrow02: React.ForwardRefExoticComponent<Omit<MagickoExitArrow02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9110
|
+
|
|
9111
|
+
/**
|
|
9112
|
+
* Props for the MagickoExitArrow03 icon component
|
|
9113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9114
|
+
*/
|
|
9115
|
+
interface MagickoExitArrow03Props extends React.SVGProps<SVGSVGElement> {
|
|
9116
|
+
size?: number | string;
|
|
9117
|
+
}
|
|
9118
|
+
/**
|
|
9119
|
+
* MagickoExitArrow03 icon component
|
|
9120
|
+
* @example
|
|
9121
|
+
* ```tsx
|
|
9122
|
+
* import { MagickoExitArrow03 } from 'magick-icons';
|
|
9123
|
+
*
|
|
9124
|
+
* <MagickoExitArrow03 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9125
|
+
* ```
|
|
9126
|
+
*/
|
|
9127
|
+
declare const MagickoExitArrow03: React.ForwardRefExoticComponent<Omit<MagickoExitArrow03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9128
|
+
|
|
9129
|
+
/**
|
|
9130
|
+
* Props for the MagickoExport01 icon component
|
|
9131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9132
|
+
*/
|
|
9133
|
+
interface MagickoExport01Props extends React.SVGProps<SVGSVGElement> {
|
|
9134
|
+
size?: number | string;
|
|
9135
|
+
}
|
|
9136
|
+
/**
|
|
9137
|
+
* MagickoExport01 icon component
|
|
9138
|
+
* @example
|
|
9139
|
+
* ```tsx
|
|
9140
|
+
* import { MagickoExport01 } from 'magick-icons';
|
|
9141
|
+
*
|
|
9142
|
+
* <MagickoExport01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9143
|
+
* ```
|
|
9144
|
+
*/
|
|
9145
|
+
declare const MagickoExport01: React.ForwardRefExoticComponent<Omit<MagickoExport01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9146
|
+
|
|
9147
|
+
/**
|
|
9148
|
+
* Props for the MagickoExportArrow01 icon component
|
|
9149
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9150
|
+
*/
|
|
9151
|
+
interface MagickoExportArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
9152
|
+
size?: number | string;
|
|
9153
|
+
}
|
|
9154
|
+
/**
|
|
9155
|
+
* MagickoExportArrow01 icon component
|
|
9156
|
+
* @example
|
|
9157
|
+
* ```tsx
|
|
9158
|
+
* import { MagickoExportArrow01 } from 'magick-icons';
|
|
9159
|
+
*
|
|
9160
|
+
* <MagickoExportArrow01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9161
|
+
* ```
|
|
9162
|
+
*/
|
|
9163
|
+
declare const MagickoExportArrow01: React.ForwardRefExoticComponent<Omit<MagickoExportArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9164
|
+
|
|
9165
|
+
/**
|
|
9166
|
+
* Props for the MagickoExportArrow02 icon component
|
|
9167
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9168
|
+
*/
|
|
9169
|
+
interface MagickoExportArrow02Props extends React.SVGProps<SVGSVGElement> {
|
|
9170
|
+
size?: number | string;
|
|
9171
|
+
}
|
|
9172
|
+
/**
|
|
9173
|
+
* MagickoExportArrow02 icon component
|
|
9174
|
+
* @example
|
|
9175
|
+
* ```tsx
|
|
9176
|
+
* import { MagickoExportArrow02 } from 'magick-icons';
|
|
9177
|
+
*
|
|
9178
|
+
* <MagickoExportArrow02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9179
|
+
* ```
|
|
9180
|
+
*/
|
|
9181
|
+
declare const MagickoExportArrow02: React.ForwardRefExoticComponent<Omit<MagickoExportArrow02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9182
|
+
|
|
9183
|
+
/**
|
|
9184
|
+
* Props for the MagickoExportCircle01 icon component
|
|
9185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9186
|
+
*/
|
|
9187
|
+
interface MagickoExportCircle01Props extends React.SVGProps<SVGSVGElement> {
|
|
9188
|
+
size?: number | string;
|
|
9189
|
+
}
|
|
9190
|
+
/**
|
|
9191
|
+
* MagickoExportCircle01 icon component
|
|
9192
|
+
* @example
|
|
9193
|
+
* ```tsx
|
|
9194
|
+
* import { MagickoExportCircle01 } from 'magick-icons';
|
|
9195
|
+
*
|
|
9196
|
+
* <MagickoExportCircle01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9197
|
+
* ```
|
|
9198
|
+
*/
|
|
9199
|
+
declare const MagickoExportCircle01: React.ForwardRefExoticComponent<Omit<MagickoExportCircle01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9200
|
+
|
|
9201
|
+
/**
|
|
9202
|
+
* Props for the MagickoExportCircle02 icon component
|
|
9203
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9204
|
+
*/
|
|
9205
|
+
interface MagickoExportCircle02Props extends React.SVGProps<SVGSVGElement> {
|
|
9206
|
+
size?: number | string;
|
|
9207
|
+
}
|
|
9208
|
+
/**
|
|
9209
|
+
* MagickoExportCircle02 icon component
|
|
9210
|
+
* @example
|
|
9211
|
+
* ```tsx
|
|
9212
|
+
* import { MagickoExportCircle02 } from 'magick-icons';
|
|
9213
|
+
*
|
|
9214
|
+
* <MagickoExportCircle02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9215
|
+
* ```
|
|
9216
|
+
*/
|
|
9217
|
+
declare const MagickoExportCircle02: React.ForwardRefExoticComponent<Omit<MagickoExportCircle02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9218
|
+
|
|
9219
|
+
/**
|
|
9220
|
+
* Props for the MagickoExposure icon component
|
|
9221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9222
|
+
*/
|
|
9223
|
+
interface MagickoExposureProps extends React.SVGProps<SVGSVGElement> {
|
|
9224
|
+
size?: number | string;
|
|
9225
|
+
}
|
|
9226
|
+
/**
|
|
9227
|
+
* MagickoExposure icon component
|
|
9228
|
+
* @example
|
|
9229
|
+
* ```tsx
|
|
9230
|
+
* import { MagickoExposure } from 'magick-icons';
|
|
9231
|
+
*
|
|
9232
|
+
* <MagickoExposure size={24} className="text-blue-500" strokeWidth={2} />
|
|
9233
|
+
* ```
|
|
9234
|
+
*/
|
|
9235
|
+
declare const MagickoExposure: React.ForwardRefExoticComponent<Omit<MagickoExposureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9236
|
+
|
|
9237
|
+
/**
|
|
9238
|
+
* Props for the MagickoExposure2 icon component
|
|
9239
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9240
|
+
*/
|
|
9241
|
+
interface MagickoExposure2Props extends React.SVGProps<SVGSVGElement> {
|
|
9242
|
+
size?: number | string;
|
|
9243
|
+
}
|
|
9244
|
+
/**
|
|
9245
|
+
* MagickoExposure2 icon component
|
|
9246
|
+
* @example
|
|
9247
|
+
* ```tsx
|
|
9248
|
+
* import { MagickoExposure2 } from 'magick-icons';
|
|
9249
|
+
*
|
|
9250
|
+
* <MagickoExposure2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9251
|
+
* ```
|
|
9252
|
+
*/
|
|
9253
|
+
declare const MagickoExposure2: React.ForwardRefExoticComponent<Omit<MagickoExposure2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9254
|
+
|
|
9255
|
+
/**
|
|
9256
|
+
* Props for the MagickoExternalDrive icon component
|
|
9257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9258
|
+
*/
|
|
9259
|
+
interface MagickoExternalDriveProps extends React.SVGProps<SVGSVGElement> {
|
|
9260
|
+
size?: number | string;
|
|
9261
|
+
}
|
|
9262
|
+
/**
|
|
9263
|
+
* MagickoExternalDrive icon component
|
|
9264
|
+
* @example
|
|
9265
|
+
* ```tsx
|
|
9266
|
+
* import { MagickoExternalDrive } from 'magick-icons';
|
|
9267
|
+
*
|
|
9268
|
+
* <MagickoExternalDrive size={24} className="text-blue-500" strokeWidth={2} />
|
|
9269
|
+
* ```
|
|
9270
|
+
*/
|
|
9271
|
+
declare const MagickoExternalDrive: React.ForwardRefExoticComponent<Omit<MagickoExternalDriveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9272
|
+
|
|
9273
|
+
/**
|
|
9274
|
+
* Props for the MagickoEye icon component
|
|
9275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9276
|
+
*/
|
|
9277
|
+
interface MagickoEyeProps extends React.SVGProps<SVGSVGElement> {
|
|
9278
|
+
size?: number | string;
|
|
9279
|
+
}
|
|
9280
|
+
/**
|
|
9281
|
+
* MagickoEye icon component
|
|
9282
|
+
* @example
|
|
9283
|
+
* ```tsx
|
|
9284
|
+
* import { MagickoEye } from 'magick-icons';
|
|
9285
|
+
*
|
|
9286
|
+
* <MagickoEye size={24} className="text-blue-500" strokeWidth={2} />
|
|
9287
|
+
* ```
|
|
9288
|
+
*/
|
|
9289
|
+
declare const MagickoEye: React.ForwardRefExoticComponent<Omit<MagickoEyeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9290
|
+
|
|
9291
|
+
/**
|
|
9292
|
+
* Props for the MagickoEyeSlash icon component
|
|
9293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9294
|
+
*/
|
|
9295
|
+
interface MagickoEyeSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
9296
|
+
size?: number | string;
|
|
9297
|
+
}
|
|
9298
|
+
/**
|
|
9299
|
+
* MagickoEyeSlash icon component
|
|
9300
|
+
* @example
|
|
9301
|
+
* ```tsx
|
|
9302
|
+
* import { MagickoEyeSlash } from 'magick-icons';
|
|
9303
|
+
*
|
|
9304
|
+
* <MagickoEyeSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
9305
|
+
* ```
|
|
9306
|
+
*/
|
|
9307
|
+
declare const MagickoEyeSlash: React.ForwardRefExoticComponent<Omit<MagickoEyeSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9308
|
+
|
|
9309
|
+
/**
|
|
9310
|
+
* Props for the MagickoFavoriteChart icon component
|
|
9311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9312
|
+
*/
|
|
9313
|
+
interface MagickoFavoriteChartProps extends React.SVGProps<SVGSVGElement> {
|
|
9314
|
+
size?: number | string;
|
|
9315
|
+
}
|
|
9316
|
+
/**
|
|
9317
|
+
* MagickoFavoriteChart icon component
|
|
9318
|
+
* @example
|
|
9319
|
+
* ```tsx
|
|
9320
|
+
* import { MagickoFavoriteChart } from 'magick-icons';
|
|
9321
|
+
*
|
|
9322
|
+
* <MagickoFavoriteChart size={24} className="text-blue-500" strokeWidth={2} />
|
|
9323
|
+
* ```
|
|
9324
|
+
*/
|
|
9325
|
+
declare const MagickoFavoriteChart: React.ForwardRefExoticComponent<Omit<MagickoFavoriteChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9326
|
+
|
|
9327
|
+
/**
|
|
9328
|
+
* Props for the MagickoFileCheck icon component
|
|
9329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9330
|
+
*/
|
|
9331
|
+
interface MagickoFileCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
9332
|
+
size?: number | string;
|
|
9333
|
+
}
|
|
9334
|
+
/**
|
|
9335
|
+
* MagickoFileCheck icon component
|
|
9336
|
+
* @example
|
|
9337
|
+
* ```tsx
|
|
9338
|
+
* import { MagickoFileCheck } from 'magick-icons';
|
|
9339
|
+
*
|
|
9340
|
+
* <MagickoFileCheck size={24} className="text-blue-500" strokeWidth={2} />
|
|
9341
|
+
* ```
|
|
9342
|
+
*/
|
|
9343
|
+
declare const MagickoFileCheck: React.ForwardRefExoticComponent<Omit<MagickoFileCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9344
|
+
|
|
9345
|
+
/**
|
|
9346
|
+
* Props for the MagickoFilter icon component
|
|
9347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9348
|
+
*/
|
|
9349
|
+
interface MagickoFilterProps extends React.SVGProps<SVGSVGElement> {
|
|
9350
|
+
size?: number | string;
|
|
9351
|
+
}
|
|
9352
|
+
/**
|
|
9353
|
+
* MagickoFilter icon component
|
|
9354
|
+
* @example
|
|
9355
|
+
* ```tsx
|
|
9356
|
+
* import { MagickoFilter } from 'magick-icons';
|
|
9357
|
+
*
|
|
9358
|
+
* <MagickoFilter size={24} className="text-blue-500" strokeWidth={2} />
|
|
9359
|
+
* ```
|
|
9360
|
+
*/
|
|
9361
|
+
declare const MagickoFilter: React.ForwardRefExoticComponent<Omit<MagickoFilterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9362
|
+
|
|
9363
|
+
/**
|
|
9364
|
+
* Props for the MagickoFingerCross icon component
|
|
9365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9366
|
+
*/
|
|
9367
|
+
interface MagickoFingerCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
9368
|
+
size?: number | string;
|
|
9369
|
+
}
|
|
9370
|
+
/**
|
|
9371
|
+
* MagickoFingerCross icon component
|
|
9372
|
+
* @example
|
|
9373
|
+
* ```tsx
|
|
9374
|
+
* import { MagickoFingerCross } from 'magick-icons';
|
|
9375
|
+
*
|
|
9376
|
+
* <MagickoFingerCross size={24} className="text-blue-500" strokeWidth={2} />
|
|
9377
|
+
* ```
|
|
9378
|
+
*/
|
|
9379
|
+
declare const MagickoFingerCross: React.ForwardRefExoticComponent<Omit<MagickoFingerCrossProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9380
|
+
|
|
9381
|
+
/**
|
|
9382
|
+
* Props for the MagickoFingerToshield icon component
|
|
9383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9384
|
+
*/
|
|
9385
|
+
interface MagickoFingerToshieldProps extends React.SVGProps<SVGSVGElement> {
|
|
9386
|
+
size?: number | string;
|
|
9387
|
+
}
|
|
9388
|
+
/**
|
|
9389
|
+
* MagickoFingerToshield icon component
|
|
9390
|
+
* @example
|
|
9391
|
+
* ```tsx
|
|
9392
|
+
* import { MagickoFingerToshield } from 'magick-icons';
|
|
9393
|
+
*
|
|
9394
|
+
* <MagickoFingerToshield size={24} className="text-blue-500" strokeWidth={2} />
|
|
9395
|
+
* ```
|
|
9396
|
+
*/
|
|
9397
|
+
declare const MagickoFingerToshield: React.ForwardRefExoticComponent<Omit<MagickoFingerToshieldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9398
|
+
|
|
9399
|
+
/**
|
|
9400
|
+
* Props for the MagickoFirstline icon component
|
|
9401
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9402
|
+
*/
|
|
9403
|
+
interface MagickoFirstlineProps extends React.SVGProps<SVGSVGElement> {
|
|
9404
|
+
size?: number | string;
|
|
9405
|
+
}
|
|
9406
|
+
/**
|
|
9407
|
+
* MagickoFirstline icon component
|
|
9408
|
+
* @example
|
|
9409
|
+
* ```tsx
|
|
9410
|
+
* import { MagickoFirstline } from 'magick-icons';
|
|
9411
|
+
*
|
|
9412
|
+
* <MagickoFirstline size={24} className="text-blue-500" strokeWidth={2} />
|
|
9413
|
+
* ```
|
|
9414
|
+
*/
|
|
9415
|
+
declare const MagickoFirstline: React.ForwardRefExoticComponent<Omit<MagickoFirstlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9416
|
+
|
|
9417
|
+
/**
|
|
9418
|
+
* Props for the MagickoFlag icon component
|
|
9419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9420
|
+
*/
|
|
9421
|
+
interface MagickoFlagProps extends React.SVGProps<SVGSVGElement> {
|
|
9422
|
+
size?: number | string;
|
|
9423
|
+
}
|
|
9424
|
+
/**
|
|
9425
|
+
* MagickoFlag icon component
|
|
9426
|
+
* @example
|
|
9427
|
+
* ```tsx
|
|
9428
|
+
* import { MagickoFlag } from 'magick-icons';
|
|
9429
|
+
*
|
|
9430
|
+
* <MagickoFlag size={24} className="text-blue-500" strokeWidth={2} />
|
|
9431
|
+
* ```
|
|
9432
|
+
*/
|
|
9433
|
+
declare const MagickoFlag: React.ForwardRefExoticComponent<Omit<MagickoFlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9434
|
+
|
|
9435
|
+
/**
|
|
9436
|
+
* Props for the MagickoFlash icon component
|
|
9437
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9438
|
+
*/
|
|
9439
|
+
interface MagickoFlashProps extends React.SVGProps<SVGSVGElement> {
|
|
9440
|
+
size?: number | string;
|
|
9441
|
+
}
|
|
9442
|
+
/**
|
|
9443
|
+
* MagickoFlash icon component
|
|
9444
|
+
* @example
|
|
9445
|
+
* ```tsx
|
|
9446
|
+
* import { MagickoFlash } from 'magick-icons';
|
|
9447
|
+
*
|
|
9448
|
+
* <MagickoFlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
9449
|
+
* ```
|
|
9450
|
+
*/
|
|
9451
|
+
declare const MagickoFlash: React.ForwardRefExoticComponent<Omit<MagickoFlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9452
|
+
|
|
9453
|
+
/**
|
|
9454
|
+
* Props for the MagickoFlashSlash icon component
|
|
9455
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9456
|
+
*/
|
|
9457
|
+
interface MagickoFlashSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
9458
|
+
size?: number | string;
|
|
9459
|
+
}
|
|
9460
|
+
/**
|
|
9461
|
+
* MagickoFlashSlash icon component
|
|
9462
|
+
* @example
|
|
9463
|
+
* ```tsx
|
|
9464
|
+
* import { MagickoFlashSlash } from 'magick-icons';
|
|
9465
|
+
*
|
|
9466
|
+
* <MagickoFlashSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
9467
|
+
* ```
|
|
9468
|
+
*/
|
|
9469
|
+
declare const MagickoFlashSlash: React.ForwardRefExoticComponent<Omit<MagickoFlashSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9470
|
+
|
|
9471
|
+
/**
|
|
9472
|
+
* Props for the MagickoFlask icon component
|
|
9473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9474
|
+
*/
|
|
9475
|
+
interface MagickoFlaskProps extends React.SVGProps<SVGSVGElement> {
|
|
9476
|
+
size?: number | string;
|
|
9477
|
+
}
|
|
9478
|
+
/**
|
|
9479
|
+
* MagickoFlask icon component
|
|
9480
|
+
* @example
|
|
9481
|
+
* ```tsx
|
|
9482
|
+
* import { MagickoFlask } from 'magick-icons';
|
|
9483
|
+
*
|
|
9484
|
+
* <MagickoFlask size={24} className="text-blue-500" strokeWidth={2} />
|
|
9485
|
+
* ```
|
|
9486
|
+
*/
|
|
9487
|
+
declare const MagickoFlask: React.ForwardRefExoticComponent<Omit<MagickoFlaskProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9488
|
+
|
|
9489
|
+
/**
|
|
9490
|
+
* Props for the MagickoFlower icon component
|
|
9491
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9492
|
+
*/
|
|
9493
|
+
interface MagickoFlowerProps extends React.SVGProps<SVGSVGElement> {
|
|
9494
|
+
size?: number | string;
|
|
9495
|
+
}
|
|
9496
|
+
/**
|
|
9497
|
+
* MagickoFlower icon component
|
|
9498
|
+
* @example
|
|
9499
|
+
* ```tsx
|
|
9500
|
+
* import { MagickoFlower } from 'magick-icons';
|
|
9501
|
+
*
|
|
9502
|
+
* <MagickoFlower size={24} className="text-blue-500" strokeWidth={2} />
|
|
9503
|
+
* ```
|
|
9504
|
+
*/
|
|
9505
|
+
declare const MagickoFlower: React.ForwardRefExoticComponent<Omit<MagickoFlowerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9506
|
+
|
|
9507
|
+
/**
|
|
9508
|
+
* Props for the MagickoFolder2 icon component
|
|
9509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9510
|
+
*/
|
|
9511
|
+
interface MagickoFolder2Props extends React.SVGProps<SVGSVGElement> {
|
|
9512
|
+
size?: number | string;
|
|
9513
|
+
}
|
|
9514
|
+
/**
|
|
9515
|
+
* MagickoFolder2 icon component
|
|
9516
|
+
* @example
|
|
9517
|
+
* ```tsx
|
|
9518
|
+
* import { MagickoFolder2 } from 'magick-icons';
|
|
9519
|
+
*
|
|
9520
|
+
* <MagickoFolder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9521
|
+
* ```
|
|
9522
|
+
*/
|
|
9523
|
+
declare const MagickoFolder2: React.ForwardRefExoticComponent<Omit<MagickoFolder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9524
|
+
|
|
9525
|
+
/**
|
|
9526
|
+
* Props for the MagickoFolderAdd icon component
|
|
9527
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9528
|
+
*/
|
|
9529
|
+
interface MagickoFolderAddProps extends React.SVGProps<SVGSVGElement> {
|
|
9530
|
+
size?: number | string;
|
|
9531
|
+
}
|
|
9532
|
+
/**
|
|
9533
|
+
* MagickoFolderAdd icon component
|
|
9534
|
+
* @example
|
|
9535
|
+
* ```tsx
|
|
9536
|
+
* import { MagickoFolderAdd } from 'magick-icons';
|
|
9537
|
+
*
|
|
9538
|
+
* <MagickoFolderAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
9539
|
+
* ```
|
|
9540
|
+
*/
|
|
9541
|
+
declare const MagickoFolderAdd: React.ForwardRefExoticComponent<Omit<MagickoFolderAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9542
|
+
|
|
9543
|
+
/**
|
|
9544
|
+
* Props for the MagickoFolderCloud icon component
|
|
9545
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9546
|
+
*/
|
|
9547
|
+
interface MagickoFolderCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
9548
|
+
size?: number | string;
|
|
9549
|
+
}
|
|
9550
|
+
/**
|
|
9551
|
+
* MagickoFolderCloud icon component
|
|
9552
|
+
* @example
|
|
9553
|
+
* ```tsx
|
|
9554
|
+
* import { MagickoFolderCloud } from 'magick-icons';
|
|
9555
|
+
*
|
|
9556
|
+
* <MagickoFolderCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
9557
|
+
* ```
|
|
9558
|
+
*/
|
|
9559
|
+
declare const MagickoFolderCloud: React.ForwardRefExoticComponent<Omit<MagickoFolderCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9560
|
+
|
|
9561
|
+
/**
|
|
9562
|
+
* Props for the MagickoFolderConnection icon component
|
|
9563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9564
|
+
*/
|
|
9565
|
+
interface MagickoFolderConnectionProps extends React.SVGProps<SVGSVGElement> {
|
|
9566
|
+
size?: number | string;
|
|
9567
|
+
}
|
|
9568
|
+
/**
|
|
9569
|
+
* MagickoFolderConnection icon component
|
|
9570
|
+
* @example
|
|
9571
|
+
* ```tsx
|
|
9572
|
+
* import { MagickoFolderConnection } from 'magick-icons';
|
|
9573
|
+
*
|
|
9574
|
+
* <MagickoFolderConnection size={24} className="text-blue-500" strokeWidth={2} />
|
|
9575
|
+
* ```
|
|
9576
|
+
*/
|
|
9577
|
+
declare const MagickoFolderConnection: React.ForwardRefExoticComponent<Omit<MagickoFolderConnectionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9578
|
+
|
|
9579
|
+
/**
|
|
9580
|
+
* Props for the MagickoFolderCross icon component
|
|
9581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9582
|
+
*/
|
|
9583
|
+
interface MagickoFolderCrossProps extends React.SVGProps<SVGSVGElement> {
|
|
9584
|
+
size?: number | string;
|
|
9585
|
+
}
|
|
9586
|
+
/**
|
|
9587
|
+
* MagickoFolderCross icon component
|
|
9588
|
+
* @example
|
|
9589
|
+
* ```tsx
|
|
9590
|
+
* import { MagickoFolderCross } from 'magick-icons';
|
|
9591
|
+
*
|
|
9592
|
+
* <MagickoFolderCross size={24} className="text-blue-500" strokeWidth={2} />
|
|
9593
|
+
* ```
|
|
9594
|
+
*/
|
|
9595
|
+
declare const MagickoFolderCross: React.ForwardRefExoticComponent<Omit<MagickoFolderCrossProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9596
|
+
|
|
9597
|
+
/**
|
|
9598
|
+
* Props for the MagickoFolderFavorite icon component
|
|
9599
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9600
|
+
*/
|
|
9601
|
+
interface MagickoFolderFavoriteProps extends React.SVGProps<SVGSVGElement> {
|
|
9602
|
+
size?: number | string;
|
|
9603
|
+
}
|
|
9604
|
+
/**
|
|
9605
|
+
* MagickoFolderFavorite icon component
|
|
9606
|
+
* @example
|
|
9607
|
+
* ```tsx
|
|
9608
|
+
* import { MagickoFolderFavorite } from 'magick-icons';
|
|
9609
|
+
*
|
|
9610
|
+
* <MagickoFolderFavorite size={24} className="text-blue-500" strokeWidth={2} />
|
|
9611
|
+
* ```
|
|
9612
|
+
*/
|
|
9613
|
+
declare const MagickoFolderFavorite: React.ForwardRefExoticComponent<Omit<MagickoFolderFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9614
|
+
|
|
9615
|
+
/**
|
|
9616
|
+
* Props for the MagickoFolderMinus icon component
|
|
9617
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9618
|
+
*/
|
|
9619
|
+
interface MagickoFolderMinusProps extends React.SVGProps<SVGSVGElement> {
|
|
9620
|
+
size?: number | string;
|
|
9621
|
+
}
|
|
9622
|
+
/**
|
|
9623
|
+
* MagickoFolderMinus icon component
|
|
9624
|
+
* @example
|
|
9625
|
+
* ```tsx
|
|
9626
|
+
* import { MagickoFolderMinus } from 'magick-icons';
|
|
9627
|
+
*
|
|
9628
|
+
* <MagickoFolderMinus size={24} className="text-blue-500" strokeWidth={2} />
|
|
9629
|
+
* ```
|
|
9630
|
+
*/
|
|
9631
|
+
declare const MagickoFolderMinus: React.ForwardRefExoticComponent<Omit<MagickoFolderMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9632
|
+
|
|
9093
9633
|
/**
|
|
9094
9634
|
* Props for the Marketing icon component
|
|
9095
9635
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -9378,4 +9918,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
9378
9918
|
*/
|
|
9379
9919
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9380
9920
|
|
|
9381
|
-
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, 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 };
|
|
9921
|
+
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, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, 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 };
|