@atlaskit/eslint-plugin-design-system 10.8.1 → 10.8.2

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