@atlaskit/eslint-plugin-design-system 10.12.1 → 10.12.3

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/cjs/rules/no-legacy-icons/checks.js +3 -4
  3. package/dist/cjs/rules/no-legacy-icons/helpers.js +22 -17
  4. package/dist/cjs/rules/use-heading/config/index.js +1 -0
  5. package/dist/cjs/rules/use-heading/index.js +3 -2
  6. package/dist/cjs/rules/use-latest-xcss-syntax-typography/config/index.js +12 -0
  7. package/dist/cjs/rules/use-latest-xcss-syntax-typography/index.js +5 -2
  8. package/dist/cjs/rules/use-primitives-text/config/index.js +1 -0
  9. package/dist/cjs/rules/use-primitives-text/index.js +3 -2
  10. package/dist/cjs/rules/use-tokens-typography/config/index.js +3 -0
  11. package/dist/es2019/rules/no-legacy-icons/checks.js +1 -2
  12. package/dist/es2019/rules/no-legacy-icons/helpers.js +13 -10
  13. package/dist/es2019/rules/use-heading/config/index.js +1 -0
  14. package/dist/es2019/rules/use-heading/index.js +3 -2
  15. package/dist/es2019/rules/use-latest-xcss-syntax-typography/config/index.js +6 -0
  16. package/dist/es2019/rules/use-latest-xcss-syntax-typography/index.js +5 -2
  17. package/dist/es2019/rules/use-primitives-text/config/index.js +1 -0
  18. package/dist/es2019/rules/use-primitives-text/index.js +3 -2
  19. package/dist/es2019/rules/use-tokens-typography/config/index.js +3 -0
  20. package/dist/esm/rules/no-legacy-icons/checks.js +1 -2
  21. package/dist/esm/rules/no-legacy-icons/helpers.js +21 -16
  22. package/dist/esm/rules/use-heading/config/index.js +1 -0
  23. package/dist/esm/rules/use-heading/index.js +3 -2
  24. package/dist/esm/rules/use-latest-xcss-syntax-typography/config/index.js +6 -0
  25. package/dist/esm/rules/use-latest-xcss-syntax-typography/index.js +5 -2
  26. package/dist/esm/rules/use-primitives-text/config/index.js +1 -0
  27. package/dist/esm/rules/use-primitives-text/index.js +3 -2
  28. package/dist/esm/rules/use-tokens-typography/config/index.js +3 -0
  29. package/dist/types/rules/no-legacy-icons/helpers.d.ts +5 -14
  30. package/dist/types/rules/use-heading/config/index.d.ts +1 -0
  31. package/dist/types/rules/use-latest-xcss-syntax-typography/config/index.d.ts +4 -0
  32. package/dist/types/rules/use-primitives-text/config/index.d.ts +1 -0
  33. package/dist/types-ts4.5/rules/no-legacy-icons/helpers.d.ts +10 -14
  34. package/dist/types-ts4.5/rules/use-heading/config/index.d.ts +1 -0
  35. package/dist/types-ts4.5/rules/use-latest-xcss-syntax-typography/config/index.d.ts +4 -0
  36. package/dist/types-ts4.5/rules/use-primitives-text/config/index.d.ts +1 -0
  37. package/package.json +2 -1
  38. package/dist/cjs/rules/no-legacy-icons/migration-map-temp.js +0 -4090
  39. package/dist/es2019/rules/no-legacy-icons/migration-map-temp.js +0 -4082
  40. package/dist/esm/rules/no-legacy-icons/migration-map-temp.js +0 -4084
  41. package/dist/types/rules/no-legacy-icons/migration-map-temp.d.ts +0 -22
  42. package/dist/types-ts4.5/rules/no-legacy-icons/migration-map-temp.d.ts +0 -27
