@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.esm.js
CHANGED
|
@@ -57180,15 +57180,23 @@ function nameToSlug(name) {
|
|
|
57180
57180
|
function pascalToSlug(name) {
|
|
57181
57181
|
return String(name).replace(/([A-Z])/g, '-$1').toLowerCase().replace(/^-/, '');
|
|
57182
57182
|
}
|
|
57183
|
+
function normalizeIconName(name) {
|
|
57184
|
+
return String(name).trim().replace(/\s+/g, ' ');
|
|
57185
|
+
}
|
|
57183
57186
|
class ReactNativeIconUtils {
|
|
57184
57187
|
constructor() {
|
|
57185
57188
|
this.metadata = metadata;
|
|
57186
57189
|
this.fontFamilies = metadata.fontFamilies;
|
|
57187
57190
|
}
|
|
57188
57191
|
getIconData(iconName) {
|
|
57192
|
+
if (!iconName || typeof iconName !== 'string')
|
|
57193
|
+
return null;
|
|
57189
57194
|
const direct = this.metadata.icons[iconName];
|
|
57190
57195
|
if (direct)
|
|
57191
57196
|
return direct;
|
|
57197
|
+
const normalized = normalizeIconName(iconName);
|
|
57198
|
+
if (normalized && this.metadata.icons[normalized])
|
|
57199
|
+
return this.metadata.icons[normalized];
|
|
57192
57200
|
const slug = nameToSlug(iconName);
|
|
57193
57201
|
const bySlug = Object.values(this.metadata.icons).find((icon) => icon.slug === slug);
|
|
57194
57202
|
if (bySlug)
|
|
@@ -57217,11 +57225,11 @@ class ReactNativeIconUtils {
|
|
|
57217
57225
|
// Create unsized icon (default 24px)
|
|
57218
57226
|
createUnsizedIcon(iconName, style, props = {}) {
|
|
57219
57227
|
const iconData = this.getIconData(iconName);
|
|
57220
|
-
if (!iconData)
|
|
57228
|
+
if (!iconData?.unicodeMapping)
|
|
57221
57229
|
return null;
|
|
57222
57230
|
const defaultSize = 24;
|
|
57223
|
-
const unicodeInfo = iconData.unicodeMapping[defaultSize]?.[style];
|
|
57224
|
-
if (!unicodeInfo)
|
|
57231
|
+
const unicodeInfo = iconData.unicodeMapping[String(defaultSize)]?.[style];
|
|
57232
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57225
57233
|
return null;
|
|
57226
57234
|
const fontFamily = this.fontFamilies[style].font_family;
|
|
57227
57235
|
return React.createElement('Text', {
|
|
@@ -57238,10 +57246,10 @@ class ReactNativeIconUtils {
|
|
|
57238
57246
|
// Create sized icon
|
|
57239
57247
|
createSizedIcon(iconName, size, style, props = {}) {
|
|
57240
57248
|
const iconData = this.getIconData(iconName);
|
|
57241
|
-
if (!iconData)
|
|
57249
|
+
if (!iconData?.unicodeMapping)
|
|
57242
57250
|
return null;
|
|
57243
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57244
|
-
if (!unicodeInfo)
|
|
57251
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57252
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57245
57253
|
return null;
|
|
57246
57254
|
const fontFamily = this.fontFamilies[style].font_family;
|
|
57247
57255
|
return React.createElement('Text', {
|
|
@@ -57258,18 +57266,18 @@ class ReactNativeIconUtils {
|
|
|
57258
57266
|
// Utility methods
|
|
57259
57267
|
getIconChar(iconName, style = 'regular', size = 24) {
|
|
57260
57268
|
const iconData = this.getIconData(iconName);
|
|
57261
|
-
if (!iconData)
|
|
57269
|
+
if (!iconData?.unicodeMapping)
|
|
57262
57270
|
return null;
|
|
57263
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57264
|
-
if (!unicodeInfo)
|
|
57271
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57272
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57265
57273
|
return null;
|
|
57266
57274
|
return String.fromCodePoint(unicodeInfo.unicode);
|
|
57267
57275
|
}
|
|
57268
57276
|
getIconClass(iconName, style = 'regular', size = 24) {
|
|
57269
57277
|
const iconData = this.getIconData(iconName);
|
|
57270
|
-
if (!iconData)
|
|
57278
|
+
if (!iconData?.unicodeMapping)
|
|
57271
57279
|
return null;
|
|
57272
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57280
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57273
57281
|
if (!unicodeInfo)
|
|
57274
57282
|
return null;
|
|
57275
57283
|
return unicodeInfo.cssClass;
|
|
@@ -57328,24 +57336,48 @@ const getFontFamily = (style = 'regular') => {
|
|
|
57328
57336
|
};
|
|
57329
57337
|
|
|
57330
57338
|
// === Regular style icons ===
|
|
57331
|
-
const
|
|
57339
|
+
const AccessTime = createIconComponent('Access time', 'regular');
|
|
57332
57340
|
const Accessibility = createIconComponent('Accessibility', 'regular');
|
|
57333
57341
|
const Add = createIconComponent('Add', 'regular');
|
|
57342
|
+
const AddCircle = createIconComponent('Add circle', 'regular');
|
|
57343
|
+
const AddSquare = createIconComponent('Add square', 'regular');
|
|
57334
57344
|
const Airplane = createIconComponent('Airplane', 'regular');
|
|
57335
57345
|
const Album = createIconComponent('Album', 'regular');
|
|
57336
57346
|
const Alert = createIconComponent('Alert', 'regular');
|
|
57337
|
-
const
|
|
57347
|
+
const AlertBadge = createIconComponent('Alert badge', 'regular');
|
|
57348
|
+
const AlertOff = createIconComponent('Alert off', 'regular');
|
|
57349
|
+
const AlignBottom = createIconComponent('Align bottom', 'regular');
|
|
57350
|
+
const AlignCenterHorizontal = createIconComponent('Align center horizontal', 'regular');
|
|
57351
|
+
const AlignCenterVertical = createIconComponent('Align center vertical', 'regular');
|
|
57352
|
+
const AlignLeft = createIconComponent('Align left', 'regular');
|
|
57353
|
+
const AlignRight = createIconComponent('Align right', 'regular');
|
|
57354
|
+
const AlignTop = createIconComponent('Align top', 'regular');
|
|
57338
57355
|
const Android = createIconComponent('Android', 'regular');
|
|
57339
|
-
const
|
|
57356
|
+
const AppFolder = createIconComponent('App folder', 'regular');
|
|
57357
|
+
const AppRecent = createIconComponent('App recent', 'regular');
|
|
57358
|
+
const AppTitle = createIconComponent('App title', 'regular');
|
|
57340
57359
|
const Appstore = createIconComponent('Appstore', 'regular');
|
|
57341
57360
|
const Autosum = createIconComponent('Autosum', 'regular');
|
|
57342
57361
|
const Backpack = createIconComponent('Backpack', 'regular');
|
|
57343
57362
|
const Backspace = createIconComponent('Backspace', 'regular');
|
|
57344
57363
|
const Badge = createIconComponent('Badge', 'regular');
|
|
57345
57364
|
const Balloon = createIconComponent('Balloon', 'regular');
|
|
57346
|
-
const
|
|
57347
|
-
const
|
|
57348
|
-
const
|
|
57365
|
+
const BarChartHorizontal = createIconComponent('Bar chart horizontal', 'regular');
|
|
57366
|
+
const BarChartHorizontalDescending = createIconComponent('Bar chart horizontal descending', 'regular');
|
|
57367
|
+
const BarChartVertical = createIconComponent('Bar chart vertical', 'regular');
|
|
57368
|
+
const BarChartVerticalDescending = createIconComponent('Bar chart vertical descending', 'regular');
|
|
57369
|
+
const BarcodeScanner = createIconComponent('Barcode scanner', 'regular');
|
|
57370
|
+
const Battery0 = createIconComponent('Battery 0', 'regular');
|
|
57371
|
+
const Battery10 = createIconComponent('Battery 10', 'regular');
|
|
57372
|
+
const Battery100 = createIconComponent('Battery 100', 'regular');
|
|
57373
|
+
const Battery20 = createIconComponent('Battery 20', 'regular');
|
|
57374
|
+
const Battery30 = createIconComponent('Battery 30', 'regular');
|
|
57375
|
+
const Battery40 = createIconComponent('Battery 40', 'regular');
|
|
57376
|
+
const Battery50 = createIconComponent('Battery 50', 'regular');
|
|
57377
|
+
const Battery60 = createIconComponent('Battery 60', 'regular');
|
|
57378
|
+
const Battery70 = createIconComponent('Battery 70', 'regular');
|
|
57379
|
+
const Battery80 = createIconComponent('Battery 80', 'regular');
|
|
57380
|
+
const Battery90 = createIconComponent('Battery 90', 'regular');
|
|
57349
57381
|
const Block = createIconComponent('Block', 'regular');
|
|
57350
57382
|
const Bluetooth = createIconComponent('Bluetooth', 'regular');
|
|
57351
57383
|
const Blur = createIconComponent('Blur', 'regular');
|
|
@@ -57357,23 +57389,30 @@ const Calculator = createIconComponent('Calculator', 'regular');
|
|
|
57357
57389
|
const Calendar = createIconComponent('Calendar', 'regular');
|
|
57358
57390
|
const Camera = createIconComponent('Camera', 'regular');
|
|
57359
57391
|
const Cart = createIconComponent('Cart', 'regular');
|
|
57360
|
-
const
|
|
57392
|
+
const CartonBox = createIconComponent('Carton box', 'regular');
|
|
57361
57393
|
const Chart = createIconComponent('Chart', 'regular');
|
|
57362
57394
|
const Chat = createIconComponent('Chat', 'regular');
|
|
57395
|
+
const ChatAdd = createIconComponent('Chat add', 'regular');
|
|
57396
|
+
const ChatEmpty = createIconComponent('Chat empty', 'regular');
|
|
57363
57397
|
const Checkmark = createIconComponent('Checkmark', 'regular');
|
|
57364
57398
|
const Chess = createIconComponent('Chess', 'regular');
|
|
57365
|
-
const
|
|
57399
|
+
const ChevronDown = createIconComponent('Chevron down', 'regular');
|
|
57400
|
+
const ChevronLeft = createIconComponent('Chevron left', 'regular');
|
|
57401
|
+
const ChevronRight = createIconComponent('Chevron right', 'regular');
|
|
57402
|
+
const ChevronUp = createIconComponent('Chevron up', 'regular');
|
|
57366
57403
|
const Circle = createIconComponent('Circle', 'regular');
|
|
57367
57404
|
const Clipboard = createIconComponent('Clipboard', 'regular');
|
|
57368
57405
|
const Clock = createIconComponent('Clock', 'regular');
|
|
57406
|
+
const ClockAlarm = createIconComponent('Clock alarm', 'regular');
|
|
57369
57407
|
const Cloud = createIconComponent('Cloud', 'regular');
|
|
57370
57408
|
const Clover = createIconComponent('Clover', 'regular');
|
|
57371
57409
|
const Code = createIconComponent('Code', 'regular');
|
|
57410
|
+
const CodeBlock = createIconComponent('Code block', 'regular');
|
|
57372
57411
|
const Comma = createIconComponent('Comma', 'regular');
|
|
57373
57412
|
const Comment = createIconComponent('Comment', 'regular');
|
|
57374
57413
|
const Cone = createIconComponent('Cone', 'regular');
|
|
57375
57414
|
const Contrast = createIconComponent('Contrast', 'regular');
|
|
57376
|
-
const
|
|
57415
|
+
const ControlButton = createIconComponent('Control button', 'regular');
|
|
57377
57416
|
const Cookie = createIconComponent('Cookie', 'regular');
|
|
57378
57417
|
const Copy = createIconComponent('Copy', 'regular');
|
|
57379
57418
|
const Couch = createIconComponent('Couch', 'regular');
|
|
@@ -57387,47 +57426,73 @@ const Cut = createIconComponent('Cut', 'regular');
|
|
|
57387
57426
|
const Dart = createIconComponent('Dart', 'regular');
|
|
57388
57427
|
const Database = createIconComponent('Database', 'regular');
|
|
57389
57428
|
const Delete = createIconComponent('Delete', 'regular');
|
|
57429
|
+
const DeleteOff = createIconComponent('Delete off', 'regular');
|
|
57390
57430
|
const Dentist = createIconComponent('Dentist', 'regular');
|
|
57391
57431
|
const Desk = createIconComponent('Desk', 'regular');
|
|
57392
57432
|
const Desktop = createIconComponent('Desktop', 'regular');
|
|
57433
|
+
const DesktopMac = createIconComponent('Desktop mac', 'regular');
|
|
57393
57434
|
const Dialpad = createIconComponent('Dialpad', 'regular');
|
|
57394
57435
|
const Diamond = createIconComponent('Diamond', 'regular');
|
|
57395
57436
|
const Dismiss = createIconComponent('Dismiss', 'regular');
|
|
57437
|
+
const DismissCircle = createIconComponent('Dismiss circle', 'regular');
|
|
57438
|
+
const DismissSquare = createIconComponent('Dismiss square', 'regular');
|
|
57396
57439
|
const Doctor = createIconComponent('Doctor', 'regular');
|
|
57397
57440
|
const Document = createIconComponent('Document', 'regular');
|
|
57441
|
+
const DocumentBorder = createIconComponent('Document border', 'regular');
|
|
57398
57442
|
const Door = createIconComponent('Door', 'regular');
|
|
57399
57443
|
const Drag = createIconComponent('Drag', 'regular');
|
|
57400
57444
|
const Drawer = createIconComponent('Drawer', 'regular');
|
|
57401
57445
|
const Drop = createIconComponent('Drop', 'regular');
|
|
57402
|
-
const
|
|
57446
|
+
const DualScreen = createIconComponent('Dual screen', 'regular');
|
|
57403
57447
|
const Dumbbell = createIconComponent('Dumbbell', 'regular');
|
|
57404
57448
|
const Dust = createIconComponent('Dust', 'regular');
|
|
57405
57449
|
const Earth = createIconComponent('Earth', 'regular');
|
|
57406
57450
|
const Edit = createIconComponent('Edit', 'regular');
|
|
57451
|
+
const EditOff = createIconComponent('Edit off', 'regular');
|
|
57407
57452
|
const Elevator = createIconComponent('Elevator', 'regular');
|
|
57408
57453
|
const Emoji = createIconComponent('Emoji', 'regular');
|
|
57454
|
+
const EmojiAngry = createIconComponent('Emoji angry', 'regular');
|
|
57455
|
+
const EmojiCool = createIconComponent('Emoji cool', 'regular');
|
|
57456
|
+
const EmojiGrimacing = createIconComponent('Emoji grimacing', 'regular');
|
|
57457
|
+
const EmojiLaugh = createIconComponent('Emoji laugh', 'regular');
|
|
57458
|
+
const EmojiMeh = createIconComponent('Emoji meh', 'regular');
|
|
57459
|
+
const EmojiSad = createIconComponent('Emoji sad', 'regular');
|
|
57460
|
+
const EmojiSurprise = createIconComponent('Emoji surprise', 'regular');
|
|
57409
57461
|
const Engine = createIconComponent('Engine', 'regular');
|
|
57410
57462
|
const Equal = createIconComponent('Equal', 'regular');
|
|
57411
|
-
const
|
|
57463
|
+
const EqualCircle = createIconComponent('Equal circle', 'regular');
|
|
57464
|
+
const EqualOff = createIconComponent('Equal off', 'regular');
|
|
57465
|
+
const ErrorCircle = createIconComponent('Error circle', 'regular');
|
|
57412
57466
|
const Eye = createIconComponent('Eye', 'regular');
|
|
57467
|
+
const EyeOff = createIconComponent('Eye off', 'regular');
|
|
57413
57468
|
const Eyedropper = createIconComponent('Eyedropper', 'regular');
|
|
57414
|
-
const
|
|
57469
|
+
const EyedropperOff = createIconComponent('Eyedropper off', 'regular');
|
|
57470
|
+
const FastForward = createIconComponent('Fast forward', 'regular');
|
|
57415
57471
|
const Filmstrip = createIconComponent('Filmstrip', 'regular');
|
|
57472
|
+
const FilmstripOff = createIconComponent('Filmstrip off', 'regular');
|
|
57416
57473
|
const Filter = createIconComponent('Filter', 'regular');
|
|
57417
57474
|
const Fire = createIconComponent('Fire', 'regular');
|
|
57418
57475
|
const Flag = createIconComponent('Flag', 'regular');
|
|
57476
|
+
const FlagOff = createIconComponent('Flag off', 'regular');
|
|
57419
57477
|
const Flash = createIconComponent('Flash', 'regular');
|
|
57478
|
+
const FlashOff = createIconComponent('Flash off', 'regular');
|
|
57420
57479
|
const Flashlight = createIconComponent('Flashlight', 'regular');
|
|
57421
|
-
const
|
|
57480
|
+
const FlashlightOff = createIconComponent('Flashlight off', 'regular');
|
|
57481
|
+
const FlipHorizontal = createIconComponent('Flip horizontal', 'regular');
|
|
57482
|
+
const FlipVerticial = createIconComponent('Flip verticial', 'regular');
|
|
57422
57483
|
const Folder = createIconComponent('Folder', 'regular');
|
|
57484
|
+
const FolderOpen = createIconComponent('Folder open', 'regular');
|
|
57423
57485
|
const Frame = createIconComponent('Frame', 'regular');
|
|
57424
|
-
const
|
|
57486
|
+
const FullScreenMaximize = createIconComponent('Full screen maximize', 'regular');
|
|
57487
|
+
const FullScreenMinimize = createIconComponent('Full screen minimize', 'regular');
|
|
57425
57488
|
const Games = createIconComponent('Games', 'regular');
|
|
57426
|
-
const
|
|
57489
|
+
const GanttChart = createIconComponent('Gantt chart', 'regular');
|
|
57427
57490
|
const Gas = createIconComponent('Gas', 'regular');
|
|
57491
|
+
const GasStation = createIconComponent('Gas station', 'regular');
|
|
57428
57492
|
const Gavel = createIconComponent('Gavel', 'regular');
|
|
57429
57493
|
const Gif = createIconComponent('Gif', 'regular');
|
|
57430
57494
|
const Gift = createIconComponent('Gift', 'regular');
|
|
57495
|
+
const GiftCard = createIconComponent('Gift card', 'regular');
|
|
57431
57496
|
const Git = createIconComponent('Git', 'regular');
|
|
57432
57497
|
const Glasses = createIconComponent('Glasses', 'regular');
|
|
57433
57498
|
const Global = createIconComponent('Global', 'regular');
|
|
@@ -57435,102 +57500,160 @@ const Grid = createIconComponent('Grid', 'regular');
|
|
|
57435
57500
|
const Guest = createIconComponent('Guest', 'regular');
|
|
57436
57501
|
const Guitar = createIconComponent('Guitar', 'regular');
|
|
57437
57502
|
const Hammer = createIconComponent('Hammer', 'regular');
|
|
57438
|
-
const
|
|
57439
|
-
const
|
|
57503
|
+
const HardDrive = createIconComponent('Hard drive', 'regular');
|
|
57504
|
+
const HatGraduation = createIconComponent('Hat graduation', 'regular');
|
|
57440
57505
|
const Hd = createIconComponent('Hd', 'regular');
|
|
57441
57506
|
const Hdr = createIconComponent('Hdr', 'regular');
|
|
57507
|
+
const HdrOff = createIconComponent('Hdr off', 'regular');
|
|
57442
57508
|
const Headphones = createIconComponent('Headphones', 'regular');
|
|
57443
|
-
const
|
|
57509
|
+
const HeadphonesMic = createIconComponent('Headphones mic', 'regular');
|
|
57510
|
+
const HeadsetVr = createIconComponent('Headset vr', 'regular');
|
|
57444
57511
|
const Heart = createIconComponent('Heart', 'regular');
|
|
57512
|
+
const HeartBroken = createIconComponent('Heart broken', 'regular');
|
|
57445
57513
|
const Hexagon = createIconComponent('Hexagon', 'regular');
|
|
57446
57514
|
const Highlight = createIconComponent('Highlight', 'regular');
|
|
57447
57515
|
const Highway = createIconComponent('Highway', 'regular');
|
|
57448
57516
|
const Home = createIconComponent('Home', 'regular');
|
|
57517
|
+
const HomeCheckmark = createIconComponent('Home checkmark', 'regular');
|
|
57449
57518
|
const Hourglass = createIconComponent('Hourglass', 'regular');
|
|
57519
|
+
const HourglassHalf = createIconComponent('Hourglass half', 'regular');
|
|
57520
|
+
const HourglassOneQuarter = createIconComponent('Hourglass one quarter', 'regular');
|
|
57521
|
+
const HourglassThreeQuarter = createIconComponent('Hourglass three quarter', 'regular');
|
|
57450
57522
|
const Html = createIconComponent('Html', 'regular');
|
|
57451
57523
|
const Image = createIconComponent('Image', 'regular');
|
|
57524
|
+
const ImageCircle = createIconComponent('Image circle', 'regular');
|
|
57452
57525
|
const Important = createIconComponent('Important', 'regular');
|
|
57453
57526
|
const Incognito = createIconComponent('Incognito', 'regular');
|
|
57454
57527
|
const Info = createIconComponent('Info', 'regular');
|
|
57455
57528
|
const Ios = createIconComponent('Ios', 'regular');
|
|
57529
|
+
const IosArrowLtr = createIconComponent('Ios arrow ltr', 'regular');
|
|
57530
|
+
const IosArrowRtl = createIconComponent('Ios arrow rtl', 'regular');
|
|
57531
|
+
const IosChevronLtr = createIconComponent('Ios chevron ltr', 'regular');
|
|
57532
|
+
const IosChevronRtl = createIconComponent('Ios chevron rtl', 'regular');
|
|
57456
57533
|
const Iot = createIconComponent('Iot', 'regular');
|
|
57457
57534
|
const Javascript = createIconComponent('Javascript', 'regular');
|
|
57458
57535
|
const Joystick = createIconComponent('Joystick', 'regular');
|
|
57459
57536
|
const Json = createIconComponent('Json', 'regular');
|
|
57537
|
+
const JsonFile = createIconComponent('Json file', 'regular');
|
|
57460
57538
|
const Key = createIconComponent('Key', 'regular');
|
|
57539
|
+
const KeyMultiple = createIconComponent('Key multiple', 'regular');
|
|
57461
57540
|
const Keyboard = createIconComponent('Keyboard', 'regular');
|
|
57541
|
+
const KeyboardBackspace = createIconComponent('Keyboard backspace', 'regular');
|
|
57542
|
+
const KeyboardCommand = createIconComponent('Keyboard command', 'regular');
|
|
57543
|
+
const KeyboardLock = createIconComponent('Keyboard lock', 'regular');
|
|
57544
|
+
const KeyboardOff = createIconComponent('Keyboard off', 'regular');
|
|
57545
|
+
const KeyboardOption = createIconComponent('Keyboard option', 'regular');
|
|
57546
|
+
const KeyboardReturn = createIconComponent('Keyboard return', 'regular');
|
|
57547
|
+
const KeyboardShift = createIconComponent('Keyboard shift', 'regular');
|
|
57548
|
+
const KeyboardShiftUppercase = createIconComponent('Keyboard shift uppercase', 'regular');
|
|
57549
|
+
const KeyboardTab = createIconComponent('Keyboard tab', 'regular');
|
|
57462
57550
|
const Kiosk = createIconComponent('Kiosk', 'regular');
|
|
57463
57551
|
const Kotlin = createIconComponent('Kotlin', 'regular');
|
|
57464
57552
|
const Laptop = createIconComponent('Laptop', 'regular');
|
|
57465
57553
|
const Layer = createIconComponent('Layer', 'regular');
|
|
57466
57554
|
const Lightbulb = createIconComponent('Lightbulb', 'regular');
|
|
57467
57555
|
const Line = createIconComponent('Line', 'regular');
|
|
57556
|
+
const LineDashes = createIconComponent('Line dashes', 'regular');
|
|
57557
|
+
const LineHorizontal1 = createIconComponent('Line horizontal 1', 'regular');
|
|
57558
|
+
const LineHorizontal1Dashes = createIconComponent('Line horizontal 1 dashes', 'regular');
|
|
57468
57559
|
const Link = createIconComponent('Link', 'regular');
|
|
57469
|
-
const Local = createIconComponent('Local', 'regular');
|
|
57470
57560
|
const LocalLanguage = createIconComponent('Local language', 'regular');
|
|
57471
57561
|
const Location = createIconComponent('Location', 'regular');
|
|
57472
|
-
const
|
|
57562
|
+
const LocationArrow = createIconComponent('Location arrow', 'regular');
|
|
57563
|
+
const LockClosed = createIconComponent('Lock closed', 'regular');
|
|
57564
|
+
const LockOpen = createIconComponent('Lock open', 'regular');
|
|
57473
57565
|
const Luggage = createIconComponent('Luggage', 'regular');
|
|
57474
57566
|
const Macos = createIconComponent('Macos', 'regular');
|
|
57475
57567
|
const Mail = createIconComponent('Mail', 'regular');
|
|
57568
|
+
const MailRead = createIconComponent('Mail read', 'regular');
|
|
57476
57569
|
const Mailbox = createIconComponent('Mailbox', 'regular');
|
|
57477
57570
|
const Map = createIconComponent('Map', 'regular');
|
|
57478
57571
|
const Markdown = createIconComponent('Markdown', 'regular');
|
|
57479
|
-
const
|
|
57572
|
+
const MathSymbols = createIconComponent('Math symbols', 'regular');
|
|
57480
57573
|
const Megaphone = createIconComponent('Megaphone', 'regular');
|
|
57481
57574
|
const Mic = createIconComponent('Mic', 'regular');
|
|
57482
57575
|
const Moon = createIconComponent('Moon', 'regular');
|
|
57483
|
-
const
|
|
57576
|
+
const MoreCircle = createIconComponent('More circle', 'regular');
|
|
57577
|
+
const MoreHorizontal = createIconComponent('More horizontal', 'regular');
|
|
57578
|
+
const MoreVerticial = createIconComponent('More verticial', 'regular');
|
|
57484
57579
|
const Mouse = createIconComponent('Mouse', 'regular');
|
|
57485
57580
|
const Movie = createIconComponent('Movie', 'regular');
|
|
57486
|
-
const
|
|
57581
|
+
const NetworkCheck = createIconComponent('Network check', 'regular');
|
|
57487
57582
|
const News = createIconComponent('News', 'regular');
|
|
57488
57583
|
const Next = createIconComponent('Next', 'regular');
|
|
57489
57584
|
const Note = createIconComponent('Note', 'regular');
|
|
57490
57585
|
const Notebook = createIconComponent('Notebook', 'regular');
|
|
57491
57586
|
const Notepad = createIconComponent('Notepad', 'regular');
|
|
57492
|
-
const
|
|
57587
|
+
const NumberCircle0 = createIconComponent('Number circle 0', 'regular');
|
|
57588
|
+
const NumberCircle1 = createIconComponent('Number circle 1', 'regular');
|
|
57589
|
+
const NumberCircle2 = createIconComponent('Number circle 2', 'regular');
|
|
57590
|
+
const NumberCircle3 = createIconComponent('Number circle 3', 'regular');
|
|
57591
|
+
const NumberCircle4 = createIconComponent('Number circle 4', 'regular');
|
|
57592
|
+
const NumberCircle5 = createIconComponent('Number circle 5', 'regular');
|
|
57593
|
+
const NumberCircle6 = createIconComponent('Number circle 6', 'regular');
|
|
57594
|
+
const NumberCircle7 = createIconComponent('Number circle 7', 'regular');
|
|
57595
|
+
const NumberCircle8 = createIconComponent('Number circle 8', 'regular');
|
|
57596
|
+
const NumberCircle9 = createIconComponent('Number circle 9', 'regular');
|
|
57597
|
+
const NumberSymbol = createIconComponent('Number symbol', 'regular');
|
|
57598
|
+
const NumberSymbolCircle = createIconComponent('Number symbol circle', 'regular');
|
|
57599
|
+
const NumberSymbolSquare = createIconComponent('Number symbol square', 'regular');
|
|
57493
57600
|
const Opacity = createIconComponent('Opacity', 'regular');
|
|
57494
57601
|
const Open = createIconComponent('Open', 'regular');
|
|
57602
|
+
const OpenOff = createIconComponent('Open off', 'regular');
|
|
57495
57603
|
const Options = createIconComponent('Options', 'regular');
|
|
57496
57604
|
const Organization = createIconComponent('Organization', 'regular');
|
|
57605
|
+
const OrganizationHorizontal = createIconComponent('Organization horizontal', 'regular');
|
|
57497
57606
|
const Orientation = createIconComponent('Orientation', 'regular');
|
|
57498
57607
|
const Oval = createIconComponent('Oval', 'regular');
|
|
57499
57608
|
const Oven = createIconComponent('Oven', 'regular');
|
|
57500
57609
|
const Padding = createIconComponent('Padding', 'regular');
|
|
57501
|
-
const
|
|
57502
|
-
const
|
|
57610
|
+
const PageFit = createIconComponent('Page fit', 'regular');
|
|
57611
|
+
const PaintBrush = createIconComponent('Paint brush', 'regular');
|
|
57612
|
+
const PaintBucket = createIconComponent('Paint bucket', 'regular');
|
|
57503
57613
|
const Parallelogram = createIconComponent('Parallelogram', 'regular');
|
|
57504
57614
|
const Password = createIconComponent('Password', 'regular');
|
|
57505
57615
|
const Pause = createIconComponent('Pause', 'regular');
|
|
57616
|
+
const PauseCircle = createIconComponent('Pause circle', 'regular');
|
|
57506
57617
|
const Payment = createIconComponent('Payment', 'regular');
|
|
57618
|
+
const PaymentWireless = createIconComponent('Payment wireless', 'regular');
|
|
57507
57619
|
const Pen = createIconComponent('Pen', 'regular');
|
|
57620
|
+
const PenOff = createIconComponent('Pen off', 'regular');
|
|
57508
57621
|
const Pentagon = createIconComponent('Pentagon', 'regular');
|
|
57509
57622
|
const Person = createIconComponent('Person', 'regular');
|
|
57623
|
+
const PersonVoice = createIconComponent('Person voice', 'regular');
|
|
57510
57624
|
const Phone = createIconComponent('Phone', 'regular');
|
|
57511
57625
|
const Piano = createIconComponent('Piano', 'regular');
|
|
57512
57626
|
const Pin = createIconComponent('Pin', 'regular');
|
|
57513
57627
|
const Pipeline = createIconComponent('Pipeline', 'regular');
|
|
57514
57628
|
const Play = createIconComponent('Play', 'regular');
|
|
57629
|
+
const PlayCircle = createIconComponent('Play circle', 'regular');
|
|
57515
57630
|
const Playstore = createIconComponent('Playstore', 'regular');
|
|
57516
|
-
const
|
|
57631
|
+
const PortHdmi = createIconComponent('Port hdmi', 'regular');
|
|
57632
|
+
const PortMicroUsb = createIconComponent('Port micro usb', 'regular');
|
|
57633
|
+
const PortUsbA = createIconComponent('Port usb a', 'regular');
|
|
57634
|
+
const PortUsbC = createIconComponent('Port usb c', 'regular');
|
|
57517
57635
|
const Power = createIconComponent('Power', 'regular');
|
|
57518
|
-
const
|
|
57636
|
+
const PreviewLink = createIconComponent('Preview link', 'regular');
|
|
57519
57637
|
const Previous = createIconComponent('Previous', 'regular');
|
|
57520
57638
|
const Print = createIconComponent('Print', 'regular');
|
|
57521
57639
|
const Pulse = createIconComponent('Pulse', 'regular');
|
|
57640
|
+
const PulseCircle = createIconComponent('Pulse circle', 'regular');
|
|
57641
|
+
const PulseSquare = createIconComponent('Pulse square', 'regular');
|
|
57522
57642
|
const Python = createIconComponent('Python', 'regular');
|
|
57523
|
-
const
|
|
57643
|
+
const QrCode = createIconComponent('Qr code', 'regular');
|
|
57524
57644
|
const Question = createIconComponent('Question', 'regular');
|
|
57525
|
-
const
|
|
57645
|
+
const QuestionCircle = createIconComponent('Question circle', 'regular');
|
|
57646
|
+
const RadioButton = createIconComponent('Radio button', 'regular');
|
|
57526
57647
|
const Ram = createIconComponent('Ram', 'regular');
|
|
57527
57648
|
const Record = createIconComponent('Record', 'regular');
|
|
57649
|
+
const RecordStop = createIconComponent('Record stop', 'regular');
|
|
57528
57650
|
const Rectangle = createIconComponent('Rectangle', 'regular');
|
|
57529
57651
|
const Refineui = createIconComponent('Refineui', 'regular');
|
|
57530
57652
|
const Rewind = createIconComponent('Rewind', 'regular');
|
|
57531
57653
|
const Rhombus = createIconComponent('Rhombus', 'regular');
|
|
57532
57654
|
const Ribbon = createIconComponent('Ribbon', 'regular');
|
|
57533
57655
|
const Road = createIconComponent('Road', 'regular');
|
|
57656
|
+
const RoadCone = createIconComponent('Road cone', 'regular');
|
|
57534
57657
|
const Rocket = createIconComponent('Rocket', 'regular');
|
|
57535
57658
|
const Rotation = createIconComponent('Rotation', 'regular');
|
|
57536
57659
|
const Router = createIconComponent('Router', 'regular');
|
|
@@ -57542,24 +57665,40 @@ const Scales = createIconComponent('Scales', 'regular');
|
|
|
57542
57665
|
const Script = createIconComponent('Script', 'regular');
|
|
57543
57666
|
const Search = createIconComponent('Search', 'regular');
|
|
57544
57667
|
const Send = createIconComponent('Send', 'regular');
|
|
57545
|
-
const
|
|
57668
|
+
const SerialPort = createIconComponent('Serial port', 'regular');
|
|
57546
57669
|
const Server = createIconComponent('Server', 'regular');
|
|
57547
|
-
const
|
|
57670
|
+
const ServerLink = createIconComponent('Server link', 'regular');
|
|
57671
|
+
const ServerPlay = createIconComponent('Server play', 'regular');
|
|
57672
|
+
const ServiceBell = createIconComponent('Service bell', 'regular');
|
|
57548
57673
|
const Settings = createIconComponent('Settings', 'regular');
|
|
57549
|
-
const
|
|
57674
|
+
const ShapeExclude = createIconComponent('Shape exclude', 'regular');
|
|
57675
|
+
const ShapeIntersect = createIconComponent('Shape intersect', 'regular');
|
|
57676
|
+
const ShapeSubtract = createIconComponent('Shape subtract', 'regular');
|
|
57677
|
+
const ShapeUnion = createIconComponent('Shape union', 'regular');
|
|
57550
57678
|
const Shapes = createIconComponent('Shapes', 'regular');
|
|
57551
57679
|
const Share = createIconComponent('Share', 'regular');
|
|
57552
|
-
const
|
|
57680
|
+
const ShareAndroid = createIconComponent('Share android', 'regular');
|
|
57681
|
+
const ShareIos = createIconComponent('Share ios', 'regular');
|
|
57682
|
+
const ShellScript = createIconComponent('Shell script', 'regular');
|
|
57553
57683
|
const Shield = createIconComponent('Shield', 'regular');
|
|
57554
|
-
const
|
|
57684
|
+
const ShoppingBag = createIconComponent('Shopping bag', 'regular');
|
|
57555
57685
|
const Sim = createIconComponent('Sim', 'regular');
|
|
57556
|
-
const
|
|
57686
|
+
const SlideAdd = createIconComponent('Slide add', 'regular');
|
|
57687
|
+
const SlideContent = createIconComponent('Slide content', 'regular');
|
|
57688
|
+
const SlideEraser = createIconComponent('Slide eraser', 'regular');
|
|
57689
|
+
const SlideGrid = createIconComponent('Slide grid', 'regular');
|
|
57690
|
+
const SlideHide = createIconComponent('Slide hide', 'regular');
|
|
57691
|
+
const SlideLayout = createIconComponent('Slide layout', 'regular');
|
|
57557
57692
|
const Smartwatch = createIconComponent('Smartwatch', 'regular');
|
|
57558
|
-
const
|
|
57693
|
+
const SoundSource = createIconComponent('Sound source', 'regular');
|
|
57559
57694
|
const Spacebar = createIconComponent('Spacebar', 'regular');
|
|
57560
|
-
const
|
|
57561
|
-
const
|
|
57695
|
+
const SportBaseball = createIconComponent('Sport baseball', 'regular');
|
|
57696
|
+
const SportBasketball = createIconComponent('Sport basketball', 'regular');
|
|
57697
|
+
const SportSoccer = createIconComponent('Sport soccer', 'regular');
|
|
57698
|
+
const SprayCan = createIconComponent('Spray can', 'regular');
|
|
57562
57699
|
const Square = createIconComponent('Square', 'regular');
|
|
57700
|
+
const SquareHint = createIconComponent('Square hint', 'regular');
|
|
57701
|
+
const SquareMultiple = createIconComponent('Square multiple', 'regular');
|
|
57563
57702
|
const Star = createIconComponent('Star', 'regular');
|
|
57564
57703
|
const Stop = createIconComponent('Stop', 'regular');
|
|
57565
57704
|
const Subtract = createIconComponent('Subtract', 'regular');
|
|
@@ -57571,54 +57710,110 @@ const Target = createIconComponent('Target', 'regular');
|
|
|
57571
57710
|
const Temperature = createIconComponent('Temperature', 'regular');
|
|
57572
57711
|
const Tent = createIconComponent('Tent', 'regular');
|
|
57573
57712
|
const Text = createIconComponent('Text', 'regular');
|
|
57713
|
+
const TextAlignCenter = createIconComponent('Text align center', 'regular');
|
|
57714
|
+
const TextAlignJustify = createIconComponent('Text align justify', 'regular');
|
|
57715
|
+
const TextAlignLeft = createIconComponent('Text align left', 'regular');
|
|
57716
|
+
const TextAlignRight = createIconComponent('Text align right', 'regular');
|
|
57574
57717
|
const Textbox = createIconComponent('Textbox', 'regular');
|
|
57718
|
+
const TextboxAlignBottom = createIconComponent('Textbox align bottom', 'regular');
|
|
57719
|
+
const TextboxAlignBottomCenter = createIconComponent('Textbox align bottom center', 'regular');
|
|
57720
|
+
const TextboxAlignBottomLeft = createIconComponent('Textbox align bottom left', 'regular');
|
|
57721
|
+
const TextboxAlignBottomRight = createIconComponent('Textbox align bottom right', 'regular');
|
|
57722
|
+
const TextboxAlignCenter = createIconComponent('Textbox align center', 'regular');
|
|
57723
|
+
const TextboxAlignMiddle = createIconComponent('Textbox align middle', 'regular');
|
|
57724
|
+
const TextboxAlignMiddleLeft = createIconComponent('Textbox align middle left', 'regular');
|
|
57725
|
+
const TextboxAlignMiddleRight = createIconComponent('Textbox align middle right', 'regular');
|
|
57726
|
+
const TextboxAlignTop = createIconComponent('Textbox align top', 'regular');
|
|
57727
|
+
const TextboxAlignTopCenter = createIconComponent('Textbox align top center', 'regular');
|
|
57728
|
+
const TextboxAlignTopLeft = createIconComponent('Textbox align top left', 'regular');
|
|
57729
|
+
const TextboxAlignTopRight = createIconComponent('Textbox align top right', 'regular');
|
|
57575
57730
|
const Thinking = createIconComponent('Thinking', 'regular');
|
|
57576
57731
|
const Ticket = createIconComponent('Ticket', 'regular');
|
|
57577
57732
|
const Timer = createIconComponent('Timer', 'regular');
|
|
57578
|
-
const
|
|
57733
|
+
const ToggleLeft = createIconComponent('Toggle left', 'regular');
|
|
57734
|
+
const ToggleMultiple = createIconComponent('Toggle multiple', 'regular');
|
|
57735
|
+
const ToggleRight = createIconComponent('Toggle right', 'regular');
|
|
57579
57736
|
const Toolbox = createIconComponent('Toolbox', 'regular');
|
|
57580
57737
|
const Trophy = createIconComponent('Trophy', 'regular');
|
|
57581
57738
|
const Tv = createIconComponent('Tv', 'regular');
|
|
57582
57739
|
const Typescript = createIconComponent('Typescript', 'regular');
|
|
57583
57740
|
const Umbrella = createIconComponent('Umbrella', 'regular');
|
|
57584
57741
|
const Usb = createIconComponent('Usb', 'regular');
|
|
57742
|
+
const UsbCable = createIconComponent('Usb cable', 'regular');
|
|
57585
57743
|
const Verified = createIconComponent('Verified', 'regular');
|
|
57586
57744
|
const Video = createIconComponent('Video', 'regular');
|
|
57745
|
+
const VideoClip = createIconComponent('Video clip', 'regular');
|
|
57746
|
+
const VideoPlayPause = createIconComponent('Video play pause', 'regular');
|
|
57587
57747
|
const Voicemail = createIconComponent('Voicemail', 'regular');
|
|
57588
57748
|
const Vote = createIconComponent('Vote', 'regular');
|
|
57589
|
-
const
|
|
57749
|
+
const WalkieTalkie = createIconComponent('Walkie talkie', 'regular');
|
|
57590
57750
|
const Wallet = createIconComponent('Wallet', 'regular');
|
|
57591
57751
|
const Wand = createIconComponent('Wand', 'regular');
|
|
57592
57752
|
const Warning = createIconComponent('Warning', 'regular');
|
|
57593
57753
|
const Washer = createIconComponent('Washer', 'regular');
|
|
57594
57754
|
const Water = createIconComponent('Water', 'regular');
|
|
57595
|
-
const
|
|
57755
|
+
const WeatherBlowingSnow = createIconComponent('Weather blowing snow', 'regular');
|
|
57756
|
+
const WeatherCloudy = createIconComponent('Weather cloudy', 'regular');
|
|
57757
|
+
const WeatherRain = createIconComponent('Weather rain', 'regular');
|
|
57758
|
+
const WeatherSnow = createIconComponent('Weather snow', 'regular');
|
|
57759
|
+
const WeatherSnowflake = createIconComponent('Weather snowflake', 'regular');
|
|
57760
|
+
const WeatherSunny = createIconComponent('Weather sunny', 'regular');
|
|
57761
|
+
const WeatherThunderstorm = createIconComponent('Weather thunderstorm', 'regular');
|
|
57596
57762
|
const Web = createIconComponent('Web', 'regular');
|
|
57597
|
-
const
|
|
57763
|
+
const Wifi1 = createIconComponent('Wifi 1', 'regular');
|
|
57764
|
+
const Wifi2 = createIconComponent('Wifi 2', 'regular');
|
|
57765
|
+
const Wifi3 = createIconComponent('Wifi 3', 'regular');
|
|
57766
|
+
const Wifi4 = createIconComponent('Wifi 4', 'regular');
|
|
57598
57767
|
const Windows = createIconComponent('Windows', 'regular');
|
|
57599
57768
|
const Wrench = createIconComponent('Wrench', 'regular');
|
|
57600
57769
|
const Xray = createIconComponent('Xray', 'regular');
|
|
57601
|
-
const Zoom = createIconComponent('Zoom', 'regular');
|
|
57770
|
+
const Zoom = createIconComponent('Zoom', 'regular');
|
|
57771
|
+
const ZoomIn = createIconComponent('Zoom in', 'regular');
|
|
57772
|
+
const ZoomOut = createIconComponent('Zoom out', 'regular');
|
|
57602
57773
|
|
|
57603
57774
|
// === Filled style icons ===
|
|
57604
|
-
const
|
|
57775
|
+
const AccessTimeFilled = createIconComponent('Access time', 'filled');
|
|
57605
57776
|
const AccessibilityFilled = createIconComponent('Accessibility', 'filled');
|
|
57606
57777
|
const AddFilled = createIconComponent('Add', 'filled');
|
|
57778
|
+
const AddCircleFilled = createIconComponent('Add circle', 'filled');
|
|
57779
|
+
const AddSquareFilled = createIconComponent('Add square', 'filled');
|
|
57607
57780
|
const AirplaneFilled = createIconComponent('Airplane', 'filled');
|
|
57608
57781
|
const AlbumFilled = createIconComponent('Album', 'filled');
|
|
57609
57782
|
const AlertFilled = createIconComponent('Alert', 'filled');
|
|
57610
|
-
const
|
|
57783
|
+
const AlertBadgeFilled = createIconComponent('Alert badge', 'filled');
|
|
57784
|
+
const AlertOffFilled = createIconComponent('Alert off', 'filled');
|
|
57785
|
+
const AlignBottomFilled = createIconComponent('Align bottom', 'filled');
|
|
57786
|
+
const AlignCenterHorizontalFilled = createIconComponent('Align center horizontal', 'filled');
|
|
57787
|
+
const AlignCenterVerticalFilled = createIconComponent('Align center vertical', 'filled');
|
|
57788
|
+
const AlignLeftFilled = createIconComponent('Align left', 'filled');
|
|
57789
|
+
const AlignRightFilled = createIconComponent('Align right', 'filled');
|
|
57790
|
+
const AlignTopFilled = createIconComponent('Align top', 'filled');
|
|
57611
57791
|
const AndroidFilled = createIconComponent('Android', 'filled');
|
|
57612
|
-
const
|
|
57792
|
+
const AppFolderFilled = createIconComponent('App folder', 'filled');
|
|
57793
|
+
const AppRecentFilled = createIconComponent('App recent', 'filled');
|
|
57794
|
+
const AppTitleFilled = createIconComponent('App title', 'filled');
|
|
57613
57795
|
const AppstoreFilled = createIconComponent('Appstore', 'filled');
|
|
57614
57796
|
const AutosumFilled = createIconComponent('Autosum', 'filled');
|
|
57615
57797
|
const BackpackFilled = createIconComponent('Backpack', 'filled');
|
|
57616
57798
|
const BackspaceFilled = createIconComponent('Backspace', 'filled');
|
|
57617
57799
|
const BadgeFilled = createIconComponent('Badge', 'filled');
|
|
57618
57800
|
const BalloonFilled = createIconComponent('Balloon', 'filled');
|
|
57619
|
-
const
|
|
57620
|
-
const
|
|
57621
|
-
const
|
|
57801
|
+
const BarChartHorizontalFilled = createIconComponent('Bar chart horizontal', 'filled');
|
|
57802
|
+
const BarChartHorizontalDescendingFilled = createIconComponent('Bar chart horizontal descending', 'filled');
|
|
57803
|
+
const BarChartVerticalFilled = createIconComponent('Bar chart vertical', 'filled');
|
|
57804
|
+
const BarChartVerticalDescendingFilled = createIconComponent('Bar chart vertical descending', 'filled');
|
|
57805
|
+
const BarcodeScannerFilled = createIconComponent('Barcode scanner', 'filled');
|
|
57806
|
+
const Battery0Filled = createIconComponent('Battery 0', 'filled');
|
|
57807
|
+
const Battery10Filled = createIconComponent('Battery 10', 'filled');
|
|
57808
|
+
const Battery100Filled = createIconComponent('Battery 100', 'filled');
|
|
57809
|
+
const Battery20Filled = createIconComponent('Battery 20', 'filled');
|
|
57810
|
+
const Battery30Filled = createIconComponent('Battery 30', 'filled');
|
|
57811
|
+
const Battery40Filled = createIconComponent('Battery 40', 'filled');
|
|
57812
|
+
const Battery50Filled = createIconComponent('Battery 50', 'filled');
|
|
57813
|
+
const Battery60Filled = createIconComponent('Battery 60', 'filled');
|
|
57814
|
+
const Battery70Filled = createIconComponent('Battery 70', 'filled');
|
|
57815
|
+
const Battery80Filled = createIconComponent('Battery 80', 'filled');
|
|
57816
|
+
const Battery90Filled = createIconComponent('Battery 90', 'filled');
|
|
57622
57817
|
const BlockFilled = createIconComponent('Block', 'filled');
|
|
57623
57818
|
const BluetoothFilled = createIconComponent('Bluetooth', 'filled');
|
|
57624
57819
|
const BlurFilled = createIconComponent('Blur', 'filled');
|
|
@@ -57630,23 +57825,30 @@ const CalculatorFilled = createIconComponent('Calculator', 'filled');
|
|
|
57630
57825
|
const CalendarFilled = createIconComponent('Calendar', 'filled');
|
|
57631
57826
|
const CameraFilled = createIconComponent('Camera', 'filled');
|
|
57632
57827
|
const CartFilled = createIconComponent('Cart', 'filled');
|
|
57633
|
-
const
|
|
57828
|
+
const CartonBoxFilled = createIconComponent('Carton box', 'filled');
|
|
57634
57829
|
const ChartFilled = createIconComponent('Chart', 'filled');
|
|
57635
57830
|
const ChatFilled = createIconComponent('Chat', 'filled');
|
|
57831
|
+
const ChatAddFilled = createIconComponent('Chat add', 'filled');
|
|
57832
|
+
const ChatEmptyFilled = createIconComponent('Chat empty', 'filled');
|
|
57636
57833
|
const CheckmarkFilled = createIconComponent('Checkmark', 'filled');
|
|
57637
57834
|
const ChessFilled = createIconComponent('Chess', 'filled');
|
|
57638
|
-
const
|
|
57835
|
+
const ChevronDownFilled = createIconComponent('Chevron down', 'filled');
|
|
57836
|
+
const ChevronLeftFilled = createIconComponent('Chevron left', 'filled');
|
|
57837
|
+
const ChevronRightFilled = createIconComponent('Chevron right', 'filled');
|
|
57838
|
+
const ChevronUpFilled = createIconComponent('Chevron up', 'filled');
|
|
57639
57839
|
const CircleFilled = createIconComponent('Circle', 'filled');
|
|
57640
57840
|
const ClipboardFilled = createIconComponent('Clipboard', 'filled');
|
|
57641
57841
|
const ClockFilled = createIconComponent('Clock', 'filled');
|
|
57842
|
+
const ClockAlarmFilled = createIconComponent('Clock alarm', 'filled');
|
|
57642
57843
|
const CloudFilled = createIconComponent('Cloud', 'filled');
|
|
57643
57844
|
const CloverFilled = createIconComponent('Clover', 'filled');
|
|
57644
57845
|
const CodeFilled = createIconComponent('Code', 'filled');
|
|
57846
|
+
const CodeBlockFilled = createIconComponent('Code block', 'filled');
|
|
57645
57847
|
const CommaFilled = createIconComponent('Comma', 'filled');
|
|
57646
57848
|
const CommentFilled = createIconComponent('Comment', 'filled');
|
|
57647
57849
|
const ConeFilled = createIconComponent('Cone', 'filled');
|
|
57648
57850
|
const ContrastFilled = createIconComponent('Contrast', 'filled');
|
|
57649
|
-
const
|
|
57851
|
+
const ControlButtonFilled = createIconComponent('Control button', 'filled');
|
|
57650
57852
|
const CookieFilled = createIconComponent('Cookie', 'filled');
|
|
57651
57853
|
const CopyFilled = createIconComponent('Copy', 'filled');
|
|
57652
57854
|
const CouchFilled = createIconComponent('Couch', 'filled');
|
|
@@ -57660,47 +57862,73 @@ const CutFilled = createIconComponent('Cut', 'filled');
|
|
|
57660
57862
|
const DartFilled = createIconComponent('Dart', 'filled');
|
|
57661
57863
|
const DatabaseFilled = createIconComponent('Database', 'filled');
|
|
57662
57864
|
const DeleteFilled = createIconComponent('Delete', 'filled');
|
|
57865
|
+
const DeleteOffFilled = createIconComponent('Delete off', 'filled');
|
|
57663
57866
|
const DentistFilled = createIconComponent('Dentist', 'filled');
|
|
57664
57867
|
const DeskFilled = createIconComponent('Desk', 'filled');
|
|
57665
57868
|
const DesktopFilled = createIconComponent('Desktop', 'filled');
|
|
57869
|
+
const DesktopMacFilled = createIconComponent('Desktop mac', 'filled');
|
|
57666
57870
|
const DialpadFilled = createIconComponent('Dialpad', 'filled');
|
|
57667
57871
|
const DiamondFilled = createIconComponent('Diamond', 'filled');
|
|
57668
57872
|
const DismissFilled = createIconComponent('Dismiss', 'filled');
|
|
57873
|
+
const DismissCircleFilled = createIconComponent('Dismiss circle', 'filled');
|
|
57874
|
+
const DismissSquareFilled = createIconComponent('Dismiss square', 'filled');
|
|
57669
57875
|
const DoctorFilled = createIconComponent('Doctor', 'filled');
|
|
57670
57876
|
const DocumentFilled = createIconComponent('Document', 'filled');
|
|
57877
|
+
const DocumentBorderFilled = createIconComponent('Document border', 'filled');
|
|
57671
57878
|
const DoorFilled = createIconComponent('Door', 'filled');
|
|
57672
57879
|
const DragFilled = createIconComponent('Drag', 'filled');
|
|
57673
57880
|
const DrawerFilled = createIconComponent('Drawer', 'filled');
|
|
57674
57881
|
const DropFilled = createIconComponent('Drop', 'filled');
|
|
57675
|
-
const
|
|
57882
|
+
const DualScreenFilled = createIconComponent('Dual screen', 'filled');
|
|
57676
57883
|
const DumbbellFilled = createIconComponent('Dumbbell', 'filled');
|
|
57677
57884
|
const DustFilled = createIconComponent('Dust', 'filled');
|
|
57678
57885
|
const EarthFilled = createIconComponent('Earth', 'filled');
|
|
57679
57886
|
const EditFilled = createIconComponent('Edit', 'filled');
|
|
57887
|
+
const EditOffFilled = createIconComponent('Edit off', 'filled');
|
|
57680
57888
|
const ElevatorFilled = createIconComponent('Elevator', 'filled');
|
|
57681
57889
|
const EmojiFilled = createIconComponent('Emoji', 'filled');
|
|
57890
|
+
const EmojiAngryFilled = createIconComponent('Emoji angry', 'filled');
|
|
57891
|
+
const EmojiCoolFilled = createIconComponent('Emoji cool', 'filled');
|
|
57892
|
+
const EmojiGrimacingFilled = createIconComponent('Emoji grimacing', 'filled');
|
|
57893
|
+
const EmojiLaughFilled = createIconComponent('Emoji laugh', 'filled');
|
|
57894
|
+
const EmojiMehFilled = createIconComponent('Emoji meh', 'filled');
|
|
57895
|
+
const EmojiSadFilled = createIconComponent('Emoji sad', 'filled');
|
|
57896
|
+
const EmojiSurpriseFilled = createIconComponent('Emoji surprise', 'filled');
|
|
57682
57897
|
const EngineFilled = createIconComponent('Engine', 'filled');
|
|
57683
57898
|
const EqualFilled = createIconComponent('Equal', 'filled');
|
|
57684
|
-
const
|
|
57899
|
+
const EqualCircleFilled = createIconComponent('Equal circle', 'filled');
|
|
57900
|
+
const EqualOffFilled = createIconComponent('Equal off', 'filled');
|
|
57901
|
+
const ErrorCircleFilled = createIconComponent('Error circle', 'filled');
|
|
57685
57902
|
const EyeFilled = createIconComponent('Eye', 'filled');
|
|
57903
|
+
const EyeOffFilled = createIconComponent('Eye off', 'filled');
|
|
57686
57904
|
const EyedropperFilled = createIconComponent('Eyedropper', 'filled');
|
|
57687
|
-
const
|
|
57905
|
+
const EyedropperOffFilled = createIconComponent('Eyedropper off', 'filled');
|
|
57906
|
+
const FastForwardFilled = createIconComponent('Fast forward', 'filled');
|
|
57688
57907
|
const FilmstripFilled = createIconComponent('Filmstrip', 'filled');
|
|
57908
|
+
const FilmstripOffFilled = createIconComponent('Filmstrip off', 'filled');
|
|
57689
57909
|
const FilterFilled = createIconComponent('Filter', 'filled');
|
|
57690
57910
|
const FireFilled = createIconComponent('Fire', 'filled');
|
|
57691
57911
|
const FlagFilled = createIconComponent('Flag', 'filled');
|
|
57912
|
+
const FlagOffFilled = createIconComponent('Flag off', 'filled');
|
|
57692
57913
|
const FlashFilled = createIconComponent('Flash', 'filled');
|
|
57914
|
+
const FlashOffFilled = createIconComponent('Flash off', 'filled');
|
|
57693
57915
|
const FlashlightFilled = createIconComponent('Flashlight', 'filled');
|
|
57694
|
-
const
|
|
57916
|
+
const FlashlightOffFilled = createIconComponent('Flashlight off', 'filled');
|
|
57917
|
+
const FlipHorizontalFilled = createIconComponent('Flip horizontal', 'filled');
|
|
57918
|
+
const FlipVerticialFilled = createIconComponent('Flip verticial', 'filled');
|
|
57695
57919
|
const FolderFilled = createIconComponent('Folder', 'filled');
|
|
57920
|
+
const FolderOpenFilled = createIconComponent('Folder open', 'filled');
|
|
57696
57921
|
const FrameFilled = createIconComponent('Frame', 'filled');
|
|
57697
|
-
const
|
|
57922
|
+
const FullScreenMaximizeFilled = createIconComponent('Full screen maximize', 'filled');
|
|
57923
|
+
const FullScreenMinimizeFilled = createIconComponent('Full screen minimize', 'filled');
|
|
57698
57924
|
const GamesFilled = createIconComponent('Games', 'filled');
|
|
57699
|
-
const
|
|
57925
|
+
const GanttChartFilled = createIconComponent('Gantt chart', 'filled');
|
|
57700
57926
|
const GasFilled = createIconComponent('Gas', 'filled');
|
|
57927
|
+
const GasStationFilled = createIconComponent('Gas station', 'filled');
|
|
57701
57928
|
const GavelFilled = createIconComponent('Gavel', 'filled');
|
|
57702
57929
|
const GifFilled = createIconComponent('Gif', 'filled');
|
|
57703
57930
|
const GiftFilled = createIconComponent('Gift', 'filled');
|
|
57931
|
+
const GiftCardFilled = createIconComponent('Gift card', 'filled');
|
|
57704
57932
|
const GitFilled = createIconComponent('Git', 'filled');
|
|
57705
57933
|
const GlassesFilled = createIconComponent('Glasses', 'filled');
|
|
57706
57934
|
const GlobalFilled = createIconComponent('Global', 'filled');
|
|
@@ -57708,102 +57936,160 @@ const GridFilled = createIconComponent('Grid', 'filled');
|
|
|
57708
57936
|
const GuestFilled = createIconComponent('Guest', 'filled');
|
|
57709
57937
|
const GuitarFilled = createIconComponent('Guitar', 'filled');
|
|
57710
57938
|
const HammerFilled = createIconComponent('Hammer', 'filled');
|
|
57711
|
-
const
|
|
57712
|
-
const
|
|
57939
|
+
const HardDriveFilled = createIconComponent('Hard drive', 'filled');
|
|
57940
|
+
const HatGraduationFilled = createIconComponent('Hat graduation', 'filled');
|
|
57713
57941
|
const HdFilled = createIconComponent('Hd', 'filled');
|
|
57714
57942
|
const HdrFilled = createIconComponent('Hdr', 'filled');
|
|
57943
|
+
const HdrOffFilled = createIconComponent('Hdr off', 'filled');
|
|
57715
57944
|
const HeadphonesFilled = createIconComponent('Headphones', 'filled');
|
|
57716
|
-
const
|
|
57945
|
+
const HeadphonesMicFilled = createIconComponent('Headphones mic', 'filled');
|
|
57946
|
+
const HeadsetVrFilled = createIconComponent('Headset vr', 'filled');
|
|
57717
57947
|
const HeartFilled = createIconComponent('Heart', 'filled');
|
|
57948
|
+
const HeartBrokenFilled = createIconComponent('Heart broken', 'filled');
|
|
57718
57949
|
const HexagonFilled = createIconComponent('Hexagon', 'filled');
|
|
57719
57950
|
const HighlightFilled = createIconComponent('Highlight', 'filled');
|
|
57720
57951
|
const HighwayFilled = createIconComponent('Highway', 'filled');
|
|
57721
57952
|
const HomeFilled = createIconComponent('Home', 'filled');
|
|
57953
|
+
const HomeCheckmarkFilled = createIconComponent('Home checkmark', 'filled');
|
|
57722
57954
|
const HourglassFilled = createIconComponent('Hourglass', 'filled');
|
|
57955
|
+
const HourglassHalfFilled = createIconComponent('Hourglass half', 'filled');
|
|
57956
|
+
const HourglassOneQuarterFilled = createIconComponent('Hourglass one quarter', 'filled');
|
|
57957
|
+
const HourglassThreeQuarterFilled = createIconComponent('Hourglass three quarter', 'filled');
|
|
57723
57958
|
const HtmlFilled = createIconComponent('Html', 'filled');
|
|
57724
57959
|
const ImageFilled = createIconComponent('Image', 'filled');
|
|
57960
|
+
const ImageCircleFilled = createIconComponent('Image circle', 'filled');
|
|
57725
57961
|
const ImportantFilled = createIconComponent('Important', 'filled');
|
|
57726
57962
|
const IncognitoFilled = createIconComponent('Incognito', 'filled');
|
|
57727
57963
|
const InfoFilled = createIconComponent('Info', 'filled');
|
|
57728
57964
|
const IosFilled = createIconComponent('Ios', 'filled');
|
|
57965
|
+
const IosArrowLtrFilled = createIconComponent('Ios arrow ltr', 'filled');
|
|
57966
|
+
const IosArrowRtlFilled = createIconComponent('Ios arrow rtl', 'filled');
|
|
57967
|
+
const IosChevronLtrFilled = createIconComponent('Ios chevron ltr', 'filled');
|
|
57968
|
+
const IosChevronRtlFilled = createIconComponent('Ios chevron rtl', 'filled');
|
|
57729
57969
|
const IotFilled = createIconComponent('Iot', 'filled');
|
|
57730
57970
|
const JavascriptFilled = createIconComponent('Javascript', 'filled');
|
|
57731
57971
|
const JoystickFilled = createIconComponent('Joystick', 'filled');
|
|
57732
57972
|
const JsonFilled = createIconComponent('Json', 'filled');
|
|
57973
|
+
const JsonFileFilled = createIconComponent('Json file', 'filled');
|
|
57733
57974
|
const KeyFilled = createIconComponent('Key', 'filled');
|
|
57975
|
+
const KeyMultipleFilled = createIconComponent('Key multiple', 'filled');
|
|
57734
57976
|
const KeyboardFilled = createIconComponent('Keyboard', 'filled');
|
|
57977
|
+
const KeyboardBackspaceFilled = createIconComponent('Keyboard backspace', 'filled');
|
|
57978
|
+
const KeyboardCommandFilled = createIconComponent('Keyboard command', 'filled');
|
|
57979
|
+
const KeyboardLockFilled = createIconComponent('Keyboard lock', 'filled');
|
|
57980
|
+
const KeyboardOffFilled = createIconComponent('Keyboard off', 'filled');
|
|
57981
|
+
const KeyboardOptionFilled = createIconComponent('Keyboard option', 'filled');
|
|
57982
|
+
const KeyboardReturnFilled = createIconComponent('Keyboard return', 'filled');
|
|
57983
|
+
const KeyboardShiftFilled = createIconComponent('Keyboard shift', 'filled');
|
|
57984
|
+
const KeyboardShiftUppercaseFilled = createIconComponent('Keyboard shift uppercase', 'filled');
|
|
57985
|
+
const KeyboardTabFilled = createIconComponent('Keyboard tab', 'filled');
|
|
57735
57986
|
const KioskFilled = createIconComponent('Kiosk', 'filled');
|
|
57736
57987
|
const KotlinFilled = createIconComponent('Kotlin', 'filled');
|
|
57737
57988
|
const LaptopFilled = createIconComponent('Laptop', 'filled');
|
|
57738
57989
|
const LayerFilled = createIconComponent('Layer', 'filled');
|
|
57739
57990
|
const LightbulbFilled = createIconComponent('Lightbulb', 'filled');
|
|
57740
57991
|
const LineFilled = createIconComponent('Line', 'filled');
|
|
57992
|
+
const LineDashesFilled = createIconComponent('Line dashes', 'filled');
|
|
57993
|
+
const LineHorizontal1Filled = createIconComponent('Line horizontal 1', 'filled');
|
|
57994
|
+
const LineHorizontal1DashesFilled = createIconComponent('Line horizontal 1 dashes', 'filled');
|
|
57741
57995
|
const LinkFilled = createIconComponent('Link', 'filled');
|
|
57742
|
-
const LocalFilled = createIconComponent('Local', 'filled');
|
|
57743
57996
|
const LocalLanguageFilled = createIconComponent('Local language', 'filled');
|
|
57744
57997
|
const LocationFilled = createIconComponent('Location', 'filled');
|
|
57745
|
-
const
|
|
57998
|
+
const LocationArrowFilled = createIconComponent('Location arrow', 'filled');
|
|
57999
|
+
const LockClosedFilled = createIconComponent('Lock closed', 'filled');
|
|
58000
|
+
const LockOpenFilled = createIconComponent('Lock open', 'filled');
|
|
57746
58001
|
const LuggageFilled = createIconComponent('Luggage', 'filled');
|
|
57747
58002
|
const MacosFilled = createIconComponent('Macos', 'filled');
|
|
57748
58003
|
const MailFilled = createIconComponent('Mail', 'filled');
|
|
58004
|
+
const MailReadFilled = createIconComponent('Mail read', 'filled');
|
|
57749
58005
|
const MailboxFilled = createIconComponent('Mailbox', 'filled');
|
|
57750
58006
|
const MapFilled = createIconComponent('Map', 'filled');
|
|
57751
58007
|
const MarkdownFilled = createIconComponent('Markdown', 'filled');
|
|
57752
|
-
const
|
|
58008
|
+
const MathSymbolsFilled = createIconComponent('Math symbols', 'filled');
|
|
57753
58009
|
const MegaphoneFilled = createIconComponent('Megaphone', 'filled');
|
|
57754
58010
|
const MicFilled = createIconComponent('Mic', 'filled');
|
|
57755
58011
|
const MoonFilled = createIconComponent('Moon', 'filled');
|
|
57756
|
-
const
|
|
58012
|
+
const MoreCircleFilled = createIconComponent('More circle', 'filled');
|
|
58013
|
+
const MoreHorizontalFilled = createIconComponent('More horizontal', 'filled');
|
|
58014
|
+
const MoreVerticialFilled = createIconComponent('More verticial', 'filled');
|
|
57757
58015
|
const MouseFilled = createIconComponent('Mouse', 'filled');
|
|
57758
58016
|
const MovieFilled = createIconComponent('Movie', 'filled');
|
|
57759
|
-
const
|
|
58017
|
+
const NetworkCheckFilled = createIconComponent('Network check', 'filled');
|
|
57760
58018
|
const NewsFilled = createIconComponent('News', 'filled');
|
|
57761
58019
|
const NextFilled = createIconComponent('Next', 'filled');
|
|
57762
58020
|
const NoteFilled = createIconComponent('Note', 'filled');
|
|
57763
58021
|
const NotebookFilled = createIconComponent('Notebook', 'filled');
|
|
57764
58022
|
const NotepadFilled = createIconComponent('Notepad', 'filled');
|
|
57765
|
-
const
|
|
58023
|
+
const NumberCircle0Filled = createIconComponent('Number circle 0', 'filled');
|
|
58024
|
+
const NumberCircle1Filled = createIconComponent('Number circle 1', 'filled');
|
|
58025
|
+
const NumberCircle2Filled = createIconComponent('Number circle 2', 'filled');
|
|
58026
|
+
const NumberCircle3Filled = createIconComponent('Number circle 3', 'filled');
|
|
58027
|
+
const NumberCircle4Filled = createIconComponent('Number circle 4', 'filled');
|
|
58028
|
+
const NumberCircle5Filled = createIconComponent('Number circle 5', 'filled');
|
|
58029
|
+
const NumberCircle6Filled = createIconComponent('Number circle 6', 'filled');
|
|
58030
|
+
const NumberCircle7Filled = createIconComponent('Number circle 7', 'filled');
|
|
58031
|
+
const NumberCircle8Filled = createIconComponent('Number circle 8', 'filled');
|
|
58032
|
+
const NumberCircle9Filled = createIconComponent('Number circle 9', 'filled');
|
|
58033
|
+
const NumberSymbolFilled = createIconComponent('Number symbol', 'filled');
|
|
58034
|
+
const NumberSymbolCircleFilled = createIconComponent('Number symbol circle', 'filled');
|
|
58035
|
+
const NumberSymbolSquareFilled = createIconComponent('Number symbol square', 'filled');
|
|
57766
58036
|
const OpacityFilled = createIconComponent('Opacity', 'filled');
|
|
57767
58037
|
const OpenFilled = createIconComponent('Open', 'filled');
|
|
58038
|
+
const OpenOffFilled = createIconComponent('Open off', 'filled');
|
|
57768
58039
|
const OptionsFilled = createIconComponent('Options', 'filled');
|
|
57769
58040
|
const OrganizationFilled = createIconComponent('Organization', 'filled');
|
|
58041
|
+
const OrganizationHorizontalFilled = createIconComponent('Organization horizontal', 'filled');
|
|
57770
58042
|
const OrientationFilled = createIconComponent('Orientation', 'filled');
|
|
57771
58043
|
const OvalFilled = createIconComponent('Oval', 'filled');
|
|
57772
58044
|
const OvenFilled = createIconComponent('Oven', 'filled');
|
|
57773
58045
|
const PaddingFilled = createIconComponent('Padding', 'filled');
|
|
57774
|
-
const
|
|
57775
|
-
const
|
|
58046
|
+
const PageFitFilled = createIconComponent('Page fit', 'filled');
|
|
58047
|
+
const PaintBrushFilled = createIconComponent('Paint brush', 'filled');
|
|
58048
|
+
const PaintBucketFilled = createIconComponent('Paint bucket', 'filled');
|
|
57776
58049
|
const ParallelogramFilled = createIconComponent('Parallelogram', 'filled');
|
|
57777
58050
|
const PasswordFilled = createIconComponent('Password', 'filled');
|
|
57778
58051
|
const PauseFilled = createIconComponent('Pause', 'filled');
|
|
58052
|
+
const PauseCircleFilled = createIconComponent('Pause circle', 'filled');
|
|
57779
58053
|
const PaymentFilled = createIconComponent('Payment', 'filled');
|
|
58054
|
+
const PaymentWirelessFilled = createIconComponent('Payment wireless', 'filled');
|
|
57780
58055
|
const PenFilled = createIconComponent('Pen', 'filled');
|
|
58056
|
+
const PenOffFilled = createIconComponent('Pen off', 'filled');
|
|
57781
58057
|
const PentagonFilled = createIconComponent('Pentagon', 'filled');
|
|
57782
58058
|
const PersonFilled = createIconComponent('Person', 'filled');
|
|
58059
|
+
const PersonVoiceFilled = createIconComponent('Person voice', 'filled');
|
|
57783
58060
|
const PhoneFilled = createIconComponent('Phone', 'filled');
|
|
57784
58061
|
const PianoFilled = createIconComponent('Piano', 'filled');
|
|
57785
58062
|
const PinFilled = createIconComponent('Pin', 'filled');
|
|
57786
58063
|
const PipelineFilled = createIconComponent('Pipeline', 'filled');
|
|
57787
58064
|
const PlayFilled = createIconComponent('Play', 'filled');
|
|
58065
|
+
const PlayCircleFilled = createIconComponent('Play circle', 'filled');
|
|
57788
58066
|
const PlaystoreFilled = createIconComponent('Playstore', 'filled');
|
|
57789
|
-
const
|
|
58067
|
+
const PortHdmiFilled = createIconComponent('Port hdmi', 'filled');
|
|
58068
|
+
const PortMicroUsbFilled = createIconComponent('Port micro usb', 'filled');
|
|
58069
|
+
const PortUsbAFilled = createIconComponent('Port usb a', 'filled');
|
|
58070
|
+
const PortUsbCFilled = createIconComponent('Port usb c', 'filled');
|
|
57790
58071
|
const PowerFilled = createIconComponent('Power', 'filled');
|
|
57791
|
-
const
|
|
58072
|
+
const PreviewLinkFilled = createIconComponent('Preview link', 'filled');
|
|
57792
58073
|
const PreviousFilled = createIconComponent('Previous', 'filled');
|
|
57793
58074
|
const PrintFilled = createIconComponent('Print', 'filled');
|
|
57794
58075
|
const PulseFilled = createIconComponent('Pulse', 'filled');
|
|
58076
|
+
const PulseCircleFilled = createIconComponent('Pulse circle', 'filled');
|
|
58077
|
+
const PulseSquareFilled = createIconComponent('Pulse square', 'filled');
|
|
57795
58078
|
const PythonFilled = createIconComponent('Python', 'filled');
|
|
57796
|
-
const
|
|
58079
|
+
const QrCodeFilled = createIconComponent('Qr code', 'filled');
|
|
57797
58080
|
const QuestionFilled = createIconComponent('Question', 'filled');
|
|
57798
|
-
const
|
|
58081
|
+
const QuestionCircleFilled = createIconComponent('Question circle', 'filled');
|
|
58082
|
+
const RadioButtonFilled = createIconComponent('Radio button', 'filled');
|
|
57799
58083
|
const RamFilled = createIconComponent('Ram', 'filled');
|
|
57800
58084
|
const RecordFilled = createIconComponent('Record', 'filled');
|
|
58085
|
+
const RecordStopFilled = createIconComponent('Record stop', 'filled');
|
|
57801
58086
|
const RectangleFilled = createIconComponent('Rectangle', 'filled');
|
|
57802
58087
|
const RefineuiFilled = createIconComponent('Refineui', 'filled');
|
|
57803
58088
|
const RewindFilled = createIconComponent('Rewind', 'filled');
|
|
57804
58089
|
const RhombusFilled = createIconComponent('Rhombus', 'filled');
|
|
57805
58090
|
const RibbonFilled = createIconComponent('Ribbon', 'filled');
|
|
57806
58091
|
const RoadFilled = createIconComponent('Road', 'filled');
|
|
58092
|
+
const RoadConeFilled = createIconComponent('Road cone', 'filled');
|
|
57807
58093
|
const RocketFilled = createIconComponent('Rocket', 'filled');
|
|
57808
58094
|
const RotationFilled = createIconComponent('Rotation', 'filled');
|
|
57809
58095
|
const RouterFilled = createIconComponent('Router', 'filled');
|
|
@@ -57815,24 +58101,40 @@ const ScalesFilled = createIconComponent('Scales', 'filled');
|
|
|
57815
58101
|
const ScriptFilled = createIconComponent('Script', 'filled');
|
|
57816
58102
|
const SearchFilled = createIconComponent('Search', 'filled');
|
|
57817
58103
|
const SendFilled = createIconComponent('Send', 'filled');
|
|
57818
|
-
const
|
|
58104
|
+
const SerialPortFilled = createIconComponent('Serial port', 'filled');
|
|
57819
58105
|
const ServerFilled = createIconComponent('Server', 'filled');
|
|
57820
|
-
const
|
|
58106
|
+
const ServerLinkFilled = createIconComponent('Server link', 'filled');
|
|
58107
|
+
const ServerPlayFilled = createIconComponent('Server play', 'filled');
|
|
58108
|
+
const ServiceBellFilled = createIconComponent('Service bell', 'filled');
|
|
57821
58109
|
const SettingsFilled = createIconComponent('Settings', 'filled');
|
|
57822
|
-
const
|
|
58110
|
+
const ShapeExcludeFilled = createIconComponent('Shape exclude', 'filled');
|
|
58111
|
+
const ShapeIntersectFilled = createIconComponent('Shape intersect', 'filled');
|
|
58112
|
+
const ShapeSubtractFilled = createIconComponent('Shape subtract', 'filled');
|
|
58113
|
+
const ShapeUnionFilled = createIconComponent('Shape union', 'filled');
|
|
57823
58114
|
const ShapesFilled = createIconComponent('Shapes', 'filled');
|
|
57824
58115
|
const ShareFilled = createIconComponent('Share', 'filled');
|
|
57825
|
-
const
|
|
58116
|
+
const ShareAndroidFilled = createIconComponent('Share android', 'filled');
|
|
58117
|
+
const ShareIosFilled = createIconComponent('Share ios', 'filled');
|
|
58118
|
+
const ShellScriptFilled = createIconComponent('Shell script', 'filled');
|
|
57826
58119
|
const ShieldFilled = createIconComponent('Shield', 'filled');
|
|
57827
|
-
const
|
|
58120
|
+
const ShoppingBagFilled = createIconComponent('Shopping bag', 'filled');
|
|
57828
58121
|
const SimFilled = createIconComponent('Sim', 'filled');
|
|
57829
|
-
const
|
|
58122
|
+
const SlideAddFilled = createIconComponent('Slide add', 'filled');
|
|
58123
|
+
const SlideContentFilled = createIconComponent('Slide content', 'filled');
|
|
58124
|
+
const SlideEraserFilled = createIconComponent('Slide eraser', 'filled');
|
|
58125
|
+
const SlideGridFilled = createIconComponent('Slide grid', 'filled');
|
|
58126
|
+
const SlideHideFilled = createIconComponent('Slide hide', 'filled');
|
|
58127
|
+
const SlideLayoutFilled = createIconComponent('Slide layout', 'filled');
|
|
57830
58128
|
const SmartwatchFilled = createIconComponent('Smartwatch', 'filled');
|
|
57831
|
-
const
|
|
58129
|
+
const SoundSourceFilled = createIconComponent('Sound source', 'filled');
|
|
57832
58130
|
const SpacebarFilled = createIconComponent('Spacebar', 'filled');
|
|
57833
|
-
const
|
|
57834
|
-
const
|
|
58131
|
+
const SportBaseballFilled = createIconComponent('Sport baseball', 'filled');
|
|
58132
|
+
const SportBasketballFilled = createIconComponent('Sport basketball', 'filled');
|
|
58133
|
+
const SportSoccerFilled = createIconComponent('Sport soccer', 'filled');
|
|
58134
|
+
const SprayCanFilled = createIconComponent('Spray can', 'filled');
|
|
57835
58135
|
const SquareFilled = createIconComponent('Square', 'filled');
|
|
58136
|
+
const SquareHintFilled = createIconComponent('Square hint', 'filled');
|
|
58137
|
+
const SquareMultipleFilled = createIconComponent('Square multiple', 'filled');
|
|
57836
58138
|
const StarFilled = createIconComponent('Star', 'filled');
|
|
57837
58139
|
const StopFilled = createIconComponent('Stop', 'filled');
|
|
57838
58140
|
const SubtractFilled = createIconComponent('Subtract', 'filled');
|
|
@@ -57844,34 +58146,66 @@ const TargetFilled = createIconComponent('Target', 'filled');
|
|
|
57844
58146
|
const TemperatureFilled = createIconComponent('Temperature', 'filled');
|
|
57845
58147
|
const TentFilled = createIconComponent('Tent', 'filled');
|
|
57846
58148
|
const TextFilled = createIconComponent('Text', 'filled');
|
|
58149
|
+
const TextAlignCenterFilled = createIconComponent('Text align center', 'filled');
|
|
58150
|
+
const TextAlignJustifyFilled = createIconComponent('Text align justify', 'filled');
|
|
58151
|
+
const TextAlignLeftFilled = createIconComponent('Text align left', 'filled');
|
|
58152
|
+
const TextAlignRightFilled = createIconComponent('Text align right', 'filled');
|
|
57847
58153
|
const TextboxFilled = createIconComponent('Textbox', 'filled');
|
|
58154
|
+
const TextboxAlignBottomFilled = createIconComponent('Textbox align bottom', 'filled');
|
|
58155
|
+
const TextboxAlignBottomCenterFilled = createIconComponent('Textbox align bottom center', 'filled');
|
|
58156
|
+
const TextboxAlignBottomLeftFilled = createIconComponent('Textbox align bottom left', 'filled');
|
|
58157
|
+
const TextboxAlignBottomRightFilled = createIconComponent('Textbox align bottom right', 'filled');
|
|
58158
|
+
const TextboxAlignCenterFilled = createIconComponent('Textbox align center', 'filled');
|
|
58159
|
+
const TextboxAlignMiddleFilled = createIconComponent('Textbox align middle', 'filled');
|
|
58160
|
+
const TextboxAlignMiddleLeftFilled = createIconComponent('Textbox align middle left', 'filled');
|
|
58161
|
+
const TextboxAlignMiddleRightFilled = createIconComponent('Textbox align middle right', 'filled');
|
|
58162
|
+
const TextboxAlignTopFilled = createIconComponent('Textbox align top', 'filled');
|
|
58163
|
+
const TextboxAlignTopCenterFilled = createIconComponent('Textbox align top center', 'filled');
|
|
58164
|
+
const TextboxAlignTopLeftFilled = createIconComponent('Textbox align top left', 'filled');
|
|
58165
|
+
const TextboxAlignTopRightFilled = createIconComponent('Textbox align top right', 'filled');
|
|
57848
58166
|
const ThinkingFilled = createIconComponent('Thinking', 'filled');
|
|
57849
58167
|
const TicketFilled = createIconComponent('Ticket', 'filled');
|
|
57850
58168
|
const TimerFilled = createIconComponent('Timer', 'filled');
|
|
57851
|
-
const
|
|
58169
|
+
const ToggleLeftFilled = createIconComponent('Toggle left', 'filled');
|
|
58170
|
+
const ToggleMultipleFilled = createIconComponent('Toggle multiple', 'filled');
|
|
58171
|
+
const ToggleRightFilled = createIconComponent('Toggle right', 'filled');
|
|
57852
58172
|
const ToolboxFilled = createIconComponent('Toolbox', 'filled');
|
|
57853
58173
|
const TrophyFilled = createIconComponent('Trophy', 'filled');
|
|
57854
58174
|
const TvFilled = createIconComponent('Tv', 'filled');
|
|
57855
58175
|
const TypescriptFilled = createIconComponent('Typescript', 'filled');
|
|
57856
58176
|
const UmbrellaFilled = createIconComponent('Umbrella', 'filled');
|
|
57857
58177
|
const UsbFilled = createIconComponent('Usb', 'filled');
|
|
58178
|
+
const UsbCableFilled = createIconComponent('Usb cable', 'filled');
|
|
57858
58179
|
const VerifiedFilled = createIconComponent('Verified', 'filled');
|
|
57859
58180
|
const VideoFilled = createIconComponent('Video', 'filled');
|
|
58181
|
+
const VideoClipFilled = createIconComponent('Video clip', 'filled');
|
|
58182
|
+
const VideoPlayPauseFilled = createIconComponent('Video play pause', 'filled');
|
|
57860
58183
|
const VoicemailFilled = createIconComponent('Voicemail', 'filled');
|
|
57861
58184
|
const VoteFilled = createIconComponent('Vote', 'filled');
|
|
57862
|
-
const
|
|
58185
|
+
const WalkieTalkieFilled = createIconComponent('Walkie talkie', 'filled');
|
|
57863
58186
|
const WalletFilled = createIconComponent('Wallet', 'filled');
|
|
57864
58187
|
const WandFilled = createIconComponent('Wand', 'filled');
|
|
57865
58188
|
const WarningFilled = createIconComponent('Warning', 'filled');
|
|
57866
58189
|
const WasherFilled = createIconComponent('Washer', 'filled');
|
|
57867
58190
|
const WaterFilled = createIconComponent('Water', 'filled');
|
|
57868
|
-
const
|
|
58191
|
+
const WeatherBlowingSnowFilled = createIconComponent('Weather blowing snow', 'filled');
|
|
58192
|
+
const WeatherCloudyFilled = createIconComponent('Weather cloudy', 'filled');
|
|
58193
|
+
const WeatherRainFilled = createIconComponent('Weather rain', 'filled');
|
|
58194
|
+
const WeatherSnowFilled = createIconComponent('Weather snow', 'filled');
|
|
58195
|
+
const WeatherSnowflakeFilled = createIconComponent('Weather snowflake', 'filled');
|
|
58196
|
+
const WeatherSunnyFilled = createIconComponent('Weather sunny', 'filled');
|
|
58197
|
+
const WeatherThunderstormFilled = createIconComponent('Weather thunderstorm', 'filled');
|
|
57869
58198
|
const WebFilled = createIconComponent('Web', 'filled');
|
|
57870
|
-
const
|
|
58199
|
+
const Wifi1Filled = createIconComponent('Wifi 1', 'filled');
|
|
58200
|
+
const Wifi2Filled = createIconComponent('Wifi 2', 'filled');
|
|
58201
|
+
const Wifi3Filled = createIconComponent('Wifi 3', 'filled');
|
|
58202
|
+
const Wifi4Filled = createIconComponent('Wifi 4', 'filled');
|
|
57871
58203
|
const WindowsFilled = createIconComponent('Windows', 'filled');
|
|
57872
58204
|
const WrenchFilled = createIconComponent('Wrench', 'filled');
|
|
57873
58205
|
const XrayFilled = createIconComponent('Xray', 'filled');
|
|
57874
|
-
const ZoomFilled = createIconComponent('Zoom', 'filled');
|
|
58206
|
+
const ZoomFilled = createIconComponent('Zoom', 'filled');
|
|
58207
|
+
const ZoomInFilled = createIconComponent('Zoom in', 'filled');
|
|
58208
|
+
const ZoomOutFilled = createIconComponent('Zoom out', 'filled');
|
|
57875
58209
|
|
|
57876
|
-
export { Access, AccessFilled, Accessibility, AccessibilityFilled, Add, AddFilled, Airplane, AirplaneFilled, Album, AlbumFilled, Alert, AlertFilled, Align, AlignFilled, Android, AndroidFilled, App, AppFilled, Appstore, AppstoreFilled, Autosum, AutosumFilled, Backpack, BackpackFilled, Backspace, BackspaceFilled, Badge, BadgeFilled, Balloon, BalloonFilled, Bar, BarFilled, Barcode, BarcodeFilled, Battery, BatteryFilled, Block, BlockFilled, Bluetooth, BluetoothFilled, Blur, BlurFilled, Board, BoardFilled, Book, BookFilled, Bookmark, BookmarkFilled, Bug, BugFilled, Calculator, CalculatorFilled, Calendar, CalendarFilled, Camera, CameraFilled, Cart, CartFilled, Carton, CartonFilled, Chart, ChartFilled, Chat, ChatFilled, Checkmark, CheckmarkFilled, Chess, ChessFilled, Chevron, ChevronFilled, Circle, CircleFilled, Clipboard, ClipboardFilled, Clock, ClockFilled, Cloud, CloudFilled, Clover, CloverFilled, Code, CodeFilled, Comma, CommaFilled, Comment, CommentFilled, Cone, ConeFilled, Contrast, ContrastFilled, Control, ControlFilled, Cookie, CookieFilled, Copy, CopyFilled, Couch, CouchFilled, Cpu, CpuFilled, Crop, CropFilled, Crown, CrownFilled, Css, CssFilled, Cube, CubeFilled, Cursor, CursorFilled, Cut, CutFilled, Dart, DartFilled, Database, DatabaseFilled, Delete, DeleteFilled, Dentist, DentistFilled, Desk, DeskFilled, Desktop, DesktopFilled, Dialpad, DialpadFilled, Diamond, DiamondFilled, Dismiss, DismissFilled, Doctor, DoctorFilled, Document, DocumentFilled, Door, DoorFilled, Drag, DragFilled, Drawer, DrawerFilled, Drop, DropFilled, Dual, DualFilled, Dumbbell, DumbbellFilled, Dust, DustFilled, Earth, EarthFilled, Edit, EditFilled, Elevator, ElevatorFilled, Emoji, EmojiFilled, Engine, EngineFilled, Equal, EqualFilled, Error, ErrorFilled, Eye, EyeFilled, Eyedropper, EyedropperFilled, Fast, FastFilled, Filmstrip, FilmstripFilled, Filter, FilterFilled, Fire, FireFilled, Flag, FlagFilled, Flash, FlashFilled, Flashlight, FlashlightFilled, Flip, FlipFilled, Folder, FolderFilled, Frame, FrameFilled, Full, FullFilled, Games, GamesFilled, Gantt, GanttFilled, Gas, GasFilled, Gavel, GavelFilled, Gif, GifFilled, Gift, GiftFilled, Git, GitFilled, Glasses, GlassesFilled, Global, GlobalFilled, Grid, GridFilled, Guest, GuestFilled, Guitar, GuitarFilled, Hammer, HammerFilled, Hard, HardFilled, Hat, HatFilled, Hd, HdFilled, Hdr, HdrFilled, Headphones, HeadphonesFilled, Headset, HeadsetFilled, Heart, HeartFilled, Hexagon, HexagonFilled, Highlight, HighlightFilled, Highway, HighwayFilled, Home, HomeFilled, Hourglass, HourglassFilled, Html, HtmlFilled, reactNativeIconUtils as IconUtils, Image, ImageFilled, Important, ImportantFilled, Incognito, IncognitoFilled, Info, InfoFilled, Ios, IosFilled, Iot, IotFilled, Javascript, JavascriptFilled, Joystick, JoystickFilled, Json, JsonFilled, Key, KeyFilled, Keyboard, KeyboardFilled, Kiosk, KioskFilled, Kotlin, KotlinFilled, Laptop, LaptopFilled, Layer, LayerFilled, Lightbulb, LightbulbFilled, Line, LineFilled, Link, LinkFilled, Local, LocalFilled, LocalLanguage, LocalLanguageFilled, Location, LocationFilled, Lock, LockFilled, Luggage, LuggageFilled, Macos, MacosFilled, Mail, MailFilled, Mailbox, MailboxFilled, Map, MapFilled, Markdown, MarkdownFilled, Math, MathFilled, Megaphone, MegaphoneFilled, Mic, MicFilled, Moon, MoonFilled, More, MoreFilled, Mouse, MouseFilled, Movie, MovieFilled, Network, NetworkFilled, News, NewsFilled, Next, NextFilled, Note, NoteFilled, Notebook, NotebookFilled, Notepad, NotepadFilled, Number, NumberFilled, Opacity, OpacityFilled, Open, OpenFilled, Options, OptionsFilled, Organization, OrganizationFilled, Orientation, OrientationFilled, Oval, OvalFilled, Oven, OvenFilled, Padding, PaddingFilled, Page, PageFilled, Paint, PaintFilled, Parallelogram, ParallelogramFilled, Password, PasswordFilled, Pause, PauseFilled, Payment, PaymentFilled, Pen, PenFilled, Pentagon, PentagonFilled, Person, PersonFilled, Phone, PhoneFilled, Piano, PianoFilled, Pin, PinFilled, Pipeline, PipelineFilled, Play, PlayFilled, Playstore, PlaystoreFilled, Port, PortFilled, Power, PowerFilled, Preview, PreviewFilled, Previous, PreviousFilled, Print, PrintFilled, Pulse, PulseFilled, Python, PythonFilled, Qr, QrFilled, Question, QuestionFilled, Radio, RadioFilled, Ram, RamFilled, Record, RecordFilled, Rectangle, RectangleFilled, Refineui, RefineuiFilled, Rewind, RewindFilled, Rhombus, RhombusFilled, Ribbon, RibbonFilled, Road, RoadFilled, Rocket, RocketFilled, Rotation, RotationFilled, Router, RouterFilled, Rss, RssFilled, Ruler, RulerFilled, Run, RunFilled, Save, SaveFilled, Scales, ScalesFilled, Script, ScriptFilled, Search, SearchFilled, Send, SendFilled, Serial, SerialFilled, Server, ServerFilled, Service, ServiceFilled, Settings, SettingsFilled, Shape, ShapeFilled, Shapes, ShapesFilled, Share, ShareFilled, Shell, ShellFilled, Shield, ShieldFilled, Shopping, ShoppingFilled, Sim, SimFilled, Slide, SlideFilled, Smartwatch, SmartwatchFilled, Sound, SoundFilled, Spacebar, SpacebarFilled, Sport, SportFilled, Spray, SprayFilled, Square, SquareFilled, Star, StarFilled, Stop, StopFilled, Subtract, SubtractFilled, Swift, SwiftFilled, Tab, TabFilled, Tablet, TabletFilled, Tag, TagFilled, Target, TargetFilled, Temperature, TemperatureFilled, Tent, TentFilled, Text, TextFilled, Textbox, TextboxFilled, Thinking, ThinkingFilled, Ticket, TicketFilled, Timer, TimerFilled, Toggle, ToggleFilled, Toolbox, ToolboxFilled, Trophy, TrophyFilled, Tv, TvFilled, Typescript, TypescriptFilled, Umbrella, UmbrellaFilled, Usb, UsbFilled, Verified, VerifiedFilled, Video, VideoFilled, Voicemail, VoicemailFilled, Vote, VoteFilled, Walkie, WalkieFilled, Wallet, WalletFilled, Wand, WandFilled, Warning, WarningFilled, Washer, WasherFilled, Water, WaterFilled, Weather, WeatherFilled, Web, WebFilled, Wifi, WifiFilled, Windows, WindowsFilled, Wrench, WrenchFilled, Xray, XrayFilled, Zoom, ZoomFilled, createIconComponent, getFontFamily, getIconChar, getIconClass };
|
|
58210
|
+
export { AccessTime, AccessTimeFilled, Accessibility, AccessibilityFilled, Add, AddCircle, AddCircleFilled, AddFilled, AddSquare, AddSquareFilled, Airplane, AirplaneFilled, Album, AlbumFilled, Alert, AlertBadge, AlertBadgeFilled, AlertFilled, AlertOff, AlertOffFilled, AlignBottom, AlignBottomFilled, AlignCenterHorizontal, AlignCenterHorizontalFilled, AlignCenterVertical, AlignCenterVerticalFilled, AlignLeft, AlignLeftFilled, AlignRight, AlignRightFilled, AlignTop, AlignTopFilled, Android, AndroidFilled, AppFolder, AppFolderFilled, AppRecent, AppRecentFilled, AppTitle, AppTitleFilled, Appstore, AppstoreFilled, Autosum, AutosumFilled, Backpack, BackpackFilled, Backspace, BackspaceFilled, Badge, BadgeFilled, Balloon, BalloonFilled, BarChartHorizontal, BarChartHorizontalDescending, BarChartHorizontalDescendingFilled, BarChartHorizontalFilled, BarChartVertical, BarChartVerticalDescending, BarChartVerticalDescendingFilled, BarChartVerticalFilled, BarcodeScanner, BarcodeScannerFilled, Battery0, Battery0Filled, Battery10, Battery100, Battery100Filled, Battery10Filled, Battery20, Battery20Filled, Battery30, Battery30Filled, Battery40, Battery40Filled, Battery50, Battery50Filled, Battery60, Battery60Filled, Battery70, Battery70Filled, Battery80, Battery80Filled, Battery90, Battery90Filled, Block, BlockFilled, Bluetooth, BluetoothFilled, Blur, BlurFilled, Board, BoardFilled, Book, BookFilled, Bookmark, BookmarkFilled, Bug, BugFilled, Calculator, CalculatorFilled, Calendar, CalendarFilled, Camera, CameraFilled, Cart, CartFilled, CartonBox, CartonBoxFilled, Chart, ChartFilled, Chat, ChatAdd, ChatAddFilled, ChatEmpty, ChatEmptyFilled, ChatFilled, Checkmark, CheckmarkFilled, Chess, ChessFilled, ChevronDown, ChevronDownFilled, ChevronLeft, ChevronLeftFilled, ChevronRight, ChevronRightFilled, ChevronUp, ChevronUpFilled, Circle, CircleFilled, Clipboard, ClipboardFilled, Clock, ClockAlarm, ClockAlarmFilled, ClockFilled, Cloud, CloudFilled, Clover, CloverFilled, Code, CodeBlock, CodeBlockFilled, CodeFilled, Comma, CommaFilled, Comment, CommentFilled, Cone, ConeFilled, Contrast, ContrastFilled, ControlButton, ControlButtonFilled, Cookie, CookieFilled, Copy, CopyFilled, Couch, CouchFilled, Cpu, CpuFilled, Crop, CropFilled, Crown, CrownFilled, Css, CssFilled, Cube, CubeFilled, Cursor, CursorFilled, Cut, CutFilled, Dart, DartFilled, Database, DatabaseFilled, Delete, DeleteFilled, DeleteOff, DeleteOffFilled, Dentist, DentistFilled, Desk, DeskFilled, Desktop, DesktopFilled, DesktopMac, DesktopMacFilled, Dialpad, DialpadFilled, Diamond, DiamondFilled, Dismiss, DismissCircle, DismissCircleFilled, DismissFilled, DismissSquare, DismissSquareFilled, Doctor, DoctorFilled, Document, DocumentBorder, DocumentBorderFilled, DocumentFilled, Door, DoorFilled, Drag, DragFilled, Drawer, DrawerFilled, Drop, DropFilled, DualScreen, DualScreenFilled, Dumbbell, DumbbellFilled, Dust, DustFilled, Earth, EarthFilled, Edit, EditFilled, EditOff, EditOffFilled, Elevator, ElevatorFilled, Emoji, EmojiAngry, EmojiAngryFilled, EmojiCool, EmojiCoolFilled, EmojiFilled, EmojiGrimacing, EmojiGrimacingFilled, EmojiLaugh, EmojiLaughFilled, EmojiMeh, EmojiMehFilled, EmojiSad, EmojiSadFilled, EmojiSurprise, EmojiSurpriseFilled, Engine, EngineFilled, Equal, EqualCircle, EqualCircleFilled, EqualFilled, EqualOff, EqualOffFilled, ErrorCircle, ErrorCircleFilled, Eye, EyeFilled, EyeOff, EyeOffFilled, Eyedropper, EyedropperFilled, EyedropperOff, EyedropperOffFilled, FastForward, FastForwardFilled, Filmstrip, FilmstripFilled, FilmstripOff, FilmstripOffFilled, Filter, FilterFilled, Fire, FireFilled, Flag, FlagFilled, FlagOff, FlagOffFilled, Flash, FlashFilled, FlashOff, FlashOffFilled, Flashlight, FlashlightFilled, FlashlightOff, FlashlightOffFilled, FlipHorizontal, FlipHorizontalFilled, FlipVerticial, FlipVerticialFilled, Folder, FolderFilled, FolderOpen, FolderOpenFilled, Frame, FrameFilled, FullScreenMaximize, FullScreenMaximizeFilled, FullScreenMinimize, FullScreenMinimizeFilled, Games, GamesFilled, GanttChart, GanttChartFilled, Gas, GasFilled, GasStation, GasStationFilled, Gavel, GavelFilled, Gif, GifFilled, Gift, GiftCard, GiftCardFilled, GiftFilled, Git, GitFilled, Glasses, GlassesFilled, Global, GlobalFilled, Grid, GridFilled, Guest, GuestFilled, Guitar, GuitarFilled, Hammer, HammerFilled, HardDrive, HardDriveFilled, HatGraduation, HatGraduationFilled, Hd, HdFilled, Hdr, HdrFilled, HdrOff, HdrOffFilled, Headphones, HeadphonesFilled, HeadphonesMic, HeadphonesMicFilled, HeadsetVr, HeadsetVrFilled, Heart, HeartBroken, HeartBrokenFilled, HeartFilled, Hexagon, HexagonFilled, Highlight, HighlightFilled, Highway, HighwayFilled, Home, HomeCheckmark, HomeCheckmarkFilled, HomeFilled, Hourglass, HourglassFilled, HourglassHalf, HourglassHalfFilled, HourglassOneQuarter, HourglassOneQuarterFilled, HourglassThreeQuarter, HourglassThreeQuarterFilled, Html, HtmlFilled, reactNativeIconUtils as IconUtils, Image, ImageCircle, ImageCircleFilled, ImageFilled, Important, ImportantFilled, Incognito, IncognitoFilled, Info, InfoFilled, Ios, IosArrowLtr, IosArrowLtrFilled, IosArrowRtl, IosArrowRtlFilled, IosChevronLtr, IosChevronLtrFilled, IosChevronRtl, IosChevronRtlFilled, IosFilled, Iot, IotFilled, Javascript, JavascriptFilled, Joystick, JoystickFilled, Json, JsonFile, JsonFileFilled, JsonFilled, Key, KeyFilled, KeyMultiple, KeyMultipleFilled, Keyboard, KeyboardBackspace, KeyboardBackspaceFilled, KeyboardCommand, KeyboardCommandFilled, KeyboardFilled, KeyboardLock, KeyboardLockFilled, KeyboardOff, KeyboardOffFilled, KeyboardOption, KeyboardOptionFilled, KeyboardReturn, KeyboardReturnFilled, KeyboardShift, KeyboardShiftFilled, KeyboardShiftUppercase, KeyboardShiftUppercaseFilled, KeyboardTab, KeyboardTabFilled, Kiosk, KioskFilled, Kotlin, KotlinFilled, Laptop, LaptopFilled, Layer, LayerFilled, Lightbulb, LightbulbFilled, Line, LineDashes, LineDashesFilled, LineFilled, LineHorizontal1, LineHorizontal1Dashes, LineHorizontal1DashesFilled, LineHorizontal1Filled, Link, LinkFilled, LocalLanguage, LocalLanguageFilled, Location, LocationArrow, LocationArrowFilled, LocationFilled, LockClosed, LockClosedFilled, LockOpen, LockOpenFilled, Luggage, LuggageFilled, Macos, MacosFilled, Mail, MailFilled, MailRead, MailReadFilled, Mailbox, MailboxFilled, Map, MapFilled, Markdown, MarkdownFilled, MathSymbols, MathSymbolsFilled, Megaphone, MegaphoneFilled, Mic, MicFilled, Moon, MoonFilled, MoreCircle, MoreCircleFilled, MoreHorizontal, MoreHorizontalFilled, MoreVerticial, MoreVerticialFilled, Mouse, MouseFilled, Movie, MovieFilled, NetworkCheck, NetworkCheckFilled, News, NewsFilled, Next, NextFilled, Note, NoteFilled, Notebook, NotebookFilled, Notepad, NotepadFilled, NumberCircle0, NumberCircle0Filled, NumberCircle1, NumberCircle1Filled, NumberCircle2, NumberCircle2Filled, NumberCircle3, NumberCircle3Filled, NumberCircle4, NumberCircle4Filled, NumberCircle5, NumberCircle5Filled, NumberCircle6, NumberCircle6Filled, NumberCircle7, NumberCircle7Filled, NumberCircle8, NumberCircle8Filled, NumberCircle9, NumberCircle9Filled, NumberSymbol, NumberSymbolCircle, NumberSymbolCircleFilled, NumberSymbolFilled, NumberSymbolSquare, NumberSymbolSquareFilled, Opacity, OpacityFilled, Open, OpenFilled, OpenOff, OpenOffFilled, Options, OptionsFilled, Organization, OrganizationFilled, OrganizationHorizontal, OrganizationHorizontalFilled, Orientation, OrientationFilled, Oval, OvalFilled, Oven, OvenFilled, Padding, PaddingFilled, PageFit, PageFitFilled, PaintBrush, PaintBrushFilled, PaintBucket, PaintBucketFilled, Parallelogram, ParallelogramFilled, Password, PasswordFilled, Pause, PauseCircle, PauseCircleFilled, PauseFilled, Payment, PaymentFilled, PaymentWireless, PaymentWirelessFilled, Pen, PenFilled, PenOff, PenOffFilled, Pentagon, PentagonFilled, Person, PersonFilled, PersonVoice, PersonVoiceFilled, Phone, PhoneFilled, Piano, PianoFilled, Pin, PinFilled, Pipeline, PipelineFilled, Play, PlayCircle, PlayCircleFilled, PlayFilled, Playstore, PlaystoreFilled, PortHdmi, PortHdmiFilled, PortMicroUsb, PortMicroUsbFilled, PortUsbA, PortUsbAFilled, PortUsbC, PortUsbCFilled, Power, PowerFilled, PreviewLink, PreviewLinkFilled, Previous, PreviousFilled, Print, PrintFilled, Pulse, PulseCircle, PulseCircleFilled, PulseFilled, PulseSquare, PulseSquareFilled, Python, PythonFilled, QrCode, QrCodeFilled, Question, QuestionCircle, QuestionCircleFilled, QuestionFilled, RadioButton, RadioButtonFilled, Ram, RamFilled, Record, RecordFilled, RecordStop, RecordStopFilled, Rectangle, RectangleFilled, Refineui, RefineuiFilled, Rewind, RewindFilled, Rhombus, RhombusFilled, Ribbon, RibbonFilled, Road, RoadCone, RoadConeFilled, RoadFilled, Rocket, RocketFilled, Rotation, RotationFilled, Router, RouterFilled, Rss, RssFilled, Ruler, RulerFilled, Run, RunFilled, Save, SaveFilled, Scales, ScalesFilled, Script, ScriptFilled, Search, SearchFilled, Send, SendFilled, SerialPort, SerialPortFilled, Server, ServerFilled, ServerLink, ServerLinkFilled, ServerPlay, ServerPlayFilled, ServiceBell, ServiceBellFilled, Settings, SettingsFilled, ShapeExclude, ShapeExcludeFilled, ShapeIntersect, ShapeIntersectFilled, ShapeSubtract, ShapeSubtractFilled, ShapeUnion, ShapeUnionFilled, Shapes, ShapesFilled, Share, ShareAndroid, ShareAndroidFilled, ShareFilled, ShareIos, ShareIosFilled, ShellScript, ShellScriptFilled, Shield, ShieldFilled, ShoppingBag, ShoppingBagFilled, Sim, SimFilled, SlideAdd, SlideAddFilled, SlideContent, SlideContentFilled, SlideEraser, SlideEraserFilled, SlideGrid, SlideGridFilled, SlideHide, SlideHideFilled, SlideLayout, SlideLayoutFilled, Smartwatch, SmartwatchFilled, SoundSource, SoundSourceFilled, Spacebar, SpacebarFilled, SportBaseball, SportBaseballFilled, SportBasketball, SportBasketballFilled, SportSoccer, SportSoccerFilled, SprayCan, SprayCanFilled, Square, SquareFilled, SquareHint, SquareHintFilled, SquareMultiple, SquareMultipleFilled, Star, StarFilled, Stop, StopFilled, Subtract, SubtractFilled, Swift, SwiftFilled, Tab, TabFilled, Tablet, TabletFilled, Tag, TagFilled, Target, TargetFilled, Temperature, TemperatureFilled, Tent, TentFilled, Text, TextAlignCenter, TextAlignCenterFilled, TextAlignJustify, TextAlignJustifyFilled, TextAlignLeft, TextAlignLeftFilled, TextAlignRight, TextAlignRightFilled, TextFilled, Textbox, TextboxAlignBottom, TextboxAlignBottomCenter, TextboxAlignBottomCenterFilled, TextboxAlignBottomFilled, TextboxAlignBottomLeft, TextboxAlignBottomLeftFilled, TextboxAlignBottomRight, TextboxAlignBottomRightFilled, TextboxAlignCenter, TextboxAlignCenterFilled, TextboxAlignMiddle, TextboxAlignMiddleFilled, TextboxAlignMiddleLeft, TextboxAlignMiddleLeftFilled, TextboxAlignMiddleRight, TextboxAlignMiddleRightFilled, TextboxAlignTop, TextboxAlignTopCenter, TextboxAlignTopCenterFilled, TextboxAlignTopFilled, TextboxAlignTopLeft, TextboxAlignTopLeftFilled, TextboxAlignTopRight, TextboxAlignTopRightFilled, TextboxFilled, Thinking, ThinkingFilled, Ticket, TicketFilled, Timer, TimerFilled, ToggleLeft, ToggleLeftFilled, ToggleMultiple, ToggleMultipleFilled, ToggleRight, ToggleRightFilled, Toolbox, ToolboxFilled, Trophy, TrophyFilled, Tv, TvFilled, Typescript, TypescriptFilled, Umbrella, UmbrellaFilled, Usb, UsbCable, UsbCableFilled, UsbFilled, Verified, VerifiedFilled, Video, VideoClip, VideoClipFilled, VideoFilled, VideoPlayPause, VideoPlayPauseFilled, Voicemail, VoicemailFilled, Vote, VoteFilled, WalkieTalkie, WalkieTalkieFilled, Wallet, WalletFilled, Wand, WandFilled, Warning, WarningFilled, Washer, WasherFilled, Water, WaterFilled, WeatherBlowingSnow, WeatherBlowingSnowFilled, WeatherCloudy, WeatherCloudyFilled, WeatherRain, WeatherRainFilled, WeatherSnow, WeatherSnowFilled, WeatherSnowflake, WeatherSnowflakeFilled, WeatherSunny, WeatherSunnyFilled, WeatherThunderstorm, WeatherThunderstormFilled, Web, WebFilled, Wifi1, Wifi1Filled, Wifi2, Wifi2Filled, Wifi3, Wifi3Filled, Wifi4, Wifi4Filled, Windows, WindowsFilled, Wrench, WrenchFilled, Xray, XrayFilled, Zoom, ZoomFilled, ZoomIn, ZoomInFilled, ZoomOut, ZoomOutFilled, createIconComponent, getFontFamily, getIconChar, getIconClass };
|
|
57877
58211
|
//# sourceMappingURL=index.esm.js.map
|