magick-icons 0.1.213 → 0.1.215
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 +343 -1
- package/index.d.ts +343 -1
- package/index.js +560 -258
- package/index.js.map +1 -1
- package/index.mjs +552 -269
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1224,6 +1224,258 @@ interface Convertshape21Props extends React.SVGProps<SVGSVGElement> {
|
|
|
1224
1224
|
*/
|
|
1225
1225
|
declare const Convertshape21: React.ForwardRefExoticComponent<Omit<Convertshape21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
1226
|
|
|
1227
|
+
/**
|
|
1228
|
+
* Props for the Crop1 icon component
|
|
1229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
|
+
*/
|
|
1231
|
+
interface Crop1Props extends React.SVGProps<SVGSVGElement> {
|
|
1232
|
+
size?: number | string;
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* Crop1 icon component
|
|
1236
|
+
* @example
|
|
1237
|
+
* ```tsx
|
|
1238
|
+
* import { Crop1 } from 'magick-icons';
|
|
1239
|
+
*
|
|
1240
|
+
* <Crop1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
|
+
* ```
|
|
1242
|
+
*/
|
|
1243
|
+
declare const Crop1: React.ForwardRefExoticComponent<Omit<Crop1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
|
|
1245
|
+
/**
|
|
1246
|
+
* Props for the Crop11 icon component
|
|
1247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1248
|
+
*/
|
|
1249
|
+
interface Crop11Props extends React.SVGProps<SVGSVGElement> {
|
|
1250
|
+
size?: number | string;
|
|
1251
|
+
}
|
|
1252
|
+
/**
|
|
1253
|
+
* Crop11 icon component
|
|
1254
|
+
* @example
|
|
1255
|
+
* ```tsx
|
|
1256
|
+
* import { Crop11 } from 'magick-icons';
|
|
1257
|
+
*
|
|
1258
|
+
* <Crop11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1259
|
+
* ```
|
|
1260
|
+
*/
|
|
1261
|
+
declare const Crop11: React.ForwardRefExoticComponent<Omit<Crop11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the Crown1 icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface Crown1Props extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Crown1 icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { Crown1 } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <Crown1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const Crown1: React.ForwardRefExoticComponent<Omit<Crown1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Props for the Crown11 icon component
|
|
1283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
+
*/
|
|
1285
|
+
interface Crown11Props extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
+
size?: number | string;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* Crown11 icon component
|
|
1290
|
+
* @example
|
|
1291
|
+
* ```tsx
|
|
1292
|
+
* import { Crown11 } from 'magick-icons';
|
|
1293
|
+
*
|
|
1294
|
+
* <Crown11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
+
* ```
|
|
1296
|
+
*/
|
|
1297
|
+
declare const Crown11: React.ForwardRefExoticComponent<Omit<Crown11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* Props for the Cup1 icon component
|
|
1301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
+
*/
|
|
1303
|
+
interface Cup1Props extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
+
size?: number | string;
|
|
1305
|
+
}
|
|
1306
|
+
/**
|
|
1307
|
+
* Cup1 icon component
|
|
1308
|
+
* @example
|
|
1309
|
+
* ```tsx
|
|
1310
|
+
* import { Cup1 } from 'magick-icons';
|
|
1311
|
+
*
|
|
1312
|
+
* <Cup1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
+
* ```
|
|
1314
|
+
*/
|
|
1315
|
+
declare const Cup1: React.ForwardRefExoticComponent<Omit<Cup1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* Props for the Cup11 icon component
|
|
1319
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1320
|
+
*/
|
|
1321
|
+
interface Cup11Props extends React.SVGProps<SVGSVGElement> {
|
|
1322
|
+
size?: number | string;
|
|
1323
|
+
}
|
|
1324
|
+
/**
|
|
1325
|
+
* Cup11 icon component
|
|
1326
|
+
* @example
|
|
1327
|
+
* ```tsx
|
|
1328
|
+
* import { Cup11 } from 'magick-icons';
|
|
1329
|
+
*
|
|
1330
|
+
* <Cup11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1331
|
+
* ```
|
|
1332
|
+
*/
|
|
1333
|
+
declare const Cup11: React.ForwardRefExoticComponent<Omit<Cup11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1334
|
+
|
|
1335
|
+
/**
|
|
1336
|
+
* Props for the Danger1 icon component
|
|
1337
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1338
|
+
*/
|
|
1339
|
+
interface Danger1Props extends React.SVGProps<SVGSVGElement> {
|
|
1340
|
+
size?: number | string;
|
|
1341
|
+
}
|
|
1342
|
+
/**
|
|
1343
|
+
* Danger1 icon component
|
|
1344
|
+
* @example
|
|
1345
|
+
* ```tsx
|
|
1346
|
+
* import { Danger1 } from 'magick-icons';
|
|
1347
|
+
*
|
|
1348
|
+
* <Danger1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1349
|
+
* ```
|
|
1350
|
+
*/
|
|
1351
|
+
declare const Danger1: React.ForwardRefExoticComponent<Omit<Danger1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1352
|
+
|
|
1353
|
+
/**
|
|
1354
|
+
* Props for the Designtools1 icon component
|
|
1355
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1356
|
+
*/
|
|
1357
|
+
interface Designtools1Props extends React.SVGProps<SVGSVGElement> {
|
|
1358
|
+
size?: number | string;
|
|
1359
|
+
}
|
|
1360
|
+
/**
|
|
1361
|
+
* Designtools1 icon component
|
|
1362
|
+
* @example
|
|
1363
|
+
* ```tsx
|
|
1364
|
+
* import { Designtools1 } from 'magick-icons';
|
|
1365
|
+
*
|
|
1366
|
+
* <Designtools1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1367
|
+
* ```
|
|
1368
|
+
*/
|
|
1369
|
+
declare const Designtools1: React.ForwardRefExoticComponent<Omit<Designtools1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1370
|
+
|
|
1371
|
+
/**
|
|
1372
|
+
* Props for the DeviceMessage1 icon component
|
|
1373
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1374
|
+
*/
|
|
1375
|
+
interface DeviceMessage1Props extends React.SVGProps<SVGSVGElement> {
|
|
1376
|
+
size?: number | string;
|
|
1377
|
+
}
|
|
1378
|
+
/**
|
|
1379
|
+
* DeviceMessage1 icon component
|
|
1380
|
+
* @example
|
|
1381
|
+
* ```tsx
|
|
1382
|
+
* import { DeviceMessage1 } from 'magick-icons';
|
|
1383
|
+
*
|
|
1384
|
+
* <DeviceMessage1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1385
|
+
* ```
|
|
1386
|
+
*/
|
|
1387
|
+
declare const DeviceMessage1: React.ForwardRefExoticComponent<Omit<DeviceMessage1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
* Props for the Diamonds1 icon component
|
|
1391
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1392
|
+
*/
|
|
1393
|
+
interface Diamonds1Props extends React.SVGProps<SVGSVGElement> {
|
|
1394
|
+
size?: number | string;
|
|
1395
|
+
}
|
|
1396
|
+
/**
|
|
1397
|
+
* Diamonds1 icon component
|
|
1398
|
+
* @example
|
|
1399
|
+
* ```tsx
|
|
1400
|
+
* import { Diamonds1 } from 'magick-icons';
|
|
1401
|
+
*
|
|
1402
|
+
* <Diamonds1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1403
|
+
* ```
|
|
1404
|
+
*/
|
|
1405
|
+
declare const Diamonds1: React.ForwardRefExoticComponent<Omit<Diamonds1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1406
|
+
|
|
1407
|
+
/**
|
|
1408
|
+
* Props for the Diamonds11 icon component
|
|
1409
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1410
|
+
*/
|
|
1411
|
+
interface Diamonds11Props extends React.SVGProps<SVGSVGElement> {
|
|
1412
|
+
size?: number | string;
|
|
1413
|
+
}
|
|
1414
|
+
/**
|
|
1415
|
+
* Diamonds11 icon component
|
|
1416
|
+
* @example
|
|
1417
|
+
* ```tsx
|
|
1418
|
+
* import { Diamonds11 } from 'magick-icons';
|
|
1419
|
+
*
|
|
1420
|
+
* <Diamonds11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1421
|
+
* ```
|
|
1422
|
+
*/
|
|
1423
|
+
declare const Diamonds11: React.ForwardRefExoticComponent<Omit<Diamonds11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1424
|
+
|
|
1425
|
+
/**
|
|
1426
|
+
* Props for the DiscountShape1 icon component
|
|
1427
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1428
|
+
*/
|
|
1429
|
+
interface DiscountShape1Props extends React.SVGProps<SVGSVGElement> {
|
|
1430
|
+
size?: number | string;
|
|
1431
|
+
}
|
|
1432
|
+
/**
|
|
1433
|
+
* DiscountShape1 icon component
|
|
1434
|
+
* @example
|
|
1435
|
+
* ```tsx
|
|
1436
|
+
* import { DiscountShape1 } from 'magick-icons';
|
|
1437
|
+
*
|
|
1438
|
+
* <DiscountShape1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1439
|
+
* ```
|
|
1440
|
+
*/
|
|
1441
|
+
declare const DiscountShape1: React.ForwardRefExoticComponent<Omit<DiscountShape1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* Props for the Discover1 icon component
|
|
1445
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1446
|
+
*/
|
|
1447
|
+
interface Discover1Props extends React.SVGProps<SVGSVGElement> {
|
|
1448
|
+
size?: number | string;
|
|
1449
|
+
}
|
|
1450
|
+
/**
|
|
1451
|
+
* Discover1 icon component
|
|
1452
|
+
* @example
|
|
1453
|
+
* ```tsx
|
|
1454
|
+
* import { Discover1 } from 'magick-icons';
|
|
1455
|
+
*
|
|
1456
|
+
* <Discover1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1457
|
+
* ```
|
|
1458
|
+
*/
|
|
1459
|
+
declare const Discover1: React.ForwardRefExoticComponent<Omit<Discover1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1460
|
+
|
|
1461
|
+
/**
|
|
1462
|
+
* Props for the Discover11 icon component
|
|
1463
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1464
|
+
*/
|
|
1465
|
+
interface Discover11Props extends React.SVGProps<SVGSVGElement> {
|
|
1466
|
+
size?: number | string;
|
|
1467
|
+
}
|
|
1468
|
+
/**
|
|
1469
|
+
* Discover11 icon component
|
|
1470
|
+
* @example
|
|
1471
|
+
* ```tsx
|
|
1472
|
+
* import { Discover11 } from 'magick-icons';
|
|
1473
|
+
*
|
|
1474
|
+
* <Discover11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1475
|
+
* ```
|
|
1476
|
+
*/
|
|
1477
|
+
declare const Discover11: React.ForwardRefExoticComponent<Omit<Discover11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1478
|
+
|
|
1227
1479
|
/**
|
|
1228
1480
|
* Props for the DislikeBold icon component
|
|
1229
1481
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1296,6 +1548,96 @@ interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1296
1548
|
*/
|
|
1297
1549
|
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
1550
|
|
|
1551
|
+
/**
|
|
1552
|
+
* Props for the EmptyWalletAdd1 icon component
|
|
1553
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1554
|
+
*/
|
|
1555
|
+
interface EmptyWalletAdd1Props extends React.SVGProps<SVGSVGElement> {
|
|
1556
|
+
size?: number | string;
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* EmptyWalletAdd1 icon component
|
|
1560
|
+
* @example
|
|
1561
|
+
* ```tsx
|
|
1562
|
+
* import { EmptyWalletAdd1 } from 'magick-icons';
|
|
1563
|
+
*
|
|
1564
|
+
* <EmptyWalletAdd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1565
|
+
* ```
|
|
1566
|
+
*/
|
|
1567
|
+
declare const EmptyWalletAdd1: React.ForwardRefExoticComponent<Omit<EmptyWalletAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1568
|
+
|
|
1569
|
+
/**
|
|
1570
|
+
* Props for the EmptyWalletChange1 icon component
|
|
1571
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1572
|
+
*/
|
|
1573
|
+
interface EmptyWalletChange1Props extends React.SVGProps<SVGSVGElement> {
|
|
1574
|
+
size?: number | string;
|
|
1575
|
+
}
|
|
1576
|
+
/**
|
|
1577
|
+
* EmptyWalletChange1 icon component
|
|
1578
|
+
* @example
|
|
1579
|
+
* ```tsx
|
|
1580
|
+
* import { EmptyWalletChange1 } from 'magick-icons';
|
|
1581
|
+
*
|
|
1582
|
+
* <EmptyWalletChange1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1583
|
+
* ```
|
|
1584
|
+
*/
|
|
1585
|
+
declare const EmptyWalletChange1: React.ForwardRefExoticComponent<Omit<EmptyWalletChange1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* Props for the EmptyWalletRemove1 icon component
|
|
1589
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1590
|
+
*/
|
|
1591
|
+
interface EmptyWalletRemove1Props extends React.SVGProps<SVGSVGElement> {
|
|
1592
|
+
size?: number | string;
|
|
1593
|
+
}
|
|
1594
|
+
/**
|
|
1595
|
+
* EmptyWalletRemove1 icon component
|
|
1596
|
+
* @example
|
|
1597
|
+
* ```tsx
|
|
1598
|
+
* import { EmptyWalletRemove1 } from 'magick-icons';
|
|
1599
|
+
*
|
|
1600
|
+
* <EmptyWalletRemove1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1601
|
+
* ```
|
|
1602
|
+
*/
|
|
1603
|
+
declare const EmptyWalletRemove1: React.ForwardRefExoticComponent<Omit<EmptyWalletRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1604
|
+
|
|
1605
|
+
/**
|
|
1606
|
+
* Props for the EmptyWalletTick1 icon component
|
|
1607
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1608
|
+
*/
|
|
1609
|
+
interface EmptyWalletTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
1610
|
+
size?: number | string;
|
|
1611
|
+
}
|
|
1612
|
+
/**
|
|
1613
|
+
* EmptyWalletTick1 icon component
|
|
1614
|
+
* @example
|
|
1615
|
+
* ```tsx
|
|
1616
|
+
* import { EmptyWalletTick1 } from 'magick-icons';
|
|
1617
|
+
*
|
|
1618
|
+
* <EmptyWalletTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1619
|
+
* ```
|
|
1620
|
+
*/
|
|
1621
|
+
declare const EmptyWalletTick1: React.ForwardRefExoticComponent<Omit<EmptyWalletTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1622
|
+
|
|
1623
|
+
/**
|
|
1624
|
+
* Props for the EmptyWalletTime1 icon component
|
|
1625
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1626
|
+
*/
|
|
1627
|
+
interface EmptyWalletTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
1628
|
+
size?: number | string;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* EmptyWalletTime1 icon component
|
|
1632
|
+
* @example
|
|
1633
|
+
* ```tsx
|
|
1634
|
+
* import { EmptyWalletTime1 } from 'magick-icons';
|
|
1635
|
+
*
|
|
1636
|
+
* <EmptyWalletTime1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1637
|
+
* ```
|
|
1638
|
+
*/
|
|
1639
|
+
declare const EmptyWalletTime1: React.ForwardRefExoticComponent<Omit<EmptyWalletTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1640
|
+
|
|
1299
1641
|
/**
|
|
1300
1642
|
* Props for the Enter icon component
|
|
1301
1643
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2250,4 +2592,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2250
2592
|
*/
|
|
2251
2593
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2252
2594
|
|
|
2253
|
-
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, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
2595
|
+
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, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|