@refineui/react-native-icons 0.3.25 → 0.3.27
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/dist/IconUtils.d.ts.map +1 -1
- package/dist/filled-icons.d.ts +27489 -268
- package/dist/filled-icons.d.ts.map +1 -1
- package/dist/fonts/refineui-system-icons-filled.css +2606 -2606
- package/dist/fonts/refineui-system-icons-filled.woff2 +0 -0
- package/dist/fonts/refineui-system-icons-regular.css +2607 -2607
- package/dist/fonts/refineui-system-icons-regular.woff2 +0 -0
- package/dist/index.esm.js +434 -100
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +845 -185
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +845 -185
- package/dist/index.umd.js.map +1 -1
- package/dist/regular-icons.d.ts +27489 -268
- package/dist/regular-icons.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -57187,15 +57187,23 @@
|
|
|
57187
57187
|
function pascalToSlug(name) {
|
|
57188
57188
|
return String(name).replace(/([A-Z])/g, '-$1').toLowerCase().replace(/^-/, '');
|
|
57189
57189
|
}
|
|
57190
|
+
function normalizeIconName(name) {
|
|
57191
|
+
return String(name).trim().replace(/\s+/g, ' ');
|
|
57192
|
+
}
|
|
57190
57193
|
class ReactNativeIconUtils {
|
|
57191
57194
|
constructor() {
|
|
57192
57195
|
this.metadata = metadata;
|
|
57193
57196
|
this.fontFamilies = metadata.fontFamilies;
|
|
57194
57197
|
}
|
|
57195
57198
|
getIconData(iconName) {
|
|
57199
|
+
if (!iconName || typeof iconName !== 'string')
|
|
57200
|
+
return null;
|
|
57196
57201
|
const direct = this.metadata.icons[iconName];
|
|
57197
57202
|
if (direct)
|
|
57198
57203
|
return direct;
|
|
57204
|
+
const normalized = normalizeIconName(iconName);
|
|
57205
|
+
if (normalized && this.metadata.icons[normalized])
|
|
57206
|
+
return this.metadata.icons[normalized];
|
|
57199
57207
|
const slug = nameToSlug(iconName);
|
|
57200
57208
|
const bySlug = Object.values(this.metadata.icons).find((icon) => icon.slug === slug);
|
|
57201
57209
|
if (bySlug)
|
|
@@ -57224,11 +57232,11 @@
|
|
|
57224
57232
|
// Create unsized icon (default 24px)
|
|
57225
57233
|
createUnsizedIcon(iconName, style, props = {}) {
|
|
57226
57234
|
const iconData = this.getIconData(iconName);
|
|
57227
|
-
if (!iconData)
|
|
57235
|
+
if (!iconData?.unicodeMapping)
|
|
57228
57236
|
return null;
|
|
57229
57237
|
const defaultSize = 24;
|
|
57230
|
-
const unicodeInfo = iconData.unicodeMapping[defaultSize]?.[style];
|
|
57231
|
-
if (!unicodeInfo)
|
|
57238
|
+
const unicodeInfo = iconData.unicodeMapping[String(defaultSize)]?.[style];
|
|
57239
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57232
57240
|
return null;
|
|
57233
57241
|
const fontFamily = this.fontFamilies[style].font_family;
|
|
57234
57242
|
return React__default["default"].createElement('Text', {
|
|
@@ -57245,10 +57253,10 @@
|
|
|
57245
57253
|
// Create sized icon
|
|
57246
57254
|
createSizedIcon(iconName, size, style, props = {}) {
|
|
57247
57255
|
const iconData = this.getIconData(iconName);
|
|
57248
|
-
if (!iconData)
|
|
57256
|
+
if (!iconData?.unicodeMapping)
|
|
57249
57257
|
return null;
|
|
57250
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57251
|
-
if (!unicodeInfo)
|
|
57258
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57259
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57252
57260
|
return null;
|
|
57253
57261
|
const fontFamily = this.fontFamilies[style].font_family;
|
|
57254
57262
|
return React__default["default"].createElement('Text', {
|
|
@@ -57265,18 +57273,18 @@
|
|
|
57265
57273
|
// Utility methods
|
|
57266
57274
|
getIconChar(iconName, style = 'regular', size = 24) {
|
|
57267
57275
|
const iconData = this.getIconData(iconName);
|
|
57268
|
-
if (!iconData)
|
|
57276
|
+
if (!iconData?.unicodeMapping)
|
|
57269
57277
|
return null;
|
|
57270
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57271
|
-
if (!unicodeInfo)
|
|
57278
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57279
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57272
57280
|
return null;
|
|
57273
57281
|
return String.fromCodePoint(unicodeInfo.unicode);
|
|
57274
57282
|
}
|
|
57275
57283
|
getIconClass(iconName, style = 'regular', size = 24) {
|
|
57276
57284
|
const iconData = this.getIconData(iconName);
|
|
57277
|
-
if (!iconData)
|
|
57285
|
+
if (!iconData?.unicodeMapping)
|
|
57278
57286
|
return null;
|
|
57279
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57287
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57280
57288
|
if (!unicodeInfo)
|
|
57281
57289
|
return null;
|
|
57282
57290
|
return unicodeInfo.cssClass;
|
|
@@ -57335,24 +57343,48 @@
|
|
|
57335
57343
|
};
|
|
57336
57344
|
|
|
57337
57345
|
// === Regular style icons ===
|
|
57338
|
-
const
|
|
57346
|
+
const AccessTime = createIconComponent('Access time', 'regular');
|
|
57339
57347
|
const Accessibility = createIconComponent('Accessibility', 'regular');
|
|
57340
57348
|
const Add = createIconComponent('Add', 'regular');
|
|
57349
|
+
const AddCircle = createIconComponent('Add circle', 'regular');
|
|
57350
|
+
const AddSquare = createIconComponent('Add square', 'regular');
|
|
57341
57351
|
const Airplane = createIconComponent('Airplane', 'regular');
|
|
57342
57352
|
const Album = createIconComponent('Album', 'regular');
|
|
57343
57353
|
const Alert = createIconComponent('Alert', 'regular');
|
|
57344
|
-
const
|
|
57354
|
+
const AlertBadge = createIconComponent('Alert badge', 'regular');
|
|
57355
|
+
const AlertOff = createIconComponent('Alert off', 'regular');
|
|
57356
|
+
const AlignBottom = createIconComponent('Align bottom', 'regular');
|
|
57357
|
+
const AlignCenterHorizontal = createIconComponent('Align center horizontal', 'regular');
|
|
57358
|
+
const AlignCenterVertical = createIconComponent('Align center vertical', 'regular');
|
|
57359
|
+
const AlignLeft = createIconComponent('Align left', 'regular');
|
|
57360
|
+
const AlignRight = createIconComponent('Align right', 'regular');
|
|
57361
|
+
const AlignTop = createIconComponent('Align top', 'regular');
|
|
57345
57362
|
const Android = createIconComponent('Android', 'regular');
|
|
57346
|
-
const
|
|
57363
|
+
const AppFolder = createIconComponent('App folder', 'regular');
|
|
57364
|
+
const AppRecent = createIconComponent('App recent', 'regular');
|
|
57365
|
+
const AppTitle = createIconComponent('App title', 'regular');
|
|
57347
57366
|
const Appstore = createIconComponent('Appstore', 'regular');
|
|
57348
57367
|
const Autosum = createIconComponent('Autosum', 'regular');
|
|
57349
57368
|
const Backpack = createIconComponent('Backpack', 'regular');
|
|
57350
57369
|
const Backspace = createIconComponent('Backspace', 'regular');
|
|
57351
57370
|
const Badge = createIconComponent('Badge', 'regular');
|
|
57352
57371
|
const Balloon = createIconComponent('Balloon', 'regular');
|
|
57353
|
-
const
|
|
57354
|
-
const
|
|
57355
|
-
const
|
|
57372
|
+
const BarChartHorizontal = createIconComponent('Bar chart horizontal', 'regular');
|
|
57373
|
+
const BarChartHorizontalDescending = createIconComponent('Bar chart horizontal descending', 'regular');
|
|
57374
|
+
const BarChartVertical = createIconComponent('Bar chart vertical', 'regular');
|
|
57375
|
+
const BarChartVerticalDescending = createIconComponent('Bar chart vertical descending', 'regular');
|
|
57376
|
+
const BarcodeScanner = createIconComponent('Barcode scanner', 'regular');
|
|
57377
|
+
const Battery0 = createIconComponent('Battery 0', 'regular');
|
|
57378
|
+
const Battery10 = createIconComponent('Battery 10', 'regular');
|
|
57379
|
+
const Battery100 = createIconComponent('Battery 100', 'regular');
|
|
57380
|
+
const Battery20 = createIconComponent('Battery 20', 'regular');
|
|
57381
|
+
const Battery30 = createIconComponent('Battery 30', 'regular');
|
|
57382
|
+
const Battery40 = createIconComponent('Battery 40', 'regular');
|
|
57383
|
+
const Battery50 = createIconComponent('Battery 50', 'regular');
|
|
57384
|
+
const Battery60 = createIconComponent('Battery 60', 'regular');
|
|
57385
|
+
const Battery70 = createIconComponent('Battery 70', 'regular');
|
|
57386
|
+
const Battery80 = createIconComponent('Battery 80', 'regular');
|
|
57387
|
+
const Battery90 = createIconComponent('Battery 90', 'regular');
|
|
57356
57388
|
const Block = createIconComponent('Block', 'regular');
|
|
57357
57389
|
const Bluetooth = createIconComponent('Bluetooth', 'regular');
|
|
57358
57390
|
const Blur = createIconComponent('Blur', 'regular');
|
|
@@ -57364,23 +57396,30 @@
|
|
|
57364
57396
|
const Calendar = createIconComponent('Calendar', 'regular');
|
|
57365
57397
|
const Camera = createIconComponent('Camera', 'regular');
|
|
57366
57398
|
const Cart = createIconComponent('Cart', 'regular');
|
|
57367
|
-
const
|
|
57399
|
+
const CartonBox = createIconComponent('Carton box', 'regular');
|
|
57368
57400
|
const Chart = createIconComponent('Chart', 'regular');
|
|
57369
57401
|
const Chat = createIconComponent('Chat', 'regular');
|
|
57402
|
+
const ChatAdd = createIconComponent('Chat add', 'regular');
|
|
57403
|
+
const ChatEmpty = createIconComponent('Chat empty', 'regular');
|
|
57370
57404
|
const Checkmark = createIconComponent('Checkmark', 'regular');
|
|
57371
57405
|
const Chess = createIconComponent('Chess', 'regular');
|
|
57372
|
-
const
|
|
57406
|
+
const ChevronDown = createIconComponent('Chevron down', 'regular');
|
|
57407
|
+
const ChevronLeft = createIconComponent('Chevron left', 'regular');
|
|
57408
|
+
const ChevronRight = createIconComponent('Chevron right', 'regular');
|
|
57409
|
+
const ChevronUp = createIconComponent('Chevron up', 'regular');
|
|
57373
57410
|
const Circle = createIconComponent('Circle', 'regular');
|
|
57374
57411
|
const Clipboard = createIconComponent('Clipboard', 'regular');
|
|
57375
57412
|
const Clock = createIconComponent('Clock', 'regular');
|
|
57413
|
+
const ClockAlarm = createIconComponent('Clock alarm', 'regular');
|
|
57376
57414
|
const Cloud = createIconComponent('Cloud', 'regular');
|
|
57377
57415
|
const Clover = createIconComponent('Clover', 'regular');
|
|
57378
57416
|
const Code = createIconComponent('Code', 'regular');
|
|
57417
|
+
const CodeBlock = createIconComponent('Code block', 'regular');
|
|
57379
57418
|
const Comma = createIconComponent('Comma', 'regular');
|
|
57380
57419
|
const Comment = createIconComponent('Comment', 'regular');
|
|
57381
57420
|
const Cone = createIconComponent('Cone', 'regular');
|
|
57382
57421
|
const Contrast = createIconComponent('Contrast', 'regular');
|
|
57383
|
-
const
|
|
57422
|
+
const ControlButton = createIconComponent('Control button', 'regular');
|
|
57384
57423
|
const Cookie = createIconComponent('Cookie', 'regular');
|
|
57385
57424
|
const Copy = createIconComponent('Copy', 'regular');
|
|
57386
57425
|
const Couch = createIconComponent('Couch', 'regular');
|
|
@@ -57394,47 +57433,73 @@
|
|
|
57394
57433
|
const Dart = createIconComponent('Dart', 'regular');
|
|
57395
57434
|
const Database = createIconComponent('Database', 'regular');
|
|
57396
57435
|
const Delete = createIconComponent('Delete', 'regular');
|
|
57436
|
+
const DeleteOff = createIconComponent('Delete off', 'regular');
|
|
57397
57437
|
const Dentist = createIconComponent('Dentist', 'regular');
|
|
57398
57438
|
const Desk = createIconComponent('Desk', 'regular');
|
|
57399
57439
|
const Desktop = createIconComponent('Desktop', 'regular');
|
|
57440
|
+
const DesktopMac = createIconComponent('Desktop mac', 'regular');
|
|
57400
57441
|
const Dialpad = createIconComponent('Dialpad', 'regular');
|
|
57401
57442
|
const Diamond = createIconComponent('Diamond', 'regular');
|
|
57402
57443
|
const Dismiss = createIconComponent('Dismiss', 'regular');
|
|
57444
|
+
const DismissCircle = createIconComponent('Dismiss circle', 'regular');
|
|
57445
|
+
const DismissSquare = createIconComponent('Dismiss square', 'regular');
|
|
57403
57446
|
const Doctor = createIconComponent('Doctor', 'regular');
|
|
57404
57447
|
const Document = createIconComponent('Document', 'regular');
|
|
57448
|
+
const DocumentBorder = createIconComponent('Document border', 'regular');
|
|
57405
57449
|
const Door = createIconComponent('Door', 'regular');
|
|
57406
57450
|
const Drag = createIconComponent('Drag', 'regular');
|
|
57407
57451
|
const Drawer = createIconComponent('Drawer', 'regular');
|
|
57408
57452
|
const Drop = createIconComponent('Drop', 'regular');
|
|
57409
|
-
const
|
|
57453
|
+
const DualScreen = createIconComponent('Dual screen', 'regular');
|
|
57410
57454
|
const Dumbbell = createIconComponent('Dumbbell', 'regular');
|
|
57411
57455
|
const Dust = createIconComponent('Dust', 'regular');
|
|
57412
57456
|
const Earth = createIconComponent('Earth', 'regular');
|
|
57413
57457
|
const Edit = createIconComponent('Edit', 'regular');
|
|
57458
|
+
const EditOff = createIconComponent('Edit off', 'regular');
|
|
57414
57459
|
const Elevator = createIconComponent('Elevator', 'regular');
|
|
57415
57460
|
const Emoji = createIconComponent('Emoji', 'regular');
|
|
57461
|
+
const EmojiAngry = createIconComponent('Emoji angry', 'regular');
|
|
57462
|
+
const EmojiCool = createIconComponent('Emoji cool', 'regular');
|
|
57463
|
+
const EmojiGrimacing = createIconComponent('Emoji grimacing', 'regular');
|
|
57464
|
+
const EmojiLaugh = createIconComponent('Emoji laugh', 'regular');
|
|
57465
|
+
const EmojiMeh = createIconComponent('Emoji meh', 'regular');
|
|
57466
|
+
const EmojiSad = createIconComponent('Emoji sad', 'regular');
|
|
57467
|
+
const EmojiSurprise = createIconComponent('Emoji surprise', 'regular');
|
|
57416
57468
|
const Engine = createIconComponent('Engine', 'regular');
|
|
57417
57469
|
const Equal = createIconComponent('Equal', 'regular');
|
|
57418
|
-
const
|
|
57470
|
+
const EqualCircle = createIconComponent('Equal circle', 'regular');
|
|
57471
|
+
const EqualOff = createIconComponent('Equal off', 'regular');
|
|
57472
|
+
const ErrorCircle = createIconComponent('Error circle', 'regular');
|
|
57419
57473
|
const Eye = createIconComponent('Eye', 'regular');
|
|
57474
|
+
const EyeOff = createIconComponent('Eye off', 'regular');
|
|
57420
57475
|
const Eyedropper = createIconComponent('Eyedropper', 'regular');
|
|
57421
|
-
const
|
|
57476
|
+
const EyedropperOff = createIconComponent('Eyedropper off', 'regular');
|
|
57477
|
+
const FastForward = createIconComponent('Fast forward', 'regular');
|
|
57422
57478
|
const Filmstrip = createIconComponent('Filmstrip', 'regular');
|
|
57479
|
+
const FilmstripOff = createIconComponent('Filmstrip off', 'regular');
|
|
57423
57480
|
const Filter = createIconComponent('Filter', 'regular');
|
|
57424
57481
|
const Fire = createIconComponent('Fire', 'regular');
|
|
57425
57482
|
const Flag = createIconComponent('Flag', 'regular');
|
|
57483
|
+
const FlagOff = createIconComponent('Flag off', 'regular');
|
|
57426
57484
|
const Flash = createIconComponent('Flash', 'regular');
|
|
57485
|
+
const FlashOff = createIconComponent('Flash off', 'regular');
|
|
57427
57486
|
const Flashlight = createIconComponent('Flashlight', 'regular');
|
|
57428
|
-
const
|
|
57487
|
+
const FlashlightOff = createIconComponent('Flashlight off', 'regular');
|
|
57488
|
+
const FlipHorizontal = createIconComponent('Flip horizontal', 'regular');
|
|
57489
|
+
const FlipVerticial = createIconComponent('Flip verticial', 'regular');
|
|
57429
57490
|
const Folder = createIconComponent('Folder', 'regular');
|
|
57491
|
+
const FolderOpen = createIconComponent('Folder open', 'regular');
|
|
57430
57492
|
const Frame = createIconComponent('Frame', 'regular');
|
|
57431
|
-
const
|
|
57493
|
+
const FullScreenMaximize = createIconComponent('Full screen maximize', 'regular');
|
|
57494
|
+
const FullScreenMinimize = createIconComponent('Full screen minimize', 'regular');
|
|
57432
57495
|
const Games = createIconComponent('Games', 'regular');
|
|
57433
|
-
const
|
|
57496
|
+
const GanttChart = createIconComponent('Gantt chart', 'regular');
|
|
57434
57497
|
const Gas = createIconComponent('Gas', 'regular');
|
|
57498
|
+
const GasStation = createIconComponent('Gas station', 'regular');
|
|
57435
57499
|
const Gavel = createIconComponent('Gavel', 'regular');
|
|
57436
57500
|
const Gif = createIconComponent('Gif', 'regular');
|
|
57437
57501
|
const Gift = createIconComponent('Gift', 'regular');
|
|
57502
|
+
const GiftCard = createIconComponent('Gift card', 'regular');
|
|
57438
57503
|
const Git = createIconComponent('Git', 'regular');
|
|
57439
57504
|
const Glasses = createIconComponent('Glasses', 'regular');
|
|
57440
57505
|
const Global = createIconComponent('Global', 'regular');
|
|
@@ -57442,102 +57507,160 @@
|
|
|
57442
57507
|
const Guest = createIconComponent('Guest', 'regular');
|
|
57443
57508
|
const Guitar = createIconComponent('Guitar', 'regular');
|
|
57444
57509
|
const Hammer = createIconComponent('Hammer', 'regular');
|
|
57445
|
-
const
|
|
57446
|
-
const
|
|
57510
|
+
const HardDrive = createIconComponent('Hard drive', 'regular');
|
|
57511
|
+
const HatGraduation = createIconComponent('Hat graduation', 'regular');
|
|
57447
57512
|
const Hd = createIconComponent('Hd', 'regular');
|
|
57448
57513
|
const Hdr = createIconComponent('Hdr', 'regular');
|
|
57514
|
+
const HdrOff = createIconComponent('Hdr off', 'regular');
|
|
57449
57515
|
const Headphones = createIconComponent('Headphones', 'regular');
|
|
57450
|
-
const
|
|
57516
|
+
const HeadphonesMic = createIconComponent('Headphones mic', 'regular');
|
|
57517
|
+
const HeadsetVr = createIconComponent('Headset vr', 'regular');
|
|
57451
57518
|
const Heart = createIconComponent('Heart', 'regular');
|
|
57519
|
+
const HeartBroken = createIconComponent('Heart broken', 'regular');
|
|
57452
57520
|
const Hexagon = createIconComponent('Hexagon', 'regular');
|
|
57453
57521
|
const Highlight = createIconComponent('Highlight', 'regular');
|
|
57454
57522
|
const Highway = createIconComponent('Highway', 'regular');
|
|
57455
57523
|
const Home = createIconComponent('Home', 'regular');
|
|
57524
|
+
const HomeCheckmark = createIconComponent('Home checkmark', 'regular');
|
|
57456
57525
|
const Hourglass = createIconComponent('Hourglass', 'regular');
|
|
57526
|
+
const HourglassHalf = createIconComponent('Hourglass half', 'regular');
|
|
57527
|
+
const HourglassOneQuarter = createIconComponent('Hourglass one quarter', 'regular');
|
|
57528
|
+
const HourglassThreeQuarter = createIconComponent('Hourglass three quarter', 'regular');
|
|
57457
57529
|
const Html = createIconComponent('Html', 'regular');
|
|
57458
57530
|
const Image = createIconComponent('Image', 'regular');
|
|
57531
|
+
const ImageCircle = createIconComponent('Image circle', 'regular');
|
|
57459
57532
|
const Important = createIconComponent('Important', 'regular');
|
|
57460
57533
|
const Incognito = createIconComponent('Incognito', 'regular');
|
|
57461
57534
|
const Info = createIconComponent('Info', 'regular');
|
|
57462
57535
|
const Ios = createIconComponent('Ios', 'regular');
|
|
57536
|
+
const IosArrowLtr = createIconComponent('Ios arrow ltr', 'regular');
|
|
57537
|
+
const IosArrowRtl = createIconComponent('Ios arrow rtl', 'regular');
|
|
57538
|
+
const IosChevronLtr = createIconComponent('Ios chevron ltr', 'regular');
|
|
57539
|
+
const IosChevronRtl = createIconComponent('Ios chevron rtl', 'regular');
|
|
57463
57540
|
const Iot = createIconComponent('Iot', 'regular');
|
|
57464
57541
|
const Javascript = createIconComponent('Javascript', 'regular');
|
|
57465
57542
|
const Joystick = createIconComponent('Joystick', 'regular');
|
|
57466
57543
|
const Json = createIconComponent('Json', 'regular');
|
|
57544
|
+
const JsonFile = createIconComponent('Json file', 'regular');
|
|
57467
57545
|
const Key = createIconComponent('Key', 'regular');
|
|
57546
|
+
const KeyMultiple = createIconComponent('Key multiple', 'regular');
|
|
57468
57547
|
const Keyboard = createIconComponent('Keyboard', 'regular');
|
|
57548
|
+
const KeyboardBackspace = createIconComponent('Keyboard backspace', 'regular');
|
|
57549
|
+
const KeyboardCommand = createIconComponent('Keyboard command', 'regular');
|
|
57550
|
+
const KeyboardLock = createIconComponent('Keyboard lock', 'regular');
|
|
57551
|
+
const KeyboardOff = createIconComponent('Keyboard off', 'regular');
|
|
57552
|
+
const KeyboardOption = createIconComponent('Keyboard option', 'regular');
|
|
57553
|
+
const KeyboardReturn = createIconComponent('Keyboard return', 'regular');
|
|
57554
|
+
const KeyboardShift = createIconComponent('Keyboard shift', 'regular');
|
|
57555
|
+
const KeyboardShiftUppercase = createIconComponent('Keyboard shift uppercase', 'regular');
|
|
57556
|
+
const KeyboardTab = createIconComponent('Keyboard tab', 'regular');
|
|
57469
57557
|
const Kiosk = createIconComponent('Kiosk', 'regular');
|
|
57470
57558
|
const Kotlin = createIconComponent('Kotlin', 'regular');
|
|
57471
57559
|
const Laptop = createIconComponent('Laptop', 'regular');
|
|
57472
57560
|
const Layer = createIconComponent('Layer', 'regular');
|
|
57473
57561
|
const Lightbulb = createIconComponent('Lightbulb', 'regular');
|
|
57474
57562
|
const Line = createIconComponent('Line', 'regular');
|
|
57563
|
+
const LineDashes = createIconComponent('Line dashes', 'regular');
|
|
57564
|
+
const LineHorizontal1 = createIconComponent('Line horizontal 1', 'regular');
|
|
57565
|
+
const LineHorizontal1Dashes = createIconComponent('Line horizontal 1 dashes', 'regular');
|
|
57475
57566
|
const Link = createIconComponent('Link', 'regular');
|
|
57476
|
-
const Local = createIconComponent('Local', 'regular');
|
|
57477
57567
|
const LocalLanguage = createIconComponent('Local language', 'regular');
|
|
57478
57568
|
const Location = createIconComponent('Location', 'regular');
|
|
57479
|
-
const
|
|
57569
|
+
const LocationArrow = createIconComponent('Location arrow', 'regular');
|
|
57570
|
+
const LockClosed = createIconComponent('Lock closed', 'regular');
|
|
57571
|
+
const LockOpen = createIconComponent('Lock open', 'regular');
|
|
57480
57572
|
const Luggage = createIconComponent('Luggage', 'regular');
|
|
57481
57573
|
const Macos = createIconComponent('Macos', 'regular');
|
|
57482
57574
|
const Mail = createIconComponent('Mail', 'regular');
|
|
57575
|
+
const MailRead = createIconComponent('Mail read', 'regular');
|
|
57483
57576
|
const Mailbox = createIconComponent('Mailbox', 'regular');
|
|
57484
57577
|
const Map = createIconComponent('Map', 'regular');
|
|
57485
57578
|
const Markdown = createIconComponent('Markdown', 'regular');
|
|
57486
|
-
const
|
|
57579
|
+
const MathSymbols = createIconComponent('Math symbols', 'regular');
|
|
57487
57580
|
const Megaphone = createIconComponent('Megaphone', 'regular');
|
|
57488
57581
|
const Mic = createIconComponent('Mic', 'regular');
|
|
57489
57582
|
const Moon = createIconComponent('Moon', 'regular');
|
|
57490
|
-
const
|
|
57583
|
+
const MoreCircle = createIconComponent('More circle', 'regular');
|
|
57584
|
+
const MoreHorizontal = createIconComponent('More horizontal', 'regular');
|
|
57585
|
+
const MoreVerticial = createIconComponent('More verticial', 'regular');
|
|
57491
57586
|
const Mouse = createIconComponent('Mouse', 'regular');
|
|
57492
57587
|
const Movie = createIconComponent('Movie', 'regular');
|
|
57493
|
-
const
|
|
57588
|
+
const NetworkCheck = createIconComponent('Network check', 'regular');
|
|
57494
57589
|
const News = createIconComponent('News', 'regular');
|
|
57495
57590
|
const Next = createIconComponent('Next', 'regular');
|
|
57496
57591
|
const Note = createIconComponent('Note', 'regular');
|
|
57497
57592
|
const Notebook = createIconComponent('Notebook', 'regular');
|
|
57498
57593
|
const Notepad = createIconComponent('Notepad', 'regular');
|
|
57499
|
-
const
|
|
57594
|
+
const NumberCircle0 = createIconComponent('Number circle 0', 'regular');
|
|
57595
|
+
const NumberCircle1 = createIconComponent('Number circle 1', 'regular');
|
|
57596
|
+
const NumberCircle2 = createIconComponent('Number circle 2', 'regular');
|
|
57597
|
+
const NumberCircle3 = createIconComponent('Number circle 3', 'regular');
|
|
57598
|
+
const NumberCircle4 = createIconComponent('Number circle 4', 'regular');
|
|
57599
|
+
const NumberCircle5 = createIconComponent('Number circle 5', 'regular');
|
|
57600
|
+
const NumberCircle6 = createIconComponent('Number circle 6', 'regular');
|
|
57601
|
+
const NumberCircle7 = createIconComponent('Number circle 7', 'regular');
|
|
57602
|
+
const NumberCircle8 = createIconComponent('Number circle 8', 'regular');
|
|
57603
|
+
const NumberCircle9 = createIconComponent('Number circle 9', 'regular');
|
|
57604
|
+
const NumberSymbol = createIconComponent('Number symbol', 'regular');
|
|
57605
|
+
const NumberSymbolCircle = createIconComponent('Number symbol circle', 'regular');
|
|
57606
|
+
const NumberSymbolSquare = createIconComponent('Number symbol square', 'regular');
|
|
57500
57607
|
const Opacity = createIconComponent('Opacity', 'regular');
|
|
57501
57608
|
const Open = createIconComponent('Open', 'regular');
|
|
57609
|
+
const OpenOff = createIconComponent('Open off', 'regular');
|
|
57502
57610
|
const Options = createIconComponent('Options', 'regular');
|
|
57503
57611
|
const Organization = createIconComponent('Organization', 'regular');
|
|
57612
|
+
const OrganizationHorizontal = createIconComponent('Organization horizontal', 'regular');
|
|
57504
57613
|
const Orientation = createIconComponent('Orientation', 'regular');
|
|
57505
57614
|
const Oval = createIconComponent('Oval', 'regular');
|
|
57506
57615
|
const Oven = createIconComponent('Oven', 'regular');
|
|
57507
57616
|
const Padding = createIconComponent('Padding', 'regular');
|
|
57508
|
-
const
|
|
57509
|
-
const
|
|
57617
|
+
const PageFit = createIconComponent('Page fit', 'regular');
|
|
57618
|
+
const PaintBrush = createIconComponent('Paint brush', 'regular');
|
|
57619
|
+
const PaintBucket = createIconComponent('Paint bucket', 'regular');
|
|
57510
57620
|
const Parallelogram = createIconComponent('Parallelogram', 'regular');
|
|
57511
57621
|
const Password = createIconComponent('Password', 'regular');
|
|
57512
57622
|
const Pause = createIconComponent('Pause', 'regular');
|
|
57623
|
+
const PauseCircle = createIconComponent('Pause circle', 'regular');
|
|
57513
57624
|
const Payment = createIconComponent('Payment', 'regular');
|
|
57625
|
+
const PaymentWireless = createIconComponent('Payment wireless', 'regular');
|
|
57514
57626
|
const Pen = createIconComponent('Pen', 'regular');
|
|
57627
|
+
const PenOff = createIconComponent('Pen off', 'regular');
|
|
57515
57628
|
const Pentagon = createIconComponent('Pentagon', 'regular');
|
|
57516
57629
|
const Person = createIconComponent('Person', 'regular');
|
|
57630
|
+
const PersonVoice = createIconComponent('Person voice', 'regular');
|
|
57517
57631
|
const Phone = createIconComponent('Phone', 'regular');
|
|
57518
57632
|
const Piano = createIconComponent('Piano', 'regular');
|
|
57519
57633
|
const Pin = createIconComponent('Pin', 'regular');
|
|
57520
57634
|
const Pipeline = createIconComponent('Pipeline', 'regular');
|
|
57521
57635
|
const Play = createIconComponent('Play', 'regular');
|
|
57636
|
+
const PlayCircle = createIconComponent('Play circle', 'regular');
|
|
57522
57637
|
const Playstore = createIconComponent('Playstore', 'regular');
|
|
57523
|
-
const
|
|
57638
|
+
const PortHdmi = createIconComponent('Port hdmi', 'regular');
|
|
57639
|
+
const PortMicroUsb = createIconComponent('Port micro usb', 'regular');
|
|
57640
|
+
const PortUsbA = createIconComponent('Port usb a', 'regular');
|
|
57641
|
+
const PortUsbC = createIconComponent('Port usb c', 'regular');
|
|
57524
57642
|
const Power = createIconComponent('Power', 'regular');
|
|
57525
|
-
const
|
|
57643
|
+
const PreviewLink = createIconComponent('Preview link', 'regular');
|
|
57526
57644
|
const Previous = createIconComponent('Previous', 'regular');
|
|
57527
57645
|
const Print = createIconComponent('Print', 'regular');
|
|
57528
57646
|
const Pulse = createIconComponent('Pulse', 'regular');
|
|
57647
|
+
const PulseCircle = createIconComponent('Pulse circle', 'regular');
|
|
57648
|
+
const PulseSquare = createIconComponent('Pulse square', 'regular');
|
|
57529
57649
|
const Python = createIconComponent('Python', 'regular');
|
|
57530
|
-
const
|
|
57650
|
+
const QrCode = createIconComponent('Qr code', 'regular');
|
|
57531
57651
|
const Question = createIconComponent('Question', 'regular');
|
|
57532
|
-
const
|
|
57652
|
+
const QuestionCircle = createIconComponent('Question circle', 'regular');
|
|
57653
|
+
const RadioButton = createIconComponent('Radio button', 'regular');
|
|
57533
57654
|
const Ram = createIconComponent('Ram', 'regular');
|
|
57534
57655
|
const Record = createIconComponent('Record', 'regular');
|
|
57656
|
+
const RecordStop = createIconComponent('Record stop', 'regular');
|
|
57535
57657
|
const Rectangle = createIconComponent('Rectangle', 'regular');
|
|
57536
57658
|
const Refineui = createIconComponent('Refineui', 'regular');
|
|
57537
57659
|
const Rewind = createIconComponent('Rewind', 'regular');
|
|
57538
57660
|
const Rhombus = createIconComponent('Rhombus', 'regular');
|
|
57539
57661
|
const Ribbon = createIconComponent('Ribbon', 'regular');
|
|
57540
57662
|
const Road = createIconComponent('Road', 'regular');
|
|
57663
|
+
const RoadCone = createIconComponent('Road cone', 'regular');
|
|
57541
57664
|
const Rocket = createIconComponent('Rocket', 'regular');
|
|
57542
57665
|
const Rotation = createIconComponent('Rotation', 'regular');
|
|
57543
57666
|
const Router = createIconComponent('Router', 'regular');
|
|
@@ -57549,24 +57672,40 @@
|
|
|
57549
57672
|
const Script = createIconComponent('Script', 'regular');
|
|
57550
57673
|
const Search = createIconComponent('Search', 'regular');
|
|
57551
57674
|
const Send = createIconComponent('Send', 'regular');
|
|
57552
|
-
const
|
|
57675
|
+
const SerialPort = createIconComponent('Serial port', 'regular');
|
|
57553
57676
|
const Server = createIconComponent('Server', 'regular');
|
|
57554
|
-
const
|
|
57677
|
+
const ServerLink = createIconComponent('Server link', 'regular');
|
|
57678
|
+
const ServerPlay = createIconComponent('Server play', 'regular');
|
|
57679
|
+
const ServiceBell = createIconComponent('Service bell', 'regular');
|
|
57555
57680
|
const Settings = createIconComponent('Settings', 'regular');
|
|
57556
|
-
const
|
|
57681
|
+
const ShapeExclude = createIconComponent('Shape exclude', 'regular');
|
|
57682
|
+
const ShapeIntersect = createIconComponent('Shape intersect', 'regular');
|
|
57683
|
+
const ShapeSubtract = createIconComponent('Shape subtract', 'regular');
|
|
57684
|
+
const ShapeUnion = createIconComponent('Shape union', 'regular');
|
|
57557
57685
|
const Shapes = createIconComponent('Shapes', 'regular');
|
|
57558
57686
|
const Share = createIconComponent('Share', 'regular');
|
|
57559
|
-
const
|
|
57687
|
+
const ShareAndroid = createIconComponent('Share android', 'regular');
|
|
57688
|
+
const ShareIos = createIconComponent('Share ios', 'regular');
|
|
57689
|
+
const ShellScript = createIconComponent('Shell script', 'regular');
|
|
57560
57690
|
const Shield = createIconComponent('Shield', 'regular');
|
|
57561
|
-
const
|
|
57691
|
+
const ShoppingBag = createIconComponent('Shopping bag', 'regular');
|
|
57562
57692
|
const Sim = createIconComponent('Sim', 'regular');
|
|
57563
|
-
const
|
|
57693
|
+
const SlideAdd = createIconComponent('Slide add', 'regular');
|
|
57694
|
+
const SlideContent = createIconComponent('Slide content', 'regular');
|
|
57695
|
+
const SlideEraser = createIconComponent('Slide eraser', 'regular');
|
|
57696
|
+
const SlideGrid = createIconComponent('Slide grid', 'regular');
|
|
57697
|
+
const SlideHide = createIconComponent('Slide hide', 'regular');
|
|
57698
|
+
const SlideLayout = createIconComponent('Slide layout', 'regular');
|
|
57564
57699
|
const Smartwatch = createIconComponent('Smartwatch', 'regular');
|
|
57565
|
-
const
|
|
57700
|
+
const SoundSource = createIconComponent('Sound source', 'regular');
|
|
57566
57701
|
const Spacebar = createIconComponent('Spacebar', 'regular');
|
|
57567
|
-
const
|
|
57568
|
-
const
|
|
57702
|
+
const SportBaseball = createIconComponent('Sport baseball', 'regular');
|
|
57703
|
+
const SportBasketball = createIconComponent('Sport basketball', 'regular');
|
|
57704
|
+
const SportSoccer = createIconComponent('Sport soccer', 'regular');
|
|
57705
|
+
const SprayCan = createIconComponent('Spray can', 'regular');
|
|
57569
57706
|
const Square = createIconComponent('Square', 'regular');
|
|
57707
|
+
const SquareHint = createIconComponent('Square hint', 'regular');
|
|
57708
|
+
const SquareMultiple = createIconComponent('Square multiple', 'regular');
|
|
57570
57709
|
const Star = createIconComponent('Star', 'regular');
|
|
57571
57710
|
const Stop = createIconComponent('Stop', 'regular');
|
|
57572
57711
|
const Subtract = createIconComponent('Subtract', 'regular');
|
|
@@ -57578,54 +57717,110 @@
|
|
|
57578
57717
|
const Temperature = createIconComponent('Temperature', 'regular');
|
|
57579
57718
|
const Tent = createIconComponent('Tent', 'regular');
|
|
57580
57719
|
const Text = createIconComponent('Text', 'regular');
|
|
57720
|
+
const TextAlignCenter = createIconComponent('Text align center', 'regular');
|
|
57721
|
+
const TextAlignJustify = createIconComponent('Text align justify', 'regular');
|
|
57722
|
+
const TextAlignLeft = createIconComponent('Text align left', 'regular');
|
|
57723
|
+
const TextAlignRight = createIconComponent('Text align right', 'regular');
|
|
57581
57724
|
const Textbox = createIconComponent('Textbox', 'regular');
|
|
57725
|
+
const TextboxAlignBottom = createIconComponent('Textbox align bottom', 'regular');
|
|
57726
|
+
const TextboxAlignBottomCenter = createIconComponent('Textbox align bottom center', 'regular');
|
|
57727
|
+
const TextboxAlignBottomLeft = createIconComponent('Textbox align bottom left', 'regular');
|
|
57728
|
+
const TextboxAlignBottomRight = createIconComponent('Textbox align bottom right', 'regular');
|
|
57729
|
+
const TextboxAlignCenter = createIconComponent('Textbox align center', 'regular');
|
|
57730
|
+
const TextboxAlignMiddle = createIconComponent('Textbox align middle', 'regular');
|
|
57731
|
+
const TextboxAlignMiddleLeft = createIconComponent('Textbox align middle left', 'regular');
|
|
57732
|
+
const TextboxAlignMiddleRight = createIconComponent('Textbox align middle right', 'regular');
|
|
57733
|
+
const TextboxAlignTop = createIconComponent('Textbox align top', 'regular');
|
|
57734
|
+
const TextboxAlignTopCenter = createIconComponent('Textbox align top center', 'regular');
|
|
57735
|
+
const TextboxAlignTopLeft = createIconComponent('Textbox align top left', 'regular');
|
|
57736
|
+
const TextboxAlignTopRight = createIconComponent('Textbox align top right', 'regular');
|
|
57582
57737
|
const Thinking = createIconComponent('Thinking', 'regular');
|
|
57583
57738
|
const Ticket = createIconComponent('Ticket', 'regular');
|
|
57584
57739
|
const Timer = createIconComponent('Timer', 'regular');
|
|
57585
|
-
const
|
|
57740
|
+
const ToggleLeft = createIconComponent('Toggle left', 'regular');
|
|
57741
|
+
const ToggleMultiple = createIconComponent('Toggle multiple', 'regular');
|
|
57742
|
+
const ToggleRight = createIconComponent('Toggle right', 'regular');
|
|
57586
57743
|
const Toolbox = createIconComponent('Toolbox', 'regular');
|
|
57587
57744
|
const Trophy = createIconComponent('Trophy', 'regular');
|
|
57588
57745
|
const Tv = createIconComponent('Tv', 'regular');
|
|
57589
57746
|
const Typescript = createIconComponent('Typescript', 'regular');
|
|
57590
57747
|
const Umbrella = createIconComponent('Umbrella', 'regular');
|
|
57591
57748
|
const Usb = createIconComponent('Usb', 'regular');
|
|
57749
|
+
const UsbCable = createIconComponent('Usb cable', 'regular');
|
|
57592
57750
|
const Verified = createIconComponent('Verified', 'regular');
|
|
57593
57751
|
const Video = createIconComponent('Video', 'regular');
|
|
57752
|
+
const VideoClip = createIconComponent('Video clip', 'regular');
|
|
57753
|
+
const VideoPlayPause = createIconComponent('Video play pause', 'regular');
|
|
57594
57754
|
const Voicemail = createIconComponent('Voicemail', 'regular');
|
|
57595
57755
|
const Vote = createIconComponent('Vote', 'regular');
|
|
57596
|
-
const
|
|
57756
|
+
const WalkieTalkie = createIconComponent('Walkie talkie', 'regular');
|
|
57597
57757
|
const Wallet = createIconComponent('Wallet', 'regular');
|
|
57598
57758
|
const Wand = createIconComponent('Wand', 'regular');
|
|
57599
57759
|
const Warning = createIconComponent('Warning', 'regular');
|
|
57600
57760
|
const Washer = createIconComponent('Washer', 'regular');
|
|
57601
57761
|
const Water = createIconComponent('Water', 'regular');
|
|
57602
|
-
const
|
|
57762
|
+
const WeatherBlowingSnow = createIconComponent('Weather blowing snow', 'regular');
|
|
57763
|
+
const WeatherCloudy = createIconComponent('Weather cloudy', 'regular');
|
|
57764
|
+
const WeatherRain = createIconComponent('Weather rain', 'regular');
|
|
57765
|
+
const WeatherSnow = createIconComponent('Weather snow', 'regular');
|
|
57766
|
+
const WeatherSnowflake = createIconComponent('Weather snowflake', 'regular');
|
|
57767
|
+
const WeatherSunny = createIconComponent('Weather sunny', 'regular');
|
|
57768
|
+
const WeatherThunderstorm = createIconComponent('Weather thunderstorm', 'regular');
|
|
57603
57769
|
const Web = createIconComponent('Web', 'regular');
|
|
57604
|
-
const
|
|
57770
|
+
const Wifi1 = createIconComponent('Wifi 1', 'regular');
|
|
57771
|
+
const Wifi2 = createIconComponent('Wifi 2', 'regular');
|
|
57772
|
+
const Wifi3 = createIconComponent('Wifi 3', 'regular');
|
|
57773
|
+
const Wifi4 = createIconComponent('Wifi 4', 'regular');
|
|
57605
57774
|
const Windows = createIconComponent('Windows', 'regular');
|
|
57606
57775
|
const Wrench = createIconComponent('Wrench', 'regular');
|
|
57607
57776
|
const Xray = createIconComponent('Xray', 'regular');
|
|
57608
|
-
const Zoom = createIconComponent('Zoom', 'regular');
|
|
57777
|
+
const Zoom = createIconComponent('Zoom', 'regular');
|
|
57778
|
+
const ZoomIn = createIconComponent('Zoom in', 'regular');
|
|
57779
|
+
const ZoomOut = createIconComponent('Zoom out', 'regular');
|
|
57609
57780
|
|
|
57610
57781
|
// === Filled style icons ===
|
|
57611
|
-
const
|
|
57782
|
+
const AccessTimeFilled = createIconComponent('Access time', 'filled');
|
|
57612
57783
|
const AccessibilityFilled = createIconComponent('Accessibility', 'filled');
|
|
57613
57784
|
const AddFilled = createIconComponent('Add', 'filled');
|
|
57785
|
+
const AddCircleFilled = createIconComponent('Add circle', 'filled');
|
|
57786
|
+
const AddSquareFilled = createIconComponent('Add square', 'filled');
|
|
57614
57787
|
const AirplaneFilled = createIconComponent('Airplane', 'filled');
|
|
57615
57788
|
const AlbumFilled = createIconComponent('Album', 'filled');
|
|
57616
57789
|
const AlertFilled = createIconComponent('Alert', 'filled');
|
|
57617
|
-
const
|
|
57790
|
+
const AlertBadgeFilled = createIconComponent('Alert badge', 'filled');
|
|
57791
|
+
const AlertOffFilled = createIconComponent('Alert off', 'filled');
|
|
57792
|
+
const AlignBottomFilled = createIconComponent('Align bottom', 'filled');
|
|
57793
|
+
const AlignCenterHorizontalFilled = createIconComponent('Align center horizontal', 'filled');
|
|
57794
|
+
const AlignCenterVerticalFilled = createIconComponent('Align center vertical', 'filled');
|
|
57795
|
+
const AlignLeftFilled = createIconComponent('Align left', 'filled');
|
|
57796
|
+
const AlignRightFilled = createIconComponent('Align right', 'filled');
|
|
57797
|
+
const AlignTopFilled = createIconComponent('Align top', 'filled');
|
|
57618
57798
|
const AndroidFilled = createIconComponent('Android', 'filled');
|
|
57619
|
-
const
|
|
57799
|
+
const AppFolderFilled = createIconComponent('App folder', 'filled');
|
|
57800
|
+
const AppRecentFilled = createIconComponent('App recent', 'filled');
|
|
57801
|
+
const AppTitleFilled = createIconComponent('App title', 'filled');
|
|
57620
57802
|
const AppstoreFilled = createIconComponent('Appstore', 'filled');
|
|
57621
57803
|
const AutosumFilled = createIconComponent('Autosum', 'filled');
|
|
57622
57804
|
const BackpackFilled = createIconComponent('Backpack', 'filled');
|
|
57623
57805
|
const BackspaceFilled = createIconComponent('Backspace', 'filled');
|
|
57624
57806
|
const BadgeFilled = createIconComponent('Badge', 'filled');
|
|
57625
57807
|
const BalloonFilled = createIconComponent('Balloon', 'filled');
|
|
57626
|
-
const
|
|
57627
|
-
const
|
|
57628
|
-
const
|
|
57808
|
+
const BarChartHorizontalFilled = createIconComponent('Bar chart horizontal', 'filled');
|
|
57809
|
+
const BarChartHorizontalDescendingFilled = createIconComponent('Bar chart horizontal descending', 'filled');
|
|
57810
|
+
const BarChartVerticalFilled = createIconComponent('Bar chart vertical', 'filled');
|
|
57811
|
+
const BarChartVerticalDescendingFilled = createIconComponent('Bar chart vertical descending', 'filled');
|
|
57812
|
+
const BarcodeScannerFilled = createIconComponent('Barcode scanner', 'filled');
|
|
57813
|
+
const Battery0Filled = createIconComponent('Battery 0', 'filled');
|
|
57814
|
+
const Battery10Filled = createIconComponent('Battery 10', 'filled');
|
|
57815
|
+
const Battery100Filled = createIconComponent('Battery 100', 'filled');
|
|
57816
|
+
const Battery20Filled = createIconComponent('Battery 20', 'filled');
|
|
57817
|
+
const Battery30Filled = createIconComponent('Battery 30', 'filled');
|
|
57818
|
+
const Battery40Filled = createIconComponent('Battery 40', 'filled');
|
|
57819
|
+
const Battery50Filled = createIconComponent('Battery 50', 'filled');
|
|
57820
|
+
const Battery60Filled = createIconComponent('Battery 60', 'filled');
|
|
57821
|
+
const Battery70Filled = createIconComponent('Battery 70', 'filled');
|
|
57822
|
+
const Battery80Filled = createIconComponent('Battery 80', 'filled');
|
|
57823
|
+
const Battery90Filled = createIconComponent('Battery 90', 'filled');
|
|
57629
57824
|
const BlockFilled = createIconComponent('Block', 'filled');
|
|
57630
57825
|
const BluetoothFilled = createIconComponent('Bluetooth', 'filled');
|
|
57631
57826
|
const BlurFilled = createIconComponent('Blur', 'filled');
|
|
@@ -57637,23 +57832,30 @@
|
|
|
57637
57832
|
const CalendarFilled = createIconComponent('Calendar', 'filled');
|
|
57638
57833
|
const CameraFilled = createIconComponent('Camera', 'filled');
|
|
57639
57834
|
const CartFilled = createIconComponent('Cart', 'filled');
|
|
57640
|
-
const
|
|
57835
|
+
const CartonBoxFilled = createIconComponent('Carton box', 'filled');
|
|
57641
57836
|
const ChartFilled = createIconComponent('Chart', 'filled');
|
|
57642
57837
|
const ChatFilled = createIconComponent('Chat', 'filled');
|
|
57838
|
+
const ChatAddFilled = createIconComponent('Chat add', 'filled');
|
|
57839
|
+
const ChatEmptyFilled = createIconComponent('Chat empty', 'filled');
|
|
57643
57840
|
const CheckmarkFilled = createIconComponent('Checkmark', 'filled');
|
|
57644
57841
|
const ChessFilled = createIconComponent('Chess', 'filled');
|
|
57645
|
-
const
|
|
57842
|
+
const ChevronDownFilled = createIconComponent('Chevron down', 'filled');
|
|
57843
|
+
const ChevronLeftFilled = createIconComponent('Chevron left', 'filled');
|
|
57844
|
+
const ChevronRightFilled = createIconComponent('Chevron right', 'filled');
|
|
57845
|
+
const ChevronUpFilled = createIconComponent('Chevron up', 'filled');
|
|
57646
57846
|
const CircleFilled = createIconComponent('Circle', 'filled');
|
|
57647
57847
|
const ClipboardFilled = createIconComponent('Clipboard', 'filled');
|
|
57648
57848
|
const ClockFilled = createIconComponent('Clock', 'filled');
|
|
57849
|
+
const ClockAlarmFilled = createIconComponent('Clock alarm', 'filled');
|
|
57649
57850
|
const CloudFilled = createIconComponent('Cloud', 'filled');
|
|
57650
57851
|
const CloverFilled = createIconComponent('Clover', 'filled');
|
|
57651
57852
|
const CodeFilled = createIconComponent('Code', 'filled');
|
|
57853
|
+
const CodeBlockFilled = createIconComponent('Code block', 'filled');
|
|
57652
57854
|
const CommaFilled = createIconComponent('Comma', 'filled');
|
|
57653
57855
|
const CommentFilled = createIconComponent('Comment', 'filled');
|
|
57654
57856
|
const ConeFilled = createIconComponent('Cone', 'filled');
|
|
57655
57857
|
const ContrastFilled = createIconComponent('Contrast', 'filled');
|
|
57656
|
-
const
|
|
57858
|
+
const ControlButtonFilled = createIconComponent('Control button', 'filled');
|
|
57657
57859
|
const CookieFilled = createIconComponent('Cookie', 'filled');
|
|
57658
57860
|
const CopyFilled = createIconComponent('Copy', 'filled');
|
|
57659
57861
|
const CouchFilled = createIconComponent('Couch', 'filled');
|
|
@@ -57667,47 +57869,73 @@
|
|
|
57667
57869
|
const DartFilled = createIconComponent('Dart', 'filled');
|
|
57668
57870
|
const DatabaseFilled = createIconComponent('Database', 'filled');
|
|
57669
57871
|
const DeleteFilled = createIconComponent('Delete', 'filled');
|
|
57872
|
+
const DeleteOffFilled = createIconComponent('Delete off', 'filled');
|
|
57670
57873
|
const DentistFilled = createIconComponent('Dentist', 'filled');
|
|
57671
57874
|
const DeskFilled = createIconComponent('Desk', 'filled');
|
|
57672
57875
|
const DesktopFilled = createIconComponent('Desktop', 'filled');
|
|
57876
|
+
const DesktopMacFilled = createIconComponent('Desktop mac', 'filled');
|
|
57673
57877
|
const DialpadFilled = createIconComponent('Dialpad', 'filled');
|
|
57674
57878
|
const DiamondFilled = createIconComponent('Diamond', 'filled');
|
|
57675
57879
|
const DismissFilled = createIconComponent('Dismiss', 'filled');
|
|
57880
|
+
const DismissCircleFilled = createIconComponent('Dismiss circle', 'filled');
|
|
57881
|
+
const DismissSquareFilled = createIconComponent('Dismiss square', 'filled');
|
|
57676
57882
|
const DoctorFilled = createIconComponent('Doctor', 'filled');
|
|
57677
57883
|
const DocumentFilled = createIconComponent('Document', 'filled');
|
|
57884
|
+
const DocumentBorderFilled = createIconComponent('Document border', 'filled');
|
|
57678
57885
|
const DoorFilled = createIconComponent('Door', 'filled');
|
|
57679
57886
|
const DragFilled = createIconComponent('Drag', 'filled');
|
|
57680
57887
|
const DrawerFilled = createIconComponent('Drawer', 'filled');
|
|
57681
57888
|
const DropFilled = createIconComponent('Drop', 'filled');
|
|
57682
|
-
const
|
|
57889
|
+
const DualScreenFilled = createIconComponent('Dual screen', 'filled');
|
|
57683
57890
|
const DumbbellFilled = createIconComponent('Dumbbell', 'filled');
|
|
57684
57891
|
const DustFilled = createIconComponent('Dust', 'filled');
|
|
57685
57892
|
const EarthFilled = createIconComponent('Earth', 'filled');
|
|
57686
57893
|
const EditFilled = createIconComponent('Edit', 'filled');
|
|
57894
|
+
const EditOffFilled = createIconComponent('Edit off', 'filled');
|
|
57687
57895
|
const ElevatorFilled = createIconComponent('Elevator', 'filled');
|
|
57688
57896
|
const EmojiFilled = createIconComponent('Emoji', 'filled');
|
|
57897
|
+
const EmojiAngryFilled = createIconComponent('Emoji angry', 'filled');
|
|
57898
|
+
const EmojiCoolFilled = createIconComponent('Emoji cool', 'filled');
|
|
57899
|
+
const EmojiGrimacingFilled = createIconComponent('Emoji grimacing', 'filled');
|
|
57900
|
+
const EmojiLaughFilled = createIconComponent('Emoji laugh', 'filled');
|
|
57901
|
+
const EmojiMehFilled = createIconComponent('Emoji meh', 'filled');
|
|
57902
|
+
const EmojiSadFilled = createIconComponent('Emoji sad', 'filled');
|
|
57903
|
+
const EmojiSurpriseFilled = createIconComponent('Emoji surprise', 'filled');
|
|
57689
57904
|
const EngineFilled = createIconComponent('Engine', 'filled');
|
|
57690
57905
|
const EqualFilled = createIconComponent('Equal', 'filled');
|
|
57691
|
-
const
|
|
57906
|
+
const EqualCircleFilled = createIconComponent('Equal circle', 'filled');
|
|
57907
|
+
const EqualOffFilled = createIconComponent('Equal off', 'filled');
|
|
57908
|
+
const ErrorCircleFilled = createIconComponent('Error circle', 'filled');
|
|
57692
57909
|
const EyeFilled = createIconComponent('Eye', 'filled');
|
|
57910
|
+
const EyeOffFilled = createIconComponent('Eye off', 'filled');
|
|
57693
57911
|
const EyedropperFilled = createIconComponent('Eyedropper', 'filled');
|
|
57694
|
-
const
|
|
57912
|
+
const EyedropperOffFilled = createIconComponent('Eyedropper off', 'filled');
|
|
57913
|
+
const FastForwardFilled = createIconComponent('Fast forward', 'filled');
|
|
57695
57914
|
const FilmstripFilled = createIconComponent('Filmstrip', 'filled');
|
|
57915
|
+
const FilmstripOffFilled = createIconComponent('Filmstrip off', 'filled');
|
|
57696
57916
|
const FilterFilled = createIconComponent('Filter', 'filled');
|
|
57697
57917
|
const FireFilled = createIconComponent('Fire', 'filled');
|
|
57698
57918
|
const FlagFilled = createIconComponent('Flag', 'filled');
|
|
57919
|
+
const FlagOffFilled = createIconComponent('Flag off', 'filled');
|
|
57699
57920
|
const FlashFilled = createIconComponent('Flash', 'filled');
|
|
57921
|
+
const FlashOffFilled = createIconComponent('Flash off', 'filled');
|
|
57700
57922
|
const FlashlightFilled = createIconComponent('Flashlight', 'filled');
|
|
57701
|
-
const
|
|
57923
|
+
const FlashlightOffFilled = createIconComponent('Flashlight off', 'filled');
|
|
57924
|
+
const FlipHorizontalFilled = createIconComponent('Flip horizontal', 'filled');
|
|
57925
|
+
const FlipVerticialFilled = createIconComponent('Flip verticial', 'filled');
|
|
57702
57926
|
const FolderFilled = createIconComponent('Folder', 'filled');
|
|
57927
|
+
const FolderOpenFilled = createIconComponent('Folder open', 'filled');
|
|
57703
57928
|
const FrameFilled = createIconComponent('Frame', 'filled');
|
|
57704
|
-
const
|
|
57929
|
+
const FullScreenMaximizeFilled = createIconComponent('Full screen maximize', 'filled');
|
|
57930
|
+
const FullScreenMinimizeFilled = createIconComponent('Full screen minimize', 'filled');
|
|
57705
57931
|
const GamesFilled = createIconComponent('Games', 'filled');
|
|
57706
|
-
const
|
|
57932
|
+
const GanttChartFilled = createIconComponent('Gantt chart', 'filled');
|
|
57707
57933
|
const GasFilled = createIconComponent('Gas', 'filled');
|
|
57934
|
+
const GasStationFilled = createIconComponent('Gas station', 'filled');
|
|
57708
57935
|
const GavelFilled = createIconComponent('Gavel', 'filled');
|
|
57709
57936
|
const GifFilled = createIconComponent('Gif', 'filled');
|
|
57710
57937
|
const GiftFilled = createIconComponent('Gift', 'filled');
|
|
57938
|
+
const GiftCardFilled = createIconComponent('Gift card', 'filled');
|
|
57711
57939
|
const GitFilled = createIconComponent('Git', 'filled');
|
|
57712
57940
|
const GlassesFilled = createIconComponent('Glasses', 'filled');
|
|
57713
57941
|
const GlobalFilled = createIconComponent('Global', 'filled');
|
|
@@ -57715,102 +57943,160 @@
|
|
|
57715
57943
|
const GuestFilled = createIconComponent('Guest', 'filled');
|
|
57716
57944
|
const GuitarFilled = createIconComponent('Guitar', 'filled');
|
|
57717
57945
|
const HammerFilled = createIconComponent('Hammer', 'filled');
|
|
57718
|
-
const
|
|
57719
|
-
const
|
|
57946
|
+
const HardDriveFilled = createIconComponent('Hard drive', 'filled');
|
|
57947
|
+
const HatGraduationFilled = createIconComponent('Hat graduation', 'filled');
|
|
57720
57948
|
const HdFilled = createIconComponent('Hd', 'filled');
|
|
57721
57949
|
const HdrFilled = createIconComponent('Hdr', 'filled');
|
|
57950
|
+
const HdrOffFilled = createIconComponent('Hdr off', 'filled');
|
|
57722
57951
|
const HeadphonesFilled = createIconComponent('Headphones', 'filled');
|
|
57723
|
-
const
|
|
57952
|
+
const HeadphonesMicFilled = createIconComponent('Headphones mic', 'filled');
|
|
57953
|
+
const HeadsetVrFilled = createIconComponent('Headset vr', 'filled');
|
|
57724
57954
|
const HeartFilled = createIconComponent('Heart', 'filled');
|
|
57955
|
+
const HeartBrokenFilled = createIconComponent('Heart broken', 'filled');
|
|
57725
57956
|
const HexagonFilled = createIconComponent('Hexagon', 'filled');
|
|
57726
57957
|
const HighlightFilled = createIconComponent('Highlight', 'filled');
|
|
57727
57958
|
const HighwayFilled = createIconComponent('Highway', 'filled');
|
|
57728
57959
|
const HomeFilled = createIconComponent('Home', 'filled');
|
|
57960
|
+
const HomeCheckmarkFilled = createIconComponent('Home checkmark', 'filled');
|
|
57729
57961
|
const HourglassFilled = createIconComponent('Hourglass', 'filled');
|
|
57962
|
+
const HourglassHalfFilled = createIconComponent('Hourglass half', 'filled');
|
|
57963
|
+
const HourglassOneQuarterFilled = createIconComponent('Hourglass one quarter', 'filled');
|
|
57964
|
+
const HourglassThreeQuarterFilled = createIconComponent('Hourglass three quarter', 'filled');
|
|
57730
57965
|
const HtmlFilled = createIconComponent('Html', 'filled');
|
|
57731
57966
|
const ImageFilled = createIconComponent('Image', 'filled');
|
|
57967
|
+
const ImageCircleFilled = createIconComponent('Image circle', 'filled');
|
|
57732
57968
|
const ImportantFilled = createIconComponent('Important', 'filled');
|
|
57733
57969
|
const IncognitoFilled = createIconComponent('Incognito', 'filled');
|
|
57734
57970
|
const InfoFilled = createIconComponent('Info', 'filled');
|
|
57735
57971
|
const IosFilled = createIconComponent('Ios', 'filled');
|
|
57972
|
+
const IosArrowLtrFilled = createIconComponent('Ios arrow ltr', 'filled');
|
|
57973
|
+
const IosArrowRtlFilled = createIconComponent('Ios arrow rtl', 'filled');
|
|
57974
|
+
const IosChevronLtrFilled = createIconComponent('Ios chevron ltr', 'filled');
|
|
57975
|
+
const IosChevronRtlFilled = createIconComponent('Ios chevron rtl', 'filled');
|
|
57736
57976
|
const IotFilled = createIconComponent('Iot', 'filled');
|
|
57737
57977
|
const JavascriptFilled = createIconComponent('Javascript', 'filled');
|
|
57738
57978
|
const JoystickFilled = createIconComponent('Joystick', 'filled');
|
|
57739
57979
|
const JsonFilled = createIconComponent('Json', 'filled');
|
|
57980
|
+
const JsonFileFilled = createIconComponent('Json file', 'filled');
|
|
57740
57981
|
const KeyFilled = createIconComponent('Key', 'filled');
|
|
57982
|
+
const KeyMultipleFilled = createIconComponent('Key multiple', 'filled');
|
|
57741
57983
|
const KeyboardFilled = createIconComponent('Keyboard', 'filled');
|
|
57984
|
+
const KeyboardBackspaceFilled = createIconComponent('Keyboard backspace', 'filled');
|
|
57985
|
+
const KeyboardCommandFilled = createIconComponent('Keyboard command', 'filled');
|
|
57986
|
+
const KeyboardLockFilled = createIconComponent('Keyboard lock', 'filled');
|
|
57987
|
+
const KeyboardOffFilled = createIconComponent('Keyboard off', 'filled');
|
|
57988
|
+
const KeyboardOptionFilled = createIconComponent('Keyboard option', 'filled');
|
|
57989
|
+
const KeyboardReturnFilled = createIconComponent('Keyboard return', 'filled');
|
|
57990
|
+
const KeyboardShiftFilled = createIconComponent('Keyboard shift', 'filled');
|
|
57991
|
+
const KeyboardShiftUppercaseFilled = createIconComponent('Keyboard shift uppercase', 'filled');
|
|
57992
|
+
const KeyboardTabFilled = createIconComponent('Keyboard tab', 'filled');
|
|
57742
57993
|
const KioskFilled = createIconComponent('Kiosk', 'filled');
|
|
57743
57994
|
const KotlinFilled = createIconComponent('Kotlin', 'filled');
|
|
57744
57995
|
const LaptopFilled = createIconComponent('Laptop', 'filled');
|
|
57745
57996
|
const LayerFilled = createIconComponent('Layer', 'filled');
|
|
57746
57997
|
const LightbulbFilled = createIconComponent('Lightbulb', 'filled');
|
|
57747
57998
|
const LineFilled = createIconComponent('Line', 'filled');
|
|
57999
|
+
const LineDashesFilled = createIconComponent('Line dashes', 'filled');
|
|
58000
|
+
const LineHorizontal1Filled = createIconComponent('Line horizontal 1', 'filled');
|
|
58001
|
+
const LineHorizontal1DashesFilled = createIconComponent('Line horizontal 1 dashes', 'filled');
|
|
57748
58002
|
const LinkFilled = createIconComponent('Link', 'filled');
|
|
57749
|
-
const LocalFilled = createIconComponent('Local', 'filled');
|
|
57750
58003
|
const LocalLanguageFilled = createIconComponent('Local language', 'filled');
|
|
57751
58004
|
const LocationFilled = createIconComponent('Location', 'filled');
|
|
57752
|
-
const
|
|
58005
|
+
const LocationArrowFilled = createIconComponent('Location arrow', 'filled');
|
|
58006
|
+
const LockClosedFilled = createIconComponent('Lock closed', 'filled');
|
|
58007
|
+
const LockOpenFilled = createIconComponent('Lock open', 'filled');
|
|
57753
58008
|
const LuggageFilled = createIconComponent('Luggage', 'filled');
|
|
57754
58009
|
const MacosFilled = createIconComponent('Macos', 'filled');
|
|
57755
58010
|
const MailFilled = createIconComponent('Mail', 'filled');
|
|
58011
|
+
const MailReadFilled = createIconComponent('Mail read', 'filled');
|
|
57756
58012
|
const MailboxFilled = createIconComponent('Mailbox', 'filled');
|
|
57757
58013
|
const MapFilled = createIconComponent('Map', 'filled');
|
|
57758
58014
|
const MarkdownFilled = createIconComponent('Markdown', 'filled');
|
|
57759
|
-
const
|
|
58015
|
+
const MathSymbolsFilled = createIconComponent('Math symbols', 'filled');
|
|
57760
58016
|
const MegaphoneFilled = createIconComponent('Megaphone', 'filled');
|
|
57761
58017
|
const MicFilled = createIconComponent('Mic', 'filled');
|
|
57762
58018
|
const MoonFilled = createIconComponent('Moon', 'filled');
|
|
57763
|
-
const
|
|
58019
|
+
const MoreCircleFilled = createIconComponent('More circle', 'filled');
|
|
58020
|
+
const MoreHorizontalFilled = createIconComponent('More horizontal', 'filled');
|
|
58021
|
+
const MoreVerticialFilled = createIconComponent('More verticial', 'filled');
|
|
57764
58022
|
const MouseFilled = createIconComponent('Mouse', 'filled');
|
|
57765
58023
|
const MovieFilled = createIconComponent('Movie', 'filled');
|
|
57766
|
-
const
|
|
58024
|
+
const NetworkCheckFilled = createIconComponent('Network check', 'filled');
|
|
57767
58025
|
const NewsFilled = createIconComponent('News', 'filled');
|
|
57768
58026
|
const NextFilled = createIconComponent('Next', 'filled');
|
|
57769
58027
|
const NoteFilled = createIconComponent('Note', 'filled');
|
|
57770
58028
|
const NotebookFilled = createIconComponent('Notebook', 'filled');
|
|
57771
58029
|
const NotepadFilled = createIconComponent('Notepad', 'filled');
|
|
57772
|
-
const
|
|
58030
|
+
const NumberCircle0Filled = createIconComponent('Number circle 0', 'filled');
|
|
58031
|
+
const NumberCircle1Filled = createIconComponent('Number circle 1', 'filled');
|
|
58032
|
+
const NumberCircle2Filled = createIconComponent('Number circle 2', 'filled');
|
|
58033
|
+
const NumberCircle3Filled = createIconComponent('Number circle 3', 'filled');
|
|
58034
|
+
const NumberCircle4Filled = createIconComponent('Number circle 4', 'filled');
|
|
58035
|
+
const NumberCircle5Filled = createIconComponent('Number circle 5', 'filled');
|
|
58036
|
+
const NumberCircle6Filled = createIconComponent('Number circle 6', 'filled');
|
|
58037
|
+
const NumberCircle7Filled = createIconComponent('Number circle 7', 'filled');
|
|
58038
|
+
const NumberCircle8Filled = createIconComponent('Number circle 8', 'filled');
|
|
58039
|
+
const NumberCircle9Filled = createIconComponent('Number circle 9', 'filled');
|
|
58040
|
+
const NumberSymbolFilled = createIconComponent('Number symbol', 'filled');
|
|
58041
|
+
const NumberSymbolCircleFilled = createIconComponent('Number symbol circle', 'filled');
|
|
58042
|
+
const NumberSymbolSquareFilled = createIconComponent('Number symbol square', 'filled');
|
|
57773
58043
|
const OpacityFilled = createIconComponent('Opacity', 'filled');
|
|
57774
58044
|
const OpenFilled = createIconComponent('Open', 'filled');
|
|
58045
|
+
const OpenOffFilled = createIconComponent('Open off', 'filled');
|
|
57775
58046
|
const OptionsFilled = createIconComponent('Options', 'filled');
|
|
57776
58047
|
const OrganizationFilled = createIconComponent('Organization', 'filled');
|
|
58048
|
+
const OrganizationHorizontalFilled = createIconComponent('Organization horizontal', 'filled');
|
|
57777
58049
|
const OrientationFilled = createIconComponent('Orientation', 'filled');
|
|
57778
58050
|
const OvalFilled = createIconComponent('Oval', 'filled');
|
|
57779
58051
|
const OvenFilled = createIconComponent('Oven', 'filled');
|
|
57780
58052
|
const PaddingFilled = createIconComponent('Padding', 'filled');
|
|
57781
|
-
const
|
|
57782
|
-
const
|
|
58053
|
+
const PageFitFilled = createIconComponent('Page fit', 'filled');
|
|
58054
|
+
const PaintBrushFilled = createIconComponent('Paint brush', 'filled');
|
|
58055
|
+
const PaintBucketFilled = createIconComponent('Paint bucket', 'filled');
|
|
57783
58056
|
const ParallelogramFilled = createIconComponent('Parallelogram', 'filled');
|
|
57784
58057
|
const PasswordFilled = createIconComponent('Password', 'filled');
|
|
57785
58058
|
const PauseFilled = createIconComponent('Pause', 'filled');
|
|
58059
|
+
const PauseCircleFilled = createIconComponent('Pause circle', 'filled');
|
|
57786
58060
|
const PaymentFilled = createIconComponent('Payment', 'filled');
|
|
58061
|
+
const PaymentWirelessFilled = createIconComponent('Payment wireless', 'filled');
|
|
57787
58062
|
const PenFilled = createIconComponent('Pen', 'filled');
|
|
58063
|
+
const PenOffFilled = createIconComponent('Pen off', 'filled');
|
|
57788
58064
|
const PentagonFilled = createIconComponent('Pentagon', 'filled');
|
|
57789
58065
|
const PersonFilled = createIconComponent('Person', 'filled');
|
|
58066
|
+
const PersonVoiceFilled = createIconComponent('Person voice', 'filled');
|
|
57790
58067
|
const PhoneFilled = createIconComponent('Phone', 'filled');
|
|
57791
58068
|
const PianoFilled = createIconComponent('Piano', 'filled');
|
|
57792
58069
|
const PinFilled = createIconComponent('Pin', 'filled');
|
|
57793
58070
|
const PipelineFilled = createIconComponent('Pipeline', 'filled');
|
|
57794
58071
|
const PlayFilled = createIconComponent('Play', 'filled');
|
|
58072
|
+
const PlayCircleFilled = createIconComponent('Play circle', 'filled');
|
|
57795
58073
|
const PlaystoreFilled = createIconComponent('Playstore', 'filled');
|
|
57796
|
-
const
|
|
58074
|
+
const PortHdmiFilled = createIconComponent('Port hdmi', 'filled');
|
|
58075
|
+
const PortMicroUsbFilled = createIconComponent('Port micro usb', 'filled');
|
|
58076
|
+
const PortUsbAFilled = createIconComponent('Port usb a', 'filled');
|
|
58077
|
+
const PortUsbCFilled = createIconComponent('Port usb c', 'filled');
|
|
57797
58078
|
const PowerFilled = createIconComponent('Power', 'filled');
|
|
57798
|
-
const
|
|
58079
|
+
const PreviewLinkFilled = createIconComponent('Preview link', 'filled');
|
|
57799
58080
|
const PreviousFilled = createIconComponent('Previous', 'filled');
|
|
57800
58081
|
const PrintFilled = createIconComponent('Print', 'filled');
|
|
57801
58082
|
const PulseFilled = createIconComponent('Pulse', 'filled');
|
|
58083
|
+
const PulseCircleFilled = createIconComponent('Pulse circle', 'filled');
|
|
58084
|
+
const PulseSquareFilled = createIconComponent('Pulse square', 'filled');
|
|
57802
58085
|
const PythonFilled = createIconComponent('Python', 'filled');
|
|
57803
|
-
const
|
|
58086
|
+
const QrCodeFilled = createIconComponent('Qr code', 'filled');
|
|
57804
58087
|
const QuestionFilled = createIconComponent('Question', 'filled');
|
|
57805
|
-
const
|
|
58088
|
+
const QuestionCircleFilled = createIconComponent('Question circle', 'filled');
|
|
58089
|
+
const RadioButtonFilled = createIconComponent('Radio button', 'filled');
|
|
57806
58090
|
const RamFilled = createIconComponent('Ram', 'filled');
|
|
57807
58091
|
const RecordFilled = createIconComponent('Record', 'filled');
|
|
58092
|
+
const RecordStopFilled = createIconComponent('Record stop', 'filled');
|
|
57808
58093
|
const RectangleFilled = createIconComponent('Rectangle', 'filled');
|
|
57809
58094
|
const RefineuiFilled = createIconComponent('Refineui', 'filled');
|
|
57810
58095
|
const RewindFilled = createIconComponent('Rewind', 'filled');
|
|
57811
58096
|
const RhombusFilled = createIconComponent('Rhombus', 'filled');
|
|
57812
58097
|
const RibbonFilled = createIconComponent('Ribbon', 'filled');
|
|
57813
58098
|
const RoadFilled = createIconComponent('Road', 'filled');
|
|
58099
|
+
const RoadConeFilled = createIconComponent('Road cone', 'filled');
|
|
57814
58100
|
const RocketFilled = createIconComponent('Rocket', 'filled');
|
|
57815
58101
|
const RotationFilled = createIconComponent('Rotation', 'filled');
|
|
57816
58102
|
const RouterFilled = createIconComponent('Router', 'filled');
|
|
@@ -57822,24 +58108,40 @@
|
|
|
57822
58108
|
const ScriptFilled = createIconComponent('Script', 'filled');
|
|
57823
58109
|
const SearchFilled = createIconComponent('Search', 'filled');
|
|
57824
58110
|
const SendFilled = createIconComponent('Send', 'filled');
|
|
57825
|
-
const
|
|
58111
|
+
const SerialPortFilled = createIconComponent('Serial port', 'filled');
|
|
57826
58112
|
const ServerFilled = createIconComponent('Server', 'filled');
|
|
57827
|
-
const
|
|
58113
|
+
const ServerLinkFilled = createIconComponent('Server link', 'filled');
|
|
58114
|
+
const ServerPlayFilled = createIconComponent('Server play', 'filled');
|
|
58115
|
+
const ServiceBellFilled = createIconComponent('Service bell', 'filled');
|
|
57828
58116
|
const SettingsFilled = createIconComponent('Settings', 'filled');
|
|
57829
|
-
const
|
|
58117
|
+
const ShapeExcludeFilled = createIconComponent('Shape exclude', 'filled');
|
|
58118
|
+
const ShapeIntersectFilled = createIconComponent('Shape intersect', 'filled');
|
|
58119
|
+
const ShapeSubtractFilled = createIconComponent('Shape subtract', 'filled');
|
|
58120
|
+
const ShapeUnionFilled = createIconComponent('Shape union', 'filled');
|
|
57830
58121
|
const ShapesFilled = createIconComponent('Shapes', 'filled');
|
|
57831
58122
|
const ShareFilled = createIconComponent('Share', 'filled');
|
|
57832
|
-
const
|
|
58123
|
+
const ShareAndroidFilled = createIconComponent('Share android', 'filled');
|
|
58124
|
+
const ShareIosFilled = createIconComponent('Share ios', 'filled');
|
|
58125
|
+
const ShellScriptFilled = createIconComponent('Shell script', 'filled');
|
|
57833
58126
|
const ShieldFilled = createIconComponent('Shield', 'filled');
|
|
57834
|
-
const
|
|
58127
|
+
const ShoppingBagFilled = createIconComponent('Shopping bag', 'filled');
|
|
57835
58128
|
const SimFilled = createIconComponent('Sim', 'filled');
|
|
57836
|
-
const
|
|
58129
|
+
const SlideAddFilled = createIconComponent('Slide add', 'filled');
|
|
58130
|
+
const SlideContentFilled = createIconComponent('Slide content', 'filled');
|
|
58131
|
+
const SlideEraserFilled = createIconComponent('Slide eraser', 'filled');
|
|
58132
|
+
const SlideGridFilled = createIconComponent('Slide grid', 'filled');
|
|
58133
|
+
const SlideHideFilled = createIconComponent('Slide hide', 'filled');
|
|
58134
|
+
const SlideLayoutFilled = createIconComponent('Slide layout', 'filled');
|
|
57837
58135
|
const SmartwatchFilled = createIconComponent('Smartwatch', 'filled');
|
|
57838
|
-
const
|
|
58136
|
+
const SoundSourceFilled = createIconComponent('Sound source', 'filled');
|
|
57839
58137
|
const SpacebarFilled = createIconComponent('Spacebar', 'filled');
|
|
57840
|
-
const
|
|
57841
|
-
const
|
|
58138
|
+
const SportBaseballFilled = createIconComponent('Sport baseball', 'filled');
|
|
58139
|
+
const SportBasketballFilled = createIconComponent('Sport basketball', 'filled');
|
|
58140
|
+
const SportSoccerFilled = createIconComponent('Sport soccer', 'filled');
|
|
58141
|
+
const SprayCanFilled = createIconComponent('Spray can', 'filled');
|
|
57842
58142
|
const SquareFilled = createIconComponent('Square', 'filled');
|
|
58143
|
+
const SquareHintFilled = createIconComponent('Square hint', 'filled');
|
|
58144
|
+
const SquareMultipleFilled = createIconComponent('Square multiple', 'filled');
|
|
57843
58145
|
const StarFilled = createIconComponent('Star', 'filled');
|
|
57844
58146
|
const StopFilled = createIconComponent('Stop', 'filled');
|
|
57845
58147
|
const SubtractFilled = createIconComponent('Subtract', 'filled');
|
|
@@ -57851,53 +58153,107 @@
|
|
|
57851
58153
|
const TemperatureFilled = createIconComponent('Temperature', 'filled');
|
|
57852
58154
|
const TentFilled = createIconComponent('Tent', 'filled');
|
|
57853
58155
|
const TextFilled = createIconComponent('Text', 'filled');
|
|
58156
|
+
const TextAlignCenterFilled = createIconComponent('Text align center', 'filled');
|
|
58157
|
+
const TextAlignJustifyFilled = createIconComponent('Text align justify', 'filled');
|
|
58158
|
+
const TextAlignLeftFilled = createIconComponent('Text align left', 'filled');
|
|
58159
|
+
const TextAlignRightFilled = createIconComponent('Text align right', 'filled');
|
|
57854
58160
|
const TextboxFilled = createIconComponent('Textbox', 'filled');
|
|
58161
|
+
const TextboxAlignBottomFilled = createIconComponent('Textbox align bottom', 'filled');
|
|
58162
|
+
const TextboxAlignBottomCenterFilled = createIconComponent('Textbox align bottom center', 'filled');
|
|
58163
|
+
const TextboxAlignBottomLeftFilled = createIconComponent('Textbox align bottom left', 'filled');
|
|
58164
|
+
const TextboxAlignBottomRightFilled = createIconComponent('Textbox align bottom right', 'filled');
|
|
58165
|
+
const TextboxAlignCenterFilled = createIconComponent('Textbox align center', 'filled');
|
|
58166
|
+
const TextboxAlignMiddleFilled = createIconComponent('Textbox align middle', 'filled');
|
|
58167
|
+
const TextboxAlignMiddleLeftFilled = createIconComponent('Textbox align middle left', 'filled');
|
|
58168
|
+
const TextboxAlignMiddleRightFilled = createIconComponent('Textbox align middle right', 'filled');
|
|
58169
|
+
const TextboxAlignTopFilled = createIconComponent('Textbox align top', 'filled');
|
|
58170
|
+
const TextboxAlignTopCenterFilled = createIconComponent('Textbox align top center', 'filled');
|
|
58171
|
+
const TextboxAlignTopLeftFilled = createIconComponent('Textbox align top left', 'filled');
|
|
58172
|
+
const TextboxAlignTopRightFilled = createIconComponent('Textbox align top right', 'filled');
|
|
57855
58173
|
const ThinkingFilled = createIconComponent('Thinking', 'filled');
|
|
57856
58174
|
const TicketFilled = createIconComponent('Ticket', 'filled');
|
|
57857
58175
|
const TimerFilled = createIconComponent('Timer', 'filled');
|
|
57858
|
-
const
|
|
58176
|
+
const ToggleLeftFilled = createIconComponent('Toggle left', 'filled');
|
|
58177
|
+
const ToggleMultipleFilled = createIconComponent('Toggle multiple', 'filled');
|
|
58178
|
+
const ToggleRightFilled = createIconComponent('Toggle right', 'filled');
|
|
57859
58179
|
const ToolboxFilled = createIconComponent('Toolbox', 'filled');
|
|
57860
58180
|
const TrophyFilled = createIconComponent('Trophy', 'filled');
|
|
57861
58181
|
const TvFilled = createIconComponent('Tv', 'filled');
|
|
57862
58182
|
const TypescriptFilled = createIconComponent('Typescript', 'filled');
|
|
57863
58183
|
const UmbrellaFilled = createIconComponent('Umbrella', 'filled');
|
|
57864
58184
|
const UsbFilled = createIconComponent('Usb', 'filled');
|
|
58185
|
+
const UsbCableFilled = createIconComponent('Usb cable', 'filled');
|
|
57865
58186
|
const VerifiedFilled = createIconComponent('Verified', 'filled');
|
|
57866
58187
|
const VideoFilled = createIconComponent('Video', 'filled');
|
|
58188
|
+
const VideoClipFilled = createIconComponent('Video clip', 'filled');
|
|
58189
|
+
const VideoPlayPauseFilled = createIconComponent('Video play pause', 'filled');
|
|
57867
58190
|
const VoicemailFilled = createIconComponent('Voicemail', 'filled');
|
|
57868
58191
|
const VoteFilled = createIconComponent('Vote', 'filled');
|
|
57869
|
-
const
|
|
58192
|
+
const WalkieTalkieFilled = createIconComponent('Walkie talkie', 'filled');
|
|
57870
58193
|
const WalletFilled = createIconComponent('Wallet', 'filled');
|
|
57871
58194
|
const WandFilled = createIconComponent('Wand', 'filled');
|
|
57872
58195
|
const WarningFilled = createIconComponent('Warning', 'filled');
|
|
57873
58196
|
const WasherFilled = createIconComponent('Washer', 'filled');
|
|
57874
58197
|
const WaterFilled = createIconComponent('Water', 'filled');
|
|
57875
|
-
const
|
|
58198
|
+
const WeatherBlowingSnowFilled = createIconComponent('Weather blowing snow', 'filled');
|
|
58199
|
+
const WeatherCloudyFilled = createIconComponent('Weather cloudy', 'filled');
|
|
58200
|
+
const WeatherRainFilled = createIconComponent('Weather rain', 'filled');
|
|
58201
|
+
const WeatherSnowFilled = createIconComponent('Weather snow', 'filled');
|
|
58202
|
+
const WeatherSnowflakeFilled = createIconComponent('Weather snowflake', 'filled');
|
|
58203
|
+
const WeatherSunnyFilled = createIconComponent('Weather sunny', 'filled');
|
|
58204
|
+
const WeatherThunderstormFilled = createIconComponent('Weather thunderstorm', 'filled');
|
|
57876
58205
|
const WebFilled = createIconComponent('Web', 'filled');
|
|
57877
|
-
const
|
|
58206
|
+
const Wifi1Filled = createIconComponent('Wifi 1', 'filled');
|
|
58207
|
+
const Wifi2Filled = createIconComponent('Wifi 2', 'filled');
|
|
58208
|
+
const Wifi3Filled = createIconComponent('Wifi 3', 'filled');
|
|
58209
|
+
const Wifi4Filled = createIconComponent('Wifi 4', 'filled');
|
|
57878
58210
|
const WindowsFilled = createIconComponent('Windows', 'filled');
|
|
57879
58211
|
const WrenchFilled = createIconComponent('Wrench', 'filled');
|
|
57880
58212
|
const XrayFilled = createIconComponent('Xray', 'filled');
|
|
57881
|
-
const ZoomFilled = createIconComponent('Zoom', 'filled');
|
|
58213
|
+
const ZoomFilled = createIconComponent('Zoom', 'filled');
|
|
58214
|
+
const ZoomInFilled = createIconComponent('Zoom in', 'filled');
|
|
58215
|
+
const ZoomOutFilled = createIconComponent('Zoom out', 'filled');
|
|
57882
58216
|
|
|
57883
|
-
exports.
|
|
57884
|
-
exports.
|
|
58217
|
+
exports.AccessTime = AccessTime;
|
|
58218
|
+
exports.AccessTimeFilled = AccessTimeFilled;
|
|
57885
58219
|
exports.Accessibility = Accessibility;
|
|
57886
58220
|
exports.AccessibilityFilled = AccessibilityFilled;
|
|
57887
58221
|
exports.Add = Add;
|
|
58222
|
+
exports.AddCircle = AddCircle;
|
|
58223
|
+
exports.AddCircleFilled = AddCircleFilled;
|
|
57888
58224
|
exports.AddFilled = AddFilled;
|
|
58225
|
+
exports.AddSquare = AddSquare;
|
|
58226
|
+
exports.AddSquareFilled = AddSquareFilled;
|
|
57889
58227
|
exports.Airplane = Airplane;
|
|
57890
58228
|
exports.AirplaneFilled = AirplaneFilled;
|
|
57891
58229
|
exports.Album = Album;
|
|
57892
58230
|
exports.AlbumFilled = AlbumFilled;
|
|
57893
58231
|
exports.Alert = Alert;
|
|
58232
|
+
exports.AlertBadge = AlertBadge;
|
|
58233
|
+
exports.AlertBadgeFilled = AlertBadgeFilled;
|
|
57894
58234
|
exports.AlertFilled = AlertFilled;
|
|
57895
|
-
exports.
|
|
57896
|
-
exports.
|
|
58235
|
+
exports.AlertOff = AlertOff;
|
|
58236
|
+
exports.AlertOffFilled = AlertOffFilled;
|
|
58237
|
+
exports.AlignBottom = AlignBottom;
|
|
58238
|
+
exports.AlignBottomFilled = AlignBottomFilled;
|
|
58239
|
+
exports.AlignCenterHorizontal = AlignCenterHorizontal;
|
|
58240
|
+
exports.AlignCenterHorizontalFilled = AlignCenterHorizontalFilled;
|
|
58241
|
+
exports.AlignCenterVertical = AlignCenterVertical;
|
|
58242
|
+
exports.AlignCenterVerticalFilled = AlignCenterVerticalFilled;
|
|
58243
|
+
exports.AlignLeft = AlignLeft;
|
|
58244
|
+
exports.AlignLeftFilled = AlignLeftFilled;
|
|
58245
|
+
exports.AlignRight = AlignRight;
|
|
58246
|
+
exports.AlignRightFilled = AlignRightFilled;
|
|
58247
|
+
exports.AlignTop = AlignTop;
|
|
58248
|
+
exports.AlignTopFilled = AlignTopFilled;
|
|
57897
58249
|
exports.Android = Android;
|
|
57898
58250
|
exports.AndroidFilled = AndroidFilled;
|
|
57899
|
-
exports.
|
|
57900
|
-
exports.
|
|
58251
|
+
exports.AppFolder = AppFolder;
|
|
58252
|
+
exports.AppFolderFilled = AppFolderFilled;
|
|
58253
|
+
exports.AppRecent = AppRecent;
|
|
58254
|
+
exports.AppRecentFilled = AppRecentFilled;
|
|
58255
|
+
exports.AppTitle = AppTitle;
|
|
58256
|
+
exports.AppTitleFilled = AppTitleFilled;
|
|
57901
58257
|
exports.Appstore = Appstore;
|
|
57902
58258
|
exports.AppstoreFilled = AppstoreFilled;
|
|
57903
58259
|
exports.Autosum = Autosum;
|
|
@@ -57910,12 +58266,38 @@
|
|
|
57910
58266
|
exports.BadgeFilled = BadgeFilled;
|
|
57911
58267
|
exports.Balloon = Balloon;
|
|
57912
58268
|
exports.BalloonFilled = BalloonFilled;
|
|
57913
|
-
exports.
|
|
57914
|
-
exports.
|
|
57915
|
-
exports.
|
|
57916
|
-
exports.
|
|
57917
|
-
exports.
|
|
57918
|
-
exports.
|
|
58269
|
+
exports.BarChartHorizontal = BarChartHorizontal;
|
|
58270
|
+
exports.BarChartHorizontalDescending = BarChartHorizontalDescending;
|
|
58271
|
+
exports.BarChartHorizontalDescendingFilled = BarChartHorizontalDescendingFilled;
|
|
58272
|
+
exports.BarChartHorizontalFilled = BarChartHorizontalFilled;
|
|
58273
|
+
exports.BarChartVertical = BarChartVertical;
|
|
58274
|
+
exports.BarChartVerticalDescending = BarChartVerticalDescending;
|
|
58275
|
+
exports.BarChartVerticalDescendingFilled = BarChartVerticalDescendingFilled;
|
|
58276
|
+
exports.BarChartVerticalFilled = BarChartVerticalFilled;
|
|
58277
|
+
exports.BarcodeScanner = BarcodeScanner;
|
|
58278
|
+
exports.BarcodeScannerFilled = BarcodeScannerFilled;
|
|
58279
|
+
exports.Battery0 = Battery0;
|
|
58280
|
+
exports.Battery0Filled = Battery0Filled;
|
|
58281
|
+
exports.Battery10 = Battery10;
|
|
58282
|
+
exports.Battery100 = Battery100;
|
|
58283
|
+
exports.Battery100Filled = Battery100Filled;
|
|
58284
|
+
exports.Battery10Filled = Battery10Filled;
|
|
58285
|
+
exports.Battery20 = Battery20;
|
|
58286
|
+
exports.Battery20Filled = Battery20Filled;
|
|
58287
|
+
exports.Battery30 = Battery30;
|
|
58288
|
+
exports.Battery30Filled = Battery30Filled;
|
|
58289
|
+
exports.Battery40 = Battery40;
|
|
58290
|
+
exports.Battery40Filled = Battery40Filled;
|
|
58291
|
+
exports.Battery50 = Battery50;
|
|
58292
|
+
exports.Battery50Filled = Battery50Filled;
|
|
58293
|
+
exports.Battery60 = Battery60;
|
|
58294
|
+
exports.Battery60Filled = Battery60Filled;
|
|
58295
|
+
exports.Battery70 = Battery70;
|
|
58296
|
+
exports.Battery70Filled = Battery70Filled;
|
|
58297
|
+
exports.Battery80 = Battery80;
|
|
58298
|
+
exports.Battery80Filled = Battery80Filled;
|
|
58299
|
+
exports.Battery90 = Battery90;
|
|
58300
|
+
exports.Battery90Filled = Battery90Filled;
|
|
57919
58301
|
exports.Block = Block;
|
|
57920
58302
|
exports.BlockFilled = BlockFilled;
|
|
57921
58303
|
exports.Bluetooth = Bluetooth;
|
|
@@ -57938,29 +58320,43 @@
|
|
|
57938
58320
|
exports.CameraFilled = CameraFilled;
|
|
57939
58321
|
exports.Cart = Cart;
|
|
57940
58322
|
exports.CartFilled = CartFilled;
|
|
57941
|
-
exports.
|
|
57942
|
-
exports.
|
|
58323
|
+
exports.CartonBox = CartonBox;
|
|
58324
|
+
exports.CartonBoxFilled = CartonBoxFilled;
|
|
57943
58325
|
exports.Chart = Chart;
|
|
57944
58326
|
exports.ChartFilled = ChartFilled;
|
|
57945
58327
|
exports.Chat = Chat;
|
|
58328
|
+
exports.ChatAdd = ChatAdd;
|
|
58329
|
+
exports.ChatAddFilled = ChatAddFilled;
|
|
58330
|
+
exports.ChatEmpty = ChatEmpty;
|
|
58331
|
+
exports.ChatEmptyFilled = ChatEmptyFilled;
|
|
57946
58332
|
exports.ChatFilled = ChatFilled;
|
|
57947
58333
|
exports.Checkmark = Checkmark;
|
|
57948
58334
|
exports.CheckmarkFilled = CheckmarkFilled;
|
|
57949
58335
|
exports.Chess = Chess;
|
|
57950
58336
|
exports.ChessFilled = ChessFilled;
|
|
57951
|
-
exports.
|
|
57952
|
-
exports.
|
|
58337
|
+
exports.ChevronDown = ChevronDown;
|
|
58338
|
+
exports.ChevronDownFilled = ChevronDownFilled;
|
|
58339
|
+
exports.ChevronLeft = ChevronLeft;
|
|
58340
|
+
exports.ChevronLeftFilled = ChevronLeftFilled;
|
|
58341
|
+
exports.ChevronRight = ChevronRight;
|
|
58342
|
+
exports.ChevronRightFilled = ChevronRightFilled;
|
|
58343
|
+
exports.ChevronUp = ChevronUp;
|
|
58344
|
+
exports.ChevronUpFilled = ChevronUpFilled;
|
|
57953
58345
|
exports.Circle = Circle;
|
|
57954
58346
|
exports.CircleFilled = CircleFilled;
|
|
57955
58347
|
exports.Clipboard = Clipboard;
|
|
57956
58348
|
exports.ClipboardFilled = ClipboardFilled;
|
|
57957
58349
|
exports.Clock = Clock;
|
|
58350
|
+
exports.ClockAlarm = ClockAlarm;
|
|
58351
|
+
exports.ClockAlarmFilled = ClockAlarmFilled;
|
|
57958
58352
|
exports.ClockFilled = ClockFilled;
|
|
57959
58353
|
exports.Cloud = Cloud;
|
|
57960
58354
|
exports.CloudFilled = CloudFilled;
|
|
57961
58355
|
exports.Clover = Clover;
|
|
57962
58356
|
exports.CloverFilled = CloverFilled;
|
|
57963
58357
|
exports.Code = Code;
|
|
58358
|
+
exports.CodeBlock = CodeBlock;
|
|
58359
|
+
exports.CodeBlockFilled = CodeBlockFilled;
|
|
57964
58360
|
exports.CodeFilled = CodeFilled;
|
|
57965
58361
|
exports.Comma = Comma;
|
|
57966
58362
|
exports.CommaFilled = CommaFilled;
|
|
@@ -57970,8 +58366,8 @@
|
|
|
57970
58366
|
exports.ConeFilled = ConeFilled;
|
|
57971
58367
|
exports.Contrast = Contrast;
|
|
57972
58368
|
exports.ContrastFilled = ContrastFilled;
|
|
57973
|
-
exports.
|
|
57974
|
-
exports.
|
|
58369
|
+
exports.ControlButton = ControlButton;
|
|
58370
|
+
exports.ControlButtonFilled = ControlButtonFilled;
|
|
57975
58371
|
exports.Cookie = Cookie;
|
|
57976
58372
|
exports.CookieFilled = CookieFilled;
|
|
57977
58373
|
exports.Copy = Copy;
|
|
@@ -57998,21 +58394,31 @@
|
|
|
57998
58394
|
exports.DatabaseFilled = DatabaseFilled;
|
|
57999
58395
|
exports.Delete = Delete;
|
|
58000
58396
|
exports.DeleteFilled = DeleteFilled;
|
|
58397
|
+
exports.DeleteOff = DeleteOff;
|
|
58398
|
+
exports.DeleteOffFilled = DeleteOffFilled;
|
|
58001
58399
|
exports.Dentist = Dentist;
|
|
58002
58400
|
exports.DentistFilled = DentistFilled;
|
|
58003
58401
|
exports.Desk = Desk;
|
|
58004
58402
|
exports.DeskFilled = DeskFilled;
|
|
58005
58403
|
exports.Desktop = Desktop;
|
|
58006
58404
|
exports.DesktopFilled = DesktopFilled;
|
|
58405
|
+
exports.DesktopMac = DesktopMac;
|
|
58406
|
+
exports.DesktopMacFilled = DesktopMacFilled;
|
|
58007
58407
|
exports.Dialpad = Dialpad;
|
|
58008
58408
|
exports.DialpadFilled = DialpadFilled;
|
|
58009
58409
|
exports.Diamond = Diamond;
|
|
58010
58410
|
exports.DiamondFilled = DiamondFilled;
|
|
58011
58411
|
exports.Dismiss = Dismiss;
|
|
58412
|
+
exports.DismissCircle = DismissCircle;
|
|
58413
|
+
exports.DismissCircleFilled = DismissCircleFilled;
|
|
58012
58414
|
exports.DismissFilled = DismissFilled;
|
|
58415
|
+
exports.DismissSquare = DismissSquare;
|
|
58416
|
+
exports.DismissSquareFilled = DismissSquareFilled;
|
|
58013
58417
|
exports.Doctor = Doctor;
|
|
58014
58418
|
exports.DoctorFilled = DoctorFilled;
|
|
58015
58419
|
exports.Document = Document;
|
|
58420
|
+
exports.DocumentBorder = DocumentBorder;
|
|
58421
|
+
exports.DocumentBorderFilled = DocumentBorderFilled;
|
|
58016
58422
|
exports.DocumentFilled = DocumentFilled;
|
|
58017
58423
|
exports.Door = Door;
|
|
58018
58424
|
exports.DoorFilled = DoorFilled;
|
|
@@ -58022,8 +58428,8 @@
|
|
|
58022
58428
|
exports.DrawerFilled = DrawerFilled;
|
|
58023
58429
|
exports.Drop = Drop;
|
|
58024
58430
|
exports.DropFilled = DropFilled;
|
|
58025
|
-
exports.
|
|
58026
|
-
exports.
|
|
58431
|
+
exports.DualScreen = DualScreen;
|
|
58432
|
+
exports.DualScreenFilled = DualScreenFilled;
|
|
58027
58433
|
exports.Dumbbell = Dumbbell;
|
|
58028
58434
|
exports.DumbbellFilled = DumbbellFilled;
|
|
58029
58435
|
exports.Dust = Dust;
|
|
@@ -58032,53 +58438,95 @@
|
|
|
58032
58438
|
exports.EarthFilled = EarthFilled;
|
|
58033
58439
|
exports.Edit = Edit;
|
|
58034
58440
|
exports.EditFilled = EditFilled;
|
|
58441
|
+
exports.EditOff = EditOff;
|
|
58442
|
+
exports.EditOffFilled = EditOffFilled;
|
|
58035
58443
|
exports.Elevator = Elevator;
|
|
58036
58444
|
exports.ElevatorFilled = ElevatorFilled;
|
|
58037
58445
|
exports.Emoji = Emoji;
|
|
58446
|
+
exports.EmojiAngry = EmojiAngry;
|
|
58447
|
+
exports.EmojiAngryFilled = EmojiAngryFilled;
|
|
58448
|
+
exports.EmojiCool = EmojiCool;
|
|
58449
|
+
exports.EmojiCoolFilled = EmojiCoolFilled;
|
|
58038
58450
|
exports.EmojiFilled = EmojiFilled;
|
|
58451
|
+
exports.EmojiGrimacing = EmojiGrimacing;
|
|
58452
|
+
exports.EmojiGrimacingFilled = EmojiGrimacingFilled;
|
|
58453
|
+
exports.EmojiLaugh = EmojiLaugh;
|
|
58454
|
+
exports.EmojiLaughFilled = EmojiLaughFilled;
|
|
58455
|
+
exports.EmojiMeh = EmojiMeh;
|
|
58456
|
+
exports.EmojiMehFilled = EmojiMehFilled;
|
|
58457
|
+
exports.EmojiSad = EmojiSad;
|
|
58458
|
+
exports.EmojiSadFilled = EmojiSadFilled;
|
|
58459
|
+
exports.EmojiSurprise = EmojiSurprise;
|
|
58460
|
+
exports.EmojiSurpriseFilled = EmojiSurpriseFilled;
|
|
58039
58461
|
exports.Engine = Engine;
|
|
58040
58462
|
exports.EngineFilled = EngineFilled;
|
|
58041
58463
|
exports.Equal = Equal;
|
|
58464
|
+
exports.EqualCircle = EqualCircle;
|
|
58465
|
+
exports.EqualCircleFilled = EqualCircleFilled;
|
|
58042
58466
|
exports.EqualFilled = EqualFilled;
|
|
58043
|
-
exports.
|
|
58044
|
-
exports.
|
|
58467
|
+
exports.EqualOff = EqualOff;
|
|
58468
|
+
exports.EqualOffFilled = EqualOffFilled;
|
|
58469
|
+
exports.ErrorCircle = ErrorCircle;
|
|
58470
|
+
exports.ErrorCircleFilled = ErrorCircleFilled;
|
|
58045
58471
|
exports.Eye = Eye;
|
|
58046
58472
|
exports.EyeFilled = EyeFilled;
|
|
58473
|
+
exports.EyeOff = EyeOff;
|
|
58474
|
+
exports.EyeOffFilled = EyeOffFilled;
|
|
58047
58475
|
exports.Eyedropper = Eyedropper;
|
|
58048
58476
|
exports.EyedropperFilled = EyedropperFilled;
|
|
58049
|
-
exports.
|
|
58050
|
-
exports.
|
|
58477
|
+
exports.EyedropperOff = EyedropperOff;
|
|
58478
|
+
exports.EyedropperOffFilled = EyedropperOffFilled;
|
|
58479
|
+
exports.FastForward = FastForward;
|
|
58480
|
+
exports.FastForwardFilled = FastForwardFilled;
|
|
58051
58481
|
exports.Filmstrip = Filmstrip;
|
|
58052
58482
|
exports.FilmstripFilled = FilmstripFilled;
|
|
58483
|
+
exports.FilmstripOff = FilmstripOff;
|
|
58484
|
+
exports.FilmstripOffFilled = FilmstripOffFilled;
|
|
58053
58485
|
exports.Filter = Filter;
|
|
58054
58486
|
exports.FilterFilled = FilterFilled;
|
|
58055
58487
|
exports.Fire = Fire;
|
|
58056
58488
|
exports.FireFilled = FireFilled;
|
|
58057
58489
|
exports.Flag = Flag;
|
|
58058
58490
|
exports.FlagFilled = FlagFilled;
|
|
58491
|
+
exports.FlagOff = FlagOff;
|
|
58492
|
+
exports.FlagOffFilled = FlagOffFilled;
|
|
58059
58493
|
exports.Flash = Flash;
|
|
58060
58494
|
exports.FlashFilled = FlashFilled;
|
|
58495
|
+
exports.FlashOff = FlashOff;
|
|
58496
|
+
exports.FlashOffFilled = FlashOffFilled;
|
|
58061
58497
|
exports.Flashlight = Flashlight;
|
|
58062
58498
|
exports.FlashlightFilled = FlashlightFilled;
|
|
58063
|
-
exports.
|
|
58064
|
-
exports.
|
|
58499
|
+
exports.FlashlightOff = FlashlightOff;
|
|
58500
|
+
exports.FlashlightOffFilled = FlashlightOffFilled;
|
|
58501
|
+
exports.FlipHorizontal = FlipHorizontal;
|
|
58502
|
+
exports.FlipHorizontalFilled = FlipHorizontalFilled;
|
|
58503
|
+
exports.FlipVerticial = FlipVerticial;
|
|
58504
|
+
exports.FlipVerticialFilled = FlipVerticialFilled;
|
|
58065
58505
|
exports.Folder = Folder;
|
|
58066
58506
|
exports.FolderFilled = FolderFilled;
|
|
58507
|
+
exports.FolderOpen = FolderOpen;
|
|
58508
|
+
exports.FolderOpenFilled = FolderOpenFilled;
|
|
58067
58509
|
exports.Frame = Frame;
|
|
58068
58510
|
exports.FrameFilled = FrameFilled;
|
|
58069
|
-
exports.
|
|
58070
|
-
exports.
|
|
58511
|
+
exports.FullScreenMaximize = FullScreenMaximize;
|
|
58512
|
+
exports.FullScreenMaximizeFilled = FullScreenMaximizeFilled;
|
|
58513
|
+
exports.FullScreenMinimize = FullScreenMinimize;
|
|
58514
|
+
exports.FullScreenMinimizeFilled = FullScreenMinimizeFilled;
|
|
58071
58515
|
exports.Games = Games;
|
|
58072
58516
|
exports.GamesFilled = GamesFilled;
|
|
58073
|
-
exports.
|
|
58074
|
-
exports.
|
|
58517
|
+
exports.GanttChart = GanttChart;
|
|
58518
|
+
exports.GanttChartFilled = GanttChartFilled;
|
|
58075
58519
|
exports.Gas = Gas;
|
|
58076
58520
|
exports.GasFilled = GasFilled;
|
|
58521
|
+
exports.GasStation = GasStation;
|
|
58522
|
+
exports.GasStationFilled = GasStationFilled;
|
|
58077
58523
|
exports.Gavel = Gavel;
|
|
58078
58524
|
exports.GavelFilled = GavelFilled;
|
|
58079
58525
|
exports.Gif = Gif;
|
|
58080
58526
|
exports.GifFilled = GifFilled;
|
|
58081
58527
|
exports.Gift = Gift;
|
|
58528
|
+
exports.GiftCard = GiftCard;
|
|
58529
|
+
exports.GiftCardFilled = GiftCardFilled;
|
|
58082
58530
|
exports.GiftFilled = GiftFilled;
|
|
58083
58531
|
exports.Git = Git;
|
|
58084
58532
|
exports.GitFilled = GitFilled;
|
|
@@ -58094,19 +58542,25 @@
|
|
|
58094
58542
|
exports.GuitarFilled = GuitarFilled;
|
|
58095
58543
|
exports.Hammer = Hammer;
|
|
58096
58544
|
exports.HammerFilled = HammerFilled;
|
|
58097
|
-
exports.
|
|
58098
|
-
exports.
|
|
58099
|
-
exports.
|
|
58100
|
-
exports.
|
|
58545
|
+
exports.HardDrive = HardDrive;
|
|
58546
|
+
exports.HardDriveFilled = HardDriveFilled;
|
|
58547
|
+
exports.HatGraduation = HatGraduation;
|
|
58548
|
+
exports.HatGraduationFilled = HatGraduationFilled;
|
|
58101
58549
|
exports.Hd = Hd;
|
|
58102
58550
|
exports.HdFilled = HdFilled;
|
|
58103
58551
|
exports.Hdr = Hdr;
|
|
58104
58552
|
exports.HdrFilled = HdrFilled;
|
|
58553
|
+
exports.HdrOff = HdrOff;
|
|
58554
|
+
exports.HdrOffFilled = HdrOffFilled;
|
|
58105
58555
|
exports.Headphones = Headphones;
|
|
58106
58556
|
exports.HeadphonesFilled = HeadphonesFilled;
|
|
58107
|
-
exports.
|
|
58108
|
-
exports.
|
|
58557
|
+
exports.HeadphonesMic = HeadphonesMic;
|
|
58558
|
+
exports.HeadphonesMicFilled = HeadphonesMicFilled;
|
|
58559
|
+
exports.HeadsetVr = HeadsetVr;
|
|
58560
|
+
exports.HeadsetVrFilled = HeadsetVrFilled;
|
|
58109
58561
|
exports.Heart = Heart;
|
|
58562
|
+
exports.HeartBroken = HeartBroken;
|
|
58563
|
+
exports.HeartBrokenFilled = HeartBrokenFilled;
|
|
58110
58564
|
exports.HeartFilled = HeartFilled;
|
|
58111
58565
|
exports.Hexagon = Hexagon;
|
|
58112
58566
|
exports.HexagonFilled = HexagonFilled;
|
|
@@ -58115,13 +58569,23 @@
|
|
|
58115
58569
|
exports.Highway = Highway;
|
|
58116
58570
|
exports.HighwayFilled = HighwayFilled;
|
|
58117
58571
|
exports.Home = Home;
|
|
58572
|
+
exports.HomeCheckmark = HomeCheckmark;
|
|
58573
|
+
exports.HomeCheckmarkFilled = HomeCheckmarkFilled;
|
|
58118
58574
|
exports.HomeFilled = HomeFilled;
|
|
58119
58575
|
exports.Hourglass = Hourglass;
|
|
58120
58576
|
exports.HourglassFilled = HourglassFilled;
|
|
58577
|
+
exports.HourglassHalf = HourglassHalf;
|
|
58578
|
+
exports.HourglassHalfFilled = HourglassHalfFilled;
|
|
58579
|
+
exports.HourglassOneQuarter = HourglassOneQuarter;
|
|
58580
|
+
exports.HourglassOneQuarterFilled = HourglassOneQuarterFilled;
|
|
58581
|
+
exports.HourglassThreeQuarter = HourglassThreeQuarter;
|
|
58582
|
+
exports.HourglassThreeQuarterFilled = HourglassThreeQuarterFilled;
|
|
58121
58583
|
exports.Html = Html;
|
|
58122
58584
|
exports.HtmlFilled = HtmlFilled;
|
|
58123
58585
|
exports.IconUtils = reactNativeIconUtils;
|
|
58124
58586
|
exports.Image = Image;
|
|
58587
|
+
exports.ImageCircle = ImageCircle;
|
|
58588
|
+
exports.ImageCircleFilled = ImageCircleFilled;
|
|
58125
58589
|
exports.ImageFilled = ImageFilled;
|
|
58126
58590
|
exports.Important = Important;
|
|
58127
58591
|
exports.ImportantFilled = ImportantFilled;
|
|
@@ -58130,6 +58594,14 @@
|
|
|
58130
58594
|
exports.Info = Info;
|
|
58131
58595
|
exports.InfoFilled = InfoFilled;
|
|
58132
58596
|
exports.Ios = Ios;
|
|
58597
|
+
exports.IosArrowLtr = IosArrowLtr;
|
|
58598
|
+
exports.IosArrowLtrFilled = IosArrowLtrFilled;
|
|
58599
|
+
exports.IosArrowRtl = IosArrowRtl;
|
|
58600
|
+
exports.IosArrowRtlFilled = IosArrowRtlFilled;
|
|
58601
|
+
exports.IosChevronLtr = IosChevronLtr;
|
|
58602
|
+
exports.IosChevronLtrFilled = IosChevronLtrFilled;
|
|
58603
|
+
exports.IosChevronRtl = IosChevronRtl;
|
|
58604
|
+
exports.IosChevronRtlFilled = IosChevronRtlFilled;
|
|
58133
58605
|
exports.IosFilled = IosFilled;
|
|
58134
58606
|
exports.Iot = Iot;
|
|
58135
58607
|
exports.IotFilled = IotFilled;
|
|
@@ -58138,11 +58610,33 @@
|
|
|
58138
58610
|
exports.Joystick = Joystick;
|
|
58139
58611
|
exports.JoystickFilled = JoystickFilled;
|
|
58140
58612
|
exports.Json = Json;
|
|
58613
|
+
exports.JsonFile = JsonFile;
|
|
58614
|
+
exports.JsonFileFilled = JsonFileFilled;
|
|
58141
58615
|
exports.JsonFilled = JsonFilled;
|
|
58142
58616
|
exports.Key = Key;
|
|
58143
58617
|
exports.KeyFilled = KeyFilled;
|
|
58618
|
+
exports.KeyMultiple = KeyMultiple;
|
|
58619
|
+
exports.KeyMultipleFilled = KeyMultipleFilled;
|
|
58144
58620
|
exports.Keyboard = Keyboard;
|
|
58621
|
+
exports.KeyboardBackspace = KeyboardBackspace;
|
|
58622
|
+
exports.KeyboardBackspaceFilled = KeyboardBackspaceFilled;
|
|
58623
|
+
exports.KeyboardCommand = KeyboardCommand;
|
|
58624
|
+
exports.KeyboardCommandFilled = KeyboardCommandFilled;
|
|
58145
58625
|
exports.KeyboardFilled = KeyboardFilled;
|
|
58626
|
+
exports.KeyboardLock = KeyboardLock;
|
|
58627
|
+
exports.KeyboardLockFilled = KeyboardLockFilled;
|
|
58628
|
+
exports.KeyboardOff = KeyboardOff;
|
|
58629
|
+
exports.KeyboardOffFilled = KeyboardOffFilled;
|
|
58630
|
+
exports.KeyboardOption = KeyboardOption;
|
|
58631
|
+
exports.KeyboardOptionFilled = KeyboardOptionFilled;
|
|
58632
|
+
exports.KeyboardReturn = KeyboardReturn;
|
|
58633
|
+
exports.KeyboardReturnFilled = KeyboardReturnFilled;
|
|
58634
|
+
exports.KeyboardShift = KeyboardShift;
|
|
58635
|
+
exports.KeyboardShiftFilled = KeyboardShiftFilled;
|
|
58636
|
+
exports.KeyboardShiftUppercase = KeyboardShiftUppercase;
|
|
58637
|
+
exports.KeyboardShiftUppercaseFilled = KeyboardShiftUppercaseFilled;
|
|
58638
|
+
exports.KeyboardTab = KeyboardTab;
|
|
58639
|
+
exports.KeyboardTabFilled = KeyboardTabFilled;
|
|
58146
58640
|
exports.Kiosk = Kiosk;
|
|
58147
58641
|
exports.KioskFilled = KioskFilled;
|
|
58148
58642
|
exports.Kotlin = Kotlin;
|
|
@@ -58154,45 +58648,59 @@
|
|
|
58154
58648
|
exports.Lightbulb = Lightbulb;
|
|
58155
58649
|
exports.LightbulbFilled = LightbulbFilled;
|
|
58156
58650
|
exports.Line = Line;
|
|
58651
|
+
exports.LineDashes = LineDashes;
|
|
58652
|
+
exports.LineDashesFilled = LineDashesFilled;
|
|
58157
58653
|
exports.LineFilled = LineFilled;
|
|
58654
|
+
exports.LineHorizontal1 = LineHorizontal1;
|
|
58655
|
+
exports.LineHorizontal1Dashes = LineHorizontal1Dashes;
|
|
58656
|
+
exports.LineHorizontal1DashesFilled = LineHorizontal1DashesFilled;
|
|
58657
|
+
exports.LineHorizontal1Filled = LineHorizontal1Filled;
|
|
58158
58658
|
exports.Link = Link;
|
|
58159
58659
|
exports.LinkFilled = LinkFilled;
|
|
58160
|
-
exports.Local = Local;
|
|
58161
|
-
exports.LocalFilled = LocalFilled;
|
|
58162
58660
|
exports.LocalLanguage = LocalLanguage;
|
|
58163
58661
|
exports.LocalLanguageFilled = LocalLanguageFilled;
|
|
58164
58662
|
exports.Location = Location;
|
|
58663
|
+
exports.LocationArrow = LocationArrow;
|
|
58664
|
+
exports.LocationArrowFilled = LocationArrowFilled;
|
|
58165
58665
|
exports.LocationFilled = LocationFilled;
|
|
58166
|
-
exports.
|
|
58167
|
-
exports.
|
|
58666
|
+
exports.LockClosed = LockClosed;
|
|
58667
|
+
exports.LockClosedFilled = LockClosedFilled;
|
|
58668
|
+
exports.LockOpen = LockOpen;
|
|
58669
|
+
exports.LockOpenFilled = LockOpenFilled;
|
|
58168
58670
|
exports.Luggage = Luggage;
|
|
58169
58671
|
exports.LuggageFilled = LuggageFilled;
|
|
58170
58672
|
exports.Macos = Macos;
|
|
58171
58673
|
exports.MacosFilled = MacosFilled;
|
|
58172
58674
|
exports.Mail = Mail;
|
|
58173
58675
|
exports.MailFilled = MailFilled;
|
|
58676
|
+
exports.MailRead = MailRead;
|
|
58677
|
+
exports.MailReadFilled = MailReadFilled;
|
|
58174
58678
|
exports.Mailbox = Mailbox;
|
|
58175
58679
|
exports.MailboxFilled = MailboxFilled;
|
|
58176
58680
|
exports.Map = Map;
|
|
58177
58681
|
exports.MapFilled = MapFilled;
|
|
58178
58682
|
exports.Markdown = Markdown;
|
|
58179
58683
|
exports.MarkdownFilled = MarkdownFilled;
|
|
58180
|
-
exports.
|
|
58181
|
-
exports.
|
|
58684
|
+
exports.MathSymbols = MathSymbols;
|
|
58685
|
+
exports.MathSymbolsFilled = MathSymbolsFilled;
|
|
58182
58686
|
exports.Megaphone = Megaphone;
|
|
58183
58687
|
exports.MegaphoneFilled = MegaphoneFilled;
|
|
58184
58688
|
exports.Mic = Mic;
|
|
58185
58689
|
exports.MicFilled = MicFilled;
|
|
58186
58690
|
exports.Moon = Moon;
|
|
58187
58691
|
exports.MoonFilled = MoonFilled;
|
|
58188
|
-
exports.
|
|
58189
|
-
exports.
|
|
58692
|
+
exports.MoreCircle = MoreCircle;
|
|
58693
|
+
exports.MoreCircleFilled = MoreCircleFilled;
|
|
58694
|
+
exports.MoreHorizontal = MoreHorizontal;
|
|
58695
|
+
exports.MoreHorizontalFilled = MoreHorizontalFilled;
|
|
58696
|
+
exports.MoreVerticial = MoreVerticial;
|
|
58697
|
+
exports.MoreVerticialFilled = MoreVerticialFilled;
|
|
58190
58698
|
exports.Mouse = Mouse;
|
|
58191
58699
|
exports.MouseFilled = MouseFilled;
|
|
58192
58700
|
exports.Movie = Movie;
|
|
58193
58701
|
exports.MovieFilled = MovieFilled;
|
|
58194
|
-
exports.
|
|
58195
|
-
exports.
|
|
58702
|
+
exports.NetworkCheck = NetworkCheck;
|
|
58703
|
+
exports.NetworkCheckFilled = NetworkCheckFilled;
|
|
58196
58704
|
exports.News = News;
|
|
58197
58705
|
exports.NewsFilled = NewsFilled;
|
|
58198
58706
|
exports.Next = Next;
|
|
@@ -58203,16 +58711,44 @@
|
|
|
58203
58711
|
exports.NotebookFilled = NotebookFilled;
|
|
58204
58712
|
exports.Notepad = Notepad;
|
|
58205
58713
|
exports.NotepadFilled = NotepadFilled;
|
|
58206
|
-
exports.
|
|
58207
|
-
exports.
|
|
58714
|
+
exports.NumberCircle0 = NumberCircle0;
|
|
58715
|
+
exports.NumberCircle0Filled = NumberCircle0Filled;
|
|
58716
|
+
exports.NumberCircle1 = NumberCircle1;
|
|
58717
|
+
exports.NumberCircle1Filled = NumberCircle1Filled;
|
|
58718
|
+
exports.NumberCircle2 = NumberCircle2;
|
|
58719
|
+
exports.NumberCircle2Filled = NumberCircle2Filled;
|
|
58720
|
+
exports.NumberCircle3 = NumberCircle3;
|
|
58721
|
+
exports.NumberCircle3Filled = NumberCircle3Filled;
|
|
58722
|
+
exports.NumberCircle4 = NumberCircle4;
|
|
58723
|
+
exports.NumberCircle4Filled = NumberCircle4Filled;
|
|
58724
|
+
exports.NumberCircle5 = NumberCircle5;
|
|
58725
|
+
exports.NumberCircle5Filled = NumberCircle5Filled;
|
|
58726
|
+
exports.NumberCircle6 = NumberCircle6;
|
|
58727
|
+
exports.NumberCircle6Filled = NumberCircle6Filled;
|
|
58728
|
+
exports.NumberCircle7 = NumberCircle7;
|
|
58729
|
+
exports.NumberCircle7Filled = NumberCircle7Filled;
|
|
58730
|
+
exports.NumberCircle8 = NumberCircle8;
|
|
58731
|
+
exports.NumberCircle8Filled = NumberCircle8Filled;
|
|
58732
|
+
exports.NumberCircle9 = NumberCircle9;
|
|
58733
|
+
exports.NumberCircle9Filled = NumberCircle9Filled;
|
|
58734
|
+
exports.NumberSymbol = NumberSymbol;
|
|
58735
|
+
exports.NumberSymbolCircle = NumberSymbolCircle;
|
|
58736
|
+
exports.NumberSymbolCircleFilled = NumberSymbolCircleFilled;
|
|
58737
|
+
exports.NumberSymbolFilled = NumberSymbolFilled;
|
|
58738
|
+
exports.NumberSymbolSquare = NumberSymbolSquare;
|
|
58739
|
+
exports.NumberSymbolSquareFilled = NumberSymbolSquareFilled;
|
|
58208
58740
|
exports.Opacity = Opacity;
|
|
58209
58741
|
exports.OpacityFilled = OpacityFilled;
|
|
58210
58742
|
exports.Open = Open;
|
|
58211
58743
|
exports.OpenFilled = OpenFilled;
|
|
58744
|
+
exports.OpenOff = OpenOff;
|
|
58745
|
+
exports.OpenOffFilled = OpenOffFilled;
|
|
58212
58746
|
exports.Options = Options;
|
|
58213
58747
|
exports.OptionsFilled = OptionsFilled;
|
|
58214
58748
|
exports.Organization = Organization;
|
|
58215
58749
|
exports.OrganizationFilled = OrganizationFilled;
|
|
58750
|
+
exports.OrganizationHorizontal = OrganizationHorizontal;
|
|
58751
|
+
exports.OrganizationHorizontalFilled = OrganizationHorizontalFilled;
|
|
58216
58752
|
exports.Orientation = Orientation;
|
|
58217
58753
|
exports.OrientationFilled = OrientationFilled;
|
|
58218
58754
|
exports.Oval = Oval;
|
|
@@ -58221,24 +58757,34 @@
|
|
|
58221
58757
|
exports.OvenFilled = OvenFilled;
|
|
58222
58758
|
exports.Padding = Padding;
|
|
58223
58759
|
exports.PaddingFilled = PaddingFilled;
|
|
58224
|
-
exports.
|
|
58225
|
-
exports.
|
|
58226
|
-
exports.
|
|
58227
|
-
exports.
|
|
58760
|
+
exports.PageFit = PageFit;
|
|
58761
|
+
exports.PageFitFilled = PageFitFilled;
|
|
58762
|
+
exports.PaintBrush = PaintBrush;
|
|
58763
|
+
exports.PaintBrushFilled = PaintBrushFilled;
|
|
58764
|
+
exports.PaintBucket = PaintBucket;
|
|
58765
|
+
exports.PaintBucketFilled = PaintBucketFilled;
|
|
58228
58766
|
exports.Parallelogram = Parallelogram;
|
|
58229
58767
|
exports.ParallelogramFilled = ParallelogramFilled;
|
|
58230
58768
|
exports.Password = Password;
|
|
58231
58769
|
exports.PasswordFilled = PasswordFilled;
|
|
58232
58770
|
exports.Pause = Pause;
|
|
58771
|
+
exports.PauseCircle = PauseCircle;
|
|
58772
|
+
exports.PauseCircleFilled = PauseCircleFilled;
|
|
58233
58773
|
exports.PauseFilled = PauseFilled;
|
|
58234
58774
|
exports.Payment = Payment;
|
|
58235
58775
|
exports.PaymentFilled = PaymentFilled;
|
|
58776
|
+
exports.PaymentWireless = PaymentWireless;
|
|
58777
|
+
exports.PaymentWirelessFilled = PaymentWirelessFilled;
|
|
58236
58778
|
exports.Pen = Pen;
|
|
58237
58779
|
exports.PenFilled = PenFilled;
|
|
58780
|
+
exports.PenOff = PenOff;
|
|
58781
|
+
exports.PenOffFilled = PenOffFilled;
|
|
58238
58782
|
exports.Pentagon = Pentagon;
|
|
58239
58783
|
exports.PentagonFilled = PentagonFilled;
|
|
58240
58784
|
exports.Person = Person;
|
|
58241
58785
|
exports.PersonFilled = PersonFilled;
|
|
58786
|
+
exports.PersonVoice = PersonVoice;
|
|
58787
|
+
exports.PersonVoiceFilled = PersonVoiceFilled;
|
|
58242
58788
|
exports.Phone = Phone;
|
|
58243
58789
|
exports.PhoneFilled = PhoneFilled;
|
|
58244
58790
|
exports.Piano = Piano;
|
|
@@ -58248,33 +58794,49 @@
|
|
|
58248
58794
|
exports.Pipeline = Pipeline;
|
|
58249
58795
|
exports.PipelineFilled = PipelineFilled;
|
|
58250
58796
|
exports.Play = Play;
|
|
58797
|
+
exports.PlayCircle = PlayCircle;
|
|
58798
|
+
exports.PlayCircleFilled = PlayCircleFilled;
|
|
58251
58799
|
exports.PlayFilled = PlayFilled;
|
|
58252
58800
|
exports.Playstore = Playstore;
|
|
58253
58801
|
exports.PlaystoreFilled = PlaystoreFilled;
|
|
58254
|
-
exports.
|
|
58255
|
-
exports.
|
|
58802
|
+
exports.PortHdmi = PortHdmi;
|
|
58803
|
+
exports.PortHdmiFilled = PortHdmiFilled;
|
|
58804
|
+
exports.PortMicroUsb = PortMicroUsb;
|
|
58805
|
+
exports.PortMicroUsbFilled = PortMicroUsbFilled;
|
|
58806
|
+
exports.PortUsbA = PortUsbA;
|
|
58807
|
+
exports.PortUsbAFilled = PortUsbAFilled;
|
|
58808
|
+
exports.PortUsbC = PortUsbC;
|
|
58809
|
+
exports.PortUsbCFilled = PortUsbCFilled;
|
|
58256
58810
|
exports.Power = Power;
|
|
58257
58811
|
exports.PowerFilled = PowerFilled;
|
|
58258
|
-
exports.
|
|
58259
|
-
exports.
|
|
58812
|
+
exports.PreviewLink = PreviewLink;
|
|
58813
|
+
exports.PreviewLinkFilled = PreviewLinkFilled;
|
|
58260
58814
|
exports.Previous = Previous;
|
|
58261
58815
|
exports.PreviousFilled = PreviousFilled;
|
|
58262
58816
|
exports.Print = Print;
|
|
58263
58817
|
exports.PrintFilled = PrintFilled;
|
|
58264
58818
|
exports.Pulse = Pulse;
|
|
58819
|
+
exports.PulseCircle = PulseCircle;
|
|
58820
|
+
exports.PulseCircleFilled = PulseCircleFilled;
|
|
58265
58821
|
exports.PulseFilled = PulseFilled;
|
|
58822
|
+
exports.PulseSquare = PulseSquare;
|
|
58823
|
+
exports.PulseSquareFilled = PulseSquareFilled;
|
|
58266
58824
|
exports.Python = Python;
|
|
58267
58825
|
exports.PythonFilled = PythonFilled;
|
|
58268
|
-
exports.
|
|
58269
|
-
exports.
|
|
58826
|
+
exports.QrCode = QrCode;
|
|
58827
|
+
exports.QrCodeFilled = QrCodeFilled;
|
|
58270
58828
|
exports.Question = Question;
|
|
58829
|
+
exports.QuestionCircle = QuestionCircle;
|
|
58830
|
+
exports.QuestionCircleFilled = QuestionCircleFilled;
|
|
58271
58831
|
exports.QuestionFilled = QuestionFilled;
|
|
58272
|
-
exports.
|
|
58273
|
-
exports.
|
|
58832
|
+
exports.RadioButton = RadioButton;
|
|
58833
|
+
exports.RadioButtonFilled = RadioButtonFilled;
|
|
58274
58834
|
exports.Ram = Ram;
|
|
58275
58835
|
exports.RamFilled = RamFilled;
|
|
58276
58836
|
exports.Record = Record;
|
|
58277
58837
|
exports.RecordFilled = RecordFilled;
|
|
58838
|
+
exports.RecordStop = RecordStop;
|
|
58839
|
+
exports.RecordStopFilled = RecordStopFilled;
|
|
58278
58840
|
exports.Rectangle = Rectangle;
|
|
58279
58841
|
exports.RectangleFilled = RectangleFilled;
|
|
58280
58842
|
exports.Refineui = Refineui;
|
|
@@ -58286,6 +58848,8 @@
|
|
|
58286
58848
|
exports.Ribbon = Ribbon;
|
|
58287
58849
|
exports.RibbonFilled = RibbonFilled;
|
|
58288
58850
|
exports.Road = Road;
|
|
58851
|
+
exports.RoadCone = RoadCone;
|
|
58852
|
+
exports.RoadConeFilled = RoadConeFilled;
|
|
58289
58853
|
exports.RoadFilled = RoadFilled;
|
|
58290
58854
|
exports.Rocket = Rocket;
|
|
58291
58855
|
exports.RocketFilled = RocketFilled;
|
|
@@ -58309,42 +58873,74 @@
|
|
|
58309
58873
|
exports.SearchFilled = SearchFilled;
|
|
58310
58874
|
exports.Send = Send;
|
|
58311
58875
|
exports.SendFilled = SendFilled;
|
|
58312
|
-
exports.
|
|
58313
|
-
exports.
|
|
58876
|
+
exports.SerialPort = SerialPort;
|
|
58877
|
+
exports.SerialPortFilled = SerialPortFilled;
|
|
58314
58878
|
exports.Server = Server;
|
|
58315
58879
|
exports.ServerFilled = ServerFilled;
|
|
58316
|
-
exports.
|
|
58317
|
-
exports.
|
|
58880
|
+
exports.ServerLink = ServerLink;
|
|
58881
|
+
exports.ServerLinkFilled = ServerLinkFilled;
|
|
58882
|
+
exports.ServerPlay = ServerPlay;
|
|
58883
|
+
exports.ServerPlayFilled = ServerPlayFilled;
|
|
58884
|
+
exports.ServiceBell = ServiceBell;
|
|
58885
|
+
exports.ServiceBellFilled = ServiceBellFilled;
|
|
58318
58886
|
exports.Settings = Settings;
|
|
58319
58887
|
exports.SettingsFilled = SettingsFilled;
|
|
58320
|
-
exports.
|
|
58321
|
-
exports.
|
|
58888
|
+
exports.ShapeExclude = ShapeExclude;
|
|
58889
|
+
exports.ShapeExcludeFilled = ShapeExcludeFilled;
|
|
58890
|
+
exports.ShapeIntersect = ShapeIntersect;
|
|
58891
|
+
exports.ShapeIntersectFilled = ShapeIntersectFilled;
|
|
58892
|
+
exports.ShapeSubtract = ShapeSubtract;
|
|
58893
|
+
exports.ShapeSubtractFilled = ShapeSubtractFilled;
|
|
58894
|
+
exports.ShapeUnion = ShapeUnion;
|
|
58895
|
+
exports.ShapeUnionFilled = ShapeUnionFilled;
|
|
58322
58896
|
exports.Shapes = Shapes;
|
|
58323
58897
|
exports.ShapesFilled = ShapesFilled;
|
|
58324
58898
|
exports.Share = Share;
|
|
58899
|
+
exports.ShareAndroid = ShareAndroid;
|
|
58900
|
+
exports.ShareAndroidFilled = ShareAndroidFilled;
|
|
58325
58901
|
exports.ShareFilled = ShareFilled;
|
|
58326
|
-
exports.
|
|
58327
|
-
exports.
|
|
58902
|
+
exports.ShareIos = ShareIos;
|
|
58903
|
+
exports.ShareIosFilled = ShareIosFilled;
|
|
58904
|
+
exports.ShellScript = ShellScript;
|
|
58905
|
+
exports.ShellScriptFilled = ShellScriptFilled;
|
|
58328
58906
|
exports.Shield = Shield;
|
|
58329
58907
|
exports.ShieldFilled = ShieldFilled;
|
|
58330
|
-
exports.
|
|
58331
|
-
exports.
|
|
58908
|
+
exports.ShoppingBag = ShoppingBag;
|
|
58909
|
+
exports.ShoppingBagFilled = ShoppingBagFilled;
|
|
58332
58910
|
exports.Sim = Sim;
|
|
58333
58911
|
exports.SimFilled = SimFilled;
|
|
58334
|
-
exports.
|
|
58335
|
-
exports.
|
|
58912
|
+
exports.SlideAdd = SlideAdd;
|
|
58913
|
+
exports.SlideAddFilled = SlideAddFilled;
|
|
58914
|
+
exports.SlideContent = SlideContent;
|
|
58915
|
+
exports.SlideContentFilled = SlideContentFilled;
|
|
58916
|
+
exports.SlideEraser = SlideEraser;
|
|
58917
|
+
exports.SlideEraserFilled = SlideEraserFilled;
|
|
58918
|
+
exports.SlideGrid = SlideGrid;
|
|
58919
|
+
exports.SlideGridFilled = SlideGridFilled;
|
|
58920
|
+
exports.SlideHide = SlideHide;
|
|
58921
|
+
exports.SlideHideFilled = SlideHideFilled;
|
|
58922
|
+
exports.SlideLayout = SlideLayout;
|
|
58923
|
+
exports.SlideLayoutFilled = SlideLayoutFilled;
|
|
58336
58924
|
exports.Smartwatch = Smartwatch;
|
|
58337
58925
|
exports.SmartwatchFilled = SmartwatchFilled;
|
|
58338
|
-
exports.
|
|
58339
|
-
exports.
|
|
58926
|
+
exports.SoundSource = SoundSource;
|
|
58927
|
+
exports.SoundSourceFilled = SoundSourceFilled;
|
|
58340
58928
|
exports.Spacebar = Spacebar;
|
|
58341
58929
|
exports.SpacebarFilled = SpacebarFilled;
|
|
58342
|
-
exports.
|
|
58343
|
-
exports.
|
|
58344
|
-
exports.
|
|
58345
|
-
exports.
|
|
58930
|
+
exports.SportBaseball = SportBaseball;
|
|
58931
|
+
exports.SportBaseballFilled = SportBaseballFilled;
|
|
58932
|
+
exports.SportBasketball = SportBasketball;
|
|
58933
|
+
exports.SportBasketballFilled = SportBasketballFilled;
|
|
58934
|
+
exports.SportSoccer = SportSoccer;
|
|
58935
|
+
exports.SportSoccerFilled = SportSoccerFilled;
|
|
58936
|
+
exports.SprayCan = SprayCan;
|
|
58937
|
+
exports.SprayCanFilled = SprayCanFilled;
|
|
58346
58938
|
exports.Square = Square;
|
|
58347
58939
|
exports.SquareFilled = SquareFilled;
|
|
58940
|
+
exports.SquareHint = SquareHint;
|
|
58941
|
+
exports.SquareHintFilled = SquareHintFilled;
|
|
58942
|
+
exports.SquareMultiple = SquareMultiple;
|
|
58943
|
+
exports.SquareMultipleFilled = SquareMultipleFilled;
|
|
58348
58944
|
exports.Star = Star;
|
|
58349
58945
|
exports.StarFilled = StarFilled;
|
|
58350
58946
|
exports.Stop = Stop;
|
|
@@ -58366,8 +58962,40 @@
|
|
|
58366
58962
|
exports.Tent = Tent;
|
|
58367
58963
|
exports.TentFilled = TentFilled;
|
|
58368
58964
|
exports.Text = Text;
|
|
58965
|
+
exports.TextAlignCenter = TextAlignCenter;
|
|
58966
|
+
exports.TextAlignCenterFilled = TextAlignCenterFilled;
|
|
58967
|
+
exports.TextAlignJustify = TextAlignJustify;
|
|
58968
|
+
exports.TextAlignJustifyFilled = TextAlignJustifyFilled;
|
|
58969
|
+
exports.TextAlignLeft = TextAlignLeft;
|
|
58970
|
+
exports.TextAlignLeftFilled = TextAlignLeftFilled;
|
|
58971
|
+
exports.TextAlignRight = TextAlignRight;
|
|
58972
|
+
exports.TextAlignRightFilled = TextAlignRightFilled;
|
|
58369
58973
|
exports.TextFilled = TextFilled;
|
|
58370
58974
|
exports.Textbox = Textbox;
|
|
58975
|
+
exports.TextboxAlignBottom = TextboxAlignBottom;
|
|
58976
|
+
exports.TextboxAlignBottomCenter = TextboxAlignBottomCenter;
|
|
58977
|
+
exports.TextboxAlignBottomCenterFilled = TextboxAlignBottomCenterFilled;
|
|
58978
|
+
exports.TextboxAlignBottomFilled = TextboxAlignBottomFilled;
|
|
58979
|
+
exports.TextboxAlignBottomLeft = TextboxAlignBottomLeft;
|
|
58980
|
+
exports.TextboxAlignBottomLeftFilled = TextboxAlignBottomLeftFilled;
|
|
58981
|
+
exports.TextboxAlignBottomRight = TextboxAlignBottomRight;
|
|
58982
|
+
exports.TextboxAlignBottomRightFilled = TextboxAlignBottomRightFilled;
|
|
58983
|
+
exports.TextboxAlignCenter = TextboxAlignCenter;
|
|
58984
|
+
exports.TextboxAlignCenterFilled = TextboxAlignCenterFilled;
|
|
58985
|
+
exports.TextboxAlignMiddle = TextboxAlignMiddle;
|
|
58986
|
+
exports.TextboxAlignMiddleFilled = TextboxAlignMiddleFilled;
|
|
58987
|
+
exports.TextboxAlignMiddleLeft = TextboxAlignMiddleLeft;
|
|
58988
|
+
exports.TextboxAlignMiddleLeftFilled = TextboxAlignMiddleLeftFilled;
|
|
58989
|
+
exports.TextboxAlignMiddleRight = TextboxAlignMiddleRight;
|
|
58990
|
+
exports.TextboxAlignMiddleRightFilled = TextboxAlignMiddleRightFilled;
|
|
58991
|
+
exports.TextboxAlignTop = TextboxAlignTop;
|
|
58992
|
+
exports.TextboxAlignTopCenter = TextboxAlignTopCenter;
|
|
58993
|
+
exports.TextboxAlignTopCenterFilled = TextboxAlignTopCenterFilled;
|
|
58994
|
+
exports.TextboxAlignTopFilled = TextboxAlignTopFilled;
|
|
58995
|
+
exports.TextboxAlignTopLeft = TextboxAlignTopLeft;
|
|
58996
|
+
exports.TextboxAlignTopLeftFilled = TextboxAlignTopLeftFilled;
|
|
58997
|
+
exports.TextboxAlignTopRight = TextboxAlignTopRight;
|
|
58998
|
+
exports.TextboxAlignTopRightFilled = TextboxAlignTopRightFilled;
|
|
58371
58999
|
exports.TextboxFilled = TextboxFilled;
|
|
58372
59000
|
exports.Thinking = Thinking;
|
|
58373
59001
|
exports.ThinkingFilled = ThinkingFilled;
|
|
@@ -58375,8 +59003,12 @@
|
|
|
58375
59003
|
exports.TicketFilled = TicketFilled;
|
|
58376
59004
|
exports.Timer = Timer;
|
|
58377
59005
|
exports.TimerFilled = TimerFilled;
|
|
58378
|
-
exports.
|
|
58379
|
-
exports.
|
|
59006
|
+
exports.ToggleLeft = ToggleLeft;
|
|
59007
|
+
exports.ToggleLeftFilled = ToggleLeftFilled;
|
|
59008
|
+
exports.ToggleMultiple = ToggleMultiple;
|
|
59009
|
+
exports.ToggleMultipleFilled = ToggleMultipleFilled;
|
|
59010
|
+
exports.ToggleRight = ToggleRight;
|
|
59011
|
+
exports.ToggleRightFilled = ToggleRightFilled;
|
|
58380
59012
|
exports.Toolbox = Toolbox;
|
|
58381
59013
|
exports.ToolboxFilled = ToolboxFilled;
|
|
58382
59014
|
exports.Trophy = Trophy;
|
|
@@ -58388,17 +59020,23 @@
|
|
|
58388
59020
|
exports.Umbrella = Umbrella;
|
|
58389
59021
|
exports.UmbrellaFilled = UmbrellaFilled;
|
|
58390
59022
|
exports.Usb = Usb;
|
|
59023
|
+
exports.UsbCable = UsbCable;
|
|
59024
|
+
exports.UsbCableFilled = UsbCableFilled;
|
|
58391
59025
|
exports.UsbFilled = UsbFilled;
|
|
58392
59026
|
exports.Verified = Verified;
|
|
58393
59027
|
exports.VerifiedFilled = VerifiedFilled;
|
|
58394
59028
|
exports.Video = Video;
|
|
59029
|
+
exports.VideoClip = VideoClip;
|
|
59030
|
+
exports.VideoClipFilled = VideoClipFilled;
|
|
58395
59031
|
exports.VideoFilled = VideoFilled;
|
|
59032
|
+
exports.VideoPlayPause = VideoPlayPause;
|
|
59033
|
+
exports.VideoPlayPauseFilled = VideoPlayPauseFilled;
|
|
58396
59034
|
exports.Voicemail = Voicemail;
|
|
58397
59035
|
exports.VoicemailFilled = VoicemailFilled;
|
|
58398
59036
|
exports.Vote = Vote;
|
|
58399
59037
|
exports.VoteFilled = VoteFilled;
|
|
58400
|
-
exports.
|
|
58401
|
-
exports.
|
|
59038
|
+
exports.WalkieTalkie = WalkieTalkie;
|
|
59039
|
+
exports.WalkieTalkieFilled = WalkieTalkieFilled;
|
|
58402
59040
|
exports.Wallet = Wallet;
|
|
58403
59041
|
exports.WalletFilled = WalletFilled;
|
|
58404
59042
|
exports.Wand = Wand;
|
|
@@ -58409,12 +59047,30 @@
|
|
|
58409
59047
|
exports.WasherFilled = WasherFilled;
|
|
58410
59048
|
exports.Water = Water;
|
|
58411
59049
|
exports.WaterFilled = WaterFilled;
|
|
58412
|
-
exports.
|
|
58413
|
-
exports.
|
|
59050
|
+
exports.WeatherBlowingSnow = WeatherBlowingSnow;
|
|
59051
|
+
exports.WeatherBlowingSnowFilled = WeatherBlowingSnowFilled;
|
|
59052
|
+
exports.WeatherCloudy = WeatherCloudy;
|
|
59053
|
+
exports.WeatherCloudyFilled = WeatherCloudyFilled;
|
|
59054
|
+
exports.WeatherRain = WeatherRain;
|
|
59055
|
+
exports.WeatherRainFilled = WeatherRainFilled;
|
|
59056
|
+
exports.WeatherSnow = WeatherSnow;
|
|
59057
|
+
exports.WeatherSnowFilled = WeatherSnowFilled;
|
|
59058
|
+
exports.WeatherSnowflake = WeatherSnowflake;
|
|
59059
|
+
exports.WeatherSnowflakeFilled = WeatherSnowflakeFilled;
|
|
59060
|
+
exports.WeatherSunny = WeatherSunny;
|
|
59061
|
+
exports.WeatherSunnyFilled = WeatherSunnyFilled;
|
|
59062
|
+
exports.WeatherThunderstorm = WeatherThunderstorm;
|
|
59063
|
+
exports.WeatherThunderstormFilled = WeatherThunderstormFilled;
|
|
58414
59064
|
exports.Web = Web;
|
|
58415
59065
|
exports.WebFilled = WebFilled;
|
|
58416
|
-
exports.
|
|
58417
|
-
exports.
|
|
59066
|
+
exports.Wifi1 = Wifi1;
|
|
59067
|
+
exports.Wifi1Filled = Wifi1Filled;
|
|
59068
|
+
exports.Wifi2 = Wifi2;
|
|
59069
|
+
exports.Wifi2Filled = Wifi2Filled;
|
|
59070
|
+
exports.Wifi3 = Wifi3;
|
|
59071
|
+
exports.Wifi3Filled = Wifi3Filled;
|
|
59072
|
+
exports.Wifi4 = Wifi4;
|
|
59073
|
+
exports.Wifi4Filled = Wifi4Filled;
|
|
58418
59074
|
exports.Windows = Windows;
|
|
58419
59075
|
exports.WindowsFilled = WindowsFilled;
|
|
58420
59076
|
exports.Wrench = Wrench;
|
|
@@ -58423,6 +59079,10 @@
|
|
|
58423
59079
|
exports.XrayFilled = XrayFilled;
|
|
58424
59080
|
exports.Zoom = Zoom;
|
|
58425
59081
|
exports.ZoomFilled = ZoomFilled;
|
|
59082
|
+
exports.ZoomIn = ZoomIn;
|
|
59083
|
+
exports.ZoomInFilled = ZoomInFilled;
|
|
59084
|
+
exports.ZoomOut = ZoomOut;
|
|
59085
|
+
exports.ZoomOutFilled = ZoomOutFilled;
|
|
58426
59086
|
exports.createIconComponent = createIconComponent;
|
|
58427
59087
|
exports.getFontFamily = getFontFamily;
|
|
58428
59088
|
exports.getIconChar = getIconChar;
|