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

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