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