@@ -1,4084 +0,0 @@
1
- export var outcomeDescriptionMap = {
2
- swap: 'Swap icon',
3
- 'swap-slight-visual-change': 'Swap icon for an equivalent in the new set; there will be some slight visual change.',
4
- 'swap-visual-change': 'Swap icon for an equivalent in the new set; there will be a noticeable visual change.',
5
- 'swap-size-shift-utility': 'Swap icon for a 12px utility icon; expect some size shift.',
6
- 'no-larger-size': 'This icon should not be used with a larger size; please shift to a smaller size.',
7
- 'not-recommended': 'No equivalent icon in new set. This icon is not recommended.',
8
- 'product-icon': 'Product icons are not supported; please use the custom SVG component from `@atlaskit/icon/svg`.',
9
- 'icon-lab': 'Find an alternative icon, or create an updated icon in the new style, and contribute it to `@atlassian/icon-lab`.',
10
- 'top-nav': 'This icon is only for use for top navigation; please choose a different icon if used elsewhere.',
11
- 'icon-tile': 'Switch to Icon Tile, use a smaller size or remove.',
12
- '16-icon-tile': "This icon can be re-created using an Icon tile with size='16'.",
13
- '24-icon-tile': "This icon can be re-created using an Icon tile with size='24'.",
14
- '32-icon-tile': "This icon can be re-created using an Icon tile with size='32'.",
15
- '48-icon-tile': "This icon can be re-created using an Icon tile with size='48'."
16
- };
17
- export var sizes = ['small', 'medium', 'large', 'xlarge'];
18
- export var isSize = function isSize(size) {
19
- return sizes.includes(size);
20
- };
21
- var migrationMap = {
22
- activity: {
23
- newIcon: {
24
- name: 'dashboard',
25
- type: 'core',
26
- library: 'icon'
27
- },
28
- sizeGuidance: {
29
- small: 'swap',
30
- medium: 'swap',
31
- large: 'icon-tile',
32
- xlarge: 'icon-tile'
33
- }
34
- },
35
- 'add-circle': {
36
- newIcon: {
37
- name: 'add',
38
- type: 'core',
39
- library: 'icon'
40
- },
41
- sizeGuidance: {
42
- small: '16-icon-tile',
43
- medium: '24-icon-tile',
44
- large: '32-icon-tile',
45
- xlarge: '48-icon-tile'
46
- }
47
- },
48
- add: {
49
- newIcon: {
50
- name: 'add',
51
- type: 'core',
52
- library: 'icon'
53
- },
54
- sizeGuidance: {
55
- small: 'swap',
56
- medium: 'swap',
57
- large: 'icon-tile',
58
- xlarge: 'icon-tile'
59
- }
60
- },
61
- 'add-item': {
62
- newIcon: {
63
- name: 'shortcut',
64
- type: 'core',
65
- library: 'icon'
66
- },
67
- sizeGuidance: {
68
- small: 'swap',
69
- medium: 'swap',
70
- large: 'icon-tile',
71
- xlarge: 'icon-tile'
72
- }
73
- },
74
- addon: {
75
- newIcon: {
76
- name: 'app',
77
- type: 'core',
78
- library: 'icon'
79
- },
80
- sizeGuidance: {
81
- small: 'swap',
82
- medium: 'swap',
83
- large: 'icon-tile',
84
- xlarge: 'icon-tile'
85
- }
86
- },
87
- 'editor/align-center': {
88
- newIcon: {
89
- name: 'align-center',
90
- type: 'core',
91
- library: 'icon'
92
- },
93
- sizeGuidance: {
94
- small: 'swap',
95
- medium: 'swap',
96
- large: 'icon-tile',
97
- xlarge: 'icon-tile'
98
- }
99
- },
100
- 'editor/align-left': {
101
- newIcon: {
102
- name: 'align-left',
103
- type: 'core',
104
- library: 'icon'
105
- },
106
- sizeGuidance: {
107
- small: 'swap',
108
- medium: 'swap',
109
- large: 'icon-tile',
110
- xlarge: 'icon-tile'
111
- }
112
- },
113
- 'editor/align-right': {
114
- newIcon: {
115
- name: 'align-right',
116
- type: 'core',
117
- library: 'icon'
118
- },
119
- sizeGuidance: {
120
- small: 'swap',
121
- medium: 'swap',
122
- large: 'icon-tile',
123
- xlarge: 'icon-tile'
124
- }
125
- },
126
- 'app-access': {
127
- newIcon: {
128
- name: 'person-added',
129
- type: 'core',
130
- library: 'icon'
131
- },
132
- sizeGuidance: {
133
- small: 'swap-visual-change',
134
- medium: 'swap-visual-change',
135
- large: 'icon-tile',
136
- xlarge: 'icon-tile'
137
- }
138
- },
139
- 'app-switcher': {
140
- newIcon: {
141
- name: 'app-switcher',
142
- type: 'core',
143
- library: 'icon'
144
- },
145
- sizeGuidance: {
146
- small: 'top-nav',
147
- medium: 'top-nav',
148
- large: 'top-nav',
149
- xlarge: 'top-nav'
150
- }
151
- },
152
- archive: {
153
- newIcon: {
154
- name: 'archive-box',
155
- type: 'core',
156
- library: 'icon'
157
- },
158
- sizeGuidance: {
159
- small: 'swap',
160
- medium: 'swap',
161
- large: 'icon-tile',
162
- xlarge: 'icon-tile'
163
- }
164
- },
165
- 'arrow-down-circle': {
166
- newIcon: {
167
- name: 'arrow-down',
168
- type: 'core',
169
- library: 'icon'
170
- },
171
- sizeGuidance: {
172
- small: '16-icon-tile',
173
- medium: '24-icon-tile',
174
- large: '32-icon-tile',
175
- xlarge: '48-icon-tile'
176
- }
177
- },
178
- 'arrow-down': {
179
- newIcon: {
180
- name: 'arrow-down',
181
- type: 'core',
182
- library: 'icon'
183
- },
184
- sizeGuidance: {
185
- small: 'swap',
186
- medium: 'swap',
187
- large: 'icon-tile',
188
- xlarge: 'icon-tile'
189
- }
190
- },
191
- 'arrow-left-circle': {
192
- newIcon: {
193
- name: 'arrow-left',
194
- type: 'core',
195
- library: 'icon'
196
- },
197
- sizeGuidance: {
198
- small: '16-icon-tile',
199
- medium: '24-icon-tile',
200
- large: '32-icon-tile',
201
- xlarge: '48-icon-tile'
202
- }
203
- },
204
- 'arrow-left': {
205
- newIcon: {
206
- name: 'arrow-left',
207
- type: 'core',
208
- library: 'icon'
209
- },
210
- sizeGuidance: {
211
- small: 'swap',
212
- medium: 'swap',
213
- large: 'icon-tile',
214
- xlarge: 'icon-tile'
215
- }
216
- },
217
- 'arrow-right-circle': {
218
- newIcon: {
219
- name: 'arrow-right',
220
- type: 'core',
221
- library: 'icon'
222
- },
223
- sizeGuidance: {
224
- small: '16-icon-tile',
225
- medium: '24-icon-tile',
226
- large: '32-icon-tile',
227
- xlarge: '48-icon-tile'
228
- }
229
- },
230
- 'arrow-right': {
231
- newIcon: {
232
- name: 'arrow-right',
233
- type: 'core',
234
- library: 'icon'
235
- },
236
- sizeGuidance: {
237
- small: 'swap',
238
- medium: 'swap',
239
- large: 'icon-tile',
240
- xlarge: 'icon-tile'
241
- }
242
- },
243
- 'arrow-up-circle': {
244
- newIcon: {
245
- name: 'arrow-up',
246
- type: 'core',
247
- library: 'icon'
248
- },
249
- sizeGuidance: {
250
- small: '16-icon-tile',
251
- medium: '24-icon-tile',
252
- large: '32-icon-tile',
253
- xlarge: '48-icon-tile'
254
- }
255
- },
256
- 'arrow-up': {
257
- newIcon: {
258
- name: 'arrow-up',
259
- type: 'core',
260
- library: 'icon'
261
- },
262
- sizeGuidance: {
263
- small: 'swap',
264
- medium: 'swap',
265
- large: 'icon-tile',
266
- xlarge: 'icon-tile'
267
- }
268
- },
269
- attachment: {
270
- newIcon: {
271
- name: 'attachment',
272
- type: 'core',
273
- library: 'icon'
274
- },
275
- sizeGuidance: {
276
- small: 'swap',
277
- medium: 'swap',
278
- large: 'icon-tile',
279
- xlarge: 'icon-tile'
280
- }
281
- },
282
- 'audio-circle': {
283
- newIcon: {
284
- name: 'audio',
285
- type: 'core',
286
- library: 'icon'
287
- },
288
- sizeGuidance: {
289
- small: '16-icon-tile',
290
- medium: '24-icon-tile',
291
- large: '32-icon-tile',
292
- xlarge: '48-icon-tile'
293
- }
294
- },
295
- audio: {
296
- newIcon: {
297
- name: 'audio',
298
- type: 'core',
299
- library: 'icon'
300
- },
301
- sizeGuidance: {
302
- small: 'swap',
303
- medium: 'swap',
304
- large: 'icon-tile',
305
- xlarge: 'icon-tile'
306
- }
307
- },
308
- 'hipchat/audio-only': {
309
- newIcon: {
310
- name: 'eye-open-filled',
311
- type: 'core',
312
- library: 'icon'
313
- },
314
- sizeGuidance: {
315
- small: 'swap',
316
- medium: 'swap',
317
- large: 'icon-tile',
318
- xlarge: 'icon-tile'
319
- }
320
- },
321
- backlog: {
322
- newIcon: {
323
- name: 'backlog',
324
- type: 'core',
325
- library: 'icon'
326
- },
327
- sizeGuidance: {
328
- small: 'swap',
329
- medium: 'swap',
330
- large: 'icon-tile',
331
- xlarge: 'icon-tile'
332
- }
333
- },
334
- 'billing-filled': {
335
- sizeGuidance: {
336
- small: 'icon-lab',
337
- medium: 'icon-lab',
338
- large: 'icon-lab',
339
- xlarge: 'icon-lab'
340
- }
341
- },
342
- billing: {
343
- sizeGuidance: {
344
- small: 'icon-lab',
345
- medium: 'icon-lab',
346
- large: 'icon-lab',
347
- xlarge: 'icon-lab'
348
- }
349
- },
350
- 'bitbucket/branches': {
351
- newIcon: {
352
- name: 'branch',
353
- type: 'core',
354
- library: 'icon'
355
- },
356
- sizeGuidance: {
357
- small: 'swap',
358
- medium: 'swap',
359
- large: 'icon-tile',
360
- xlarge: 'icon-tile'
361
- }
362
- },
363
- 'bitbucket/builds': {
364
- newIcon: {
365
- name: 'roadmaps-code',
366
- type: 'core',
367
- library: 'icon'
368
- },
369
- sizeGuidance: {
370
- small: 'swap',
371
- medium: 'swap',
372
- large: 'icon-tile',
373
- xlarge: 'icon-tile'
374
- }
375
- },
376
- 'bitbucket/clone': {
377
- sizeGuidance: {
378
- small: 'icon-lab',
379
- medium: 'icon-lab',
380
- large: 'icon-lab',
381
- xlarge: 'icon-lab'
382
- }
383
- },
384
- 'bitbucket/commits': {
385
- newIcon: {
386
- name: 'commit',
387
- type: 'core',
388
- library: 'icon'
389
- },
390
- sizeGuidance: {
391
- small: 'swap',
392
- medium: 'swap',
393
- large: 'icon-tile',
394
- xlarge: 'icon-tile'
395
- }
396
- },
397
- 'bitbucket/compare': {
398
- sizeGuidance: {
399
- small: 'icon-lab',
400
- medium: 'icon-lab',
401
- large: 'icon-lab',
402
- xlarge: 'icon-lab'
403
- }
404
- },
405
- 'bitbucket/forks': {
406
- sizeGuidance: {
407
- small: 'icon-lab',
408
- medium: 'icon-lab',
409
- large: 'icon-lab',
410
- xlarge: 'icon-lab'
411
- }
412
- },
413
- 'bitbucket/output': {
414
- sizeGuidance: {
415
- small: 'icon-lab',
416
- medium: 'icon-lab',
417
- large: 'icon-lab',
418
- xlarge: 'icon-lab'
419
- }
420
- },
421
- 'bitbucket/pipelines': {
422
- sizeGuidance: {
423
- small: 'icon-lab',
424
- medium: 'icon-lab',
425
- large: 'icon-lab',
426
- xlarge: 'icon-lab'
427
- }
428
- },
429
- 'bitbucket/pullrequests': {
430
- newIcon: {
431
- name: 'pull-request',
432
- type: 'core',
433
- library: 'icon'
434
- },
435
- sizeGuidance: {
436
- small: 'swap',
437
- medium: 'swap',
438
- large: 'icon-tile',
439
- xlarge: 'icon-tile'
440
- }
441
- },
442
- 'bitbucket/repos': {
443
- sizeGuidance: {
444
- small: 'icon-lab',
445
- medium: 'icon-lab',
446
- large: 'icon-lab',
447
- xlarge: 'icon-lab'
448
- }
449
- },
450
- 'bitbucket/snippets': {
451
- newIcon: {
452
- name: 'snippet',
453
- type: 'core',
454
- library: 'icon'
455
- },
456
- sizeGuidance: {
457
- small: 'swap',
458
- medium: 'swap',
459
- large: 'icon-tile',
460
- xlarge: 'icon-tile'
461
- }
462
- },
463
- 'bitbucket/source': {
464
- newIcon: {
465
- name: 'angle-brackets',
466
- type: 'core',
467
- library: 'icon'
468
- },
469
- sizeGuidance: {
470
- small: 'swap',
471
- medium: 'swap',
472
- large: 'icon-tile',
473
- xlarge: 'icon-tile'
474
- }
475
- },
476
- board: {
477
- newIcon: {
478
- name: 'board',
479
- type: 'core',
480
- library: 'icon'
481
- },
482
- sizeGuidance: {
483
- small: 'swap',
484
- medium: 'swap',
485
- large: 'icon-tile',
486
- xlarge: 'icon-tile'
487
- }
488
- },
489
- book: {
490
- newIcon: {
491
- name: 'book-with-bookmark',
492
- type: 'core',
493
- library: 'icon'
494
- },
495
- sizeGuidance: {
496
- small: 'swap',
497
- medium: 'swap',
498
- large: 'icon-tile',
499
- xlarge: 'icon-tile'
500
- }
501
- },
502
- 'bullet-list': {
503
- newIcon: {
504
- name: 'bulleted-list',
505
- type: 'core',
506
- library: 'icon'
507
- },
508
- sizeGuidance: {
509
- small: 'swap',
510
- medium: 'swap',
511
- large: 'icon-tile',
512
- xlarge: 'icon-tile'
513
- }
514
- },
515
- 'calendar-filled': {
516
- newIcon: {
517
- name: 'calendar',
518
- type: 'core',
519
- library: 'icon'
520
- },
521
- sizeGuidance: {
522
- small: 'swap-slight-visual-change',
523
- medium: 'swap-slight-visual-change',
524
- large: 'icon-tile',
525
- xlarge: 'icon-tile'
526
- }
527
- },
528
- calendar: {
529
- newIcon: {
530
- name: 'calendar',
531
- type: 'core',
532
- library: 'icon'
533
- },
534
- sizeGuidance: {
535
- small: 'swap-slight-visual-change',
536
- medium: 'swap-slight-visual-change',
537
- large: 'icon-tile',
538
- xlarge: 'icon-tile'
539
- }
540
- },
541
- 'camera-filled': {
542
- newIcon: {
543
- name: 'camera',
544
- type: 'core',
545
- library: 'icon'
546
- },
547
- sizeGuidance: {
548
- small: 'swap-slight-visual-change',
549
- medium: 'swap-slight-visual-change',
550
- large: 'icon-tile',
551
- xlarge: 'icon-tile'
552
- }
553
- },
554
- camera: {
555
- newIcon: {
556
- name: 'camera',
557
- type: 'core',
558
- library: 'icon'
559
- },
560
- sizeGuidance: {
561
- small: 'swap',
562
- medium: 'swap',
563
- large: 'icon-tile',
564
- xlarge: 'icon-tile'
565
- }
566
- },
567
- 'camera-rotate': {
568
- sizeGuidance: {
569
- small: 'icon-lab',
570
- medium: 'icon-lab',
571
- large: 'icon-lab',
572
- xlarge: 'icon-lab'
573
- }
574
- },
575
- 'camera-take-picture': {
576
- sizeGuidance: {
577
- small: 'icon-lab',
578
- medium: 'icon-lab',
579
- large: 'icon-lab',
580
- xlarge: 'icon-lab'
581
- }
582
- },
583
- canvas: {
584
- sizeGuidance: {
585
- small: 'icon-lab',
586
- medium: 'icon-lab',
587
- large: 'icon-lab',
588
- xlarge: 'icon-lab'
589
- }
590
- },
591
- checkbox: {
592
- newIcon: {
593
- name: 'checkbox-checked',
594
- type: 'core',
595
- library: 'icon'
596
- },
597
- sizeGuidance: {
598
- small: 'swap',
599
- medium: 'swap',
600
- large: 'icon-tile',
601
- xlarge: 'icon-tile'
602
- }
603
- },
604
- 'checkbox-indeterminate': {
605
- newIcon: {
606
- name: 'checkbox-indeterminate',
607
- type: 'core',
608
- library: 'icon'
609
- },
610
- sizeGuidance: {
611
- small: 'swap',
612
- medium: 'swap',
613
- large: 'icon-tile',
614
- xlarge: 'icon-tile'
615
- }
616
- },
617
- 'check-circle': {
618
- newIcon: {
619
- name: 'check-circle',
620
- type: 'core',
621
- library: 'icon'
622
- },
623
- sizeGuidance: {
624
- small: 'swap',
625
- medium: 'swap',
626
- large: 'icon-tile',
627
- xlarge: 'icon-tile'
628
- }
629
- },
630
- 'check-circle-outline': {
631
- sizeGuidance: {
632
- small: 'icon-lab',
633
- medium: 'icon-lab',
634
- large: 'icon-lab',
635
- xlarge: 'icon-lab'
636
- }
637
- },
638
- check: {
639
- newIcon: {
640
- name: 'check-mark',
641
- type: 'core',
642
- library: 'icon'
643
- },
644
- sizeGuidance: {
645
- small: 'swap',
646
- medium: 'swap',
647
- large: 'icon-tile',
648
- xlarge: 'icon-tile'
649
- }
650
- },
651
- 'hipchat/chevron-double-down': {
652
- sizeGuidance: {
653
- small: 'icon-lab',
654
- medium: 'icon-lab',
655
- large: 'icon-lab',
656
- xlarge: 'icon-lab'
657
- }
658
- },
659
- 'hipchat/chevron-double-up': {
660
- sizeGuidance: {
661
- small: 'icon-lab',
662
- medium: 'icon-lab',
663
- large: 'icon-lab',
664
- xlarge: 'icon-lab'
665
- }
666
- },
667
- 'chevron-down': {
668
- newIcon: {
669
- name: 'chevron-down',
670
- type: 'utility',
671
- library: 'icon'
672
- },
673
- sizeGuidance: {
674
- small: 'swap-size-shift-utility',
675
- medium: 'swap-size-shift-utility',
676
- large: 'no-larger-size',
677
- xlarge: 'no-larger-size'
678
- }
679
- },
680
- 'chevron-down-circle': {
681
- newIcon: {
682
- name: 'chevron-down',
683
- type: 'utility',
684
- library: 'icon'
685
- },
686
- sizeGuidance: {
687
- small: 'swap-size-shift-utility',
688
- medium: 'swap-size-shift-utility',
689
- large: 'no-larger-size',
690
- xlarge: 'no-larger-size'
691
- }
692
- },
693
- 'hipchat/chevron-down': {
694
- newIcon: {
695
- name: 'chevron-down',
696
- type: 'utility',
697
- library: 'icon'
698
- },
699
- sizeGuidance: {
700
- small: 'swap-size-shift-utility',
701
- medium: 'swap-size-shift-utility',
702
- large: 'no-larger-size',
703
- xlarge: 'no-larger-size'
704
- }
705
- },
706
- 'chevron-left-circle': {
707
- newIcon: {
708
- name: 'chevron-left',
709
- type: 'utility',
710
- library: 'icon'
711
- },
712
- sizeGuidance: {
713
- small: 'swap-size-shift-utility',
714
- medium: 'swap-size-shift-utility',
715
- large: 'no-larger-size',
716
- xlarge: 'no-larger-size'
717
- }
718
- },
719
- 'chevron-left': {
720
- newIcon: {
721
- name: 'chevron-left',
722
- type: 'utility',
723
- library: 'icon'
724
- },
725
- sizeGuidance: {
726
- small: 'swap-size-shift-utility',
727
- medium: 'swap-size-shift-utility',
728
- large: 'no-larger-size',
729
- xlarge: 'no-larger-size'
730
- }
731
- },
732
- 'chevron-left-large': {
733
- newIcon: {
734
- name: 'chevron-left',
735
- type: 'utility',
736
- library: 'icon'
737
- },
738
- sizeGuidance: {
739
- small: 'swap-size-shift-utility',
740
- medium: 'swap-size-shift-utility',
741
- large: 'no-larger-size',
742
- xlarge: 'no-larger-size'
743
- }
744
- },
745
- 'chevron-right-circle': {
746
- newIcon: {
747
- name: 'chevron-right',
748
- type: 'utility',
749
- library: 'icon'
750
- },
751
- sizeGuidance: {
752
- small: 'swap-size-shift-utility',
753
- medium: 'swap-size-shift-utility',
754
- large: 'no-larger-size',
755
- xlarge: 'no-larger-size'
756
- }
757
- },
758
- 'chevron-right': {
759
- newIcon: {
760
- name: 'chevron-right',
761
- type: 'utility',
762
- library: 'icon'
763
- },
764
- sizeGuidance: {
765
- small: 'swap-size-shift-utility',
766
- medium: 'swap-size-shift-utility',
767
- large: 'no-larger-size',
768
- xlarge: 'no-larger-size'
769
- }
770
- },
771
- 'chevron-right-large': {
772
- newIcon: {
773
- name: 'chevron-right',
774
- type: 'utility',
775
- library: 'icon'
776
- },
777
- sizeGuidance: {
778
- small: 'swap-size-shift-utility',
779
- medium: 'swap-size-shift-utility',
780
- large: 'no-larger-size',
781
- xlarge: 'no-larger-size'
782
- }
783
- },
784
- 'chevron-up-circle': {
785
- newIcon: {
786
- name: 'chevron-up',
787
- type: 'utility',
788
- library: 'icon'
789
- },
790
- sizeGuidance: {
791
- small: 'swap-size-shift-utility',
792
- medium: 'swap-size-shift-utility',
793
- large: 'no-larger-size',
794
- xlarge: 'no-larger-size'
795
- }
796
- },
797
- 'hipchat/chevron-up': {
798
- newIcon: {
799
- name: 'chevron-up',
800
- type: 'utility',
801
- library: 'icon'
802
- },
803
- sizeGuidance: {
804
- small: 'swap-size-shift-utility',
805
- medium: 'swap-size-shift-utility',
806
- large: 'no-larger-size',
807
- xlarge: 'no-larger-size'
808
- }
809
- },
810
- 'chevron-up': {
811
- newIcon: {
812
- name: 'chevron-up',
813
- type: 'utility',
814
- library: 'icon'
815
- },
816
- sizeGuidance: {
817
- small: 'swap-size-shift-utility',
818
- medium: 'swap-size-shift-utility',
819
- large: 'no-larger-size',
820
- xlarge: 'no-larger-size'
821
- }
822
- },
823
- 'child-issues': {
824
- newIcon: {
825
- name: 'child-issues',
826
- type: 'core',
827
- library: 'icon'
828
- },
829
- sizeGuidance: {
830
- small: 'swap',
831
- medium: 'swap',
832
- large: 'icon-tile',
833
- xlarge: 'icon-tile'
834
- }
835
- },
836
- code: {
837
- newIcon: {
838
- name: 'angle-brackets',
839
- type: 'core',
840
- library: 'icon'
841
- },
842
- sizeGuidance: {
843
- small: 'swap',
844
- medium: 'swap',
845
- large: 'icon-tile',
846
- xlarge: 'icon-tile'
847
- }
848
- },
849
- comment: {
850
- newIcon: {
851
- name: 'comment',
852
- type: 'core',
853
- library: 'icon'
854
- },
855
- sizeGuidance: {
856
- small: 'swap',
857
- medium: 'swap',
858
- large: 'icon-tile',
859
- xlarge: 'icon-tile'
860
- }
861
- },
862
- component: {
863
- newIcon: {
864
- name: 'component',
865
- type: 'core',
866
- library: 'icon'
867
- },
868
- sizeGuidance: {
869
- small: 'swap',
870
- medium: 'swap',
871
- large: 'icon-tile',
872
- xlarge: 'icon-tile'
873
- }
874
- },
875
- copy: {
876
- newIcon: {
877
- name: 'copy',
878
- type: 'core',
879
- library: 'icon'
880
- },
881
- sizeGuidance: {
882
- small: 'swap',
883
- medium: 'swap',
884
- large: 'icon-tile',
885
- xlarge: 'icon-tile'
886
- }
887
- },
888
- 'creditcard-filled': {
889
- newIcon: {
890
- name: 'credit-card',
891
- type: 'core',
892
- library: 'icon'
893
- },
894
- sizeGuidance: {
895
- small: 'swap-slight-visual-change',
896
- medium: 'swap-slight-visual-change',
897
- large: 'icon-tile',
898
- xlarge: 'icon-tile'
899
- }
900
- },
901
- creditcard: {
902
- newIcon: {
903
- name: 'credit-card',
904
- type: 'core',
905
- library: 'icon'
906
- },
907
- sizeGuidance: {
908
- small: 'swap',
909
- medium: 'swap',
910
- large: 'icon-tile',
911
- xlarge: 'icon-tile'
912
- }
913
- },
914
- 'cross-circle': {
915
- newIcon: {
916
- name: 'cross-circle',
917
- type: 'core',
918
- library: 'icon'
919
- },
920
- sizeGuidance: {
921
- small: 'swap-size-shift-utility',
922
- medium: 'swap-size-shift-utility',
923
- large: '32-icon-tile',
924
- xlarge: '48-icon-tile'
925
- }
926
- },
927
- cross: {
928
- newIcon: {
929
- name: 'close',
930
- type: 'core',
931
- library: 'icon'
932
- },
933
- sizeGuidance: {
934
- small: 'swap',
935
- medium: 'swap',
936
- large: 'icon-tile',
937
- xlarge: 'icon-tile'
938
- }
939
- },
940
- dashboard: {
941
- newIcon: {
942
- name: 'dashboard',
943
- type: 'core',
944
- library: 'icon'
945
- },
946
- sizeGuidance: {
947
- small: 'swap',
948
- medium: 'swap',
949
- large: 'icon-tile',
950
- xlarge: 'icon-tile'
951
- }
952
- },
953
- decision: {
954
- newIcon: {
955
- name: 'decision',
956
- type: 'core',
957
- library: 'icon'
958
- },
959
- sizeGuidance: {
960
- small: 'swap',
961
- medium: 'swap',
962
- large: 'icon-tile',
963
- xlarge: 'icon-tile'
964
- }
965
- },
966
- department: {
967
- newIcon: {
968
- name: 'department',
969
- type: 'core',
970
- library: 'icon'
971
- },
972
- sizeGuidance: {
973
- small: 'swap',
974
- medium: 'swap',
975
- large: 'icon-tile',
976
- xlarge: 'icon-tile'
977
- }
978
- },
979
- 'detail-view': {
980
- sizeGuidance: {
981
- small: 'icon-lab',
982
- medium: 'icon-lab',
983
- large: 'icon-lab',
984
- xlarge: 'icon-lab'
985
- }
986
- },
987
- 'hipchat/dial-out': {
988
- newIcon: {
989
- name: 'phone',
990
- type: 'core',
991
- library: 'icon'
992
- },
993
- sizeGuidance: {
994
- small: 'swap-slight-visual-change',
995
- medium: 'swap-slight-visual-change',
996
- large: 'icon-tile',
997
- xlarge: 'icon-tile'
998
- }
999
- },
1000
- 'discover-filled': {
1001
- newIcon: {
1002
- name: 'compass',
1003
- type: 'core',
1004
- library: 'icon'
1005
- },
1006
- sizeGuidance: {
1007
- small: 'swap-slight-visual-change',
1008
- medium: 'swap-slight-visual-change',
1009
- large: 'icon-tile',
1010
- xlarge: 'icon-tile'
1011
- }
1012
- },
1013
- discover: {
1014
- newIcon: {
1015
- name: 'compass',
1016
- type: 'core',
1017
- library: 'icon'
1018
- },
1019
- sizeGuidance: {
1020
- small: 'swap',
1021
- medium: 'swap',
1022
- large: 'icon-tile',
1023
- xlarge: 'icon-tile'
1024
- }
1025
- },
1026
- 'document-filled': {
1027
- newIcon: {
1028
- name: 'page',
1029
- type: 'core',
1030
- library: 'icon'
1031
- },
1032
- sizeGuidance: {
1033
- small: 'swap-slight-visual-change',
1034
- medium: 'swap-slight-visual-change',
1035
- large: 'icon-tile',
1036
- xlarge: 'icon-tile'
1037
- }
1038
- },
1039
- document: {
1040
- newIcon: {
1041
- name: 'page',
1042
- type: 'core',
1043
- library: 'icon'
1044
- },
1045
- sizeGuidance: {
1046
- small: 'swap-slight-visual-change',
1047
- medium: 'swap-slight-visual-change',
1048
- large: 'icon-tile',
1049
- xlarge: 'icon-tile'
1050
- }
1051
- },
1052
- documents: {
1053
- newIcon: {
1054
- name: 'pages',
1055
- type: 'core',
1056
- library: 'icon'
1057
- },
1058
- sizeGuidance: {
1059
- small: 'swap-slight-visual-change',
1060
- medium: 'swap-slight-visual-change',
1061
- large: 'icon-tile',
1062
- xlarge: 'icon-tile'
1063
- }
1064
- },
1065
- download: {
1066
- newIcon: {
1067
- name: 'cloud-arrow-down',
1068
- type: 'core',
1069
- library: 'icon'
1070
- },
1071
- sizeGuidance: {
1072
- small: 'swap',
1073
- medium: 'swap',
1074
- large: 'icon-tile',
1075
- xlarge: 'icon-tile'
1076
- }
1077
- },
1078
- 'drag-handler': {
1079
- newIcon: {
1080
- name: 'drag-handle',
1081
- type: 'core',
1082
- library: 'icon'
1083
- },
1084
- sizeGuidance: {
1085
- small: 'swap',
1086
- medium: 'swap',
1087
- large: 'no-larger-size',
1088
- xlarge: 'no-larger-size'
1089
- }
1090
- },
1091
- dropbox: {
1092
- sizeGuidance: {
1093
- small: 'product-icon',
1094
- medium: 'product-icon',
1095
- large: 'product-icon',
1096
- xlarge: 'product-icon'
1097
- }
1098
- },
1099
- 'edit-filled': {
1100
- newIcon: {
1101
- name: 'edit',
1102
- type: 'core',
1103
- library: 'icon'
1104
- },
1105
- sizeGuidance: {
1106
- small: 'swap-slight-visual-change',
1107
- medium: 'swap-slight-visual-change',
1108
- large: 'icon-tile',
1109
- xlarge: 'icon-tile'
1110
- }
1111
- },
1112
- edit: {
1113
- newIcon: {
1114
- name: 'edit',
1115
- type: 'core',
1116
- library: 'icon'
1117
- },
1118
- sizeGuidance: {
1119
- small: 'swap',
1120
- medium: 'swap',
1121
- large: 'icon-tile',
1122
- xlarge: 'icon-tile'
1123
- }
1124
- },
1125
- 'editor/add': {
1126
- newIcon: {
1127
- name: 'edit',
1128
- type: 'core',
1129
- library: 'icon'
1130
- },
1131
- sizeGuidance: {
1132
- small: 'swap-slight-visual-change',
1133
- medium: 'swap-slight-visual-change',
1134
- large: 'icon-tile',
1135
- xlarge: 'icon-tile'
1136
- }
1137
- },
1138
- 'editor/addon': {
1139
- sizeGuidance: {
1140
- small: 'icon-lab',
1141
- medium: 'icon-lab',
1142
- large: 'icon-lab',
1143
- xlarge: 'icon-lab'
1144
- }
1145
- },
1146
- 'editor/advanced': {
1147
- sizeGuidance: {
1148
- small: 'icon-lab',
1149
- medium: 'icon-lab',
1150
- large: 'icon-lab',
1151
- xlarge: 'icon-lab'
1152
- }
1153
- },
1154
- 'editor/align-image-center': {
1155
- sizeGuidance: {
1156
- small: 'icon-lab',
1157
- medium: 'icon-lab',
1158
- large: 'icon-lab',
1159
- xlarge: 'icon-lab'
1160
- }
1161
- },
1162
- 'editor/align-image-left': {
1163
- sizeGuidance: {
1164
- small: 'icon-lab',
1165
- medium: 'icon-lab',
1166
- large: 'icon-lab',
1167
- xlarge: 'icon-lab'
1168
- }
1169
- },
1170
- 'editor/align-image-right': {
1171
- sizeGuidance: {
1172
- small: 'icon-lab',
1173
- medium: 'icon-lab',
1174
- large: 'icon-lab',
1175
- xlarge: 'icon-lab'
1176
- }
1177
- },
1178
- 'editor/attachment': {
1179
- newIcon: {
1180
- name: 'attachment',
1181
- type: 'core',
1182
- library: 'icon'
1183
- },
1184
- sizeGuidance: {
1185
- small: 'swap',
1186
- medium: 'swap',
1187
- large: 'icon-tile',
1188
- xlarge: 'icon-tile'
1189
- }
1190
- },
1191
- 'editor/background-color': {
1192
- sizeGuidance: {
1193
- small: 'icon-lab',
1194
- medium: 'icon-lab',
1195
- large: 'icon-lab',
1196
- xlarge: 'icon-lab'
1197
- }
1198
- },
1199
- 'editor/bold': {
1200
- sizeGuidance: {
1201
- small: 'icon-lab',
1202
- medium: 'icon-lab',
1203
- large: 'icon-lab',
1204
- xlarge: 'icon-lab'
1205
- }
1206
- },
1207
- 'editor/bullet-list': {
1208
- newIcon: {
1209
- name: 'bulleted-list',
1210
- type: 'core',
1211
- library: 'icon'
1212
- },
1213
- sizeGuidance: {
1214
- small: 'swap',
1215
- medium: 'swap',
1216
- large: 'icon-tile',
1217
- xlarge: 'icon-tile'
1218
- }
1219
- },
1220
- 'editor/close': {
1221
- newIcon: {
1222
- name: 'close',
1223
- type: 'core',
1224
- library: 'icon'
1225
- },
1226
- sizeGuidance: {
1227
- small: 'swap',
1228
- medium: 'swap',
1229
- large: 'icon-tile',
1230
- xlarge: 'icon-tile'
1231
- }
1232
- },
1233
- 'editor/code': {
1234
- newIcon: {
1235
- name: 'angle-brackets',
1236
- type: 'core',
1237
- library: 'icon'
1238
- },
1239
- sizeGuidance: {
1240
- small: 'swap',
1241
- medium: 'swap',
1242
- large: 'icon-tile',
1243
- xlarge: 'icon-tile'
1244
- }
1245
- },
1246
- 'editor/collapse': {
1247
- newIcon: {
1248
- name: 'collapse',
1249
- type: 'core',
1250
- library: 'icon'
1251
- },
1252
- sizeGuidance: {
1253
- small: 'swap',
1254
- medium: 'swap',
1255
- large: 'icon-tile',
1256
- xlarge: 'icon-tile'
1257
- }
1258
- },
1259
- 'editor/date': {
1260
- newIcon: {
1261
- name: 'calendar',
1262
- type: 'core',
1263
- library: 'icon'
1264
- },
1265
- sizeGuidance: {
1266
- small: 'swap-slight-visual-change',
1267
- medium: 'swap-slight-visual-change',
1268
- large: 'icon-tile',
1269
- xlarge: 'icon-tile'
1270
- }
1271
- },
1272
- 'editor/decision': {
1273
- newIcon: {
1274
- name: 'decision',
1275
- type: 'core',
1276
- library: 'icon'
1277
- },
1278
- sizeGuidance: {
1279
- small: 'swap',
1280
- medium: 'swap',
1281
- large: 'icon-tile',
1282
- xlarge: 'icon-tile'
1283
- }
1284
- },
1285
- 'editor/divider': {
1286
- sizeGuidance: {
1287
- small: 'icon-lab',
1288
- medium: 'icon-lab',
1289
- large: 'icon-lab',
1290
- xlarge: 'icon-lab'
1291
- }
1292
- },
1293
- 'editor/done': {
1294
- newIcon: {
1295
- name: 'check-mark',
1296
- type: 'core',
1297
- library: 'icon'
1298
- },
1299
- sizeGuidance: {
1300
- small: 'swap',
1301
- medium: 'swap',
1302
- large: 'icon-tile',
1303
- xlarge: 'icon-tile'
1304
- }
1305
- },
1306
- 'editor/edit': {
1307
- newIcon: {
1308
- name: 'edit',
1309
- type: 'core',
1310
- library: 'icon'
1311
- },
1312
- sizeGuidance: {
1313
- small: 'swap',
1314
- medium: 'swap',
1315
- large: 'icon-tile',
1316
- xlarge: 'icon-tile'
1317
- }
1318
- },
1319
- 'editor/emoji': {
1320
- newIcon: {
1321
- name: 'emoji',
1322
- type: 'core',
1323
- library: 'icon'
1324
- },
1325
- sizeGuidance: {
1326
- small: 'swap',
1327
- medium: 'swap',
1328
- large: 'icon-tile',
1329
- xlarge: 'icon-tile'
1330
- }
1331
- },
1332
- 'editor/error': {
1333
- newIcon: {
1334
- name: 'cross-circle',
1335
- type: 'core',
1336
- library: 'icon'
1337
- },
1338
- sizeGuidance: {
1339
- small: 'swap',
1340
- medium: 'swap',
1341
- large: 'icon-tile',
1342
- xlarge: 'icon-tile'
1343
- }
1344
- },
1345
- 'editor/expand': {
1346
- newIcon: {
1347
- name: 'expand',
1348
- type: 'core',
1349
- library: 'icon'
1350
- },
1351
- sizeGuidance: {
1352
- small: 'swap',
1353
- medium: 'swap',
1354
- large: 'icon-tile',
1355
- xlarge: 'icon-tile'
1356
- }
1357
- },
1358
- 'editor/feedback': {
1359
- newIcon: {
1360
- name: 'feedback',
1361
- type: 'core',
1362
- library: 'icon'
1363
- },
1364
- sizeGuidance: {
1365
- small: 'swap-visual-change',
1366
- medium: 'swap-visual-change',
1367
- large: 'icon-tile',
1368
- xlarge: 'icon-tile'
1369
- }
1370
- },
1371
- 'editor/file': {
1372
- sizeGuidance: {
1373
- small: 'icon-lab',
1374
- medium: 'icon-lab',
1375
- large: 'icon-lab',
1376
- xlarge: 'icon-lab'
1377
- }
1378
- },
1379
- 'editor/file-preview': {
1380
- sizeGuidance: {
1381
- small: 'icon-lab',
1382
- medium: 'icon-lab',
1383
- large: 'icon-lab',
1384
- xlarge: 'icon-lab'
1385
- }
1386
- },
1387
- 'editor/help': {
1388
- newIcon: {
1389
- name: 'question-circle',
1390
- type: 'core',
1391
- library: 'icon'
1392
- },
1393
- sizeGuidance: {
1394
- small: 'swap-visual-change',
1395
- medium: 'swap-visual-change',
1396
- large: 'icon-tile',
1397
- xlarge: 'icon-tile'
1398
- }
1399
- },
1400
- 'editor/hint': {
1401
- newIcon: {
1402
- name: 'lightbulb',
1403
- type: 'core',
1404
- library: 'icon'
1405
- },
1406
- sizeGuidance: {
1407
- small: 'swap-visual-change',
1408
- medium: 'swap-visual-change',
1409
- large: 'icon-tile',
1410
- xlarge: 'icon-tile'
1411
- }
1412
- },
1413
- 'editor/horizontal-rule': {
1414
- sizeGuidance: {
1415
- small: 'icon-lab',
1416
- medium: 'icon-lab',
1417
- large: 'icon-lab',
1418
- xlarge: 'icon-lab'
1419
- }
1420
- },
1421
- 'editor/image-border': {
1422
- sizeGuidance: {
1423
- small: 'icon-lab',
1424
- medium: 'icon-lab',
1425
- large: 'icon-lab',
1426
- xlarge: 'icon-lab'
1427
- }
1428
- },
1429
- 'editor/image': {
1430
- newIcon: {
1431
- name: 'image',
1432
- type: 'core',
1433
- library: 'icon'
1434
- },
1435
- sizeGuidance: {
1436
- small: 'swap-visual-change',
1437
- medium: 'swap-visual-change',
1438
- large: 'icon-tile',
1439
- xlarge: 'icon-tile'
1440
- }
1441
- },
1442
- 'editor/image-resize': {
1443
- newIcon: {
1444
- name: 'expand',
1445
- type: 'core',
1446
- library: 'icon'
1447
- },
1448
- sizeGuidance: {
1449
- small: 'swap-visual-change',
1450
- medium: 'swap-visual-change',
1451
- large: 'icon-tile',
1452
- xlarge: 'icon-tile'
1453
- }
1454
- },
1455
- 'editor/indent': {
1456
- sizeGuidance: {
1457
- small: 'icon-lab',
1458
- medium: 'icon-lab',
1459
- large: 'icon-lab',
1460
- xlarge: 'icon-lab'
1461
- }
1462
- },
1463
- 'editor/info': {
1464
- newIcon: {
1465
- name: 'information',
1466
- type: 'core',
1467
- library: 'icon'
1468
- },
1469
- sizeGuidance: {
1470
- small: 'swap',
1471
- medium: 'swap',
1472
- large: 'icon-tile',
1473
- xlarge: 'icon-tile'
1474
- }
1475
- },
1476
- 'editor/italic': {
1477
- sizeGuidance: {
1478
- small: 'icon-lab',
1479
- medium: 'icon-lab',
1480
- large: 'icon-lab',
1481
- xlarge: 'icon-lab'
1482
- }
1483
- },
1484
- 'editor/layout-single': {
1485
- sizeGuidance: {
1486
- small: 'icon-lab',
1487
- medium: 'icon-lab',
1488
- large: 'icon-lab',
1489
- xlarge: 'icon-lab'
1490
- }
1491
- },
1492
- 'editor/layout-three-equal': {
1493
- sizeGuidance: {
1494
- small: 'icon-lab',
1495
- medium: 'icon-lab',
1496
- large: 'icon-lab',
1497
- xlarge: 'icon-lab'
1498
- }
1499
- },
1500
- 'editor/layout-three-with-sidebars': {
1501
- sizeGuidance: {
1502
- small: 'icon-lab',
1503
- medium: 'icon-lab',
1504
- large: 'icon-lab',
1505
- xlarge: 'icon-lab'
1506
- }
1507
- },
1508
- 'editor/layout-two-equal': {
1509
- sizeGuidance: {
1510
- small: 'icon-lab',
1511
- medium: 'icon-lab',
1512
- large: 'icon-lab',
1513
- xlarge: 'icon-lab'
1514
- }
1515
- },
1516
- 'editor/layout-two-left-sidebar': {
1517
- sizeGuidance: {
1518
- small: 'icon-lab',
1519
- medium: 'icon-lab',
1520
- large: 'icon-lab',
1521
- xlarge: 'icon-lab'
1522
- }
1523
- },
1524
- 'editor/layout-two-right-sidebar': {
1525
- sizeGuidance: {
1526
- small: 'icon-lab',
1527
- medium: 'icon-lab',
1528
- large: 'icon-lab',
1529
- xlarge: 'icon-lab'
1530
- }
1531
- },
1532
- 'editor/link': {
1533
- newIcon: {
1534
- name: 'link',
1535
- type: 'core',
1536
- library: 'icon'
1537
- },
1538
- sizeGuidance: {
1539
- small: 'swap',
1540
- medium: 'swap',
1541
- large: 'icon-tile',
1542
- xlarge: 'icon-tile'
1543
- }
1544
- },
1545
- 'editor/media-center': {
1546
- sizeGuidance: {
1547
- small: 'icon-lab',
1548
- medium: 'icon-lab',
1549
- large: 'icon-lab',
1550
- xlarge: 'icon-lab'
1551
- }
1552
- },
1553
- 'editor/media-full-width': {
1554
- sizeGuidance: {
1555
- small: 'icon-lab',
1556
- medium: 'icon-lab',
1557
- large: 'icon-lab',
1558
- xlarge: 'icon-lab'
1559
- }
1560
- },
1561
- 'editor/media-wide': {
1562
- sizeGuidance: {
1563
- small: 'icon-lab',
1564
- medium: 'icon-lab',
1565
- large: 'icon-lab',
1566
- xlarge: 'icon-lab'
1567
- }
1568
- },
1569
- 'editor/media-wrap-left': {
1570
- sizeGuidance: {
1571
- small: 'icon-lab',
1572
- medium: 'icon-lab',
1573
- large: 'icon-lab',
1574
- xlarge: 'icon-lab'
1575
- }
1576
- },
1577
- 'editor/media-wrap-right': {
1578
- sizeGuidance: {
1579
- small: 'icon-lab',
1580
- medium: 'icon-lab',
1581
- large: 'icon-lab',
1582
- xlarge: 'icon-lab'
1583
- }
1584
- },
1585
- 'editor/mention': {
1586
- newIcon: {
1587
- name: 'mention',
1588
- type: 'core',
1589
- library: 'icon'
1590
- },
1591
- sizeGuidance: {
1592
- small: 'swap',
1593
- medium: 'swap',
1594
- large: 'icon-tile',
1595
- xlarge: 'icon-tile'
1596
- }
1597
- },
1598
- 'editor/more': {
1599
- newIcon: {
1600
- name: 'show-more-horizontal',
1601
- type: 'core',
1602
- library: 'icon'
1603
- },
1604
- sizeGuidance: {
1605
- small: 'swap',
1606
- medium: 'swap',
1607
- large: 'icon-tile',
1608
- xlarge: 'icon-tile'
1609
- }
1610
- },
1611
- 'editor/note': {
1612
- newIcon: {
1613
- name: 'page',
1614
- type: 'core',
1615
- library: 'icon'
1616
- },
1617
- sizeGuidance: {
1618
- small: 'swap-slight-visual-change',
1619
- medium: 'swap-slight-visual-change',
1620
- large: 'icon-tile',
1621
- xlarge: 'icon-tile'
1622
- }
1623
- },
1624
- 'editor/number-list': {
1625
- sizeGuidance: {
1626
- small: 'icon-lab',
1627
- medium: 'icon-lab',
1628
- large: 'icon-lab',
1629
- xlarge: 'icon-lab'
1630
- }
1631
- },
1632
- 'editor/open': {
1633
- newIcon: {
1634
- name: 'arrow-up-right',
1635
- type: 'core',
1636
- library: 'icon'
1637
- },
1638
- sizeGuidance: {
1639
- small: 'swap',
1640
- medium: 'swap',
1641
- large: 'icon-tile',
1642
- xlarge: 'icon-tile'
1643
- }
1644
- },
1645
- 'editor/outdent': {
1646
- sizeGuidance: {
1647
- small: 'icon-lab',
1648
- medium: 'icon-lab',
1649
- large: 'icon-lab',
1650
- xlarge: 'icon-lab'
1651
- }
1652
- },
1653
- 'editor/panel': {
1654
- newIcon: {
1655
- name: 'information',
1656
- type: 'core',
1657
- library: 'icon'
1658
- },
1659
- sizeGuidance: {
1660
- small: 'swap-visual-change',
1661
- medium: 'swap-visual-change',
1662
- large: 'icon-tile',
1663
- xlarge: 'icon-tile'
1664
- }
1665
- },
1666
- 'editor/photo': {
1667
- newIcon: {
1668
- name: 'camera',
1669
- type: 'core',
1670
- library: 'icon'
1671
- },
1672
- sizeGuidance: {
1673
- small: 'swap-visual-change',
1674
- medium: 'swap-visual-change',
1675
- large: 'icon-tile',
1676
- xlarge: 'icon-tile'
1677
- }
1678
- },
1679
- 'editor/quote': {
1680
- newIcon: {
1681
- name: 'quotation-mark',
1682
- type: 'core',
1683
- library: 'icon'
1684
- },
1685
- sizeGuidance: {
1686
- small: 'swap-visual-change',
1687
- medium: 'swap-visual-change',
1688
- large: 'icon-tile',
1689
- xlarge: 'icon-tile'
1690
- }
1691
- },
1692
- 'editor/recent': {
1693
- newIcon: {
1694
- name: 'clock',
1695
- type: 'core',
1696
- library: 'icon'
1697
- },
1698
- sizeGuidance: {
1699
- small: 'swap-visual-change',
1700
- medium: 'swap-visual-change',
1701
- large: 'icon-tile',
1702
- xlarge: 'icon-tile'
1703
- }
1704
- },
1705
- 'editor/redo': {
1706
- newIcon: {
1707
- name: 'redo',
1708
- type: 'core',
1709
- library: 'icon'
1710
- },
1711
- sizeGuidance: {
1712
- small: 'swap',
1713
- medium: 'swap',
1714
- large: 'icon-tile',
1715
- xlarge: 'icon-tile'
1716
- }
1717
- },
1718
- 'editor/remove-emoji': {
1719
- sizeGuidance: {
1720
- small: 'icon-lab',
1721
- medium: 'icon-lab',
1722
- large: 'icon-lab',
1723
- xlarge: 'icon-lab'
1724
- }
1725
- },
1726
- 'editor/remove': {
1727
- newIcon: {
1728
- name: 'delete',
1729
- type: 'core',
1730
- library: 'icon'
1731
- },
1732
- sizeGuidance: {
1733
- small: 'swap-visual-change',
1734
- medium: 'swap-visual-change',
1735
- large: 'icon-tile',
1736
- xlarge: 'icon-tile'
1737
- }
1738
- },
1739
- 'editor/search': {
1740
- newIcon: {
1741
- name: 'search',
1742
- type: 'core',
1743
- library: 'icon'
1744
- },
1745
- sizeGuidance: {
1746
- small: 'swap',
1747
- medium: 'swap',
1748
- large: 'icon-tile',
1749
- xlarge: 'icon-tile'
1750
- }
1751
- },
1752
- 'editor/settings': {
1753
- newIcon: {
1754
- name: 'settings',
1755
- type: 'core',
1756
- library: 'icon'
1757
- },
1758
- sizeGuidance: {
1759
- small: 'swap-visual-change',
1760
- medium: 'swap-visual-change',
1761
- large: 'icon-tile',
1762
- xlarge: 'icon-tile'
1763
- }
1764
- },
1765
- 'editor/strikethrough': {
1766
- sizeGuidance: {
1767
- small: 'icon-lab',
1768
- medium: 'icon-lab',
1769
- large: 'icon-lab',
1770
- xlarge: 'icon-lab'
1771
- }
1772
- },
1773
- 'editor/success': {
1774
- newIcon: {
1775
- name: 'check-circle',
1776
- type: 'core',
1777
- library: 'icon'
1778
- },
1779
- sizeGuidance: {
1780
- small: 'swap',
1781
- medium: 'swap',
1782
- large: 'icon-tile',
1783
- xlarge: 'icon-tile'
1784
- }
1785
- },
1786
- 'editor/table-display-options': {
1787
- sizeGuidance: {
1788
- small: 'icon-lab',
1789
- medium: 'icon-lab',
1790
- large: 'icon-lab',
1791
- xlarge: 'icon-lab'
1792
- }
1793
- },
1794
- 'editor/table': {
1795
- sizeGuidance: {
1796
- small: 'icon-lab',
1797
- medium: 'icon-lab',
1798
- large: 'icon-lab',
1799
- xlarge: 'icon-lab'
1800
- }
1801
- },
1802
- 'editor/task': {
1803
- newIcon: {
1804
- name: 'checkbox-checked',
1805
- type: 'core',
1806
- library: 'icon'
1807
- },
1808
- sizeGuidance: {
1809
- small: 'swap',
1810
- medium: 'swap',
1811
- large: 'icon-tile',
1812
- xlarge: 'icon-tile'
1813
- }
1814
- },
1815
- 'editor/text-color': {
1816
- sizeGuidance: {
1817
- small: 'icon-lab',
1818
- medium: 'icon-lab',
1819
- large: 'icon-lab',
1820
- xlarge: 'icon-lab'
1821
- }
1822
- },
1823
- 'editor/text-style': {
1824
- newIcon: {
1825
- name: 'text-style',
1826
- type: 'core',
1827
- library: 'icon'
1828
- },
1829
- sizeGuidance: {
1830
- small: 'swap',
1831
- medium: 'swap',
1832
- large: 'icon-tile',
1833
- xlarge: 'icon-tile'
1834
- }
1835
- },
1836
- 'editor/underline': {
1837
- sizeGuidance: {
1838
- small: 'icon-lab',
1839
- medium: 'icon-lab',
1840
- large: 'icon-lab',
1841
- xlarge: 'icon-lab'
1842
- }
1843
- },
1844
- 'editor/undo': {
1845
- newIcon: {
1846
- name: 'undo',
1847
- type: 'core',
1848
- library: 'icon'
1849
- },
1850
- sizeGuidance: {
1851
- small: 'swap',
1852
- medium: 'swap',
1853
- large: 'icon-tile',
1854
- xlarge: 'icon-tile'
1855
- }
1856
- },
1857
- 'editor/unlink': {
1858
- newIcon: {
1859
- name: 'link-broken',
1860
- type: 'core',
1861
- library: 'icon'
1862
- },
1863
- sizeGuidance: {
1864
- small: 'swap',
1865
- medium: 'swap',
1866
- large: 'icon-tile',
1867
- xlarge: 'icon-tile'
1868
- }
1869
- },
1870
- 'editor/warning': {
1871
- newIcon: {
1872
- name: 'warning',
1873
- type: 'core',
1874
- library: 'icon'
1875
- },
1876
- sizeGuidance: {
1877
- small: 'swap',
1878
- medium: 'swap',
1879
- large: 'icon-tile',
1880
- xlarge: 'icon-tile'
1881
- }
1882
- },
1883
- email: {
1884
- newIcon: {
1885
- name: 'email',
1886
- type: 'core',
1887
- library: 'icon'
1888
- },
1889
- sizeGuidance: {
1890
- small: 'swap',
1891
- medium: 'swap',
1892
- large: 'icon-tile',
1893
- xlarge: 'icon-tile'
1894
- }
1895
- },
1896
- 'emoji/activity': {
1897
- sizeGuidance: {
1898
- small: 'icon-lab',
1899
- medium: 'icon-lab',
1900
- large: 'icon-lab',
1901
- xlarge: 'icon-lab'
1902
- }
1903
- },
1904
- 'emoji-add': {
1905
- newIcon: {
1906
- name: 'emoji-add',
1907
- type: 'core',
1908
- library: 'icon'
1909
- },
1910
- sizeGuidance: {
1911
- small: 'swap',
1912
- medium: 'swap',
1913
- large: 'icon-tile',
1914
- xlarge: 'icon-tile'
1915
- }
1916
- },
1917
- 'emoji/atlassian': {
1918
- sizeGuidance: {
1919
- small: 'icon-lab',
1920
- medium: 'icon-lab',
1921
- large: 'icon-lab',
1922
- xlarge: 'icon-lab'
1923
- }
1924
- },
1925
- 'emoji/custom': {
1926
- newIcon: {
1927
- name: 'add',
1928
- type: 'core',
1929
- library: 'icon'
1930
- },
1931
- sizeGuidance: {
1932
- small: 'swap',
1933
- medium: 'swap',
1934
- large: 'icon-tile',
1935
- xlarge: 'icon-tile'
1936
- }
1937
- },
1938
- 'emoji/emoji': {
1939
- newIcon: {
1940
- name: 'emoji',
1941
- type: 'core',
1942
- library: 'icon'
1943
- },
1944
- sizeGuidance: {
1945
- small: 'swap',
1946
- medium: 'swap',
1947
- large: 'icon-tile',
1948
- xlarge: 'icon-tile'
1949
- }
1950
- },
1951
- 'emoji/flags': {
1952
- sizeGuidance: {
1953
- small: 'icon-lab',
1954
- medium: 'icon-lab',
1955
- large: 'icon-lab',
1956
- xlarge: 'icon-lab'
1957
- }
1958
- },
1959
- 'emoji/food': {
1960
- sizeGuidance: {
1961
- small: 'icon-lab',
1962
- medium: 'icon-lab',
1963
- large: 'icon-lab',
1964
- xlarge: 'icon-lab'
1965
- }
1966
- },
1967
- 'emoji/frequent': {
1968
- newIcon: {
1969
- name: 'clock',
1970
- type: 'core',
1971
- library: 'icon'
1972
- },
1973
- sizeGuidance: {
1974
- small: 'swap',
1975
- medium: 'swap',
1976
- large: 'icon-tile',
1977
- xlarge: 'icon-tile'
1978
- }
1979
- },
1980
- emoji: {
1981
- newIcon: {
1982
- name: 'emoji',
1983
- type: 'core',
1984
- library: 'icon'
1985
- },
1986
- sizeGuidance: {
1987
- small: 'swap',
1988
- medium: 'swap',
1989
- large: 'icon-tile',
1990
- xlarge: 'icon-tile'
1991
- }
1992
- },
1993
- 'emoji/keyboard': {
1994
- newIcon: {
1995
- name: 'text-style',
1996
- type: 'core',
1997
- library: 'icon'
1998
- },
1999
- sizeGuidance: {
2000
- small: 'swap',
2001
- medium: 'swap',
2002
- large: 'icon-tile',
2003
- xlarge: 'icon-tile'
2004
- }
2005
- },
2006
- 'emoji/nature': {
2007
- sizeGuidance: {
2008
- small: 'icon-lab',
2009
- medium: 'icon-lab',
2010
- large: 'icon-lab',
2011
- xlarge: 'icon-lab'
2012
- }
2013
- },
2014
- 'emoji/objects': {
2015
- newIcon: {
2016
- name: 'lightbulb',
2017
- type: 'core',
2018
- library: 'icon'
2019
- },
2020
- sizeGuidance: {
2021
- small: 'swap',
2022
- medium: 'swap',
2023
- large: 'icon-tile',
2024
- xlarge: 'icon-tile'
2025
- }
2026
- },
2027
- 'emoji/people': {
2028
- sizeGuidance: {
2029
- small: 'icon-lab',
2030
- medium: 'icon-lab',
2031
- large: 'icon-lab',
2032
- xlarge: 'icon-lab'
2033
- }
2034
- },
2035
- 'emoji/productivity': {
2036
- sizeGuidance: {
2037
- small: 'icon-lab',
2038
- medium: 'icon-lab',
2039
- large: 'icon-lab',
2040
- xlarge: 'icon-lab'
2041
- }
2042
- },
2043
- 'emoji/symbols': {
2044
- newIcon: {
2045
- name: 'heart',
2046
- type: 'core',
2047
- library: 'icon'
2048
- },
2049
- sizeGuidance: {
2050
- small: 'swap-visual-change',
2051
- medium: 'swap-visual-change',
2052
- large: 'icon-tile',
2053
- xlarge: 'icon-tile'
2054
- }
2055
- },
2056
- 'emoji/travel': {
2057
- sizeGuidance: {
2058
- small: 'icon-lab',
2059
- medium: 'icon-lab',
2060
- large: 'icon-lab',
2061
- xlarge: 'icon-lab'
2062
- }
2063
- },
2064
- error: {
2065
- newIcon: {
2066
- name: 'error',
2067
- type: 'core',
2068
- library: 'icon'
2069
- },
2070
- sizeGuidance: {
2071
- small: 'swap',
2072
- medium: 'swap',
2073
- large: 'not-recommended',
2074
- xlarge: 'not-recommended'
2075
- }
2076
- },
2077
- export: {
2078
- sizeGuidance: {
2079
- small: 'icon-lab',
2080
- medium: 'icon-lab',
2081
- large: 'icon-lab',
2082
- xlarge: 'icon-lab'
2083
- }
2084
- },
2085
- feedback: {
2086
- newIcon: {
2087
- name: 'feedback',
2088
- type: 'core',
2089
- library: 'icon'
2090
- },
2091
- sizeGuidance: {
2092
- small: 'swap-visual-change',
2093
- medium: 'swap-visual-change',
2094
- large: 'icon-tile',
2095
- xlarge: 'icon-tile'
2096
- }
2097
- },
2098
- file: {
2099
- sizeGuidance: {
2100
- small: 'icon-lab',
2101
- medium: 'icon-lab',
2102
- large: 'icon-lab',
2103
- xlarge: 'icon-lab'
2104
- }
2105
- },
2106
- filter: {
2107
- newIcon: {
2108
- name: 'filter',
2109
- type: 'core',
2110
- library: 'icon'
2111
- },
2112
- sizeGuidance: {
2113
- small: 'swap',
2114
- medium: 'swap',
2115
- large: 'icon-tile',
2116
- xlarge: 'icon-tile'
2117
- }
2118
- },
2119
- 'flag-filled': {
2120
- sizeGuidance: {
2121
- small: 'icon-lab',
2122
- medium: 'icon-lab',
2123
- large: 'icon-lab',
2124
- xlarge: 'icon-lab'
2125
- }
2126
- },
2127
- 'folder-filled': {
2128
- sizeGuidance: {
2129
- small: 'icon-lab',
2130
- medium: 'icon-lab',
2131
- large: 'icon-lab',
2132
- xlarge: 'icon-lab'
2133
- }
2134
- },
2135
- folder: {
2136
- newIcon: {
2137
- name: 'folder-closed',
2138
- type: 'core',
2139
- library: 'icon'
2140
- },
2141
- sizeGuidance: {
2142
- small: 'swap-slight-visual-change',
2143
- medium: 'swap-slight-visual-change',
2144
- large: 'icon-tile',
2145
- xlarge: 'icon-tile'
2146
- }
2147
- },
2148
- followers: {
2149
- newIcon: {
2150
- name: 'person-offboard',
2151
- type: 'core',
2152
- library: 'icon'
2153
- },
2154
- sizeGuidance: {
2155
- small: 'swap-slight-visual-change',
2156
- medium: 'swap-slight-visual-change',
2157
- large: 'icon-tile',
2158
- xlarge: 'icon-tile'
2159
- }
2160
- },
2161
- following: {
2162
- sizeGuidance: {
2163
- small: 'icon-lab',
2164
- medium: 'icon-lab',
2165
- large: 'icon-lab',
2166
- xlarge: 'icon-lab'
2167
- }
2168
- },
2169
- googledrive: {
2170
- sizeGuidance: {
2171
- small: 'product-icon',
2172
- medium: 'product-icon',
2173
- large: 'product-icon',
2174
- xlarge: 'product-icon'
2175
- }
2176
- },
2177
- 'graph-bar': {
2178
- newIcon: {
2179
- name: 'chart-bar',
2180
- type: 'core',
2181
- library: 'icon'
2182
- },
2183
- sizeGuidance: {
2184
- small: 'swap-visual-change',
2185
- medium: 'swap-visual-change',
2186
- large: 'icon-tile',
2187
- xlarge: 'icon-tile'
2188
- }
2189
- },
2190
- 'graph-line': {
2191
- newIcon: {
2192
- name: 'chart-trend',
2193
- type: 'core',
2194
- library: 'icon'
2195
- },
2196
- sizeGuidance: {
2197
- small: 'swap-visual-change',
2198
- medium: 'swap-visual-change',
2199
- large: 'icon-tile',
2200
- xlarge: 'icon-tile'
2201
- }
2202
- },
2203
- gsuite: {
2204
- sizeGuidance: {
2205
- small: 'product-icon',
2206
- medium: 'product-icon',
2207
- large: 'product-icon',
2208
- xlarge: 'product-icon'
2209
- }
2210
- },
2211
- highlights: {
2212
- sizeGuidance: {
2213
- small: 'icon-lab',
2214
- medium: 'icon-lab',
2215
- large: 'icon-lab',
2216
- xlarge: 'icon-lab'
2217
- }
2218
- },
2219
- 'home-circle': {
2220
- newIcon: {
2221
- name: 'home',
2222
- type: 'core',
2223
- library: 'icon'
2224
- },
2225
- sizeGuidance: {
2226
- small: '16-icon-tile',
2227
- medium: '24-icon-tile',
2228
- large: '32-icon-tile',
2229
- xlarge: '48-icon-tile'
2230
- }
2231
- },
2232
- home: {
2233
- newIcon: {
2234
- name: 'home',
2235
- type: 'core',
2236
- library: 'icon'
2237
- },
2238
- sizeGuidance: {
2239
- small: 'swap-slight-visual-change',
2240
- medium: 'swap-slight-visual-change',
2241
- large: 'icon-tile',
2242
- xlarge: 'icon-tile'
2243
- }
2244
- },
2245
- 'image-border': {
2246
- sizeGuidance: {
2247
- small: 'icon-lab',
2248
- medium: 'icon-lab',
2249
- large: 'icon-lab',
2250
- xlarge: 'icon-lab'
2251
- }
2252
- },
2253
- image: {
2254
- newIcon: {
2255
- name: 'image',
2256
- type: 'core',
2257
- library: 'icon'
2258
- },
2259
- sizeGuidance: {
2260
- small: 'swap-visual-change',
2261
- medium: 'swap-visual-change',
2262
- large: 'icon-tile',
2263
- xlarge: 'icon-tile'
2264
- }
2265
- },
2266
- 'image-resize': {
2267
- newIcon: {
2268
- name: 'expand',
2269
- type: 'core',
2270
- library: 'icon'
2271
- },
2272
- sizeGuidance: {
2273
- small: 'swap-visual-change',
2274
- medium: 'swap-visual-change',
2275
- large: 'icon-tile',
2276
- xlarge: 'icon-tile'
2277
- }
2278
- },
2279
- info: {
2280
- newIcon: {
2281
- name: 'information',
2282
- type: 'core',
2283
- library: 'icon'
2284
- },
2285
- sizeGuidance: {
2286
- small: 'swap',
2287
- medium: 'swap',
2288
- large: 'not-recommended',
2289
- xlarge: 'not-recommended'
2290
- }
2291
- },
2292
- 'invite-team': {
2293
- newIcon: {
2294
- name: 'person-add',
2295
- type: 'core',
2296
- library: 'icon'
2297
- },
2298
- sizeGuidance: {
2299
- small: 'swap-visual-change',
2300
- medium: 'swap-visual-change',
2301
- large: 'icon-tile',
2302
- xlarge: 'icon-tile'
2303
- }
2304
- },
2305
- issue: {
2306
- newIcon: {
2307
- name: 'issue',
2308
- type: 'core',
2309
- library: 'icon'
2310
- },
2311
- sizeGuidance: {
2312
- small: 'swap',
2313
- medium: 'swap',
2314
- large: 'icon-tile',
2315
- xlarge: 'icon-tile'
2316
- }
2317
- },
2318
- 'issue-raise': {
2319
- sizeGuidance: {
2320
- small: 'icon-lab',
2321
- medium: 'icon-lab',
2322
- large: 'icon-lab',
2323
- xlarge: 'icon-lab'
2324
- }
2325
- },
2326
- issues: {
2327
- newIcon: {
2328
- name: 'issues',
2329
- type: 'core',
2330
- library: 'icon'
2331
- },
2332
- sizeGuidance: {
2333
- small: 'swap-slight-visual-change',
2334
- medium: 'swap-slight-visual-change',
2335
- large: 'icon-tile',
2336
- xlarge: 'icon-tile'
2337
- }
2338
- },
2339
- 'jira/capture': {
2340
- newIcon: {
2341
- name: 'capture',
2342
- type: 'core',
2343
- library: 'icon'
2344
- },
2345
- sizeGuidance: {
2346
- small: 'swap-slight-visual-change',
2347
- medium: 'swap-slight-visual-change',
2348
- large: 'icon-tile',
2349
- xlarge: 'icon-tile'
2350
- }
2351
- },
2352
- 'jira/failed-build-status': {
2353
- sizeGuidance: {
2354
- small: 'icon-lab',
2355
- medium: 'icon-lab',
2356
- large: 'icon-lab',
2357
- xlarge: 'icon-lab'
2358
- }
2359
- },
2360
- 'jira/labs': {
2361
- newIcon: {
2362
- name: 'flask',
2363
- type: 'core',
2364
- library: 'icon'
2365
- },
2366
- sizeGuidance: {
2367
- small: 'swap-visual-change',
2368
- medium: 'swap-visual-change',
2369
- large: 'icon-tile',
2370
- xlarge: 'icon-tile'
2371
- }
2372
- },
2373
- 'jira/test-session': {
2374
- newIcon: {
2375
- name: 'bug',
2376
- type: 'core',
2377
- library: 'icon'
2378
- },
2379
- sizeGuidance: {
2380
- small: 'swap',
2381
- medium: 'swap',
2382
- large: 'icon-tile',
2383
- xlarge: 'icon-tile'
2384
- }
2385
- },
2386
- label: {
2387
- newIcon: {
2388
- name: 'tag',
2389
- type: 'core',
2390
- library: 'icon'
2391
- },
2392
- sizeGuidance: {
2393
- small: 'swap-visual-change',
2394
- medium: 'swap-visual-change',
2395
- large: 'icon-tile',
2396
- xlarge: 'icon-tile'
2397
- }
2398
- },
2399
- 'lightbulb-filled': {
2400
- sizeGuidance: {
2401
- small: 'icon-lab',
2402
- medium: 'icon-lab',
2403
- large: 'icon-lab',
2404
- xlarge: 'icon-lab'
2405
- }
2406
- },
2407
- lightbulb: {
2408
- newIcon: {
2409
- name: 'lightbulb',
2410
- type: 'core',
2411
- library: 'icon'
2412
- },
2413
- sizeGuidance: {
2414
- small: 'swap',
2415
- medium: 'swap',
2416
- large: 'icon-tile',
2417
- xlarge: 'icon-tile'
2418
- }
2419
- },
2420
- like: {
2421
- newIcon: {
2422
- name: 'thumbs-up',
2423
- type: 'core',
2424
- library: 'icon'
2425
- },
2426
- sizeGuidance: {
2427
- small: 'swap',
2428
- medium: 'swap',
2429
- large: 'icon-tile',
2430
- xlarge: 'icon-tile'
2431
- }
2432
- },
2433
- 'link-filled': {
2434
- sizeGuidance: {
2435
- small: '16-icon-tile',
2436
- medium: '24-icon-tile',
2437
- large: '32-icon-tile',
2438
- xlarge: '48-icon-tile'
2439
- }
2440
- },
2441
- link: {
2442
- newIcon: {
2443
- name: 'link',
2444
- type: 'core',
2445
- library: 'icon'
2446
- },
2447
- sizeGuidance: {
2448
- small: 'swap-slight-visual-change',
2449
- medium: 'swap-slight-visual-change',
2450
- large: 'icon-tile',
2451
- xlarge: 'icon-tile'
2452
- }
2453
- },
2454
- list: {
2455
- sizeGuidance: {
2456
- small: 'icon-lab',
2457
- medium: 'icon-lab',
2458
- large: 'icon-lab',
2459
- xlarge: 'icon-lab'
2460
- }
2461
- },
2462
- 'hipchat/lobby': {
2463
- newIcon: {
2464
- name: 'lobby-bell',
2465
- type: 'core',
2466
- library: 'icon'
2467
- },
2468
- sizeGuidance: {
2469
- small: 'swap-visual-change',
2470
- medium: 'swap-visual-change',
2471
- large: 'icon-tile',
2472
- xlarge: 'icon-tile'
2473
- }
2474
- },
2475
- location: {
2476
- newIcon: {
2477
- name: 'location',
2478
- type: 'core',
2479
- library: 'icon'
2480
- },
2481
- sizeGuidance: {
2482
- small: 'swap-visual-change',
2483
- medium: 'swap-visual-change',
2484
- large: 'icon-tile',
2485
- xlarge: 'icon-tile'
2486
- }
2487
- },
2488
- 'lock-circle': {
2489
- newIcon: {
2490
- name: 'lock-locked',
2491
- type: 'core',
2492
- library: 'icon'
2493
- },
2494
- sizeGuidance: {
2495
- small: '16-icon-tile',
2496
- medium: '24-icon-tile',
2497
- large: '32-icon-tile',
2498
- xlarge: '48-icon-tile'
2499
- }
2500
- },
2501
- 'lock-filled': {
2502
- newIcon: {
2503
- name: 'lock-locked',
2504
- type: 'core',
2505
- library: 'icon'
2506
- },
2507
- sizeGuidance: {
2508
- small: 'icon-lab',
2509
- medium: 'icon-lab',
2510
- large: 'icon-lab',
2511
- xlarge: 'icon-lab'
2512
- }
2513
- },
2514
- lock: {
2515
- newIcon: {
2516
- name: 'lock-locked',
2517
- type: 'core',
2518
- library: 'icon'
2519
- },
2520
- sizeGuidance: {
2521
- small: 'swap-visual-change',
2522
- medium: 'swap-visual-change',
2523
- large: 'icon-tile',
2524
- xlarge: 'icon-tile'
2525
- }
2526
- },
2527
- marketplace: {
2528
- newIcon: {
2529
- name: 'marketplace',
2530
- type: 'core',
2531
- library: 'icon'
2532
- },
2533
- sizeGuidance: {
2534
- small: 'swap-visual-change',
2535
- medium: 'swap-visual-change',
2536
- large: 'icon-tile',
2537
- xlarge: 'icon-tile'
2538
- }
2539
- },
2540
- 'hipchat/media-attachment-count': {
2541
- sizeGuidance: {
2542
- small: 'icon-lab',
2543
- medium: 'icon-lab',
2544
- large: 'icon-lab',
2545
- xlarge: 'icon-lab'
2546
- }
2547
- },
2548
- 'media-services/actual-size': {
2549
- newIcon: {
2550
- name: 'maximize',
2551
- type: 'core',
2552
- library: 'icon'
2553
- },
2554
- sizeGuidance: {
2555
- small: 'swap',
2556
- medium: 'swap',
2557
- large: 'icon-tile',
2558
- xlarge: 'icon-tile'
2559
- }
2560
- },
2561
- 'media-services/add-comment': {
2562
- newIcon: {
2563
- name: 'comment-add',
2564
- type: 'core',
2565
- library: 'icon'
2566
- },
2567
- sizeGuidance: {
2568
- small: 'swap-visual-change',
2569
- medium: 'swap-visual-change',
2570
- large: 'icon-tile',
2571
- xlarge: 'icon-tile'
2572
- }
2573
- },
2574
- 'media-services/annotate': {
2575
- sizeGuidance: {
2576
- small: 'icon-lab',
2577
- medium: 'icon-lab',
2578
- large: 'icon-lab',
2579
- xlarge: 'icon-lab'
2580
- }
2581
- },
2582
- 'media-services/arrow': {
2583
- sizeGuidance: {
2584
- small: 'icon-lab',
2585
- medium: 'icon-lab',
2586
- large: 'icon-lab',
2587
- xlarge: 'icon-lab'
2588
- }
2589
- },
2590
- 'media-services/audio': {
2591
- newIcon: {
2592
- name: 'audio',
2593
- type: 'core',
2594
- library: 'icon'
2595
- },
2596
- sizeGuidance: {
2597
- small: '16-icon-tile',
2598
- medium: '24-icon-tile',
2599
- large: '32-icon-tile',
2600
- xlarge: '48-icon-tile'
2601
- }
2602
- },
2603
- 'media-services/blur': {
2604
- sizeGuidance: {
2605
- small: 'icon-lab',
2606
- medium: 'icon-lab',
2607
- large: 'icon-lab',
2608
- xlarge: 'icon-lab'
2609
- }
2610
- },
2611
- 'media-services/brush': {
2612
- sizeGuidance: {
2613
- small: 'icon-lab',
2614
- medium: 'icon-lab',
2615
- large: 'icon-lab',
2616
- xlarge: 'icon-lab'
2617
- }
2618
- },
2619
- 'media-services/button-option': {
2620
- sizeGuidance: {
2621
- small: 'icon-lab',
2622
- medium: 'icon-lab',
2623
- large: 'icon-lab',
2624
- xlarge: 'icon-lab'
2625
- }
2626
- },
2627
- 'media-services/code': {
2628
- newIcon: {
2629
- name: 'angle-brackets',
2630
- type: 'core',
2631
- library: 'icon'
2632
- },
2633
- sizeGuidance: {
2634
- small: '16-icon-tile',
2635
- medium: '24-icon-tile',
2636
- large: '32-icon-tile',
2637
- xlarge: '48-icon-tile'
2638
- }
2639
- },
2640
- 'media-services/document': {
2641
- newIcon: {
2642
- name: 'page',
2643
- type: 'core',
2644
- library: 'icon'
2645
- },
2646
- sizeGuidance: {
2647
- small: 'swap-visual-change',
2648
- medium: 'swap-visual-change',
2649
- large: 'icon-tile',
2650
- xlarge: 'icon-tile'
2651
- }
2652
- },
2653
- 'media-services/filter': {
2654
- newIcon: {
2655
- name: 'filter',
2656
- type: 'core',
2657
- library: 'icon'
2658
- },
2659
- sizeGuidance: {
2660
- small: 'swap-visual-change',
2661
- medium: 'swap-visual-change',
2662
- large: 'icon-tile',
2663
- xlarge: 'icon-tile'
2664
- }
2665
- },
2666
- 'media-services/fit-to-page': {
2667
- sizeGuidance: {
2668
- small: 'icon-lab',
2669
- medium: 'icon-lab',
2670
- large: 'icon-lab',
2671
- xlarge: 'icon-lab'
2672
- }
2673
- },
2674
- 'media-services/full-screen': {
2675
- newIcon: {
2676
- name: 'fullscreen-exit',
2677
- type: 'core',
2678
- library: 'icon'
2679
- },
2680
- sizeGuidance: {
2681
- small: 'swap',
2682
- medium: 'swap',
2683
- large: 'icon-tile',
2684
- xlarge: 'icon-tile'
2685
- }
2686
- },
2687
- 'media-services/grid': {
2688
- newIcon: {
2689
- name: 'grid',
2690
- type: 'core',
2691
- library: 'icon'
2692
- },
2693
- sizeGuidance: {
2694
- small: 'swap-visual-change',
2695
- medium: 'swap-visual-change',
2696
- large: 'icon-tile',
2697
- xlarge: 'icon-tile'
2698
- }
2699
- },
2700
- 'media-services/image': {
2701
- newIcon: {
2702
- name: 'image',
2703
- type: 'core',
2704
- library: 'icon'
2705
- },
2706
- sizeGuidance: {
2707
- small: 'swap-visual-change',
2708
- medium: 'swap-visual-change',
2709
- large: 'icon-tile',
2710
- xlarge: 'icon-tile'
2711
- }
2712
- },
2713
- 'media-services/line': {
2714
- sizeGuidance: {
2715
- small: 'icon-lab',
2716
- medium: 'icon-lab',
2717
- large: 'icon-lab',
2718
- xlarge: 'icon-lab'
2719
- }
2720
- },
2721
- 'media-services/line-thickness': {
2722
- sizeGuidance: {
2723
- small: 'icon-lab',
2724
- medium: 'icon-lab',
2725
- large: 'icon-lab',
2726
- xlarge: 'icon-lab'
2727
- }
2728
- },
2729
- 'media-services/no-image': {
2730
- sizeGuidance: {
2731
- small: 'icon-lab',
2732
- medium: 'icon-lab',
2733
- large: 'icon-lab',
2734
- xlarge: 'icon-lab'
2735
- }
2736
- },
2737
- 'media-services/open-mediaviewer': {
2738
- sizeGuidance: {
2739
- small: 'icon-lab',
2740
- medium: 'icon-lab',
2741
- large: 'icon-lab',
2742
- xlarge: 'icon-lab'
2743
- }
2744
- },
2745
- 'media-services/oval': {
2746
- sizeGuidance: {
2747
- small: 'icon-lab',
2748
- medium: 'icon-lab',
2749
- large: 'icon-lab',
2750
- xlarge: 'icon-lab'
2751
- }
2752
- },
2753
- 'media-services/pdf': {
2754
- sizeGuidance: {
2755
- small: 'icon-lab',
2756
- medium: 'icon-lab',
2757
- large: 'icon-lab',
2758
- xlarge: 'icon-lab'
2759
- }
2760
- },
2761
- 'media-services/preselected': {
2762
- sizeGuidance: {
2763
- small: 'icon-lab',
2764
- medium: 'icon-lab',
2765
- large: 'icon-lab',
2766
- xlarge: 'icon-lab'
2767
- }
2768
- },
2769
- 'media-services/presentation': {
2770
- newIcon: {
2771
- name: 'chart-bar',
2772
- type: 'core',
2773
- library: 'icon'
2774
- },
2775
- sizeGuidance: {
2776
- small: '16-icon-tile',
2777
- medium: '24-icon-tile',
2778
- large: '32-icon-tile',
2779
- xlarge: '48-icon-tile'
2780
- }
2781
- },
2782
- 'media-services/rectangle': {
2783
- sizeGuidance: {
2784
- small: 'icon-lab',
2785
- medium: 'icon-lab',
2786
- large: 'icon-lab',
2787
- xlarge: 'icon-lab'
2788
- }
2789
- },
2790
- 'media-services/scale-large': {
2791
- newIcon: {
2792
- name: 'image',
2793
- type: 'core',
2794
- library: 'icon'
2795
- },
2796
- sizeGuidance: {
2797
- small: 'swap',
2798
- medium: 'swap',
2799
- large: 'icon-tile',
2800
- xlarge: 'icon-tile'
2801
- }
2802
- },
2803
- 'media-services/scale-small': {
2804
- newIcon: {
2805
- name: 'image',
2806
- type: 'core',
2807
- library: 'icon'
2808
- },
2809
- sizeGuidance: {
2810
- small: 'swap-slight-visual-change',
2811
- medium: 'swap-slight-visual-change',
2812
- large: 'icon-tile',
2813
- xlarge: 'icon-tile'
2814
- }
2815
- },
2816
- 'media-services/spreadsheet': {
2817
- newIcon: {
2818
- name: 'spreadsheet',
2819
- type: 'core',
2820
- library: 'icon'
2821
- },
2822
- sizeGuidance: {
2823
- small: 'swap-visual-change',
2824
- medium: 'swap-visual-change',
2825
- large: 'icon-tile',
2826
- xlarge: 'icon-tile'
2827
- }
2828
- },
2829
- 'media-services/text': {
2830
- sizeGuidance: {
2831
- small: 'icon-lab',
2832
- medium: 'icon-lab',
2833
- large: 'icon-lab',
2834
- xlarge: 'icon-lab'
2835
- }
2836
- },
2837
- 'media-services/unknown': {
2838
- sizeGuidance: {
2839
- small: 'icon-lab',
2840
- medium: 'icon-lab',
2841
- large: 'icon-lab',
2842
- xlarge: 'icon-lab'
2843
- }
2844
- },
2845
- 'media-services/video': {
2846
- newIcon: {
2847
- name: 'video',
2848
- type: 'core',
2849
- library: 'icon'
2850
- },
2851
- sizeGuidance: {
2852
- small: '16-icon-tile',
2853
- medium: '24-icon-tile',
2854
- large: '32-icon-tile',
2855
- xlarge: '48-icon-tile'
2856
- }
2857
- },
2858
- 'media-services/zip': {
2859
- sizeGuidance: {
2860
- small: 'icon-lab',
2861
- medium: 'icon-lab',
2862
- large: 'icon-lab',
2863
- xlarge: 'icon-lab'
2864
- }
2865
- },
2866
- 'media-services/zoom-in': {
2867
- newIcon: {
2868
- name: 'zoom-in',
2869
- type: 'core',
2870
- library: 'icon'
2871
- },
2872
- sizeGuidance: {
2873
- small: 'swap-visual-change',
2874
- medium: 'swap-visual-change',
2875
- large: 'icon-tile',
2876
- xlarge: 'icon-tile'
2877
- }
2878
- },
2879
- 'media-services/zoom-out': {
2880
- newIcon: {
2881
- name: 'zoom-out',
2882
- type: 'core',
2883
- library: 'icon'
2884
- },
2885
- sizeGuidance: {
2886
- small: 'swap-visual-change',
2887
- medium: 'swap-visual-change',
2888
- large: 'icon-tile',
2889
- xlarge: 'icon-tile'
2890
- }
2891
- },
2892
- mention: {
2893
- sizeGuidance: {
2894
- small: 'icon-lab',
2895
- medium: 'icon-lab',
2896
- large: 'icon-lab',
2897
- xlarge: 'icon-lab'
2898
- }
2899
- },
2900
- 'menu-expand': {
2901
- newIcon: {
2902
- name: 'menu',
2903
- type: 'core',
2904
- library: 'icon'
2905
- },
2906
- sizeGuidance: {
2907
- small: 'swap',
2908
- medium: 'swap',
2909
- large: 'icon-tile',
2910
- xlarge: 'icon-tile'
2911
- }
2912
- },
2913
- menu: {
2914
- newIcon: {
2915
- name: 'menu',
2916
- type: 'core',
2917
- library: 'icon'
2918
- },
2919
- sizeGuidance: {
2920
- small: 'swap',
2921
- medium: 'swap',
2922
- large: 'icon-tile',
2923
- xlarge: 'icon-tile'
2924
- }
2925
- },
2926
- mobile: {
2927
- newIcon: {
2928
- name: 'device-mobile',
2929
- type: 'core',
2930
- library: 'icon'
2931
- },
2932
- sizeGuidance: {
2933
- small: 'swap-visual-change',
2934
- medium: 'swap-visual-change',
2935
- large: 'icon-tile',
2936
- xlarge: 'icon-tile'
2937
- }
2938
- },
2939
- more: {
2940
- newIcon: {
2941
- name: 'show-more-horizontal',
2942
- type: 'core',
2943
- library: 'icon'
2944
- },
2945
- sizeGuidance: {
2946
- small: 'swap',
2947
- medium: 'swap',
2948
- large: 'icon-tile',
2949
- xlarge: 'icon-tile'
2950
- }
2951
- },
2952
- 'more-vertical': {
2953
- newIcon: {
2954
- name: 'show-more-vertical',
2955
- type: 'core',
2956
- library: 'icon'
2957
- },
2958
- sizeGuidance: {
2959
- small: 'swap',
2960
- medium: 'swap',
2961
- large: 'icon-tile',
2962
- xlarge: 'icon-tile'
2963
- }
2964
- },
2965
- 'notification-all': {
2966
- sizeGuidance: {
2967
- small: 'icon-lab',
2968
- medium: 'icon-lab',
2969
- large: 'icon-lab',
2970
- xlarge: 'icon-lab'
2971
- }
2972
- },
2973
- 'notification-direct': {
2974
- newIcon: {
2975
- name: 'notification',
2976
- type: 'core',
2977
- library: 'icon'
2978
- },
2979
- sizeGuidance: {
2980
- small: 'swap-slight-visual-change',
2981
- medium: 'swap-slight-visual-change',
2982
- large: 'icon-tile',
2983
- xlarge: 'icon-tile'
2984
- }
2985
- },
2986
- notification: {
2987
- newIcon: {
2988
- name: 'notification',
2989
- type: 'core',
2990
- library: 'icon'
2991
- },
2992
- sizeGuidance: {
2993
- small: 'swap-visual-change',
2994
- medium: 'swap-visual-change',
2995
- large: 'icon-tile',
2996
- xlarge: 'icon-tile'
2997
- }
2998
- },
2999
- 'office-building-filled': {
3000
- newIcon: {
3001
- name: 'office-building',
3002
- type: 'core',
3003
- library: 'icon'
3004
- },
3005
- sizeGuidance: {
3006
- small: 'swap-visual-change',
3007
- medium: 'swap-visual-change',
3008
- large: 'icon-tile',
3009
- xlarge: 'icon-tile'
3010
- }
3011
- },
3012
- 'office-building': {
3013
- newIcon: {
3014
- name: 'office-building',
3015
- type: 'core',
3016
- library: 'icon'
3017
- },
3018
- sizeGuidance: {
3019
- small: 'swap-slight-visual-change',
3020
- medium: 'swap-slight-visual-change',
3021
- large: 'icon-tile',
3022
- xlarge: 'icon-tile'
3023
- }
3024
- },
3025
- open: {
3026
- newIcon: {
3027
- name: 'arrow-up-right',
3028
- type: 'core',
3029
- library: 'icon'
3030
- },
3031
- sizeGuidance: {
3032
- small: 'swap',
3033
- medium: 'swap',
3034
- large: 'icon-tile',
3035
- xlarge: 'icon-tile'
3036
- }
3037
- },
3038
- 'hipchat/outgoing-sound': {
3039
- newIcon: {
3040
- name: 'volume-high',
3041
- type: 'core',
3042
- library: 'icon'
3043
- },
3044
- sizeGuidance: {
3045
- small: 'swap-visual-change',
3046
- medium: 'swap-visual-change',
3047
- large: 'icon-tile',
3048
- xlarge: 'icon-tile'
3049
- }
3050
- },
3051
- overview: {
3052
- newIcon: {
3053
- name: 'align-left',
3054
- type: 'core',
3055
- library: 'icon'
3056
- },
3057
- sizeGuidance: {
3058
- small: 'swap',
3059
- medium: 'swap',
3060
- large: 'icon-tile',
3061
- xlarge: 'icon-tile'
3062
- }
3063
- },
3064
- 'page-filled': {
3065
- newIcon: {
3066
- name: 'page',
3067
- type: 'core',
3068
- library: 'icon'
3069
- },
3070
- sizeGuidance: {
3071
- small: 'swap-visual-change',
3072
- medium: 'swap-visual-change',
3073
- large: 'icon-tile',
3074
- xlarge: 'icon-tile'
3075
- }
3076
- },
3077
- page: {
3078
- newIcon: {
3079
- name: 'page',
3080
- type: 'core',
3081
- library: 'icon'
3082
- },
3083
- sizeGuidance: {
3084
- small: 'swap-slight-visual-change',
3085
- medium: 'swap-slight-visual-change',
3086
- large: 'icon-tile',
3087
- xlarge: 'icon-tile'
3088
- }
3089
- },
3090
- pdf: {
3091
- sizeGuidance: {
3092
- small: 'icon-lab',
3093
- medium: 'icon-lab',
3094
- large: 'icon-lab',
3095
- xlarge: 'icon-lab'
3096
- }
3097
- },
3098
- 'people-group': {
3099
- sizeGuidance: {
3100
- small: 'icon-lab',
3101
- medium: 'icon-lab',
3102
- large: 'icon-lab',
3103
- xlarge: 'icon-lab'
3104
- }
3105
- },
3106
- people: {
3107
- sizeGuidance: {
3108
- small: 'icon-lab',
3109
- medium: 'icon-lab',
3110
- large: 'icon-lab',
3111
- xlarge: 'icon-lab'
3112
- }
3113
- },
3114
- 'person-circle': {
3115
- newIcon: {
3116
- name: 'person-avatar',
3117
- type: 'core',
3118
- library: 'icon'
3119
- },
3120
- sizeGuidance: {
3121
- small: 'swap-visual-change',
3122
- medium: 'swap-visual-change',
3123
- large: 'icon-tile',
3124
- xlarge: 'icon-tile'
3125
- }
3126
- },
3127
- person: {
3128
- newIcon: {
3129
- name: 'person',
3130
- type: 'core',
3131
- library: 'icon'
3132
- },
3133
- sizeGuidance: {
3134
- small: 'swap-visual-change',
3135
- medium: 'swap-visual-change',
3136
- large: 'icon-tile',
3137
- xlarge: 'icon-tile'
3138
- }
3139
- },
3140
- 'person-with-circle': {
3141
- sizeGuidance: {
3142
- small: 'icon-lab',
3143
- medium: 'icon-lab',
3144
- large: 'icon-lab',
3145
- xlarge: 'icon-lab'
3146
- }
3147
- },
3148
- 'person-with-cross': {
3149
- sizeGuidance: {
3150
- small: 'icon-lab',
3151
- medium: 'icon-lab',
3152
- large: 'icon-lab',
3153
- xlarge: 'icon-lab'
3154
- }
3155
- },
3156
- 'person-with-tick': {
3157
- newIcon: {
3158
- name: 'person-added',
3159
- type: 'core',
3160
- library: 'icon'
3161
- },
3162
- sizeGuidance: {
3163
- small: 'swap-visual-change',
3164
- medium: 'swap-visual-change',
3165
- large: 'icon-tile',
3166
- xlarge: 'icon-tile'
3167
- }
3168
- },
3169
- portfolio: {
3170
- sizeGuidance: {
3171
- small: 'icon-lab',
3172
- medium: 'icon-lab',
3173
- large: 'icon-lab',
3174
- xlarge: 'icon-lab'
3175
- }
3176
- },
3177
- preferences: {
3178
- newIcon: {
3179
- name: 'customize',
3180
- type: 'core',
3181
- library: 'icon'
3182
- },
3183
- sizeGuidance: {
3184
- small: 'swap-visual-change',
3185
- medium: 'swap-visual-change',
3186
- large: 'icon-tile',
3187
- xlarge: 'icon-tile'
3188
- }
3189
- },
3190
- premium: {
3191
- newIcon: {
3192
- name: 'premium',
3193
- type: 'core',
3194
- library: 'icon'
3195
- },
3196
- sizeGuidance: {
3197
- small: 'swap-visual-change',
3198
- medium: 'swap-visual-change',
3199
- large: 'icon-tile',
3200
- xlarge: 'icon-tile'
3201
- }
3202
- },
3203
- 'presence-active': {
3204
- sizeGuidance: {
3205
- small: 'icon-lab',
3206
- medium: 'icon-lab',
3207
- large: 'icon-lab',
3208
- xlarge: 'icon-lab'
3209
- }
3210
- },
3211
- 'presence-busy': {
3212
- sizeGuidance: {
3213
- small: 'icon-lab',
3214
- medium: 'icon-lab',
3215
- large: 'icon-lab',
3216
- xlarge: 'icon-lab'
3217
- }
3218
- },
3219
- 'presence-unavailable': {
3220
- sizeGuidance: {
3221
- small: 'icon-lab',
3222
- medium: 'icon-lab',
3223
- large: 'icon-lab',
3224
- xlarge: 'icon-lab'
3225
- }
3226
- },
3227
- 'question-circle': {
3228
- newIcon: {
3229
- name: 'question-circle',
3230
- type: 'core',
3231
- library: 'icon'
3232
- },
3233
- sizeGuidance: {
3234
- small: 'swap-visual-change',
3235
- medium: 'swap-visual-change',
3236
- large: 'icon-tile',
3237
- xlarge: 'icon-tile'
3238
- }
3239
- },
3240
- question: {
3241
- newIcon: {
3242
- name: 'question-circle',
3243
- type: 'core',
3244
- library: 'icon'
3245
- },
3246
- sizeGuidance: {
3247
- small: 'swap-visual-change',
3248
- medium: 'swap-visual-change',
3249
- large: 'icon-tile',
3250
- xlarge: 'icon-tile'
3251
- }
3252
- },
3253
- questions: {
3254
- newIcon: {
3255
- name: 'comment',
3256
- type: 'core',
3257
- library: 'icon'
3258
- },
3259
- sizeGuidance: {
3260
- small: 'swap-slight-visual-change',
3261
- medium: 'swap-slight-visual-change',
3262
- large: 'icon-tile',
3263
- xlarge: 'icon-tile'
3264
- }
3265
- },
3266
- queues: {
3267
- newIcon: {
3268
- name: 'pages',
3269
- type: 'core',
3270
- library: 'icon'
3271
- },
3272
- sizeGuidance: {
3273
- small: 'swap',
3274
- medium: 'swap',
3275
- large: 'icon-tile',
3276
- xlarge: 'icon-tile'
3277
- }
3278
- },
3279
- quote: {
3280
- newIcon: {
3281
- name: 'quotation-mark',
3282
- type: 'core',
3283
- library: 'icon'
3284
- },
3285
- sizeGuidance: {
3286
- small: 'swap-visual-change',
3287
- medium: 'swap-visual-change',
3288
- large: 'icon-tile',
3289
- xlarge: 'icon-tile'
3290
- }
3291
- },
3292
- radio: {
3293
- sizeGuidance: {
3294
- small: 'icon-lab',
3295
- medium: 'icon-lab',
3296
- large: 'icon-lab',
3297
- xlarge: 'icon-lab'
3298
- }
3299
- },
3300
- recent: {
3301
- newIcon: {
3302
- name: 'clock',
3303
- type: 'core',
3304
- library: 'icon'
3305
- },
3306
- sizeGuidance: {
3307
- small: 'swap-visual-change',
3308
- medium: 'swap-visual-change',
3309
- large: 'icon-tile',
3310
- xlarge: 'icon-tile'
3311
- }
3312
- },
3313
- redo: {
3314
- newIcon: {
3315
- name: 'redo',
3316
- type: 'core',
3317
- library: 'icon'
3318
- },
3319
- sizeGuidance: {
3320
- small: 'swap-slight-visual-change',
3321
- medium: 'swap-slight-visual-change',
3322
- large: 'icon-tile',
3323
- xlarge: 'icon-tile'
3324
- }
3325
- },
3326
- refresh: {
3327
- sizeGuidance: {
3328
- small: 'icon-lab',
3329
- medium: 'icon-lab',
3330
- large: 'icon-lab',
3331
- xlarge: 'icon-lab'
3332
- }
3333
- },
3334
- retry: {
3335
- newIcon: {
3336
- name: 'retry',
3337
- type: 'core',
3338
- library: 'icon'
3339
- },
3340
- sizeGuidance: {
3341
- small: 'swap-slight-visual-change',
3342
- medium: 'swap-slight-visual-change',
3343
- large: 'icon-tile',
3344
- xlarge: 'icon-tile'
3345
- }
3346
- },
3347
- roadmap: {
3348
- newIcon: {
3349
- name: 'roadmap',
3350
- type: 'core',
3351
- library: 'icon'
3352
- },
3353
- sizeGuidance: {
3354
- small: 'swap-slight-visual-change',
3355
- medium: 'swap-slight-visual-change',
3356
- large: 'icon-tile',
3357
- xlarge: 'icon-tile'
3358
- }
3359
- },
3360
- 'room-menu': {
3361
- sizeGuidance: {
3362
- small: 'icon-lab',
3363
- medium: 'icon-lab',
3364
- large: 'icon-lab',
3365
- xlarge: 'icon-lab'
3366
- }
3367
- },
3368
- 'schedule-filled': {
3369
- sizeGuidance: {
3370
- small: 'icon-lab',
3371
- medium: 'icon-lab',
3372
- large: 'icon-lab',
3373
- xlarge: 'icon-lab'
3374
- }
3375
- },
3376
- schedule: {
3377
- sizeGuidance: {
3378
- small: 'icon-lab',
3379
- medium: 'icon-lab',
3380
- large: 'icon-lab',
3381
- xlarge: 'icon-lab'
3382
- }
3383
- },
3384
- screen: {
3385
- newIcon: {
3386
- name: 'screen',
3387
- type: 'core',
3388
- library: 'icon'
3389
- },
3390
- sizeGuidance: {
3391
- small: 'swap',
3392
- medium: 'swap',
3393
- large: 'icon-tile',
3394
- xlarge: 'icon-tile'
3395
- }
3396
- },
3397
- 'hipchat/sd-video': {
3398
- newIcon: {
3399
- name: 'video',
3400
- type: 'core',
3401
- library: 'icon'
3402
- },
3403
- sizeGuidance: {
3404
- small: 'swap-visual-change',
3405
- medium: 'swap-visual-change',
3406
- large: 'icon-tile',
3407
- xlarge: 'icon-tile'
3408
- }
3409
- },
3410
- search: {
3411
- newIcon: {
3412
- name: 'search',
3413
- type: 'core',
3414
- library: 'icon'
3415
- },
3416
- sizeGuidance: {
3417
- small: 'swap',
3418
- medium: 'swap',
3419
- large: 'icon-tile',
3420
- xlarge: 'icon-tile'
3421
- }
3422
- },
3423
- 'select-clear': {
3424
- newIcon: {
3425
- name: 'cross-circle',
3426
- type: 'core',
3427
- library: 'icon'
3428
- },
3429
- sizeGuidance: {
3430
- small: 'swap',
3431
- medium: 'swap',
3432
- large: 'icon-tile',
3433
- xlarge: 'icon-tile'
3434
- }
3435
- },
3436
- send: {
3437
- newIcon: {
3438
- name: 'send',
3439
- type: 'core',
3440
- library: 'icon'
3441
- },
3442
- sizeGuidance: {
3443
- small: 'swap-slight-visual-change',
3444
- medium: 'swap-slight-visual-change',
3445
- large: 'icon-tile',
3446
- xlarge: 'icon-tile'
3447
- }
3448
- },
3449
- settings: {
3450
- newIcon: {
3451
- name: 'settings',
3452
- type: 'core',
3453
- library: 'icon'
3454
- },
3455
- sizeGuidance: {
3456
- small: 'swap-visual-change',
3457
- medium: 'swap-visual-change',
3458
- large: 'icon-tile',
3459
- xlarge: 'icon-tile'
3460
- }
3461
- },
3462
- share: {
3463
- newIcon: {
3464
- name: 'share',
3465
- type: 'core',
3466
- library: 'icon'
3467
- },
3468
- sizeGuidance: {
3469
- small: 'swap',
3470
- medium: 'swap',
3471
- large: 'icon-tile',
3472
- xlarge: 'icon-tile'
3473
- }
3474
- },
3475
- ship: {
3476
- newIcon: {
3477
- name: 'release',
3478
- type: 'core',
3479
- library: 'icon'
3480
- },
3481
- sizeGuidance: {
3482
- small: 'swap',
3483
- medium: 'swap',
3484
- large: 'icon-tile',
3485
- xlarge: 'icon-tile'
3486
- }
3487
- },
3488
- shortcut: {
3489
- newIcon: {
3490
- name: 'link-external',
3491
- type: 'core',
3492
- library: 'icon'
3493
- },
3494
- sizeGuidance: {
3495
- small: 'swap',
3496
- medium: 'swap',
3497
- large: 'icon-tile',
3498
- xlarge: 'icon-tile'
3499
- }
3500
- },
3501
- 'sign-in': {
3502
- newIcon: {
3503
- name: 'log-in',
3504
- type: 'core',
3505
- library: 'icon'
3506
- },
3507
- sizeGuidance: {
3508
- small: 'swap-slight-visual-change',
3509
- medium: 'swap-slight-visual-change',
3510
- large: 'icon-tile',
3511
- xlarge: 'icon-tile'
3512
- }
3513
- },
3514
- 'sign-out': {
3515
- newIcon: {
3516
- name: 'log-out',
3517
- type: 'core',
3518
- library: 'icon'
3519
- },
3520
- sizeGuidance: {
3521
- small: 'swap-slight-visual-change',
3522
- medium: 'swap-slight-visual-change',
3523
- large: 'icon-tile',
3524
- xlarge: 'icon-tile'
3525
- }
3526
- },
3527
- sprint: {
3528
- newIcon: {
3529
- name: 'sprint',
3530
- type: 'core',
3531
- library: 'icon'
3532
- },
3533
- sizeGuidance: {
3534
- small: 'swap',
3535
- medium: 'swap',
3536
- large: 'icon-tile',
3537
- xlarge: 'icon-tile'
3538
- }
3539
- },
3540
- 'star-filled': {
3541
- newIcon: {
3542
- name: 'star-starred',
3543
- type: 'core',
3544
- library: 'icon'
3545
- },
3546
- sizeGuidance: {
3547
- small: 'swap',
3548
- medium: 'swap',
3549
- large: 'icon-tile',
3550
- xlarge: 'icon-tile'
3551
- }
3552
- },
3553
- star: {
3554
- newIcon: {
3555
- name: 'star-unstarred',
3556
- type: 'core',
3557
- library: 'icon'
3558
- },
3559
- sizeGuidance: {
3560
- small: 'swap-slight-visual-change',
3561
- medium: 'swap-slight-visual-change',
3562
- large: 'icon-tile',
3563
- xlarge: 'icon-tile'
3564
- }
3565
- },
3566
- 'star-large': {
3567
- newIcon: {
3568
- name: 'star-unstarred',
3569
- type: 'core',
3570
- library: 'icon'
3571
- },
3572
- sizeGuidance: {
3573
- small: 'swap-slight-visual-change',
3574
- medium: 'swap-slight-visual-change',
3575
- large: 'icon-tile',
3576
- xlarge: 'icon-tile'
3577
- }
3578
- },
3579
- status: {
3580
- sizeGuidance: {
3581
- small: 'icon-lab',
3582
- medium: 'icon-lab',
3583
- large: 'icon-lab',
3584
- xlarge: 'icon-lab'
3585
- }
3586
- },
3587
- stopwatch: {
3588
- newIcon: {
3589
- name: 'stopwatch',
3590
- type: 'core',
3591
- library: 'icon'
3592
- },
3593
- sizeGuidance: {
3594
- small: 'swap',
3595
- medium: 'swap',
3596
- large: 'icon-tile',
3597
- xlarge: 'icon-tile'
3598
- }
3599
- },
3600
- subtask: {
3601
- newIcon: {
3602
- name: 'subtasks',
3603
- type: 'core',
3604
- library: 'icon'
3605
- },
3606
- sizeGuidance: {
3607
- small: 'swap-visual-change',
3608
- medium: 'swap-visual-change',
3609
- large: 'icon-tile',
3610
- xlarge: 'icon-tile'
3611
- }
3612
- },
3613
- suitcase: {
3614
- newIcon: {
3615
- name: 'briefcase',
3616
- type: 'core',
3617
- library: 'icon'
3618
- },
3619
- sizeGuidance: {
3620
- small: 'swap',
3621
- medium: 'swap',
3622
- large: 'icon-tile',
3623
- xlarge: 'icon-tile'
3624
- }
3625
- },
3626
- switcher: {
3627
- newIcon: {
3628
- name: 'app-switcher',
3629
- type: 'core',
3630
- library: 'icon'
3631
- },
3632
- sizeGuidance: {
3633
- small: 'swap-visual-change',
3634
- medium: 'swap-visual-change',
3635
- large: 'not-recommended',
3636
- xlarge: 'not-recommended'
3637
- }
3638
- },
3639
- table: {
3640
- newIcon: {
3641
- name: 'grid',
3642
- type: 'core',
3643
- library: 'icon'
3644
- },
3645
- sizeGuidance: {
3646
- small: 'swap-visual-change',
3647
- medium: 'swap-visual-change',
3648
- large: 'not-recommended',
3649
- xlarge: 'not-recommended'
3650
- }
3651
- },
3652
- task: {
3653
- newIcon: {
3654
- name: 'task',
3655
- type: 'core',
3656
- library: 'icon'
3657
- },
3658
- sizeGuidance: {
3659
- small: 'swap',
3660
- medium: 'swap',
3661
- large: 'icon-tile',
3662
- xlarge: 'icon-tile'
3663
- }
3664
- },
3665
- teams: {
3666
- newIcon: {
3667
- name: 'teams',
3668
- type: 'core',
3669
- library: 'icon'
3670
- },
3671
- sizeGuidance: {
3672
- small: 'swap',
3673
- medium: 'swap',
3674
- large: 'icon-tile',
3675
- xlarge: 'icon-tile'
3676
- }
3677
- },
3678
- trash: {
3679
- newIcon: {
3680
- name: 'delete',
3681
- type: 'core',
3682
- library: 'icon'
3683
- },
3684
- sizeGuidance: {
3685
- small: 'swap-visual-change',
3686
- medium: 'swap-visual-change',
3687
- large: 'icon-tile',
3688
- xlarge: 'icon-tile'
3689
- }
3690
- },
3691
- tray: {
3692
- newIcon: {
3693
- name: 'inbox',
3694
- type: 'core',
3695
- library: 'icon'
3696
- },
3697
- sizeGuidance: {
3698
- small: 'swap-visual-change',
3699
- medium: 'swap-visual-change',
3700
- large: 'icon-tile',
3701
- xlarge: 'icon-tile'
3702
- }
3703
- },
3704
- undo: {
3705
- newIcon: {
3706
- name: 'undo',
3707
- type: 'core',
3708
- library: 'icon'
3709
- },
3710
- sizeGuidance: {
3711
- small: 'swap-visual-change',
3712
- medium: 'swap-visual-change',
3713
- large: 'icon-tile',
3714
- xlarge: 'icon-tile'
3715
- }
3716
- },
3717
- unlink: {
3718
- newIcon: {
3719
- name: 'link-broken',
3720
- type: 'core',
3721
- library: 'icon'
3722
- },
3723
- sizeGuidance: {
3724
- small: 'swap',
3725
- medium: 'swap',
3726
- large: 'icon-tile',
3727
- xlarge: 'icon-tile'
3728
- }
3729
- },
3730
- 'unlock-circle': {
3731
- newIcon: {
3732
- name: 'lock-locked',
3733
- type: 'core',
3734
- library: 'icon'
3735
- },
3736
- sizeGuidance: {
3737
- small: '16-icon-tile',
3738
- medium: '24-icon-tile',
3739
- large: '32-icon-tile',
3740
- xlarge: '48-icon-tile'
3741
- }
3742
- },
3743
- 'unlock-filled': {
3744
- newIcon: {
3745
- name: 'lock-unlocked',
3746
- type: 'core',
3747
- library: 'icon'
3748
- },
3749
- sizeGuidance: {
3750
- small: 'swap-size-shift-utility',
3751
- medium: 'swap-size-shift-utility',
3752
- large: 'icon-lab',
3753
- xlarge: 'icon-lab'
3754
- }
3755
- },
3756
- unlock: {
3757
- newIcon: {
3758
- name: 'lock-unlocked',
3759
- type: 'core',
3760
- library: 'icon'
3761
- },
3762
- sizeGuidance: {
3763
- small: 'swap-slight-visual-change',
3764
- medium: 'swap-slight-visual-change',
3765
- large: 'icon-tile',
3766
- xlarge: 'icon-tile'
3767
- }
3768
- },
3769
- upload: {
3770
- newIcon: {
3771
- name: 'cloud-arrow-up',
3772
- type: 'core',
3773
- library: 'icon'
3774
- },
3775
- sizeGuidance: {
3776
- small: 'swap',
3777
- medium: 'swap',
3778
- large: 'icon-tile',
3779
- xlarge: 'icon-tile'
3780
- }
3781
- },
3782
- 'user-avatar-circle': {
3783
- newIcon: {
3784
- name: 'person-avatar',
3785
- type: 'core',
3786
- library: 'icon'
3787
- },
3788
- sizeGuidance: {
3789
- small: 'swap-visual-change',
3790
- medium: 'swap-visual-change',
3791
- large: 'icon-tile',
3792
- xlarge: 'icon-tile'
3793
- }
3794
- },
3795
- 'vid-audio-muted': {
3796
- sizeGuidance: {
3797
- small: 'icon-lab',
3798
- medium: 'icon-lab',
3799
- large: 'icon-lab',
3800
- xlarge: 'icon-lab'
3801
- }
3802
- },
3803
- 'vid-audio-on': {
3804
- newIcon: {
3805
- name: 'audio',
3806
- type: 'core',
3807
- library: 'icon'
3808
- },
3809
- sizeGuidance: {
3810
- small: 'swap-visual-change',
3811
- medium: 'swap-visual-change',
3812
- large: 'icon-tile',
3813
- xlarge: 'icon-tile'
3814
- }
3815
- },
3816
- 'vid-backward': {
3817
- sizeGuidance: {
3818
- small: 'icon-lab',
3819
- medium: 'icon-lab',
3820
- large: 'icon-lab',
3821
- xlarge: 'icon-lab'
3822
- }
3823
- },
3824
- 'vid-camera-off': {
3825
- sizeGuidance: {
3826
- small: 'icon-lab',
3827
- medium: 'icon-lab',
3828
- large: 'icon-lab',
3829
- xlarge: 'icon-lab'
3830
- }
3831
- },
3832
- 'vid-camera-on': {
3833
- newIcon: {
3834
- name: 'video',
3835
- type: 'core',
3836
- library: 'icon'
3837
- },
3838
- sizeGuidance: {
3839
- small: 'swap-visual-change',
3840
- medium: 'swap-visual-change',
3841
- large: 'icon-tile',
3842
- xlarge: 'icon-tile'
3843
- }
3844
- },
3845
- 'vid-connection-circle': {
3846
- sizeGuidance: {
3847
- small: 'icon-lab',
3848
- medium: 'icon-lab',
3849
- large: 'icon-lab',
3850
- xlarge: 'icon-lab'
3851
- }
3852
- },
3853
- 'video-circle': {
3854
- newIcon: {
3855
- name: 'video',
3856
- type: 'core',
3857
- library: 'icon'
3858
- },
3859
- sizeGuidance: {
3860
- small: '16-icon-tile',
3861
- medium: '24-icon-tile',
3862
- large: '32-icon-tile',
3863
- xlarge: '48-icon-tile'
3864
- }
3865
- },
3866
- 'video-filled': {
3867
- newIcon: {
3868
- name: 'video',
3869
- type: 'core',
3870
- library: 'icon'
3871
- },
3872
- sizeGuidance: {
3873
- small: 'swap-visual-change',
3874
- medium: 'swap-visual-change',
3875
- large: 'icon-tile',
3876
- xlarge: 'icon-tile'
3877
- }
3878
- },
3879
- 'vid-forward': {
3880
- sizeGuidance: {
3881
- small: 'icon-lab',
3882
- medium: 'icon-lab',
3883
- large: 'icon-lab',
3884
- xlarge: 'icon-lab'
3885
- }
3886
- },
3887
- 'vid-full-screen-off': {
3888
- newIcon: {
3889
- name: 'fullscreen-exit',
3890
- type: 'core',
3891
- library: 'icon'
3892
- },
3893
- sizeGuidance: {
3894
- small: 'swap-visual-change',
3895
- medium: 'swap-visual-change',
3896
- large: 'icon-tile',
3897
- xlarge: 'icon-tile'
3898
- }
3899
- },
3900
- 'vid-full-screen-on': {
3901
- newIcon: {
3902
- name: 'fullscreen-enter',
3903
- type: 'core',
3904
- library: 'icon'
3905
- },
3906
- sizeGuidance: {
3907
- small: 'swap',
3908
- medium: 'swap',
3909
- large: 'icon-tile',
3910
- xlarge: 'icon-tile'
3911
- }
3912
- },
3913
- 'vid-hang-up': {
3914
- sizeGuidance: {
3915
- small: 'icon-lab',
3916
- medium: 'icon-lab',
3917
- large: 'icon-lab',
3918
- xlarge: 'icon-lab'
3919
- }
3920
- },
3921
- 'vid-hd-circle': {
3922
- sizeGuidance: {
3923
- small: 'icon-lab',
3924
- medium: 'icon-lab',
3925
- large: 'icon-lab',
3926
- xlarge: 'icon-lab'
3927
- }
3928
- },
3929
- 'vid-pause': {
3930
- newIcon: {
3931
- name: 'video-pause',
3932
- type: 'core',
3933
- library: 'icon'
3934
- },
3935
- sizeGuidance: {
3936
- small: 'swap-visual-change',
3937
- medium: 'swap-visual-change',
3938
- large: 'icon-tile',
3939
- xlarge: 'icon-tile'
3940
- }
3941
- },
3942
- 'vid-play': {
3943
- newIcon: {
3944
- name: 'video-play',
3945
- type: 'core',
3946
- library: 'icon'
3947
- },
3948
- sizeGuidance: {
3949
- small: 'swap-visual-change',
3950
- medium: 'swap-visual-change',
3951
- large: 'icon-tile',
3952
- xlarge: 'icon-tile'
3953
- }
3954
- },
3955
- 'vid-raised-hand': {
3956
- sizeGuidance: {
3957
- small: 'icon-lab',
3958
- medium: 'icon-lab',
3959
- large: 'icon-lab',
3960
- xlarge: 'icon-lab'
3961
- }
3962
- },
3963
- 'vid-share-screen': {
3964
- sizeGuidance: {
3965
- small: 'icon-lab',
3966
- medium: 'icon-lab',
3967
- large: 'icon-lab',
3968
- xlarge: 'icon-lab'
3969
- }
3970
- },
3971
- 'vid-speaking-circle': {
3972
- sizeGuidance: {
3973
- small: 'icon-lab',
3974
- medium: 'icon-lab',
3975
- large: 'icon-lab',
3976
- xlarge: 'icon-lab'
3977
- }
3978
- },
3979
- 'vid-volume-full': {
3980
- newIcon: {
3981
- name: 'volume-high',
3982
- type: 'core',
3983
- library: 'icon'
3984
- },
3985
- sizeGuidance: {
3986
- small: 'swap-visual-change',
3987
- medium: 'swap-visual-change',
3988
- large: 'icon-tile',
3989
- xlarge: 'icon-tile'
3990
- }
3991
- },
3992
- 'vid-volume-half': {
3993
- newIcon: {
3994
- name: 'volume-low',
3995
- type: 'core',
3996
- library: 'icon'
3997
- },
3998
- sizeGuidance: {
3999
- small: 'swap-slight-visual-change',
4000
- medium: 'swap-slight-visual-change',
4001
- large: 'icon-tile',
4002
- xlarge: 'icon-tile'
4003
- }
4004
- },
4005
- 'vid-volume-muted': {
4006
- newIcon: {
4007
- name: 'volume-muted',
4008
- type: 'core',
4009
- library: 'icon'
4010
- },
4011
- sizeGuidance: {
4012
- small: 'swap-slight-visual-change',
4013
- medium: 'swap-slight-visual-change',
4014
- large: 'icon-tile',
4015
- xlarge: 'icon-tile'
4016
- }
4017
- },
4018
- warning: {
4019
- newIcon: {
4020
- name: 'warning',
4021
- type: 'core',
4022
- library: 'icon'
4023
- },
4024
- sizeGuidance: {
4025
- small: 'swap-visual-change',
4026
- medium: 'swap-visual-change',
4027
- large: 'icon-tile',
4028
- xlarge: 'icon-tile'
4029
- }
4030
- },
4031
- 'watch-filled': {
4032
- newIcon: {
4033
- name: 'eye-open-filled',
4034
- type: 'core',
4035
- library: 'icon'
4036
- },
4037
- sizeGuidance: {
4038
- small: 'swap',
4039
- medium: 'swap',
4040
- large: 'icon-tile',
4041
- xlarge: 'icon-tile'
4042
- }
4043
- },
4044
- watch: {
4045
- newIcon: {
4046
- name: 'eye-open',
4047
- type: 'core',
4048
- library: 'icon'
4049
- },
4050
- sizeGuidance: {
4051
- small: 'swap',
4052
- medium: 'swap',
4053
- large: 'icon-tile',
4054
- xlarge: 'icon-tile'
4055
- }
4056
- },
4057
- world: {
4058
- newIcon: {
4059
- name: 'globe',
4060
- type: 'core',
4061
- library: 'icon'
4062
- },
4063
- sizeGuidance: {
4064
- small: 'swap-visual-change',
4065
- medium: 'swap-visual-change',
4066
- large: 'icon-tile',
4067
- xlarge: 'icon-tile'
4068
- }
4069
- },
4070
- 'world-small': {
4071
- newIcon: {
4072
- name: 'globe',
4073
- type: 'core',
4074
- library: 'icon'
4075
- },
4076
- sizeGuidance: {
4077
- small: 'swap-visual-change',
4078
- medium: 'swap-visual-change',
4079
- large: 'icon-tile',
4080
- xlarge: 'icon-tile'
4081
- }
4082
- }
4083
- };
4084
- export default migrationMap;