magick-icons 0.1.228 → 0.1.230
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 +528 -71
- package/index.js.map +1 -1
- package/index.mjs +502 -75
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -7992,6 +7992,24 @@ interface MagickoDiagramProps extends React.SVGProps<SVGSVGElement> {
|
|
|
7992
7992
|
*/
|
|
7993
7993
|
declare const MagickoDiagram: React.ForwardRefExoticComponent<Omit<MagickoDiagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7994
7994
|
|
|
7995
|
+
/**
|
|
7996
|
+
* Props for the MagickoDirect icon component
|
|
7997
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
7998
|
+
*/
|
|
7999
|
+
interface MagickoDirectProps extends React.SVGProps<SVGSVGElement> {
|
|
8000
|
+
size?: number | string;
|
|
8001
|
+
}
|
|
8002
|
+
/**
|
|
8003
|
+
* MagickoDirect icon component
|
|
8004
|
+
* @example
|
|
8005
|
+
* ```tsx
|
|
8006
|
+
* import { MagickoDirect } from 'magick-icons';
|
|
8007
|
+
*
|
|
8008
|
+
* <MagickoDirect size={24} className="text-blue-500" strokeWidth={2} />
|
|
8009
|
+
* ```
|
|
8010
|
+
*/
|
|
8011
|
+
declare const MagickoDirect: React.ForwardRefExoticComponent<Omit<MagickoDirectProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8012
|
+
|
|
7995
8013
|
/**
|
|
7996
8014
|
* Props for the MagickoDirectDown icon component
|
|
7997
8015
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -8010,6 +8028,528 @@ interface MagickoDirectDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
8010
8028
|
*/
|
|
8011
8029
|
declare const MagickoDirectDown: React.ForwardRefExoticComponent<Omit<MagickoDirectDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8012
8030
|
|
|
8031
|
+
/**
|
|
8032
|
+
* Props for the MagickoDirectInbox icon component
|
|
8033
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8034
|
+
*/
|
|
8035
|
+
interface MagickoDirectInboxProps extends React.SVGProps<SVGSVGElement> {
|
|
8036
|
+
size?: number | string;
|
|
8037
|
+
}
|
|
8038
|
+
/**
|
|
8039
|
+
* MagickoDirectInbox icon component
|
|
8040
|
+
* @example
|
|
8041
|
+
* ```tsx
|
|
8042
|
+
* import { MagickoDirectInbox } from 'magick-icons';
|
|
8043
|
+
*
|
|
8044
|
+
* <MagickoDirectInbox size={24} className="text-blue-500" strokeWidth={2} />
|
|
8045
|
+
* ```
|
|
8046
|
+
*/
|
|
8047
|
+
declare const MagickoDirectInbox: React.ForwardRefExoticComponent<Omit<MagickoDirectInboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8048
|
+
|
|
8049
|
+
/**
|
|
8050
|
+
* Props for the MagickoDirectLeft icon component
|
|
8051
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8052
|
+
*/
|
|
8053
|
+
interface MagickoDirectLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
8054
|
+
size?: number | string;
|
|
8055
|
+
}
|
|
8056
|
+
/**
|
|
8057
|
+
* MagickoDirectLeft icon component
|
|
8058
|
+
* @example
|
|
8059
|
+
* ```tsx
|
|
8060
|
+
* import { MagickoDirectLeft } from 'magick-icons';
|
|
8061
|
+
*
|
|
8062
|
+
* <MagickoDirectLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
8063
|
+
* ```
|
|
8064
|
+
*/
|
|
8065
|
+
declare const MagickoDirectLeft: React.ForwardRefExoticComponent<Omit<MagickoDirectLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8066
|
+
|
|
8067
|
+
/**
|
|
8068
|
+
* Props for the MagickoDirectNormal icon component
|
|
8069
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8070
|
+
*/
|
|
8071
|
+
interface MagickoDirectNormalProps extends React.SVGProps<SVGSVGElement> {
|
|
8072
|
+
size?: number | string;
|
|
8073
|
+
}
|
|
8074
|
+
/**
|
|
8075
|
+
* MagickoDirectNormal icon component
|
|
8076
|
+
* @example
|
|
8077
|
+
* ```tsx
|
|
8078
|
+
* import { MagickoDirectNormal } from 'magick-icons';
|
|
8079
|
+
*
|
|
8080
|
+
* <MagickoDirectNormal size={24} className="text-blue-500" strokeWidth={2} />
|
|
8081
|
+
* ```
|
|
8082
|
+
*/
|
|
8083
|
+
declare const MagickoDirectNormal: React.ForwardRefExoticComponent<Omit<MagickoDirectNormalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8084
|
+
|
|
8085
|
+
/**
|
|
8086
|
+
* Props for the MagickoDirectNotification icon component
|
|
8087
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8088
|
+
*/
|
|
8089
|
+
interface MagickoDirectNotificationProps extends React.SVGProps<SVGSVGElement> {
|
|
8090
|
+
size?: number | string;
|
|
8091
|
+
}
|
|
8092
|
+
/**
|
|
8093
|
+
* MagickoDirectNotification icon component
|
|
8094
|
+
* @example
|
|
8095
|
+
* ```tsx
|
|
8096
|
+
* import { MagickoDirectNotification } from 'magick-icons';
|
|
8097
|
+
*
|
|
8098
|
+
* <MagickoDirectNotification size={24} className="text-blue-500" strokeWidth={2} />
|
|
8099
|
+
* ```
|
|
8100
|
+
*/
|
|
8101
|
+
declare const MagickoDirectNotification: React.ForwardRefExoticComponent<Omit<MagickoDirectNotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8102
|
+
|
|
8103
|
+
/**
|
|
8104
|
+
* Props for the MagickoDirectRight icon component
|
|
8105
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8106
|
+
*/
|
|
8107
|
+
interface MagickoDirectRightProps extends React.SVGProps<SVGSVGElement> {
|
|
8108
|
+
size?: number | string;
|
|
8109
|
+
}
|
|
8110
|
+
/**
|
|
8111
|
+
* MagickoDirectRight icon component
|
|
8112
|
+
* @example
|
|
8113
|
+
* ```tsx
|
|
8114
|
+
* import { MagickoDirectRight } from 'magick-icons';
|
|
8115
|
+
*
|
|
8116
|
+
* <MagickoDirectRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
8117
|
+
* ```
|
|
8118
|
+
*/
|
|
8119
|
+
declare const MagickoDirectRight: React.ForwardRefExoticComponent<Omit<MagickoDirectRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8120
|
+
|
|
8121
|
+
/**
|
|
8122
|
+
* Props for the MagickoDirectSend icon component
|
|
8123
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8124
|
+
*/
|
|
8125
|
+
interface MagickoDirectSendProps extends React.SVGProps<SVGSVGElement> {
|
|
8126
|
+
size?: number | string;
|
|
8127
|
+
}
|
|
8128
|
+
/**
|
|
8129
|
+
* MagickoDirectSend icon component
|
|
8130
|
+
* @example
|
|
8131
|
+
* ```tsx
|
|
8132
|
+
* import { MagickoDirectSend } from 'magick-icons';
|
|
8133
|
+
*
|
|
8134
|
+
* <MagickoDirectSend size={24} className="text-blue-500" strokeWidth={2} />
|
|
8135
|
+
* ```
|
|
8136
|
+
*/
|
|
8137
|
+
declare const MagickoDirectSend: React.ForwardRefExoticComponent<Omit<MagickoDirectSendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8138
|
+
|
|
8139
|
+
/**
|
|
8140
|
+
* Props for the MagickoDirectUp icon component
|
|
8141
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8142
|
+
*/
|
|
8143
|
+
interface MagickoDirectUpProps extends React.SVGProps<SVGSVGElement> {
|
|
8144
|
+
size?: number | string;
|
|
8145
|
+
}
|
|
8146
|
+
/**
|
|
8147
|
+
* MagickoDirectUp icon component
|
|
8148
|
+
* @example
|
|
8149
|
+
* ```tsx
|
|
8150
|
+
* import { MagickoDirectUp } from 'magick-icons';
|
|
8151
|
+
*
|
|
8152
|
+
* <MagickoDirectUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
8153
|
+
* ```
|
|
8154
|
+
*/
|
|
8155
|
+
declare const MagickoDirectUp: React.ForwardRefExoticComponent<Omit<MagickoDirectUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8156
|
+
|
|
8157
|
+
/**
|
|
8158
|
+
* Props for the MagickoDirectboxDefault icon component
|
|
8159
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8160
|
+
*/
|
|
8161
|
+
interface MagickoDirectboxDefaultProps extends React.SVGProps<SVGSVGElement> {
|
|
8162
|
+
size?: number | string;
|
|
8163
|
+
}
|
|
8164
|
+
/**
|
|
8165
|
+
* MagickoDirectboxDefault icon component
|
|
8166
|
+
* @example
|
|
8167
|
+
* ```tsx
|
|
8168
|
+
* import { MagickoDirectboxDefault } from 'magick-icons';
|
|
8169
|
+
*
|
|
8170
|
+
* <MagickoDirectboxDefault size={24} className="text-blue-500" strokeWidth={2} />
|
|
8171
|
+
* ```
|
|
8172
|
+
*/
|
|
8173
|
+
declare const MagickoDirectboxDefault: React.ForwardRefExoticComponent<Omit<MagickoDirectboxDefaultProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8174
|
+
|
|
8175
|
+
/**
|
|
8176
|
+
* Props for the MagickoDirectboxNotif icon component
|
|
8177
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8178
|
+
*/
|
|
8179
|
+
interface MagickoDirectboxNotifProps extends React.SVGProps<SVGSVGElement> {
|
|
8180
|
+
size?: number | string;
|
|
8181
|
+
}
|
|
8182
|
+
/**
|
|
8183
|
+
* MagickoDirectboxNotif icon component
|
|
8184
|
+
* @example
|
|
8185
|
+
* ```tsx
|
|
8186
|
+
* import { MagickoDirectboxNotif } from 'magick-icons';
|
|
8187
|
+
*
|
|
8188
|
+
* <MagickoDirectboxNotif size={24} className="text-blue-500" strokeWidth={2} />
|
|
8189
|
+
* ```
|
|
8190
|
+
*/
|
|
8191
|
+
declare const MagickoDirectboxNotif: React.ForwardRefExoticComponent<Omit<MagickoDirectboxNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8192
|
+
|
|
8193
|
+
/**
|
|
8194
|
+
* Props for the MagickoDirectboxReceive icon component
|
|
8195
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8196
|
+
*/
|
|
8197
|
+
interface MagickoDirectboxReceiveProps extends React.SVGProps<SVGSVGElement> {
|
|
8198
|
+
size?: number | string;
|
|
8199
|
+
}
|
|
8200
|
+
/**
|
|
8201
|
+
* MagickoDirectboxReceive icon component
|
|
8202
|
+
* @example
|
|
8203
|
+
* ```tsx
|
|
8204
|
+
* import { MagickoDirectboxReceive } from 'magick-icons';
|
|
8205
|
+
*
|
|
8206
|
+
* <MagickoDirectboxReceive size={24} className="text-blue-500" strokeWidth={2} />
|
|
8207
|
+
* ```
|
|
8208
|
+
*/
|
|
8209
|
+
declare const MagickoDirectboxReceive: React.ForwardRefExoticComponent<Omit<MagickoDirectboxReceiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8210
|
+
|
|
8211
|
+
/**
|
|
8212
|
+
* Props for the MagickoDirectboxSend icon component
|
|
8213
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8214
|
+
*/
|
|
8215
|
+
interface MagickoDirectboxSendProps extends React.SVGProps<SVGSVGElement> {
|
|
8216
|
+
size?: number | string;
|
|
8217
|
+
}
|
|
8218
|
+
/**
|
|
8219
|
+
* MagickoDirectboxSend icon component
|
|
8220
|
+
* @example
|
|
8221
|
+
* ```tsx
|
|
8222
|
+
* import { MagickoDirectboxSend } from 'magick-icons';
|
|
8223
|
+
*
|
|
8224
|
+
* <MagickoDirectboxSend size={24} className="text-blue-500" strokeWidth={2} />
|
|
8225
|
+
* ```
|
|
8226
|
+
*/
|
|
8227
|
+
declare const MagickoDirectboxSend: React.ForwardRefExoticComponent<Omit<MagickoDirectboxSendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8228
|
+
|
|
8229
|
+
/**
|
|
8230
|
+
* Props for the MagickoDiscountCircle icon component
|
|
8231
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8232
|
+
*/
|
|
8233
|
+
interface MagickoDiscountCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
8234
|
+
size?: number | string;
|
|
8235
|
+
}
|
|
8236
|
+
/**
|
|
8237
|
+
* MagickoDiscountCircle icon component
|
|
8238
|
+
* @example
|
|
8239
|
+
* ```tsx
|
|
8240
|
+
* import { MagickoDiscountCircle } from 'magick-icons';
|
|
8241
|
+
*
|
|
8242
|
+
* <MagickoDiscountCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
8243
|
+
* ```
|
|
8244
|
+
*/
|
|
8245
|
+
declare const MagickoDiscountCircle: React.ForwardRefExoticComponent<Omit<MagickoDiscountCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8246
|
+
|
|
8247
|
+
/**
|
|
8248
|
+
* Props for the MagickoDislike icon component
|
|
8249
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8250
|
+
*/
|
|
8251
|
+
interface MagickoDislikeProps extends React.SVGProps<SVGSVGElement> {
|
|
8252
|
+
size?: number | string;
|
|
8253
|
+
}
|
|
8254
|
+
/**
|
|
8255
|
+
* MagickoDislike icon component
|
|
8256
|
+
* @example
|
|
8257
|
+
* ```tsx
|
|
8258
|
+
* import { MagickoDislike } from 'magick-icons';
|
|
8259
|
+
*
|
|
8260
|
+
* <MagickoDislike size={24} className="text-blue-500" strokeWidth={2} />
|
|
8261
|
+
* ```
|
|
8262
|
+
*/
|
|
8263
|
+
declare const MagickoDislike: React.ForwardRefExoticComponent<Omit<MagickoDislikeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8264
|
+
|
|
8265
|
+
/**
|
|
8266
|
+
* Props for the MagickoDocument icon component
|
|
8267
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8268
|
+
*/
|
|
8269
|
+
interface MagickoDocumentProps extends React.SVGProps<SVGSVGElement> {
|
|
8270
|
+
size?: number | string;
|
|
8271
|
+
}
|
|
8272
|
+
/**
|
|
8273
|
+
* MagickoDocument icon component
|
|
8274
|
+
* @example
|
|
8275
|
+
* ```tsx
|
|
8276
|
+
* import { MagickoDocument } from 'magick-icons';
|
|
8277
|
+
*
|
|
8278
|
+
* <MagickoDocument size={24} className="text-blue-500" strokeWidth={2} />
|
|
8279
|
+
* ```
|
|
8280
|
+
*/
|
|
8281
|
+
declare const MagickoDocument: React.ForwardRefExoticComponent<Omit<MagickoDocumentProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8282
|
+
|
|
8283
|
+
/**
|
|
8284
|
+
* Props for the MagickoDocument1 icon component
|
|
8285
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8286
|
+
*/
|
|
8287
|
+
interface MagickoDocument1Props extends React.SVGProps<SVGSVGElement> {
|
|
8288
|
+
size?: number | string;
|
|
8289
|
+
}
|
|
8290
|
+
/**
|
|
8291
|
+
* MagickoDocument1 icon component
|
|
8292
|
+
* @example
|
|
8293
|
+
* ```tsx
|
|
8294
|
+
* import { MagickoDocument1 } from 'magick-icons';
|
|
8295
|
+
*
|
|
8296
|
+
* <MagickoDocument1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8297
|
+
* ```
|
|
8298
|
+
*/
|
|
8299
|
+
declare const MagickoDocument1: React.ForwardRefExoticComponent<Omit<MagickoDocument1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8300
|
+
|
|
8301
|
+
/**
|
|
8302
|
+
* Props for the MagickoDocumentCloud icon component
|
|
8303
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8304
|
+
*/
|
|
8305
|
+
interface MagickoDocumentCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
8306
|
+
size?: number | string;
|
|
8307
|
+
}
|
|
8308
|
+
/**
|
|
8309
|
+
* MagickoDocumentCloud icon component
|
|
8310
|
+
* @example
|
|
8311
|
+
* ```tsx
|
|
8312
|
+
* import { MagickoDocumentCloud } from 'magick-icons';
|
|
8313
|
+
*
|
|
8314
|
+
* <MagickoDocumentCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
8315
|
+
* ```
|
|
8316
|
+
*/
|
|
8317
|
+
declare const MagickoDocumentCloud: React.ForwardRefExoticComponent<Omit<MagickoDocumentCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8318
|
+
|
|
8319
|
+
/**
|
|
8320
|
+
* Props for the MagickoDocumentCopy icon component
|
|
8321
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8322
|
+
*/
|
|
8323
|
+
interface MagickoDocumentCopyProps extends React.SVGProps<SVGSVGElement> {
|
|
8324
|
+
size?: number | string;
|
|
8325
|
+
}
|
|
8326
|
+
/**
|
|
8327
|
+
* MagickoDocumentCopy icon component
|
|
8328
|
+
* @example
|
|
8329
|
+
* ```tsx
|
|
8330
|
+
* import { MagickoDocumentCopy } from 'magick-icons';
|
|
8331
|
+
*
|
|
8332
|
+
* <MagickoDocumentCopy size={24} className="text-blue-500" strokeWidth={2} />
|
|
8333
|
+
* ```
|
|
8334
|
+
*/
|
|
8335
|
+
declare const MagickoDocumentCopy: React.ForwardRefExoticComponent<Omit<MagickoDocumentCopyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8336
|
+
|
|
8337
|
+
/**
|
|
8338
|
+
* Props for the MagickoDocumentDownload icon component
|
|
8339
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8340
|
+
*/
|
|
8341
|
+
interface MagickoDocumentDownloadProps extends React.SVGProps<SVGSVGElement> {
|
|
8342
|
+
size?: number | string;
|
|
8343
|
+
}
|
|
8344
|
+
/**
|
|
8345
|
+
* MagickoDocumentDownload icon component
|
|
8346
|
+
* @example
|
|
8347
|
+
* ```tsx
|
|
8348
|
+
* import { MagickoDocumentDownload } from 'magick-icons';
|
|
8349
|
+
*
|
|
8350
|
+
* <MagickoDocumentDownload size={24} className="text-blue-500" strokeWidth={2} />
|
|
8351
|
+
* ```
|
|
8352
|
+
*/
|
|
8353
|
+
declare const MagickoDocumentDownload: React.ForwardRefExoticComponent<Omit<MagickoDocumentDownloadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8354
|
+
|
|
8355
|
+
/**
|
|
8356
|
+
* Props for the MagickoDocumentFavorite icon component
|
|
8357
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8358
|
+
*/
|
|
8359
|
+
interface MagickoDocumentFavoriteProps extends React.SVGProps<SVGSVGElement> {
|
|
8360
|
+
size?: number | string;
|
|
8361
|
+
}
|
|
8362
|
+
/**
|
|
8363
|
+
* MagickoDocumentFavorite icon component
|
|
8364
|
+
* @example
|
|
8365
|
+
* ```tsx
|
|
8366
|
+
* import { MagickoDocumentFavorite } from 'magick-icons';
|
|
8367
|
+
*
|
|
8368
|
+
* <MagickoDocumentFavorite size={24} className="text-blue-500" strokeWidth={2} />
|
|
8369
|
+
* ```
|
|
8370
|
+
*/
|
|
8371
|
+
declare const MagickoDocumentFavorite: React.ForwardRefExoticComponent<Omit<MagickoDocumentFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8372
|
+
|
|
8373
|
+
/**
|
|
8374
|
+
* Props for the MagickoDocumentFilter icon component
|
|
8375
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8376
|
+
*/
|
|
8377
|
+
interface MagickoDocumentFilterProps extends React.SVGProps<SVGSVGElement> {
|
|
8378
|
+
size?: number | string;
|
|
8379
|
+
}
|
|
8380
|
+
/**
|
|
8381
|
+
* MagickoDocumentFilter icon component
|
|
8382
|
+
* @example
|
|
8383
|
+
* ```tsx
|
|
8384
|
+
* import { MagickoDocumentFilter } from 'magick-icons';
|
|
8385
|
+
*
|
|
8386
|
+
* <MagickoDocumentFilter size={24} className="text-blue-500" strokeWidth={2} />
|
|
8387
|
+
* ```
|
|
8388
|
+
*/
|
|
8389
|
+
declare const MagickoDocumentFilter: React.ForwardRefExoticComponent<Omit<MagickoDocumentFilterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8390
|
+
|
|
8391
|
+
/**
|
|
8392
|
+
* Props for the MagickoDocumentForward icon component
|
|
8393
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8394
|
+
*/
|
|
8395
|
+
interface MagickoDocumentForwardProps extends React.SVGProps<SVGSVGElement> {
|
|
8396
|
+
size?: number | string;
|
|
8397
|
+
}
|
|
8398
|
+
/**
|
|
8399
|
+
* MagickoDocumentForward icon component
|
|
8400
|
+
* @example
|
|
8401
|
+
* ```tsx
|
|
8402
|
+
* import { MagickoDocumentForward } from 'magick-icons';
|
|
8403
|
+
*
|
|
8404
|
+
* <MagickoDocumentForward size={24} className="text-blue-500" strokeWidth={2} />
|
|
8405
|
+
* ```
|
|
8406
|
+
*/
|
|
8407
|
+
declare const MagickoDocumentForward: React.ForwardRefExoticComponent<Omit<MagickoDocumentForwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8408
|
+
|
|
8409
|
+
/**
|
|
8410
|
+
* Props for the MagickoDocumentLike icon component
|
|
8411
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8412
|
+
*/
|
|
8413
|
+
interface MagickoDocumentLikeProps extends React.SVGProps<SVGSVGElement> {
|
|
8414
|
+
size?: number | string;
|
|
8415
|
+
}
|
|
8416
|
+
/**
|
|
8417
|
+
* MagickoDocumentLike icon component
|
|
8418
|
+
* @example
|
|
8419
|
+
* ```tsx
|
|
8420
|
+
* import { MagickoDocumentLike } from 'magick-icons';
|
|
8421
|
+
*
|
|
8422
|
+
* <MagickoDocumentLike size={24} className="text-blue-500" strokeWidth={2} />
|
|
8423
|
+
* ```
|
|
8424
|
+
*/
|
|
8425
|
+
declare const MagickoDocumentLike: React.ForwardRefExoticComponent<Omit<MagickoDocumentLikeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8426
|
+
|
|
8427
|
+
/**
|
|
8428
|
+
* Props for the MagickoDocumentNormal icon component
|
|
8429
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8430
|
+
*/
|
|
8431
|
+
interface MagickoDocumentNormalProps extends React.SVGProps<SVGSVGElement> {
|
|
8432
|
+
size?: number | string;
|
|
8433
|
+
}
|
|
8434
|
+
/**
|
|
8435
|
+
* MagickoDocumentNormal icon component
|
|
8436
|
+
* @example
|
|
8437
|
+
* ```tsx
|
|
8438
|
+
* import { MagickoDocumentNormal } from 'magick-icons';
|
|
8439
|
+
*
|
|
8440
|
+
* <MagickoDocumentNormal size={24} className="text-blue-500" strokeWidth={2} />
|
|
8441
|
+
* ```
|
|
8442
|
+
*/
|
|
8443
|
+
declare const MagickoDocumentNormal: React.ForwardRefExoticComponent<Omit<MagickoDocumentNormalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8444
|
+
|
|
8445
|
+
/**
|
|
8446
|
+
* Props for the MagickoDocumentPrevious icon component
|
|
8447
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8448
|
+
*/
|
|
8449
|
+
interface MagickoDocumentPreviousProps extends React.SVGProps<SVGSVGElement> {
|
|
8450
|
+
size?: number | string;
|
|
8451
|
+
}
|
|
8452
|
+
/**
|
|
8453
|
+
* MagickoDocumentPrevious icon component
|
|
8454
|
+
* @example
|
|
8455
|
+
* ```tsx
|
|
8456
|
+
* import { MagickoDocumentPrevious } from 'magick-icons';
|
|
8457
|
+
*
|
|
8458
|
+
* <MagickoDocumentPrevious size={24} className="text-blue-500" strokeWidth={2} />
|
|
8459
|
+
* ```
|
|
8460
|
+
*/
|
|
8461
|
+
declare const MagickoDocumentPrevious: React.ForwardRefExoticComponent<Omit<MagickoDocumentPreviousProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8462
|
+
|
|
8463
|
+
/**
|
|
8464
|
+
* Props for the MagickoDocumentSketch icon component
|
|
8465
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8466
|
+
*/
|
|
8467
|
+
interface MagickoDocumentSketchProps extends React.SVGProps<SVGSVGElement> {
|
|
8468
|
+
size?: number | string;
|
|
8469
|
+
}
|
|
8470
|
+
/**
|
|
8471
|
+
* MagickoDocumentSketch icon component
|
|
8472
|
+
* @example
|
|
8473
|
+
* ```tsx
|
|
8474
|
+
* import { MagickoDocumentSketch } from 'magick-icons';
|
|
8475
|
+
*
|
|
8476
|
+
* <MagickoDocumentSketch size={24} className="text-blue-500" strokeWidth={2} />
|
|
8477
|
+
* ```
|
|
8478
|
+
*/
|
|
8479
|
+
declare const MagickoDocumentSketch: React.ForwardRefExoticComponent<Omit<MagickoDocumentSketchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8480
|
+
|
|
8481
|
+
/**
|
|
8482
|
+
* Props for the MagickoDocumentText icon component
|
|
8483
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8484
|
+
*/
|
|
8485
|
+
interface MagickoDocumentTextProps extends React.SVGProps<SVGSVGElement> {
|
|
8486
|
+
size?: number | string;
|
|
8487
|
+
}
|
|
8488
|
+
/**
|
|
8489
|
+
* MagickoDocumentText icon component
|
|
8490
|
+
* @example
|
|
8491
|
+
* ```tsx
|
|
8492
|
+
* import { MagickoDocumentText } from 'magick-icons';
|
|
8493
|
+
*
|
|
8494
|
+
* <MagickoDocumentText size={24} className="text-blue-500" strokeWidth={2} />
|
|
8495
|
+
* ```
|
|
8496
|
+
*/
|
|
8497
|
+
declare const MagickoDocumentText: React.ForwardRefExoticComponent<Omit<MagickoDocumentTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8498
|
+
|
|
8499
|
+
/**
|
|
8500
|
+
* Props for the MagickoDocumentText2 icon component
|
|
8501
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8502
|
+
*/
|
|
8503
|
+
interface MagickoDocumentText2Props extends React.SVGProps<SVGSVGElement> {
|
|
8504
|
+
size?: number | string;
|
|
8505
|
+
}
|
|
8506
|
+
/**
|
|
8507
|
+
* MagickoDocumentText2 icon component
|
|
8508
|
+
* @example
|
|
8509
|
+
* ```tsx
|
|
8510
|
+
* import { MagickoDocumentText2 } from 'magick-icons';
|
|
8511
|
+
*
|
|
8512
|
+
* <MagickoDocumentText2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8513
|
+
* ```
|
|
8514
|
+
*/
|
|
8515
|
+
declare const MagickoDocumentText2: React.ForwardRefExoticComponent<Omit<MagickoDocumentText2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8516
|
+
|
|
8517
|
+
/**
|
|
8518
|
+
* Props for the MagickoDocumentUpload icon component
|
|
8519
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8520
|
+
*/
|
|
8521
|
+
interface MagickoDocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
8522
|
+
size?: number | string;
|
|
8523
|
+
}
|
|
8524
|
+
/**
|
|
8525
|
+
* MagickoDocumentUpload icon component
|
|
8526
|
+
* @example
|
|
8527
|
+
* ```tsx
|
|
8528
|
+
* import { MagickoDocumentUpload } from 'magick-icons';
|
|
8529
|
+
*
|
|
8530
|
+
* <MagickoDocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
8531
|
+
* ```
|
|
8532
|
+
*/
|
|
8533
|
+
declare const MagickoDocumentUpload: React.ForwardRefExoticComponent<Omit<MagickoDocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8534
|
+
|
|
8535
|
+
/**
|
|
8536
|
+
* Props for the MagickoDollarCircle icon component
|
|
8537
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8538
|
+
*/
|
|
8539
|
+
interface MagickoDollarCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
8540
|
+
size?: number | string;
|
|
8541
|
+
}
|
|
8542
|
+
/**
|
|
8543
|
+
* MagickoDollarCircle icon component
|
|
8544
|
+
* @example
|
|
8545
|
+
* ```tsx
|
|
8546
|
+
* import { MagickoDollarCircle } from 'magick-icons';
|
|
8547
|
+
*
|
|
8548
|
+
* <MagickoDollarCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
8549
|
+
* ```
|
|
8550
|
+
*/
|
|
8551
|
+
declare const MagickoDollarCircle: React.ForwardRefExoticComponent<Omit<MagickoDollarCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8552
|
+
|
|
8013
8553
|
/**
|
|
8014
8554
|
* Props for the Marketing icon component
|
|
8015
8555
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -8298,4 +8838,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
8298
8838
|
*/
|
|
8299
8839
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8300
8840
|
|
|
8301
|
-
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, MagickoDirectDown, type MagickoDirectDownProps, 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 };
|
|
8841
|
+
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, 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 };
|