@3t-transform/threeteeui 0.0.6 → 0.0.7

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 (101) hide show
  1. package/dist/cjs/{index-8a7479e4.js → index-253ca97c.js} +239 -415
  2. package/dist/cjs/loader.cjs.js +4 -3
  3. package/dist/cjs/tttx-button.cjs.entry.js +28 -0
  4. package/dist/cjs/tttx-checkbox.cjs.entry.js +28 -0
  5. package/dist/cjs/tttx-form.cjs.entry.js +58 -0
  6. package/dist/cjs/tttx-single-input.cjs.entry.js +44 -0
  7. package/dist/cjs/tttx-text-box.cjs.entry.js +38 -0
  8. package/dist/cjs/tttx.cjs.js +7 -3
  9. package/dist/collection/collection-manifest.json +7 -5
  10. package/dist/collection/components/atoms/tttx-button/tttx-button.css +61 -0
  11. package/dist/collection/components/atoms/tttx-button/tttx-button.js +93 -0
  12. package/dist/collection/components/atoms/tttx-button/tttx-button.stories.js +30 -0
  13. package/dist/collection/components/atoms/tttx-single-input/tttx-single-input.css +142 -0
  14. package/dist/collection/components/atoms/tttx-single-input/tttx-single-input.js +259 -0
  15. package/dist/collection/components/atoms/tttx-single-input/tttx-single-input.stories.js +92 -0
  16. package/dist/collection/components/atoms/tttx-text-box/tttx-text-box.css +142 -0
  17. package/dist/collection/components/atoms/tttx-text-box/tttx-text-box.js +150 -0
  18. package/dist/collection/components/atoms/tttx-text-box/tttx-text-box.stories.js +17 -0
  19. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.css +138 -0
  20. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.js +101 -0
  21. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.stories.js +13 -0
  22. package/dist/collection/components/molecules/tttx-form/tttx-form.js +109 -0
  23. package/dist/collection/components/molecules/tttx-form/tttx-form.stories.js +37 -0
  24. package/dist/collection/icons.js +2838 -0
  25. package/dist/components/index.d.ts +14 -3
  26. package/dist/components/index.js +6 -4
  27. package/dist/components/{tttx-page.d.ts → tttx-button.d.ts} +4 -4
  28. package/dist/components/tttx-button.js +45 -0
  29. package/dist/components/{tttx-worksheet.d.ts → tttx-checkbox.d.ts} +4 -4
  30. package/dist/components/tttx-checkbox.js +46 -0
  31. package/dist/components/{tttx-icon.d.ts → tttx-form.d.ts} +4 -4
  32. package/dist/components/tttx-form.js +75 -0
  33. package/dist/components/tttx-single-input.d.ts +11 -0
  34. package/dist/components/tttx-single-input.js +71 -0
  35. package/dist/components/tttx-text-box.d.ts +11 -0
  36. package/dist/components/tttx-text-box.js +59 -0
  37. package/dist/esm/{index-854ff56f.js → index-fcca6c58.js} +237 -416
  38. package/dist/esm/loader.js +4 -3
  39. package/dist/esm/polyfills/css-shim.js +1 -1
  40. package/dist/esm/tttx-button.entry.js +24 -0
  41. package/dist/esm/tttx-checkbox.entry.js +24 -0
  42. package/dist/esm/tttx-form.entry.js +54 -0
  43. package/dist/esm/tttx-single-input.entry.js +40 -0
  44. package/dist/esm/tttx-text-box.entry.js +34 -0
  45. package/dist/esm/tttx.js +4 -3
  46. package/dist/tttx/p-05d7d002.entry.js +1 -0
  47. package/dist/tttx/p-40709c59.entry.js +1 -0
  48. package/dist/tttx/p-64703252.entry.js +1 -0
  49. package/dist/tttx/p-8d1f2e5c.entry.js +1 -0
  50. package/dist/tttx/p-9bf836ed.entry.js +1 -0
  51. package/dist/tttx/p-a7b95fd2.js +2 -0
  52. package/dist/tttx/tttx.esm.js +1 -1
  53. package/dist/types/components/atoms/tttx-button/tttx-button.d.ts +9 -0
  54. package/dist/types/components/atoms/tttx-button/tttx-button.stories.d.ts +20 -0
  55. package/dist/types/components/atoms/tttx-single-input/tttx-single-input.d.ts +20 -0
  56. package/dist/types/components/atoms/tttx-single-input/tttx-single-input.stories.d.ts +27 -0
  57. package/dist/types/components/atoms/tttx-text-box/tttx-text-box.d.ts +14 -0
  58. package/dist/types/components/atoms/tttx-text-box/tttx-text-box.stories.d.ts +6 -0
  59. package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.d.ts +9 -0
  60. package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.stories.d.ts +6 -0
  61. package/dist/types/components/molecules/tttx-form/tttx-form.d.ts +11 -0
  62. package/dist/types/components/molecules/tttx-form/tttx-form.stories.d.ts +6 -0
  63. package/dist/types/components.d.ts +128 -51
  64. package/dist/types/icons.d.ts +2 -0
  65. package/dist/types/stencil-public-runtime.d.ts +59 -3
  66. package/loader/index.d.ts +9 -0
  67. package/package.json +58 -59
  68. package/readme.md +1 -6
  69. package/dist/cjs/toolbar-656be6e6.js +0 -34259
  70. package/dist/cjs/tttx-icon.cjs.entry.js +0 -21
  71. package/dist/cjs/tttx-page.cjs.entry.js +0 -927
  72. package/dist/cjs/tttx-worksheet.cjs.entry.js +0 -47
  73. package/dist/collection/components/components/tttx-icon/tttx-icon.css +0 -89
  74. package/dist/collection/components/components/tttx-icon/tttx-icon.js +0 -59
  75. package/dist/collection/components/components/tttx-icon/tttx-icon.stories.js +0 -40
  76. package/dist/collection/components/patterns/tttx-page/tttx-page.css +0 -162
  77. package/dist/collection/components/patterns/tttx-page/tttx-page.js +0 -213
  78. package/dist/collection/components/patterns/tttx-page/tttx-page.stories.js +0 -80
  79. package/dist/collection/components/patterns/tttx-worksheet/tttx-worksheet.css +0 -134
  80. package/dist/collection/components/patterns/tttx-worksheet/tttx-worksheet.js +0 -70
  81. package/dist/collection/components/patterns/tttx-worksheet/tttx-worksheet.stories.js +0 -44
  82. package/dist/components/tttx-icon.js +0 -37
  83. package/dist/components/tttx-page.js +0 -953
  84. package/dist/components/tttx-worksheet.js +0 -6
  85. package/dist/components/tttx-worksheet2.js +0 -34288
  86. package/dist/esm/toolbar-cede4385.js +0 -34231
  87. package/dist/esm/tttx-icon.entry.js +0 -17
  88. package/dist/esm/tttx-page.entry.js +0 -923
  89. package/dist/esm/tttx-worksheet.entry.js +0 -43
  90. package/dist/tttx/p-4b57de2e.entry.js +0 -1
  91. package/dist/tttx/p-61f78304.entry.js +0 -1
  92. package/dist/tttx/p-7244abd4.entry.js +0 -1
  93. package/dist/tttx/p-d038fe18.js +0 -1
  94. package/dist/tttx/p-ddfeb0ba.js +0 -2
  95. package/dist/tttx/tttx.css +0 -1
  96. package/dist/types/components/components/tttx-icon/tttx-icon.d.ts +0 -5
  97. package/dist/types/components/components/tttx-icon/tttx-icon.stories.d.ts +0 -24
  98. package/dist/types/components/patterns/tttx-page/tttx-page.d.ts +0 -21
  99. package/dist/types/components/patterns/tttx-page/tttx-page.stories.d.ts +0 -48
  100. package/dist/types/components/patterns/tttx-worksheet/tttx-worksheet.d.ts +0 -9
  101. package/dist/types/components/patterns/tttx-worksheet/tttx-worksheet.stories.d.ts +0 -23
@@ -0,0 +1,2838 @@
1
+ const icons = [
2
+ '',
3
+ '10k',
4
+ '10mp',
5
+ '11mp',
6
+ '123',
7
+ '12mp',
8
+ '13mp',
9
+ '14mp',
10
+ '15mp',
11
+ '16mp',
12
+ '17mp',
13
+ '18_up_rating',
14
+ '18mp',
15
+ '19mp',
16
+ '1k',
17
+ '1k_plus',
18
+ '1x_mobiledata',
19
+ '1x_mobiledata_badge',
20
+ '20mp',
21
+ '21mp',
22
+ '22mp',
23
+ '23mp',
24
+ '24mp',
25
+ '2k',
26
+ '2k_plus',
27
+ '2mp',
28
+ '30fps',
29
+ '30fps_select',
30
+ '360',
31
+ '3d_rotation',
32
+ '3g_mobiledata',
33
+ '3g_mobiledata_badge',
34
+ '3k',
35
+ '3k_plus',
36
+ '3mp',
37
+ '3p',
38
+ '4g_mobiledata',
39
+ '4g_mobiledata_badge',
40
+ '4g_plus_mobiledata',
41
+ '4k',
42
+ '4k_plus',
43
+ '4mp',
44
+ '50mp',
45
+ '5g',
46
+ '5g_mobiledata_badge',
47
+ '5k',
48
+ '5k_plus',
49
+ '5mp',
50
+ '60fps',
51
+ '60fps_select',
52
+ '6_ft_apart',
53
+ '6k',
54
+ '6k_plus',
55
+ '6mp',
56
+ '7k',
57
+ '7k_plus',
58
+ '7mp',
59
+ '8k',
60
+ '8k_plus',
61
+ '8mp',
62
+ '9k',
63
+ '9k_plus',
64
+ '9mp',
65
+ 'abc',
66
+ 'ac_unit',
67
+ 'accessibility',
68
+ 'accessibility_new',
69
+ 'accessible',
70
+ 'accessible_forward',
71
+ 'account_balance',
72
+ 'account_balance_wallet',
73
+ 'account_box',
74
+ 'account_circle',
75
+ 'account_circle_off',
76
+ 'account_tree',
77
+ 'activity_zone',
78
+ 'acute',
79
+ 'ad_off',
80
+ 'ad_units',
81
+ 'adb',
82
+ 'add',
83
+ 'add_a_photo',
84
+ 'add_alert',
85
+ 'add_box',
86
+ 'add_business',
87
+ 'add_call',
88
+ 'add_card',
89
+ 'add_chart',
90
+ 'add_circle',
91
+ 'add_comment',
92
+ 'add_home',
93
+ 'add_home_work',
94
+ 'add_link',
95
+ 'add_location',
96
+ 'add_location_alt',
97
+ 'add_moderator',
98
+ 'add_notes',
99
+ 'add_photo_alternate',
100
+ 'add_reaction',
101
+ 'add_road',
102
+ 'add_shopping_cart',
103
+ 'add_task',
104
+ 'add_to_drive',
105
+ 'add_to_home_screen',
106
+ 'add_to_photos',
107
+ 'add_to_queue',
108
+ 'adf_scanner',
109
+ 'adjust',
110
+ 'admin_meds',
111
+ 'admin_panel_settings',
112
+ 'ads_click',
113
+ 'agender',
114
+ 'agriculture',
115
+ 'air',
116
+ 'air_freshener',
117
+ 'air_purifier_gen',
118
+ 'airline_seat_flat',
119
+ 'airline_seat_flat_angled',
120
+ 'airline_seat_individual_suite',
121
+ 'airline_seat_legroom_extra',
122
+ 'airline_seat_legroom_normal',
123
+ 'airline_seat_legroom_reduced',
124
+ 'airline_seat_recline_extra',
125
+ 'airline_seat_recline_normal',
126
+ 'airline_stops',
127
+ 'airlines',
128
+ 'airplane_ticket',
129
+ 'airplanemode_active',
130
+ 'airplanemode_inactive',
131
+ 'airplay',
132
+ 'airport_shuttle',
133
+ 'airware',
134
+ 'airwave',
135
+ 'alarm',
136
+ 'alarm_add',
137
+ 'alarm_off',
138
+ 'alarm_on',
139
+ 'alarm_smart_wake',
140
+ 'album',
141
+ 'align_center',
142
+ 'align_end',
143
+ 'align_flex_center',
144
+ 'align_flex_end',
145
+ 'align_flex_start',
146
+ 'align_horizontal_center',
147
+ 'align_horizontal_left',
148
+ 'align_horizontal_right',
149
+ 'align_items_stretch',
150
+ 'align_justify_center',
151
+ 'align_justify_flex_end',
152
+ 'align_justify_flex_start',
153
+ 'align_justify_space_around',
154
+ 'align_justify_space_between',
155
+ 'align_justify_space_even',
156
+ 'align_justify_stretch',
157
+ 'align_self_stretch',
158
+ 'align_space_around',
159
+ 'align_space_between',
160
+ 'align_space_even',
161
+ 'align_start',
162
+ 'align_stretch',
163
+ 'align_vertical_bottom',
164
+ 'align_vertical_center',
165
+ 'align_vertical_top',
166
+ 'all_inbox',
167
+ 'all_inclusive',
168
+ 'all_match',
169
+ 'all_out',
170
+ 'allergies',
171
+ 'allergy',
172
+ 'alt_route',
173
+ 'alternate_email',
174
+ 'altitude',
175
+ 'ambient_screen',
176
+ 'ambulance',
177
+ 'amend',
178
+ 'amp_stories',
179
+ 'analytics',
180
+ 'anchor',
181
+ 'android',
182
+ 'animation',
183
+ 'aod',
184
+ 'aod_tablet',
185
+ 'aod_watch',
186
+ 'apartment',
187
+ 'api',
188
+ 'apk_document',
189
+ 'apk_install',
190
+ 'app_badging',
191
+ 'app_blocking',
192
+ 'app_registration',
193
+ 'app_shortcut',
194
+ 'approval',
195
+ 'approval_delegation',
196
+ 'apps',
197
+ 'apps_outage',
198
+ 'architecture',
199
+ 'archive',
200
+ 'area_chart',
201
+ 'arming_countdown',
202
+ 'arrow_back',
203
+ 'arrow_back_ios',
204
+ 'arrow_back_ios_new',
205
+ 'arrow_circle_down',
206
+ 'arrow_circle_left',
207
+ 'arrow_circle_right',
208
+ 'arrow_circle_up',
209
+ 'arrow_downward',
210
+ 'arrow_drop_down',
211
+ 'arrow_drop_down_circle',
212
+ 'arrow_drop_up',
213
+ 'arrow_forward',
214
+ 'arrow_forward_ios',
215
+ 'arrow_insert',
216
+ 'arrow_left',
217
+ 'arrow_outward',
218
+ 'arrow_range',
219
+ 'arrow_right',
220
+ 'arrow_right_alt',
221
+ 'arrow_selector_tool',
222
+ 'arrow_top_left',
223
+ 'arrow_top_right',
224
+ 'arrow_upward',
225
+ 'arrows_more_down',
226
+ 'arrows_more_up',
227
+ 'arrows_outward',
228
+ 'art_track',
229
+ 'article',
230
+ 'aspect_ratio',
231
+ 'assignment',
232
+ 'assignment_add',
233
+ 'assignment_ind',
234
+ 'assignment_late',
235
+ 'assignment_return',
236
+ 'assignment_returned',
237
+ 'assignment_turned_in',
238
+ 'assist_walker',
239
+ 'assistant',
240
+ 'assistant_direction',
241
+ 'assistant_navigation',
242
+ 'assistant_on_hub',
243
+ 'assured_workload',
244
+ 'astrophotography_auto',
245
+ 'astrophotography_off',
246
+ 'atm',
247
+ 'atr',
248
+ 'attach_email',
249
+ 'attach_file',
250
+ 'attach_file_add',
251
+ 'attach_money',
252
+ 'attachment',
253
+ 'attractions',
254
+ 'attribution',
255
+ 'audio_file',
256
+ 'auto_activity_zone',
257
+ 'auto_awesome',
258
+ 'auto_awesome_mosaic',
259
+ 'auto_awesome_motion',
260
+ 'auto_delete',
261
+ 'auto_detect_voice',
262
+ 'auto_fix',
263
+ 'auto_fix_high',
264
+ 'auto_fix_normal',
265
+ 'auto_fix_off',
266
+ 'auto_graph',
267
+ 'auto_label',
268
+ 'auto_meeting_room',
269
+ 'auto_mode',
270
+ 'auto_read_pause',
271
+ 'auto_read_play',
272
+ 'auto_schedule',
273
+ 'auto_stories',
274
+ 'auto_videocam',
275
+ 'autofps_select',
276
+ 'autopause',
277
+ 'autopay',
278
+ 'autoplay',
279
+ 'autorenew',
280
+ 'av_timer',
281
+ 'avg_pace',
282
+ 'avg_time',
283
+ 'azm',
284
+ 'baby_changing_station',
285
+ 'back_hand',
286
+ 'back_to_tab',
287
+ 'background_blur_full',
288
+ 'background_blur_light',
289
+ 'background_dot_large',
290
+ 'background_grid_small',
291
+ 'background_replace',
292
+ 'backlight_high',
293
+ 'backlight_low',
294
+ 'backpack',
295
+ 'backspace',
296
+ 'backup',
297
+ 'backup_table',
298
+ 'badge',
299
+ 'badge_critical_battery',
300
+ 'bakery_dining',
301
+ 'balance',
302
+ 'balcony',
303
+ 'ballot',
304
+ 'bar_chart',
305
+ 'barcode',
306
+ 'barcode_reader',
307
+ 'barcode_scanner',
308
+ 'barefoot',
309
+ 'batch_prediction',
310
+ 'bath_outdoor',
311
+ 'bath_private',
312
+ 'bath_public_large',
313
+ 'bathroom',
314
+ 'bathtub',
315
+ 'battery_0_bar',
316
+ 'battery_1_bar',
317
+ 'battery_20',
318
+ 'battery_2_bar',
319
+ 'battery_30',
320
+ 'battery_3_bar',
321
+ 'battery_4_bar',
322
+ 'battery_50',
323
+ 'battery_5_bar',
324
+ 'battery_60',
325
+ 'battery_6_bar',
326
+ 'battery_80',
327
+ 'battery_90',
328
+ 'battery_alert',
329
+ 'battery_change',
330
+ 'battery_charging_20',
331
+ 'battery_charging_30',
332
+ 'battery_charging_50',
333
+ 'battery_charging_60',
334
+ 'battery_charging_80',
335
+ 'battery_charging_90',
336
+ 'battery_charging_full',
337
+ 'battery_error',
338
+ 'battery_full',
339
+ 'battery_full_alt',
340
+ 'battery_horiz_000',
341
+ 'battery_horiz_050',
342
+ 'battery_horiz_075',
343
+ 'battery_low',
344
+ 'battery_plus',
345
+ 'battery_profile',
346
+ 'battery_saver',
347
+ 'battery_unknown',
348
+ 'battery_vert_005',
349
+ 'battery_vert_020',
350
+ 'battery_vert_050',
351
+ 'battery_very_low',
352
+ 'beach_access',
353
+ 'bed',
354
+ 'bedroom_baby',
355
+ 'bedroom_child',
356
+ 'bedroom_parent',
357
+ 'bedtime',
358
+ 'bedtime_off',
359
+ 'beenhere',
360
+ 'bento',
361
+ 'bia',
362
+ 'bike_scooter',
363
+ 'biotech',
364
+ 'blanket',
365
+ 'blender',
366
+ 'blind',
367
+ 'blinds',
368
+ 'blinds_closed',
369
+ 'block',
370
+ 'blood_pressure',
371
+ 'bloodtype',
372
+ 'bluetooth',
373
+ 'bluetooth_connected',
374
+ 'bluetooth_disabled',
375
+ 'bluetooth_drive',
376
+ 'bluetooth_searching',
377
+ 'blur_circular',
378
+ 'blur_linear',
379
+ 'blur_medium',
380
+ 'blur_off',
381
+ 'blur_on',
382
+ 'blur_short',
383
+ 'body_fat',
384
+ 'body_system',
385
+ 'bolt',
386
+ 'book',
387
+ 'book_online',
388
+ 'bookmark',
389
+ 'bookmark_add',
390
+ 'bookmark_added',
391
+ 'bookmark_manager',
392
+ 'bookmark_remove',
393
+ 'bookmarks',
394
+ 'border_all',
395
+ 'border_bottom',
396
+ 'border_clear',
397
+ 'border_color',
398
+ 'border_horizontal',
399
+ 'border_inner',
400
+ 'border_left',
401
+ 'border_outer',
402
+ 'border_right',
403
+ 'border_style',
404
+ 'border_top',
405
+ 'border_vertical',
406
+ 'bottom_panel_close',
407
+ 'bottom_panel_open',
408
+ 'boy',
409
+ 'branding_watermark',
410
+ 'breakfast_dining',
411
+ 'breaking_news_alt_1',
412
+ 'breastfeeding',
413
+ 'brightness_1',
414
+ 'brightness_2',
415
+ 'brightness_3',
416
+ 'brightness_4',
417
+ 'brightness_5',
418
+ 'brightness_6',
419
+ 'brightness_7',
420
+ 'brightness_auto',
421
+ 'brightness_empty',
422
+ 'brightness_high',
423
+ 'brightness_low',
424
+ 'brightness_medium',
425
+ 'bring_your_own_ip',
426
+ 'broadcast_on_home',
427
+ 'broadcast_on_personal',
428
+ 'broken_image',
429
+ 'browse_activity',
430
+ 'browse_gallery',
431
+ 'browser_updated',
432
+ 'brunch_dining',
433
+ 'brush',
434
+ 'bubble_chart',
435
+ 'bug_report',
436
+ 'build',
437
+ 'build_circle',
438
+ 'bungalow',
439
+ 'burst_mode',
440
+ 'bus_alert',
441
+ 'business_center',
442
+ 'business_chip',
443
+ 'cabin',
444
+ 'cable',
445
+ 'cached',
446
+ 'cake',
447
+ 'cake_add',
448
+ 'calculate',
449
+ 'calendar_add_on',
450
+ 'calendar_apps_script',
451
+ 'calendar_month',
452
+ 'calendar_today',
453
+ 'calendar_view_day',
454
+ 'calendar_view_month',
455
+ 'calendar_view_week',
456
+ 'call',
457
+ 'call_end',
458
+ 'call_made',
459
+ 'call_merge',
460
+ 'call_missed',
461
+ 'call_missed_outgoing',
462
+ 'call_received',
463
+ 'call_split',
464
+ 'call_to_action',
465
+ 'camera',
466
+ 'camera_enhance',
467
+ 'camera_front',
468
+ 'camera_indoor',
469
+ 'camera_outdoor',
470
+ 'camera_rear',
471
+ 'camera_roll',
472
+ 'camera_video',
473
+ 'cameraswitch',
474
+ 'campaign',
475
+ 'camping',
476
+ 'cancel',
477
+ 'cancel_presentation',
478
+ 'cancel_schedule_send',
479
+ 'candlestick_chart',
480
+ 'captive_portal',
481
+ 'capture',
482
+ 'car_crash',
483
+ 'car_rental',
484
+ 'car_repair',
485
+ 'card_membership',
486
+ 'card_travel',
487
+ 'cardiology',
488
+ 'carpenter',
489
+ 'cases',
490
+ 'casino',
491
+ 'cast',
492
+ 'cast_connected',
493
+ 'cast_for_education',
494
+ 'castle',
495
+ 'category',
496
+ 'celebration',
497
+ 'cell_merge',
498
+ 'cell_tower',
499
+ 'cell_wifi',
500
+ 'center_focus_strong',
501
+ 'center_focus_weak',
502
+ 'chair',
503
+ 'chair_alt',
504
+ 'chalet',
505
+ 'change_circle',
506
+ 'change_history',
507
+ 'charger',
508
+ 'charging_station',
509
+ 'chart_data',
510
+ 'chat',
511
+ 'chat_add_on',
512
+ 'chat_apps_script',
513
+ 'chat_bubble',
514
+ 'chat_error',
515
+ 'chat_paste_go',
516
+ 'check',
517
+ 'check_box',
518
+ 'check_box_outline_blank',
519
+ 'check_circle',
520
+ 'check_in_out',
521
+ 'check_indeterminate_small',
522
+ 'check_small',
523
+ 'checklist',
524
+ 'checklist_rtl',
525
+ 'checkroom',
526
+ 'cheer',
527
+ 'chevron_left',
528
+ 'chevron_right',
529
+ 'child_care',
530
+ 'child_friendly',
531
+ 'chip_extraction',
532
+ 'chrome_maximize',
533
+ 'chrome_minimize',
534
+ 'chrome_reader_mode',
535
+ 'chrome_restore',
536
+ 'chrome_tote',
537
+ 'chromecast_2',
538
+ 'chromecast_device',
539
+ 'chronic',
540
+ 'church',
541
+ 'cinematic_blur',
542
+ 'circle',
543
+ 'circle_notifications',
544
+ 'clarify',
545
+ 'clean_hands',
546
+ 'cleaning_bucket',
547
+ 'cleaning_services',
548
+ 'clear_all',
549
+ 'clear_day',
550
+ 'clear_night',
551
+ 'climate_mini_split',
552
+ 'clinical_notes',
553
+ 'clock_loader_10',
554
+ 'clock_loader_20',
555
+ 'clock_loader_40',
556
+ 'clock_loader_60',
557
+ 'clock_loader_80',
558
+ 'clock_loader_90',
559
+ 'close',
560
+ 'close_fullscreen',
561
+ 'closed_caption',
562
+ 'closed_caption_disabled',
563
+ 'cloud',
564
+ 'cloud_circle',
565
+ 'cloud_done',
566
+ 'cloud_download',
567
+ 'cloud_off',
568
+ 'cloud_queue',
569
+ 'cloud_sync',
570
+ 'cloud_upload',
571
+ 'cloudy',
572
+ 'cloudy_filled',
573
+ 'cloudy_snowing',
574
+ 'co2',
575
+ 'co_present',
576
+ 'code',
577
+ 'code_blocks',
578
+ 'code_off',
579
+ 'coffee',
580
+ 'coffee_maker',
581
+ 'cognition',
582
+ 'collections_bookmark',
583
+ 'colorize',
584
+ 'comment',
585
+ 'comment_bank',
586
+ 'comments_disabled',
587
+ 'commit',
588
+ 'communication',
589
+ 'commute',
590
+ 'compare',
591
+ 'compare_arrows',
592
+ 'compass_calibration',
593
+ 'component_exchange',
594
+ 'compost',
595
+ 'compress',
596
+ 'computer',
597
+ 'conditions',
598
+ 'confirmation_number',
599
+ 'congenital',
600
+ 'connect_without_contact',
601
+ 'connected_tv',
602
+ 'connecting_airports',
603
+ 'construction',
604
+ 'contact_emergency',
605
+ 'contact_mail',
606
+ 'contact_page',
607
+ 'contact_phone',
608
+ 'contact_support',
609
+ 'contactless',
610
+ 'contactless_off',
611
+ 'contacts',
612
+ 'content_copy',
613
+ 'content_cut',
614
+ 'content_paste',
615
+ 'content_paste_go',
616
+ 'content_paste_off',
617
+ 'content_paste_search',
618
+ 'contrast',
619
+ 'contrast_rtl_off',
620
+ 'control_camera',
621
+ 'control_point_duplicate',
622
+ 'controller_gen',
623
+ 'conversion_path',
624
+ 'conversion_path_off',
625
+ 'conveyor_belt',
626
+ 'cookie',
627
+ 'cookie_off',
628
+ 'cooking',
629
+ 'cool_to_dry',
630
+ 'copy_all',
631
+ 'copyright',
632
+ 'coronavirus',
633
+ 'corporate_fare',
634
+ 'cottage',
635
+ 'counter_0',
636
+ 'counter_1',
637
+ 'counter_2',
638
+ 'counter_3',
639
+ 'counter_4',
640
+ 'counter_5',
641
+ 'counter_6',
642
+ 'counter_7',
643
+ 'counter_8',
644
+ 'counter_9',
645
+ 'countertops',
646
+ 'create_new_folder',
647
+ 'credit_card',
648
+ 'credit_card_off',
649
+ 'credit_score',
650
+ 'crib',
651
+ 'crisis_alert',
652
+ 'crop',
653
+ 'crop_16_9',
654
+ 'crop_3_2',
655
+ 'crop_5_4',
656
+ 'crop_7_5',
657
+ 'crop_free',
658
+ 'crop_landscape',
659
+ 'crop_portrait',
660
+ 'crop_rotate',
661
+ 'crop_square',
662
+ 'cruelty_free',
663
+ 'css',
664
+ 'currency_bitcoin',
665
+ 'currency_exchange',
666
+ 'currency_franc',
667
+ 'currency_lira',
668
+ 'currency_pound',
669
+ 'currency_ruble',
670
+ 'currency_rupee',
671
+ 'currency_yen',
672
+ 'currency_yuan',
673
+ 'curtains',
674
+ 'curtains_closed',
675
+ 'cut',
676
+ 'cycle',
677
+ 'cyclone',
678
+ 'dangerous',
679
+ 'dark_mode',
680
+ 'dashboard',
681
+ 'dashboard_customize',
682
+ 'data_alert',
683
+ 'data_array',
684
+ 'data_check',
685
+ 'data_exploration',
686
+ 'data_info_alert',
687
+ 'data_object',
688
+ 'data_saver_on',
689
+ 'data_thresholding',
690
+ 'data_usage',
691
+ 'database',
692
+ 'dataset',
693
+ 'dataset_linked',
694
+ 'date_range',
695
+ 'deblur',
696
+ 'deceased',
697
+ 'decimal_decrease',
698
+ 'decimal_increase',
699
+ 'deck',
700
+ 'dehaze',
701
+ 'delete',
702
+ 'delete_forever',
703
+ 'delete_sweep',
704
+ 'demography',
705
+ 'density_large',
706
+ 'density_medium',
707
+ 'density_small',
708
+ 'dentistry',
709
+ 'departure_board',
710
+ 'deployed_code',
711
+ 'dermatology',
712
+ 'description',
713
+ 'deselect',
714
+ 'design_services',
715
+ 'desk',
716
+ 'deskphone',
717
+ 'desktop_access_disabled',
718
+ 'desktop_mac',
719
+ 'desktop_windows',
720
+ 'details',
721
+ 'detection_and_zone',
722
+ 'detector',
723
+ 'detector_alarm',
724
+ 'detector_battery',
725
+ 'detector_co',
726
+ 'detector_offline',
727
+ 'detector_smoke',
728
+ 'detector_status',
729
+ 'developer_board',
730
+ 'developer_board_off',
731
+ 'developer_mode',
732
+ 'device_hub',
733
+ 'device_reset',
734
+ 'device_thermostat',
735
+ 'device_unknown',
736
+ 'devices',
737
+ 'devices_fold',
738
+ 'devices_off',
739
+ 'devices_other',
740
+ 'devices_wearables',
741
+ 'dew_point',
742
+ 'diagnosis',
743
+ 'dialer_sip',
744
+ 'dialpad',
745
+ 'diamond',
746
+ 'difference',
747
+ 'digital_out_of_home',
748
+ 'dining',
749
+ 'dinner_dining',
750
+ 'directions',
751
+ 'directions_alt',
752
+ 'directions_alt_off',
753
+ 'directions_bike',
754
+ 'directions_boat',
755
+ 'directions_bus',
756
+ 'directions_car',
757
+ 'directions_off',
758
+ 'directions_railway',
759
+ 'directions_run',
760
+ 'directions_subway',
761
+ 'directions_walk',
762
+ 'dirty_lens',
763
+ 'disabled_by_default',
764
+ 'disabled_visible',
765
+ 'disc_full',
766
+ 'discover_tune',
767
+ 'dishwasher_gen',
768
+ 'display_external_input',
769
+ 'display_settings',
770
+ 'distance',
771
+ 'diversity_1',
772
+ 'diversity_2',
773
+ 'diversity_3',
774
+ 'diversity_4',
775
+ 'dns',
776
+ 'do_not_disturb_off',
777
+ 'do_not_disturb_on',
778
+ 'do_not_disturb_on_total_silence',
779
+ 'do_not_step',
780
+ 'do_not_touch',
781
+ 'dock',
782
+ 'dock_to_bottom',
783
+ 'dock_to_left',
784
+ 'dock_to_right',
785
+ 'docs_add_on',
786
+ 'docs_apps_script',
787
+ 'document_scanner',
788
+ 'domain',
789
+ 'domain_add',
790
+ 'domain_disabled',
791
+ 'domain_verification',
792
+ 'domain_verification_off',
793
+ 'done',
794
+ 'done_all',
795
+ 'done_outline',
796
+ 'donut_large',
797
+ 'donut_small',
798
+ 'door_back',
799
+ 'door_front',
800
+ 'door_open',
801
+ 'door_sensor',
802
+ 'door_sliding',
803
+ 'doorbell',
804
+ 'doorbell_3p',
805
+ 'doorbell_chime',
806
+ 'double_arrow',
807
+ 'downhill_skiing',
808
+ 'download',
809
+ 'download_done',
810
+ 'download_for_offline',
811
+ 'downloading',
812
+ 'draft',
813
+ 'draft_orders',
814
+ 'drafts',
815
+ 'drag_click',
816
+ 'drag_handle',
817
+ 'drag_indicator',
818
+ 'drag_pan',
819
+ 'draw',
820
+ 'dresser',
821
+ 'drive_file_move',
822
+ 'drive_file_move_outline',
823
+ 'drive_file_move_rtl',
824
+ 'drive_file_rename_outline',
825
+ 'drive_folder_upload',
826
+ 'dry',
827
+ 'dry_cleaning',
828
+ 'dual_screen',
829
+ 'duo',
830
+ 'dvr',
831
+ 'dynamic_feed',
832
+ 'dynamic_form',
833
+ 'e911_avatar',
834
+ 'e911_emergency',
835
+ 'e_mobiledata',
836
+ 'e_mobiledata_badge',
837
+ 'earbuds',
838
+ 'earbuds_battery',
839
+ 'early_on',
840
+ 'east',
841
+ 'ecg',
842
+ 'ecg_heart',
843
+ 'eco',
844
+ 'eda',
845
+ 'edgesensor_high',
846
+ 'edgesensor_low',
847
+ 'edit',
848
+ 'edit_attributes',
849
+ 'edit_calendar',
850
+ 'edit_document',
851
+ 'edit_location',
852
+ 'edit_location_alt',
853
+ 'edit_note',
854
+ 'edit_notifications',
855
+ 'edit_off',
856
+ 'edit_road',
857
+ 'edit_square',
858
+ 'egg',
859
+ 'egg_alt',
860
+ 'eject',
861
+ 'elderly',
862
+ 'elderly_woman',
863
+ 'electric_bike',
864
+ 'electric_bolt',
865
+ 'electric_car',
866
+ 'electric_meter',
867
+ 'electric_moped',
868
+ 'electric_rickshaw',
869
+ 'electric_scooter',
870
+ 'electrical_services',
871
+ 'elevation',
872
+ 'elevator',
873
+ 'emergency',
874
+ 'emergency_heat',
875
+ 'emergency_home',
876
+ 'emergency_recording',
877
+ 'emergency_share',
878
+ 'emoji_flags',
879
+ 'emoji_food_beverage',
880
+ 'emoji_nature',
881
+ 'emoji_objects',
882
+ 'emoji_people',
883
+ 'emoji_symbols',
884
+ 'emoji_transportation',
885
+ 'emoticon',
886
+ 'empty_dashboard',
887
+ 'enable',
888
+ 'endocrinology',
889
+ 'energy_program_saving',
890
+ 'energy_program_time_used',
891
+ 'energy_savings_leaf',
892
+ 'engineering',
893
+ 'enhanced_encryption',
894
+ 'ent',
895
+ 'equal',
896
+ 'equalizer',
897
+ 'error',
898
+ 'error_circle_rounded',
899
+ 'error_med',
900
+ 'escalator',
901
+ 'escalator_warning',
902
+ 'euro',
903
+ 'euro_symbol',
904
+ 'ev_charger',
905
+ 'ev_mobiledata_badge',
906
+ 'ev_shadow',
907
+ 'ev_station',
908
+ 'event',
909
+ 'event_available',
910
+ 'event_busy',
911
+ 'event_note',
912
+ 'event_repeat',
913
+ 'event_seat',
914
+ 'event_upcoming',
915
+ 'exclamation',
916
+ 'exercise',
917
+ 'exit_to_app',
918
+ 'expand',
919
+ 'expand_circle_down',
920
+ 'expand_content',
921
+ 'expand_less',
922
+ 'expand_more',
923
+ 'explicit',
924
+ 'explore',
925
+ 'explore_off',
926
+ 'export_notes',
927
+ 'exposure',
928
+ 'exposure_neg_1',
929
+ 'exposure_neg_2',
930
+ 'exposure_plus_1',
931
+ 'exposure_plus_2',
932
+ 'exposure_zero',
933
+ 'extension',
934
+ 'extension_off',
935
+ 'eyeglasses',
936
+ 'face',
937
+ 'face_2',
938
+ 'face_3',
939
+ 'face_4',
940
+ 'face_5',
941
+ 'face_6',
942
+ 'face_retouching_natural',
943
+ 'face_retouching_off',
944
+ 'fact_check',
945
+ 'factory',
946
+ 'familiar_face_and_zone',
947
+ 'family_history',
948
+ 'family_restroom',
949
+ 'fast_forward',
950
+ 'fast_rewind',
951
+ 'fastfood',
952
+ 'faucet',
953
+ 'favorite',
954
+ 'fax',
955
+ 'featured_play_list',
956
+ 'featured_video',
957
+ 'feed',
958
+ 'female',
959
+ 'femur',
960
+ 'femur_alt',
961
+ 'fence',
962
+ 'fertile',
963
+ 'festival',
964
+ 'fiber_dvr',
965
+ 'fiber_manual_record',
966
+ 'fiber_new',
967
+ 'fiber_pin',
968
+ 'fiber_smart_record',
969
+ 'file_copy',
970
+ 'file_download',
971
+ 'file_download_done',
972
+ 'file_download_off',
973
+ 'file_open',
974
+ 'file_present',
975
+ 'file_upload',
976
+ 'file_upload_off',
977
+ 'filter',
978
+ 'filter_1',
979
+ 'filter_2',
980
+ 'filter_3',
981
+ 'filter_4',
982
+ 'filter_5',
983
+ 'filter_6',
984
+ 'filter_7',
985
+ 'filter_8',
986
+ 'filter_9',
987
+ 'filter_9_plus',
988
+ 'filter_alt',
989
+ 'filter_alt_off',
990
+ 'filter_b_and_w',
991
+ 'filter_center_focus',
992
+ 'filter_drama',
993
+ 'filter_frames',
994
+ 'filter_hdr',
995
+ 'filter_list',
996
+ 'filter_list_off',
997
+ 'filter_none',
998
+ 'filter_tilt_shift',
999
+ 'filter_vintage',
1000
+ 'finance_chip',
1001
+ 'find_in_page',
1002
+ 'find_replace',
1003
+ 'fingerprint',
1004
+ 'fire_extinguisher',
1005
+ 'fire_hydrant',
1006
+ 'fire_truck',
1007
+ 'fireplace',
1008
+ 'first_page',
1009
+ 'fit_page',
1010
+ 'fit_screen',
1011
+ 'fit_width',
1012
+ 'fitbit_arrow_downward',
1013
+ 'fitbit_arrow_upward',
1014
+ 'fitbit_check_small',
1015
+ 'fitness_center',
1016
+ 'flag',
1017
+ 'flag_circle',
1018
+ 'flaky',
1019
+ 'flare',
1020
+ 'flash_auto',
1021
+ 'flash_off',
1022
+ 'flash_on',
1023
+ 'flashlight_off',
1024
+ 'flashlight_on',
1025
+ 'flatware',
1026
+ 'flex_direction',
1027
+ 'flex_no_wrap',
1028
+ 'flex_wrap',
1029
+ 'flight',
1030
+ 'flight_class',
1031
+ 'flight_land',
1032
+ 'flight_takeoff',
1033
+ 'flip',
1034
+ 'flip_camera_android',
1035
+ 'flip_camera_ios',
1036
+ 'flip_to_back',
1037
+ 'flip_to_front',
1038
+ 'float_landscape',
1039
+ 'float_portrait',
1040
+ 'flood',
1041
+ 'floor',
1042
+ 'floor_lamp',
1043
+ 'flourescent',
1044
+ 'flowsheet',
1045
+ 'fluid',
1046
+ 'fluid_balance',
1047
+ 'fluid_med',
1048
+ 'fluorescent',
1049
+ 'flutter_dash',
1050
+ 'fmd_bad',
1051
+ 'foggy',
1052
+ 'folder',
1053
+ 'folder_copy',
1054
+ 'folder_delete',
1055
+ 'folder_managed',
1056
+ 'folder_off',
1057
+ 'folder_open',
1058
+ 'folder_shared',
1059
+ 'folder_special',
1060
+ 'folder_supervised',
1061
+ 'folder_zip',
1062
+ 'follow_the_signs',
1063
+ 'font_download',
1064
+ 'font_download_off',
1065
+ 'food_bank',
1066
+ 'foot_bones',
1067
+ 'footprint',
1068
+ 'forest',
1069
+ 'fork_left',
1070
+ 'fork_right',
1071
+ 'forklift',
1072
+ 'format_align_center',
1073
+ 'format_align_justify',
1074
+ 'format_align_left',
1075
+ 'format_align_right',
1076
+ 'format_bold',
1077
+ 'format_clear',
1078
+ 'format_color_fill',
1079
+ 'format_color_reset',
1080
+ 'format_color_text',
1081
+ 'format_h1',
1082
+ 'format_h2',
1083
+ 'format_h3',
1084
+ 'format_h4',
1085
+ 'format_h5',
1086
+ 'format_h6',
1087
+ 'format_image_left',
1088
+ 'format_image_right',
1089
+ 'format_indent_decrease',
1090
+ 'format_indent_increase',
1091
+ 'format_ink_highlighter',
1092
+ 'format_italic',
1093
+ 'format_letter_spacing',
1094
+ 'format_line_spacing',
1095
+ 'format_list_bulleted',
1096
+ 'format_list_bulleted_add',
1097
+ 'format_list_numbered',
1098
+ 'format_list_numbered_rtl',
1099
+ 'format_overline',
1100
+ 'format_paint',
1101
+ 'format_paragraph',
1102
+ 'format_quote',
1103
+ 'format_shapes',
1104
+ 'format_size',
1105
+ 'format_strikethrough',
1106
+ 'format_text_clip',
1107
+ 'format_text_overflow',
1108
+ 'format_text_wrap',
1109
+ 'format_textdirection_l_to_r',
1110
+ 'format_textdirection_r_to_l',
1111
+ 'format_underlined',
1112
+ 'format_underlined_squiggle',
1113
+ 'forms_add_on',
1114
+ 'forms_apps_script',
1115
+ 'fort',
1116
+ 'forum',
1117
+ 'forward',
1118
+ 'forward_10',
1119
+ 'forward_30',
1120
+ 'forward_5',
1121
+ 'forward_circle',
1122
+ 'forward_media',
1123
+ 'forward_to_inbox',
1124
+ 'foundation',
1125
+ 'frame_inspect',
1126
+ 'frame_person',
1127
+ 'frame_person_off',
1128
+ 'frame_reload',
1129
+ 'frame_source',
1130
+ 'free_cancellation',
1131
+ 'front_hand',
1132
+ 'front_loader',
1133
+ 'full_stacked_bar_chart',
1134
+ 'fullscreen',
1135
+ 'fullscreen_exit',
1136
+ 'function',
1137
+ 'functions',
1138
+ 'g_mobiledata',
1139
+ 'g_mobiledata_badge',
1140
+ 'g_translate',
1141
+ 'gallery_thumbnail',
1142
+ 'gamepad',
1143
+ 'garage',
1144
+ 'garage_home',
1145
+ 'garden_cart',
1146
+ 'gas_meter',
1147
+ 'gastroenterology',
1148
+ 'gate',
1149
+ 'gavel',
1150
+ 'generating_tokens',
1151
+ 'genetics',
1152
+ 'gesture',
1153
+ 'gif',
1154
+ 'gif_box',
1155
+ 'girl',
1156
+ 'gite',
1157
+ 'glass_cup',
1158
+ 'globe_asia',
1159
+ 'globe_uk',
1160
+ 'glucose',
1161
+ 'glyphs',
1162
+ 'go_to_line',
1163
+ 'golf_course',
1164
+ 'google_plus_reshare',
1165
+ 'google_wifi',
1166
+ 'gpp_bad',
1167
+ 'gpp_maybe',
1168
+ 'grade',
1169
+ 'gradient',
1170
+ 'grading',
1171
+ 'grain',
1172
+ 'graphic_eq',
1173
+ 'grass',
1174
+ 'grid_3x3',
1175
+ 'grid_4x4',
1176
+ 'grid_goldenratio',
1177
+ 'grid_guides',
1178
+ 'grid_off',
1179
+ 'grid_on',
1180
+ 'grid_view',
1181
+ 'group',
1182
+ 'group_add',
1183
+ 'group_off',
1184
+ 'group_remove',
1185
+ 'group_work',
1186
+ 'grouped_bar_chart',
1187
+ 'groups',
1188
+ 'groups_2',
1189
+ 'groups_3',
1190
+ 'gynecology',
1191
+ 'h_mobiledata',
1192
+ 'h_mobiledata_badge',
1193
+ 'h_plus_mobiledata',
1194
+ 'h_plus_mobiledata_badge',
1195
+ 'hail',
1196
+ 'hand_bones',
1197
+ 'hand_gesture',
1198
+ 'handshake',
1199
+ 'handyman',
1200
+ 'hangout_meeting',
1201
+ 'hard_drive',
1202
+ 'hard_drive_2',
1203
+ 'hardware',
1204
+ 'hd',
1205
+ 'hdr_auto',
1206
+ 'hdr_auto_select',
1207
+ 'hdr_enhanced_select',
1208
+ 'hdr_off',
1209
+ 'hdr_off_select',
1210
+ 'hdr_on',
1211
+ 'hdr_on_select',
1212
+ 'hdr_plus',
1213
+ 'hdr_strong',
1214
+ 'hdr_weak',
1215
+ 'headphones',
1216
+ 'headphones_battery',
1217
+ 'headset_mic',
1218
+ 'headset_off',
1219
+ 'healing',
1220
+ 'health_and_safety',
1221
+ 'health_metrics',
1222
+ 'heap_snapshot_large',
1223
+ 'heap_snapshot_multiple',
1224
+ 'heap_snapshot_thumbnail',
1225
+ 'hearing',
1226
+ 'hearing_disabled',
1227
+ 'heart_broken',
1228
+ 'heart_minus',
1229
+ 'heart_plus',
1230
+ 'heat_pump',
1231
+ 'heat_pump_balance',
1232
+ 'height',
1233
+ 'help',
1234
+ 'help_center',
1235
+ 'help_clinic',
1236
+ 'hematology',
1237
+ 'hevc',
1238
+ 'hexagon',
1239
+ 'hide',
1240
+ 'hide_image',
1241
+ 'hide_source',
1242
+ 'high_density',
1243
+ 'high_quality',
1244
+ 'highlight',
1245
+ 'highlighter_size_1',
1246
+ 'highlighter_size_2',
1247
+ 'highlighter_size_3',
1248
+ 'highlighter_size_4',
1249
+ 'highlighter_size_5',
1250
+ 'hiking',
1251
+ 'history',
1252
+ 'history_edu',
1253
+ 'history_toggle_off',
1254
+ 'hive',
1255
+ 'hls',
1256
+ 'hls_off',
1257
+ 'holiday_village',
1258
+ 'home',
1259
+ 'home_app_logo',
1260
+ 'home_health',
1261
+ 'home_iot_device',
1262
+ 'home_max',
1263
+ 'home_max_dots',
1264
+ 'home_mini',
1265
+ 'home_pin',
1266
+ 'home_repair_service',
1267
+ 'home_speaker',
1268
+ 'home_storage',
1269
+ 'home_work',
1270
+ 'horizontal_distribute',
1271
+ 'horizontal_rule',
1272
+ 'horizontal_split',
1273
+ 'hot_tub',
1274
+ 'hotel',
1275
+ 'hotel_class',
1276
+ 'hourglass_bottom',
1277
+ 'hourglass_disabled',
1278
+ 'hourglass_empty',
1279
+ 'hourglass_full',
1280
+ 'hourglass_top',
1281
+ 'house',
1282
+ 'house_siding',
1283
+ 'house_with_shield',
1284
+ 'houseboat',
1285
+ 'how_to_reg',
1286
+ 'how_to_vote',
1287
+ 'hr_resting',
1288
+ 'html',
1289
+ 'http',
1290
+ 'hub',
1291
+ 'humerus',
1292
+ 'humerus_alt',
1293
+ 'humidity_high',
1294
+ 'humidity_low',
1295
+ 'humidity_mid',
1296
+ 'humidity_percentage',
1297
+ 'hvac',
1298
+ 'ice_skating',
1299
+ 'icecream',
1300
+ 'iframe',
1301
+ 'iframe_off',
1302
+ 'image',
1303
+ 'image_aspect_ratio',
1304
+ 'image_not_supported',
1305
+ 'image_search',
1306
+ 'imagesearch_roller',
1307
+ 'imagesmode',
1308
+ 'immunology',
1309
+ 'import_contacts',
1310
+ 'important_devices',
1311
+ 'in_home_mode',
1312
+ 'inactive_order',
1313
+ 'inbox',
1314
+ 'inbox_customize',
1315
+ 'incomplete_circle',
1316
+ 'indeterminate_check_box',
1317
+ 'info',
1318
+ 'infrared',
1319
+ 'inpatient',
1320
+ 'input',
1321
+ 'input_circle',
1322
+ 'insert_chart',
1323
+ 'insert_page_break',
1324
+ 'insert_text',
1325
+ 'insights',
1326
+ 'install_desktop',
1327
+ 'install_mobile',
1328
+ 'integration_instructions',
1329
+ 'interests',
1330
+ 'interpreter_mode',
1331
+ 'inventory',
1332
+ 'inventory_2',
1333
+ 'invert_colors',
1334
+ 'invert_colors_off',
1335
+ 'ios_share',
1336
+ 'iron',
1337
+ 'javascript',
1338
+ 'join',
1339
+ 'join_full',
1340
+ 'join_inner',
1341
+ 'join_left',
1342
+ 'join_right',
1343
+ 'jump_to_element',
1344
+ 'kayaking',
1345
+ 'kebab_dining',
1346
+ 'kettle',
1347
+ 'key',
1348
+ 'key_off',
1349
+ 'key_visualizer',
1350
+ 'keyboard',
1351
+ 'keyboard_alt',
1352
+ 'keyboard_arrow_down',
1353
+ 'keyboard_arrow_left',
1354
+ 'keyboard_arrow_right',
1355
+ 'keyboard_arrow_up',
1356
+ 'keyboard_backspace',
1357
+ 'keyboard_capslock',
1358
+ 'keyboard_capslock_badge',
1359
+ 'keyboard_command_key',
1360
+ 'keyboard_control_key',
1361
+ 'keyboard_double_arrow_down',
1362
+ 'keyboard_double_arrow_left',
1363
+ 'keyboard_double_arrow_right',
1364
+ 'keyboard_double_arrow_up',
1365
+ 'keyboard_external_input',
1366
+ 'keyboard_full',
1367
+ 'keyboard_hide',
1368
+ 'keyboard_onscreen',
1369
+ 'keyboard_option_key',
1370
+ 'keyboard_previous_language',
1371
+ 'keyboard_return',
1372
+ 'keyboard_tab',
1373
+ 'keyboard_tab_rtl',
1374
+ 'keyboard_voice',
1375
+ 'king_bed',
1376
+ 'kitchen',
1377
+ 'kitesurfing',
1378
+ 'lab_panel',
1379
+ 'lab_profile',
1380
+ 'lab_research',
1381
+ 'label',
1382
+ 'label_important',
1383
+ 'label_off',
1384
+ 'labs',
1385
+ 'lan',
1386
+ 'landscape',
1387
+ 'landslide',
1388
+ 'language',
1389
+ 'language_chinese_array',
1390
+ 'language_chinese_cangjie',
1391
+ 'language_chinese_dayi',
1392
+ 'language_chinese_pinyin',
1393
+ 'language_chinese_quick',
1394
+ 'language_chinese_wubi',
1395
+ 'language_french',
1396
+ 'language_gb_english',
1397
+ 'language_international',
1398
+ 'language_korean_latin',
1399
+ 'language_pinyin',
1400
+ 'language_us',
1401
+ 'language_us_colemak',
1402
+ 'language_us_dvorak',
1403
+ 'laps',
1404
+ 'laptop_chromebook',
1405
+ 'laptop_mac',
1406
+ 'laptop_windows',
1407
+ 'last_page',
1408
+ 'launcher_assistant_off',
1409
+ 'launcher_assistant_on',
1410
+ 'laundry',
1411
+ 'layers',
1412
+ 'layers_clear',
1413
+ 'lda',
1414
+ 'leaderboard',
1415
+ 'leak_add',
1416
+ 'leak_remove',
1417
+ 'left_click',
1418
+ 'left_panel_close',
1419
+ 'left_panel_open',
1420
+ 'legend_toggle',
1421
+ 'lens',
1422
+ 'lens_blur',
1423
+ 'letter_switch',
1424
+ 'library_add',
1425
+ 'library_add_check',
1426
+ 'library_books',
1427
+ 'library_music',
1428
+ 'lift_to_talk',
1429
+ 'light',
1430
+ 'light_group',
1431
+ 'light_mode',
1432
+ 'lightbulb',
1433
+ 'lightbulb_circle',
1434
+ 'line_axis',
1435
+ 'line_curve',
1436
+ 'line_end',
1437
+ 'line_end_arrow',
1438
+ 'line_end_arrow_notch',
1439
+ 'line_end_circle',
1440
+ 'line_end_diamond',
1441
+ 'line_end_square',
1442
+ 'line_start',
1443
+ 'line_start_arrow',
1444
+ 'line_start_arrow_notch',
1445
+ 'line_start_circle',
1446
+ 'line_start_diamond',
1447
+ 'line_start_square',
1448
+ 'line_style',
1449
+ 'line_weight',
1450
+ 'linear_scale',
1451
+ 'link',
1452
+ 'link_off',
1453
+ 'linked_camera',
1454
+ 'liquor',
1455
+ 'list',
1456
+ 'list_alt',
1457
+ 'list_alt_add',
1458
+ 'listing.txt',
1459
+ 'live_help',
1460
+ 'live_tv',
1461
+ 'living',
1462
+ 'local_activity',
1463
+ 'local_atm',
1464
+ 'local_bar',
1465
+ 'local_cafe',
1466
+ 'local_car_wash',
1467
+ 'local_convenience_store',
1468
+ 'local_dining',
1469
+ 'local_drink',
1470
+ 'local_fire_department',
1471
+ 'local_florist',
1472
+ 'local_gas_station',
1473
+ 'local_hospital',
1474
+ 'local_laundry_service',
1475
+ 'local_library',
1476
+ 'local_mall',
1477
+ 'local_parking',
1478
+ 'local_pharmacy',
1479
+ 'local_pizza',
1480
+ 'local_police',
1481
+ 'local_post_office',
1482
+ 'local_see',
1483
+ 'local_shipping',
1484
+ 'local_taxi',
1485
+ 'location_automation',
1486
+ 'location_away',
1487
+ 'location_chip',
1488
+ 'location_city',
1489
+ 'location_disabled',
1490
+ 'location_home',
1491
+ 'location_off',
1492
+ 'location_on',
1493
+ 'location_searching',
1494
+ 'lock',
1495
+ 'lock_clock',
1496
+ 'lock_open',
1497
+ 'lock_person',
1498
+ 'lock_reset',
1499
+ 'login',
1500
+ 'logo_dev',
1501
+ 'logout',
1502
+ 'looks',
1503
+ 'looks_3',
1504
+ 'looks_4',
1505
+ 'looks_5',
1506
+ 'looks_6',
1507
+ 'looks_one',
1508
+ 'looks_two',
1509
+ 'loupe',
1510
+ 'low_density',
1511
+ 'low_priority',
1512
+ 'loyalty',
1513
+ 'lte_mobiledata',
1514
+ 'lte_mobiledata_badge',
1515
+ 'lte_plus_mobiledata',
1516
+ 'lte_plus_mobiledata_badge',
1517
+ 'luggage',
1518
+ 'lunch_dining',
1519
+ 'lyrics',
1520
+ 'macro_auto',
1521
+ 'macro_off',
1522
+ 'magic_button',
1523
+ 'magic_exchange',
1524
+ 'magic_tether',
1525
+ 'magnification_large',
1526
+ 'magnification_small',
1527
+ 'magnify_docked',
1528
+ 'magnify_fullscreen',
1529
+ 'mail',
1530
+ 'mail_lock',
1531
+ 'male',
1532
+ 'man',
1533
+ 'man_2',
1534
+ 'man_3',
1535
+ 'man_4',
1536
+ 'manage_accounts',
1537
+ 'manage_history',
1538
+ 'manage_search',
1539
+ 'map',
1540
+ 'maps_ugc',
1541
+ 'margin',
1542
+ 'mark_as_unread',
1543
+ 'mark_chat_read',
1544
+ 'mark_chat_unread',
1545
+ 'mark_email_read',
1546
+ 'mark_email_unread',
1547
+ 'mark_unread_chat_alt',
1548
+ 'markunread_mailbox',
1549
+ 'masks',
1550
+ 'match_case',
1551
+ 'match_word',
1552
+ 'matter',
1553
+ 'maximize',
1554
+ 'measuring_tape',
1555
+ 'media_bluetooth_off',
1556
+ 'media_bluetooth_on',
1557
+ 'media_link',
1558
+ 'mediation',
1559
+ 'medical_information',
1560
+ 'medical_mask',
1561
+ 'medical_services',
1562
+ 'medication',
1563
+ 'medication_liquid',
1564
+ 'meeting_room',
1565
+ 'memory',
1566
+ 'memory_alt',
1567
+ 'menstrual_health',
1568
+ 'menu',
1569
+ 'menu_book',
1570
+ 'menu_open',
1571
+ 'merge',
1572
+ 'merge_type',
1573
+ 'metabolism',
1574
+ 'mfg_nest_yale_lock',
1575
+ 'mic',
1576
+ 'mic_external_off',
1577
+ 'mic_external_on',
1578
+ 'mic_noise_cancel_high',
1579
+ 'mic_noise_cancel_low',
1580
+ 'mic_noise_cancel_off',
1581
+ 'mic_off',
1582
+ 'microbiology',
1583
+ 'microwave',
1584
+ 'microwave_gen',
1585
+ 'military_tech',
1586
+ 'mindfulness',
1587
+ 'minimize',
1588
+ 'minor_crash',
1589
+ 'missed_video_call',
1590
+ 'mixture_med',
1591
+ 'mms',
1592
+ 'mobile_friendly',
1593
+ 'mobile_off',
1594
+ 'mobile_screen_share',
1595
+ 'mobiledata_off',
1596
+ 'mode_comment',
1597
+ 'mode_cool',
1598
+ 'mode_cool_off',
1599
+ 'mode_fan',
1600
+ 'mode_fan_off',
1601
+ 'mode_heat',
1602
+ 'mode_heat_cool',
1603
+ 'mode_heat_off',
1604
+ 'mode_night',
1605
+ 'mode_of_travel',
1606
+ 'mode_off_on',
1607
+ 'mode_standby',
1608
+ 'model_training',
1609
+ 'monetization_on',
1610
+ 'money',
1611
+ 'money_off',
1612
+ 'monitor',
1613
+ 'monitor_heart',
1614
+ 'monitor_weight',
1615
+ 'monitor_weight_gain',
1616
+ 'monitor_weight_loss',
1617
+ 'monitoring',
1618
+ 'monochrome_photos',
1619
+ 'mood',
1620
+ 'mood_bad',
1621
+ 'mop',
1622
+ 'more',
1623
+ 'more_down',
1624
+ 'more_horiz',
1625
+ 'more_time',
1626
+ 'more_up',
1627
+ 'more_vert',
1628
+ 'mosque',
1629
+ 'motion_blur',
1630
+ 'motion_mode',
1631
+ 'motion_photos_auto',
1632
+ 'motion_photos_off',
1633
+ 'motion_photos_paused',
1634
+ 'motion_sensor_active',
1635
+ 'motion_sensor_alert',
1636
+ 'motion_sensor_idle',
1637
+ 'motion_sensor_urgent',
1638
+ 'motorcycle',
1639
+ 'mouse',
1640
+ 'move',
1641
+ 'move_down',
1642
+ 'move_group',
1643
+ 'move_location',
1644
+ 'move_selection_down',
1645
+ 'move_selection_left',
1646
+ 'move_selection_right',
1647
+ 'move_selection_up',
1648
+ 'move_to_inbox',
1649
+ 'move_up',
1650
+ 'movie',
1651
+ 'movie_edit',
1652
+ 'movie_filter',
1653
+ 'moving',
1654
+ 'moving_beds',
1655
+ 'moving_ministry',
1656
+ 'mp',
1657
+ 'multicooker',
1658
+ 'multiline_chart',
1659
+ 'multiple_stop',
1660
+ 'museum',
1661
+ 'music_note',
1662
+ 'music_off',
1663
+ 'music_video',
1664
+ 'my_location',
1665
+ 'nat',
1666
+ 'nature',
1667
+ 'nature_people',
1668
+ 'navigate_before',
1669
+ 'navigate_next',
1670
+ 'navigation',
1671
+ 'near_me',
1672
+ 'near_me_disabled',
1673
+ 'nearby_error',
1674
+ 'nearby_off',
1675
+ 'nephrology',
1676
+ 'nest_audio',
1677
+ 'nest_cam_floodlight',
1678
+ 'nest_cam_indoor',
1679
+ 'nest_cam_iq',
1680
+ 'nest_cam_iq_outdoor',
1681
+ 'nest_cam_magnet_mount',
1682
+ 'nest_cam_outdoor',
1683
+ 'nest_cam_stand',
1684
+ 'nest_cam_wall_mount',
1685
+ 'nest_cam_wired_stand',
1686
+ 'nest_clock_farsight_analog',
1687
+ 'nest_clock_farsight_digital',
1688
+ 'nest_connect',
1689
+ 'nest_detect',
1690
+ 'nest_display',
1691
+ 'nest_display_max',
1692
+ 'nest_doorbell_visitor',
1693
+ 'nest_eco_leaf',
1694
+ 'nest_farsight_weather',
1695
+ 'nest_found_savings',
1696
+ 'nest_heat_link_e',
1697
+ 'nest_heat_link_gen_3',
1698
+ 'nest_hello_doorbell',
1699
+ 'nest_locator_tag',
1700
+ 'nest_mini',
1701
+ 'nest_multi_room',
1702
+ 'nest_remote',
1703
+ 'nest_remote_comfort_sensor',
1704
+ 'nest_secure_alarm',
1705
+ 'nest_sunblock',
1706
+ 'nest_tag',
1707
+ 'nest_thermostat_e_eu',
1708
+ 'nest_thermostat_gen_3',
1709
+ 'nest_thermostat_sensor',
1710
+ 'nest_thermostat_sensor_eu',
1711
+ 'nest_thermostat_zirconium_eu',
1712
+ 'nest_true_radiant',
1713
+ 'nest_wake_on_approach',
1714
+ 'nest_wake_on_press',
1715
+ 'nest_wifi_gale',
1716
+ 'nest_wifi_mistral',
1717
+ 'nest_wifi_point',
1718
+ 'nest_wifi_point_vento',
1719
+ 'nest_wifi_router',
1720
+ 'network_cell',
1721
+ 'network_check',
1722
+ 'network_locked',
1723
+ 'network_manage',
1724
+ 'network_ping',
1725
+ 'network_wifi',
1726
+ 'network_wifi_1_bar',
1727
+ 'network_wifi_2_bar',
1728
+ 'network_wifi_3_bar',
1729
+ 'neurology',
1730
+ 'new_label',
1731
+ 'new_releases',
1732
+ 'new_window',
1733
+ 'newspaper',
1734
+ 'next_plan',
1735
+ 'next_week',
1736
+ 'nfc',
1737
+ 'night_shelter',
1738
+ 'night_sight_auto',
1739
+ 'night_sight_auto_off',
1740
+ 'night_sight_max',
1741
+ 'nightlife',
1742
+ 'nightlight',
1743
+ 'nightlight_badge',
1744
+ 'nightlight_off',
1745
+ 'nights_stay',
1746
+ 'no_accounts',
1747
+ 'no_adult_content',
1748
+ 'no_backpack',
1749
+ 'no_crash',
1750
+ 'no_drinks',
1751
+ 'no_encryption',
1752
+ 'no_flash',
1753
+ 'no_food',
1754
+ 'no_luggage',
1755
+ 'no_meals',
1756
+ 'no_meeting_room',
1757
+ 'no_photography',
1758
+ 'no_sim',
1759
+ 'no_stroller',
1760
+ 'no_transfer',
1761
+ 'noise_aware',
1762
+ 'noise_control_off',
1763
+ 'noise_control_on',
1764
+ 'nordic_walking',
1765
+ 'north',
1766
+ 'north_east',
1767
+ 'north_west',
1768
+ 'not_accessible',
1769
+ 'not_listed_location',
1770
+ 'not_started',
1771
+ 'note',
1772
+ 'note_add',
1773
+ 'note_alt',
1774
+ 'notes',
1775
+ 'notification_add',
1776
+ 'notification_important',
1777
+ 'notifications',
1778
+ 'notifications_active',
1779
+ 'notifications_off',
1780
+ 'notifications_paused',
1781
+ 'numbers',
1782
+ 'nutrition',
1783
+ 'offline_bolt',
1784
+ 'offline_pin',
1785
+ 'offline_share',
1786
+ 'oil_barrel',
1787
+ 'on_device_training',
1788
+ 'oncology',
1789
+ 'online_prediction',
1790
+ 'onsen',
1791
+ 'opacity',
1792
+ 'open_in_browser',
1793
+ 'open_in_full',
1794
+ 'open_in_new',
1795
+ 'open_in_new_down',
1796
+ 'open_in_new_off',
1797
+ 'open_with',
1798
+ 'ophthalmology',
1799
+ 'oral_disease',
1800
+ 'order_approve',
1801
+ 'order_play',
1802
+ 'orthopedics',
1803
+ 'other_admission',
1804
+ 'other_houses',
1805
+ 'outbound',
1806
+ 'outbox',
1807
+ 'outdoor_garden',
1808
+ 'outdoor_grill',
1809
+ 'outgoing_mail',
1810
+ 'outlet',
1811
+ 'outpatient',
1812
+ 'outpatient_med',
1813
+ 'output',
1814
+ 'output_circle',
1815
+ 'oven_gen',
1816
+ 'overview',
1817
+ 'overview_key',
1818
+ 'oxygen_saturation',
1819
+ 'pace',
1820
+ 'pacemaker',
1821
+ 'package',
1822
+ 'padding',
1823
+ 'pages',
1824
+ 'pageview',
1825
+ 'paid',
1826
+ 'palette',
1827
+ 'pallet',
1828
+ 'pan_tool',
1829
+ 'pan_tool_alt',
1830
+ 'panorama',
1831
+ 'panorama_fish_eye',
1832
+ 'panorama_horizontal',
1833
+ 'panorama_photosphere',
1834
+ 'panorama_vertical',
1835
+ 'panorama_wide_angle',
1836
+ 'paragliding',
1837
+ 'park',
1838
+ 'partly_cloudy_day',
1839
+ 'partly_cloudy_night',
1840
+ 'party_mode',
1841
+ 'password',
1842
+ 'patient_list',
1843
+ 'pattern',
1844
+ 'pause',
1845
+ 'pause_circle',
1846
+ 'pause_presentation',
1847
+ 'payments',
1848
+ 'pdf_off',
1849
+ 'pedal_bike',
1850
+ 'pediatrics',
1851
+ 'pen_size_1',
1852
+ 'pen_size_2',
1853
+ 'pen_size_3',
1854
+ 'pen_size_4',
1855
+ 'pen_size_5',
1856
+ 'pending',
1857
+ 'pending_actions',
1858
+ 'pentagon',
1859
+ 'percent',
1860
+ 'pergola',
1861
+ 'perm_camera_mic',
1862
+ 'perm_contact_calendar',
1863
+ 'perm_data_setting',
1864
+ 'perm_device_information',
1865
+ 'perm_media',
1866
+ 'perm_phone_msg',
1867
+ 'perm_scan_wifi',
1868
+ 'person',
1869
+ 'person_2',
1870
+ 'person_3',
1871
+ 'person_4',
1872
+ 'person_add',
1873
+ 'person_add_disabled',
1874
+ 'person_filled',
1875
+ 'person_off',
1876
+ 'person_pin',
1877
+ 'person_pin_circle',
1878
+ 'person_remove',
1879
+ 'person_search',
1880
+ 'personal_injury',
1881
+ 'pest_control',
1882
+ 'pest_control_rodent',
1883
+ 'pets',
1884
+ 'phishing',
1885
+ 'phone_android',
1886
+ 'phone_bluetooth_speaker',
1887
+ 'phone_callback',
1888
+ 'phone_disabled',
1889
+ 'phone_enabled',
1890
+ 'phone_forwarded',
1891
+ 'phone_in_talk',
1892
+ 'phone_in_talk_watchface_indicator',
1893
+ 'phone_iphone',
1894
+ 'phone_locked',
1895
+ 'phone_missed',
1896
+ 'phone_paused',
1897
+ 'phonelink_erase',
1898
+ 'phonelink_lock',
1899
+ 'phonelink_off',
1900
+ 'phonelink_ring',
1901
+ 'phonelink_ring_off',
1902
+ 'phonelink_setup',
1903
+ 'photo',
1904
+ 'photo_album',
1905
+ 'photo_camera',
1906
+ 'photo_camera_back',
1907
+ 'photo_camera_front',
1908
+ 'photo_filter',
1909
+ 'photo_frame',
1910
+ 'photo_library',
1911
+ 'photo_size_select_large',
1912
+ 'photo_size_select_small',
1913
+ 'php',
1914
+ 'physical_therapy',
1915
+ 'piano',
1916
+ 'piano_off',
1917
+ 'picture_as_pdf',
1918
+ 'picture_in_picture',
1919
+ 'picture_in_picture_alt',
1920
+ 'pie_chart',
1921
+ 'pill',
1922
+ 'pill_off',
1923
+ 'pin',
1924
+ 'pin_drop',
1925
+ 'pin_end',
1926
+ 'pin_invoke',
1927
+ 'pinch',
1928
+ 'pinch_zoom_in',
1929
+ 'pinch_zoom_out',
1930
+ 'pip_exit',
1931
+ 'pivot_table_chart',
1932
+ 'pixel_3_3xl_3a',
1933
+ 'place_item',
1934
+ 'plagiarism',
1935
+ 'play_arrow',
1936
+ 'play_circle',
1937
+ 'play_disabled',
1938
+ 'play_for_work',
1939
+ 'play_lesson',
1940
+ 'play_pause',
1941
+ 'playlist_add',
1942
+ 'playlist_add_check',
1943
+ 'playlist_add_check_circle',
1944
+ 'playlist_add_circle',
1945
+ 'playlist_play',
1946
+ 'playlist_remove',
1947
+ 'plumbing',
1948
+ 'podcasts',
1949
+ 'podiatry',
1950
+ 'podium',
1951
+ 'point_of_sale',
1952
+ 'point_scan',
1953
+ 'policy',
1954
+ 'polyline',
1955
+ 'polymer',
1956
+ 'pool',
1957
+ 'portable_wifi_off',
1958
+ 'portrait_lighting',
1959
+ 'portrait_lighting_off',
1960
+ 'position_bottom_left',
1961
+ 'position_bottom_right',
1962
+ 'position_top_right',
1963
+ 'post_add',
1964
+ 'potted_plant',
1965
+ 'power',
1966
+ 'power_input',
1967
+ 'power_off',
1968
+ 'power_rounded',
1969
+ 'power_settings_new',
1970
+ 'prayer_times',
1971
+ 'precision_manufacturing',
1972
+ 'pregnant_woman',
1973
+ 'preliminary',
1974
+ 'prescriptions',
1975
+ 'present_to_all',
1976
+ 'preview',
1977
+ 'preview_off',
1978
+ 'price_change',
1979
+ 'price_check',
1980
+ 'print',
1981
+ 'print_add',
1982
+ 'print_connect',
1983
+ 'print_disabled',
1984
+ 'print_error',
1985
+ 'priority',
1986
+ 'priority_high',
1987
+ 'privacy',
1988
+ 'privacy_screen',
1989
+ 'privacy_screen_off',
1990
+ 'privacy_tip',
1991
+ 'private_connectivity',
1992
+ 'problem',
1993
+ 'procedure',
1994
+ 'process_chart',
1995
+ 'production_quantity_limits',
1996
+ 'productivity',
1997
+ 'propane',
1998
+ 'propane_tank',
1999
+ 'psychiatry',
2000
+ 'psychology',
2001
+ 'psychology_alt',
2002
+ 'public',
2003
+ 'public_off',
2004
+ 'publish',
2005
+ 'published_with_changes',
2006
+ 'pulmonology',
2007
+ 'punch_clock',
2008
+ 'push_pin',
2009
+ 'qr_code',
2010
+ 'qr_code_2',
2011
+ 'qr_code_scanner',
2012
+ 'query_stats',
2013
+ 'question_exchange',
2014
+ 'question_mark',
2015
+ 'queue_music',
2016
+ 'queue_play_next',
2017
+ 'quick_phrases',
2018
+ 'quick_reference',
2019
+ 'quick_reference_all',
2020
+ 'quickreply',
2021
+ 'quiet_time',
2022
+ 'quiet_time_active',
2023
+ 'quiz',
2024
+ 'r_mobiledata',
2025
+ 'radar',
2026
+ 'radio',
2027
+ 'radio_button_checked',
2028
+ 'radio_button_unchecked',
2029
+ 'radiology',
2030
+ 'railway_alert',
2031
+ 'rainy',
2032
+ 'ramen_dining',
2033
+ 'ramp_left',
2034
+ 'ramp_right',
2035
+ 'range_hood',
2036
+ 'rate_review',
2037
+ 'raw_off',
2038
+ 'raw_on',
2039
+ 'read_more',
2040
+ 'real_estate_agent',
2041
+ 'rear_camera',
2042
+ 'rebase',
2043
+ 'rebase_edit',
2044
+ 'receipt',
2045
+ 'receipt_long',
2046
+ 'recent_actors',
2047
+ 'recent_patient',
2048
+ 'recommend',
2049
+ 'record_voice_over',
2050
+ 'rectangle',
2051
+ 'recycling',
2052
+ 'redeem',
2053
+ 'redo',
2054
+ 'reduce_capacity',
2055
+ 'refresh',
2056
+ 'regular_expression',
2057
+ 'relax',
2058
+ 'remember_me',
2059
+ 'remote_gen',
2060
+ 'remove',
2061
+ 'remove_done',
2062
+ 'remove_from_queue',
2063
+ 'remove_moderator',
2064
+ 'remove_road',
2065
+ 'remove_shopping_cart',
2066
+ 'reopen_window',
2067
+ 'reorder',
2068
+ 'repartition',
2069
+ 'repeat',
2070
+ 'repeat_on',
2071
+ 'repeat_one',
2072
+ 'repeat_one_on',
2073
+ 'replay',
2074
+ 'replay_10',
2075
+ 'replay_30',
2076
+ 'replay_5',
2077
+ 'replay_circle_filled',
2078
+ 'reply',
2079
+ 'reply_all',
2080
+ 'report',
2081
+ 'report_off',
2082
+ 'request_page',
2083
+ 'request_quote',
2084
+ 'reset_image',
2085
+ 'reset_tv',
2086
+ 'resize',
2087
+ 'respiratory_rate',
2088
+ 'restart_alt',
2089
+ 'restaurant',
2090
+ 'restaurant_menu',
2091
+ 'restore_from_trash',
2092
+ 'restore_page',
2093
+ 'resume',
2094
+ 'reviews',
2095
+ 'rheumatology',
2096
+ 'rib_cage',
2097
+ 'rice_bowl',
2098
+ 'right_click',
2099
+ 'right_panel_close',
2100
+ 'right_panel_open',
2101
+ 'ring_volume',
2102
+ 'robot',
2103
+ 'rocket',
2104
+ 'rocket_launch',
2105
+ 'roller_shades',
2106
+ 'roller_shades_closed',
2107
+ 'roller_skating',
2108
+ 'roofing',
2109
+ 'room_preferences',
2110
+ 'room_service',
2111
+ 'rotate_90_degrees_ccw',
2112
+ 'rotate_90_degrees_cw',
2113
+ 'rotate_left',
2114
+ 'rotate_right',
2115
+ 'roundabout_left',
2116
+ 'roundabout_right',
2117
+ 'rounded_corner',
2118
+ 'route',
2119
+ 'router',
2120
+ 'routine',
2121
+ 'rowing',
2122
+ 'rss_feed',
2123
+ 'rsvp',
2124
+ 'rtt',
2125
+ 'rule',
2126
+ 'rule_folder',
2127
+ 'run_circle',
2128
+ 'running_with_errors',
2129
+ 'rv_hookup',
2130
+ 'sad_tab',
2131
+ 'safety_check',
2132
+ 'safety_divider',
2133
+ 'sailing',
2134
+ 'salinity',
2135
+ 'sanitizer',
2136
+ 'satellite',
2137
+ 'satellite_alt',
2138
+ 'sauna',
2139
+ 'save',
2140
+ 'save_as',
2141
+ 'saved_search',
2142
+ 'savings',
2143
+ 'scale',
2144
+ 'scan',
2145
+ 'scan_delete',
2146
+ 'scanner',
2147
+ 'scatter_plot',
2148
+ 'scene',
2149
+ 'schedule',
2150
+ 'schedule_send',
2151
+ 'schema',
2152
+ 'school',
2153
+ 'science',
2154
+ 'score',
2155
+ 'scoreboard',
2156
+ 'screen_lock_landscape',
2157
+ 'screen_lock_portrait',
2158
+ 'screen_lock_rotation',
2159
+ 'screen_rotation',
2160
+ 'screen_rotation_alt',
2161
+ 'screen_search_desktop',
2162
+ 'screen_share',
2163
+ 'screencast',
2164
+ 'screenshot',
2165
+ 'screenshot_keyboard',
2166
+ 'screenshot_monitor',
2167
+ 'screenshot_region',
2168
+ 'scuba_diving',
2169
+ 'sd',
2170
+ 'sd_card',
2171
+ 'sd_card_alert',
2172
+ 'search',
2173
+ 'search_check',
2174
+ 'search_off',
2175
+ 'security',
2176
+ 'security_update_good',
2177
+ 'security_update_warning',
2178
+ 'segment',
2179
+ 'select',
2180
+ 'select_all',
2181
+ 'select_check_box',
2182
+ 'select_to_speak',
2183
+ 'self_care',
2184
+ 'self_improvement',
2185
+ 'sell',
2186
+ 'send',
2187
+ 'send_and_archive',
2188
+ 'send_time_extension',
2189
+ 'send_to_mobile',
2190
+ 'sensor_door',
2191
+ 'sensor_occupied',
2192
+ 'sensor_window',
2193
+ 'sensors',
2194
+ 'sensors_off',
2195
+ 'sentiment_calm',
2196
+ 'sentiment_content',
2197
+ 'sentiment_dissatisfied',
2198
+ 'sentiment_excited',
2199
+ 'sentiment_extremely_dissatisfied',
2200
+ 'sentiment_frustrated',
2201
+ 'sentiment_neutral',
2202
+ 'sentiment_sad',
2203
+ 'sentiment_satisfied',
2204
+ 'sentiment_stressed',
2205
+ 'sentiment_very_dissatisfied',
2206
+ 'sentiment_very_satisfied',
2207
+ 'sentiment_worried',
2208
+ 'set_meal',
2209
+ 'settings',
2210
+ 'settings_accessibility',
2211
+ 'settings_account_box',
2212
+ 'settings_alert',
2213
+ 'settings_applications',
2214
+ 'settings_backup_restore',
2215
+ 'settings_bluetooth',
2216
+ 'settings_brightness',
2217
+ 'settings_cell',
2218
+ 'settings_ethernet',
2219
+ 'settings_input_antenna',
2220
+ 'settings_input_component',
2221
+ 'settings_input_hdmi',
2222
+ 'settings_input_svideo',
2223
+ 'settings_motion_mode',
2224
+ 'settings_night_sight',
2225
+ 'settings_overscan',
2226
+ 'settings_panorama',
2227
+ 'settings_phone',
2228
+ 'settings_photo_camera',
2229
+ 'settings_power',
2230
+ 'settings_remote',
2231
+ 'settings_suggest',
2232
+ 'settings_system_daydream',
2233
+ 'settings_voice',
2234
+ 'settop_component',
2235
+ 'severe_cold',
2236
+ 'shape_line',
2237
+ 'shapes',
2238
+ 'share',
2239
+ 'share_location',
2240
+ 'share_off',
2241
+ 'share_reviews',
2242
+ 'sheets_rtl',
2243
+ 'shelf_auto_hide',
2244
+ 'shelf_position',
2245
+ 'shelves',
2246
+ 'shield',
2247
+ 'shield_moon',
2248
+ 'shield_with_heart',
2249
+ 'shield_with_house',
2250
+ 'shift',
2251
+ 'shift_lock',
2252
+ 'shop',
2253
+ 'shop_two',
2254
+ 'shopping_bag',
2255
+ 'shopping_basket',
2256
+ 'shopping_cart',
2257
+ 'shopping_cart_checkout',
2258
+ 'short_stay',
2259
+ 'short_text',
2260
+ 'show_chart',
2261
+ 'shower',
2262
+ 'shuffle',
2263
+ 'shuffle_on',
2264
+ 'shutter_speed',
2265
+ 'sick',
2266
+ 'sign_language',
2267
+ 'signal_cellular_0_bar',
2268
+ 'signal_cellular_1_bar',
2269
+ 'signal_cellular_2_bar',
2270
+ 'signal_cellular_3_bar',
2271
+ 'signal_cellular_4_bar',
2272
+ 'signal_cellular_add',
2273
+ 'signal_cellular_alt',
2274
+ 'signal_cellular_alt_1_bar',
2275
+ 'signal_cellular_alt_2_bar',
2276
+ 'signal_cellular_connected_no_internet_0_bar',
2277
+ 'signal_cellular_connected_no_internet_4_bar',
2278
+ 'signal_cellular_nodata',
2279
+ 'signal_cellular_null',
2280
+ 'signal_cellular_off',
2281
+ 'signal_disconnected',
2282
+ 'signal_wifi_0_bar',
2283
+ 'signal_wifi_4_bar',
2284
+ 'signal_wifi_bad',
2285
+ 'signal_wifi_off',
2286
+ 'signal_wifi_statusbar_not_connected',
2287
+ 'signal_wifi_statusbar_null',
2288
+ 'signature',
2289
+ 'signpost',
2290
+ 'sim_card',
2291
+ 'sim_card_download',
2292
+ 'single_bed',
2293
+ 'sip',
2294
+ 'skateboarding',
2295
+ 'skeleton',
2296
+ 'skip_next',
2297
+ 'skip_previous',
2298
+ 'skull',
2299
+ 'sledding',
2300
+ 'sleep',
2301
+ 'sleep_score',
2302
+ 'slide_library',
2303
+ 'slideshow',
2304
+ 'slow_motion_video',
2305
+ 'smart_button',
2306
+ 'smart_display',
2307
+ 'smart_outlet',
2308
+ 'smart_screen',
2309
+ 'smart_toy',
2310
+ 'smartphone',
2311
+ 'smb_share',
2312
+ 'smoke_free',
2313
+ 'smoking_rooms',
2314
+ 'sms',
2315
+ 'sms_failed',
2316
+ 'snippet_folder',
2317
+ 'snooze',
2318
+ 'snowboarding',
2319
+ 'snowing',
2320
+ 'snowmobile',
2321
+ 'snowshoeing',
2322
+ 'soap',
2323
+ 'social_distance',
2324
+ 'social_leaderboard',
2325
+ 'solar_power',
2326
+ 'sort',
2327
+ 'sort_by_alpha',
2328
+ 'sos',
2329
+ 'sound_detection_dog_barking',
2330
+ 'sound_detection_glass_break',
2331
+ 'sound_detection_loud_sound',
2332
+ 'sound_sampler',
2333
+ 'soup_kitchen',
2334
+ 'source_notes',
2335
+ 'south',
2336
+ 'south_america',
2337
+ 'south_east',
2338
+ 'south_west',
2339
+ 'spa',
2340
+ 'space_bar',
2341
+ 'space_dashboard',
2342
+ 'spatial_audio',
2343
+ 'spatial_audio_off',
2344
+ 'spatial_tracking',
2345
+ 'speaker',
2346
+ 'speaker_group',
2347
+ 'speaker_notes',
2348
+ 'speaker_notes_off',
2349
+ 'speaker_phone',
2350
+ 'special_character',
2351
+ 'specific_gravity',
2352
+ 'speech_to_text',
2353
+ 'speed',
2354
+ 'spellcheck',
2355
+ 'splitscreen',
2356
+ 'spo2',
2357
+ 'spoke',
2358
+ 'spoof',
2359
+ 'sports',
2360
+ 'sports_bar',
2361
+ 'sports_baseball',
2362
+ 'sports_basketball',
2363
+ 'sports_cricket',
2364
+ 'sports_esports',
2365
+ 'sports_football',
2366
+ 'sports_golf',
2367
+ 'sports_gymnastics',
2368
+ 'sports_handball',
2369
+ 'sports_hockey',
2370
+ 'sports_kabaddi',
2371
+ 'sports_martial_arts',
2372
+ 'sports_mma',
2373
+ 'sports_motorsports',
2374
+ 'sports_rugby',
2375
+ 'sports_score',
2376
+ 'sports_soccer',
2377
+ 'sports_tennis',
2378
+ 'sports_volleyball',
2379
+ 'sprinkler',
2380
+ 'sprint',
2381
+ 'square',
2382
+ 'square_foot',
2383
+ 'ssid_chart',
2384
+ 'stacked_bar_chart',
2385
+ 'stacked_line_chart',
2386
+ 'stadia_controller',
2387
+ 'stadium',
2388
+ 'stairs',
2389
+ 'star',
2390
+ 'star_half',
2391
+ 'star_rate',
2392
+ 'star_rate_half',
2393
+ 'stars',
2394
+ 'start',
2395
+ 'stay_current_landscape',
2396
+ 'stay_current_portrait',
2397
+ 'stay_primary_landscape',
2398
+ 'stay_primary_portrait',
2399
+ 'step',
2400
+ 'step_into',
2401
+ 'step_out',
2402
+ 'step_over',
2403
+ 'steps',
2404
+ 'stethoscope',
2405
+ 'stethoscope_arrow',
2406
+ 'stethoscope_check',
2407
+ 'sticky_note_2',
2408
+ 'stop',
2409
+ 'stop_circle',
2410
+ 'stop_screen_share',
2411
+ 'storage',
2412
+ 'store',
2413
+ 'storefront',
2414
+ 'storm',
2415
+ 'straight',
2416
+ 'straighten',
2417
+ 'stream',
2418
+ 'stream_apps',
2419
+ 'streetview',
2420
+ 'stress_management',
2421
+ 'strikethrough_s',
2422
+ 'stroke_full',
2423
+ 'stroke_partial',
2424
+ 'stroller',
2425
+ 'style',
2426
+ 'styler',
2427
+ 'stylus_laser_pointer',
2428
+ 'subdirectory_arrow_left',
2429
+ 'subdirectory_arrow_right',
2430
+ 'subject',
2431
+ 'subscript',
2432
+ 'subscriptions',
2433
+ 'subtitles',
2434
+ 'subtitles_off',
2435
+ 'subway',
2436
+ 'summarize',
2437
+ 'sunny',
2438
+ 'sunny_snowing',
2439
+ 'superscript',
2440
+ 'supervised_user_circle',
2441
+ 'supervisor_account',
2442
+ 'support',
2443
+ 'support_agent',
2444
+ 'surfing',
2445
+ 'surgical',
2446
+ 'surround_sound',
2447
+ 'swap_calls',
2448
+ 'swap_horiz',
2449
+ 'swap_horizontal_circle',
2450
+ 'swap_vert',
2451
+ 'swap_vertical_circle',
2452
+ 'swipe',
2453
+ 'swipe_down',
2454
+ 'swipe_down_alt',
2455
+ 'swipe_left',
2456
+ 'swipe_left_alt',
2457
+ 'swipe_right',
2458
+ 'swipe_right_alt',
2459
+ 'swipe_up',
2460
+ 'swipe_up_alt',
2461
+ 'swipe_vertical',
2462
+ 'switch',
2463
+ 'switch_access',
2464
+ 'switch_access_shortcut',
2465
+ 'switch_access_shortcut_add',
2466
+ 'switch_account',
2467
+ 'switch_camera',
2468
+ 'switch_left',
2469
+ 'switch_right',
2470
+ 'switch_video',
2471
+ 'swords',
2472
+ 'symptoms',
2473
+ 'synagogue',
2474
+ 'sync',
2475
+ 'sync_alt',
2476
+ 'sync_disabled',
2477
+ 'sync_lock',
2478
+ 'sync_problem',
2479
+ 'sync_saved_locally',
2480
+ 'syringe',
2481
+ 'system_update',
2482
+ 'system_update_alt',
2483
+ 'tab',
2484
+ 'tab_close',
2485
+ 'tab_close_right',
2486
+ 'tab_duplicate',
2487
+ 'tab_group',
2488
+ 'tab_move',
2489
+ 'tab_new_right',
2490
+ 'tab_recent',
2491
+ 'tab_unselected',
2492
+ 'table',
2493
+ 'table_bar',
2494
+ 'table_chart',
2495
+ 'table_chart_view',
2496
+ 'table_lamp',
2497
+ 'table_restaurant',
2498
+ 'table_rows',
2499
+ 'table_rows_narrow',
2500
+ 'table_view',
2501
+ 'tablet',
2502
+ 'tablet_android',
2503
+ 'tablet_mac',
2504
+ 'tag',
2505
+ 'takeout_dining',
2506
+ 'tamper_detection_off',
2507
+ 'tamper_detection_on',
2508
+ 'tap_and_play',
2509
+ 'tapas',
2510
+ 'task',
2511
+ 'task_alt',
2512
+ 'taunt',
2513
+ 'taxi_alert',
2514
+ 'team_dashboard',
2515
+ 'temp_preferences_custom',
2516
+ 'temp_preferences_eco',
2517
+ 'temple_buddhist',
2518
+ 'temple_hindu',
2519
+ 'tenancy',
2520
+ 'terminal',
2521
+ 'text_decrease',
2522
+ 'text_fields',
2523
+ 'text_format',
2524
+ 'text_increase',
2525
+ 'text_rotate_up',
2526
+ 'text_rotate_vertical',
2527
+ 'text_rotation_angledown',
2528
+ 'text_rotation_angleup',
2529
+ 'text_rotation_down',
2530
+ 'text_rotation_none',
2531
+ 'text_select_end',
2532
+ 'text_select_jump_to_beginning',
2533
+ 'text_select_jump_to_end',
2534
+ 'text_select_move_back_character',
2535
+ 'text_select_move_back_word',
2536
+ 'text_select_move_down',
2537
+ 'text_select_move_forward_character',
2538
+ 'text_select_move_forward_word',
2539
+ 'text_select_move_up',
2540
+ 'text_select_start',
2541
+ 'text_snippet',
2542
+ 'text_to_speech',
2543
+ 'texture',
2544
+ 'theater_comedy',
2545
+ 'theaters',
2546
+ 'thermometer',
2547
+ 'thermometer_gain',
2548
+ 'thermometer_loss',
2549
+ 'thermostat',
2550
+ 'thermostat_auto',
2551
+ 'thermostat_carbon',
2552
+ 'thumb_down',
2553
+ 'thumb_down_off',
2554
+ 'thumb_up',
2555
+ 'thumb_up_off',
2556
+ 'thumbnail_bar',
2557
+ 'thumbs_up_down',
2558
+ 'thunderstorm',
2559
+ 'tibia',
2560
+ 'tibia_alt',
2561
+ 'time_auto',
2562
+ 'timelapse',
2563
+ 'timeline',
2564
+ 'timer',
2565
+ 'timer_10',
2566
+ 'timer_10_alt_1',
2567
+ 'timer_10_select',
2568
+ 'timer_3',
2569
+ 'timer_3_alt_1',
2570
+ 'timer_3_select',
2571
+ 'timer_off',
2572
+ 'tips_and_updates',
2573
+ 'tire_repair',
2574
+ 'title',
2575
+ 'toc',
2576
+ 'today',
2577
+ 'toggle_off',
2578
+ 'toggle_on',
2579
+ 'token',
2580
+ 'toll',
2581
+ 'tonality',
2582
+ 'tools_flat_head',
2583
+ 'tools_installation_kit',
2584
+ 'tools_ladder',
2585
+ 'tools_level',
2586
+ 'tools_phillips',
2587
+ 'tools_pliers_wire_stripper',
2588
+ 'tools_power_drill',
2589
+ 'tools_wrench',
2590
+ 'top_panel_close',
2591
+ 'top_panel_open',
2592
+ 'topic',
2593
+ 'tornado',
2594
+ 'total_dissolved_solids',
2595
+ 'touch_app',
2596
+ 'tour',
2597
+ 'toys',
2598
+ 'toys_fan',
2599
+ 'track_changes',
2600
+ 'traffic',
2601
+ 'trail_length',
2602
+ 'trail_length_medium',
2603
+ 'trail_length_short',
2604
+ 'train',
2605
+ 'tram',
2606
+ 'transcribe',
2607
+ 'transfer_within_a_station',
2608
+ 'transform',
2609
+ 'transgender',
2610
+ 'transit_enterexit',
2611
+ 'translate',
2612
+ 'transportation',
2613
+ 'travel_explore',
2614
+ 'trending_down',
2615
+ 'trending_flat',
2616
+ 'trending_up',
2617
+ 'trip_origin',
2618
+ 'trolley',
2619
+ 'tsunami',
2620
+ 'tty',
2621
+ 'tune',
2622
+ 'turn_left',
2623
+ 'turn_right',
2624
+ 'turn_sharp_left',
2625
+ 'turn_sharp_right',
2626
+ 'turn_slight_left',
2627
+ 'turn_slight_right',
2628
+ 'tv',
2629
+ 'tv_gen',
2630
+ 'tv_off',
2631
+ 'tv_with_assistant',
2632
+ 'two_wheeler',
2633
+ 'type_specimen',
2634
+ 'u_turn_left',
2635
+ 'u_turn_right',
2636
+ 'ulna_radius',
2637
+ 'ulna_radius_alt',
2638
+ 'umbrella',
2639
+ 'unarchive',
2640
+ 'undo',
2641
+ 'unfloat_landscape',
2642
+ 'unfloat_portrait',
2643
+ 'unfold_less',
2644
+ 'unfold_less_double',
2645
+ 'unfold_more',
2646
+ 'unfold_more_double',
2647
+ 'ungroup',
2648
+ 'unknown_document',
2649
+ 'unknown_med',
2650
+ 'unpublished',
2651
+ 'unsubscribe',
2652
+ 'upcoming',
2653
+ 'update',
2654
+ 'update_disabled',
2655
+ 'upgrade',
2656
+ 'upload',
2657
+ 'upload_file',
2658
+ 'urology',
2659
+ 'usb',
2660
+ 'usb_off',
2661
+ 'vaccines',
2662
+ 'valve',
2663
+ 'vape_free',
2664
+ 'vaping_rooms',
2665
+ 'variables',
2666
+ 'ventilator',
2667
+ 'verified',
2668
+ 'verified_user',
2669
+ 'vertical_align_bottom',
2670
+ 'vertical_align_center',
2671
+ 'vertical_align_top',
2672
+ 'vertical_distribute',
2673
+ 'vertical_shades',
2674
+ 'vertical_shades_closed',
2675
+ 'vertical_split',
2676
+ 'vibration',
2677
+ 'video_call',
2678
+ 'video_camera_back',
2679
+ 'video_camera_front',
2680
+ 'video_camera_front_off',
2681
+ 'video_chat',
2682
+ 'video_file',
2683
+ 'video_label',
2684
+ 'video_library',
2685
+ 'video_settings',
2686
+ 'video_stable',
2687
+ 'videocam',
2688
+ 'videocam_off',
2689
+ 'videogame_asset',
2690
+ 'videogame_asset_off',
2691
+ 'view_agenda',
2692
+ 'view_array',
2693
+ 'view_carousel',
2694
+ 'view_column',
2695
+ 'view_column_2',
2696
+ 'view_comfy',
2697
+ 'view_comfy_alt',
2698
+ 'view_compact',
2699
+ 'view_compact_alt',
2700
+ 'view_cozy',
2701
+ 'view_day',
2702
+ 'view_headline',
2703
+ 'view_in_ar',
2704
+ 'view_in_ar_new',
2705
+ 'view_kanban',
2706
+ 'view_list',
2707
+ 'view_module',
2708
+ 'view_quilt',
2709
+ 'view_sidebar',
2710
+ 'view_stream',
2711
+ 'view_timeline',
2712
+ 'view_week',
2713
+ 'vignette',
2714
+ 'villa',
2715
+ 'visibility',
2716
+ 'visibility_off',
2717
+ 'vital_signs',
2718
+ 'vitals',
2719
+ 'voice_chat',
2720
+ 'voice_over_off',
2721
+ 'voicemail',
2722
+ 'volcano',
2723
+ 'volume_down',
2724
+ 'volume_down_alt',
2725
+ 'volume_mute',
2726
+ 'volume_off',
2727
+ 'volume_up',
2728
+ 'volunteer_activism',
2729
+ 'voting_chip',
2730
+ 'vpn_key',
2731
+ 'vpn_key_alert',
2732
+ 'vpn_key_off',
2733
+ 'vpn_lock',
2734
+ 'vrpano',
2735
+ 'wall_lamp',
2736
+ 'wallet',
2737
+ 'wallpaper',
2738
+ 'ward',
2739
+ 'warehouse',
2740
+ 'warning',
2741
+ 'warning_off',
2742
+ 'wash',
2743
+ 'watch',
2744
+ 'watch_button_press',
2745
+ 'watch_off',
2746
+ 'watch_screentime',
2747
+ 'watch_wake',
2748
+ 'water',
2749
+ 'water_bottle',
2750
+ 'water_bottle_large',
2751
+ 'water_damage',
2752
+ 'water_do',
2753
+ 'water_drop',
2754
+ 'water_ec',
2755
+ 'water_full',
2756
+ 'water_heater',
2757
+ 'water_lock',
2758
+ 'water_loss',
2759
+ 'water_lux',
2760
+ 'water_medium',
2761
+ 'water_orp',
2762
+ 'water_ph',
2763
+ 'water_voc',
2764
+ 'waterfall_chart',
2765
+ 'waves',
2766
+ 'waving_hand',
2767
+ 'wb_auto',
2768
+ 'wb_incandescent',
2769
+ 'wb_iridescent',
2770
+ 'wb_shade',
2771
+ 'wb_sunny',
2772
+ 'wb_twilight',
2773
+ 'wc',
2774
+ 'weather_snowy',
2775
+ 'web',
2776
+ 'web_asset',
2777
+ 'web_asset_off',
2778
+ 'web_stories',
2779
+ 'webhook',
2780
+ 'weekend',
2781
+ 'weight',
2782
+ 'west',
2783
+ 'whatshot',
2784
+ 'wheelchair_pickup',
2785
+ 'where_to_vote',
2786
+ 'widgets',
2787
+ 'width',
2788
+ 'width_full',
2789
+ 'width_normal',
2790
+ 'width_wide',
2791
+ 'wifi',
2792
+ 'wifi_1_bar',
2793
+ 'wifi_2_bar',
2794
+ 'wifi_add',
2795
+ 'wifi_calling',
2796
+ 'wifi_calling_1',
2797
+ 'wifi_calling_2',
2798
+ 'wifi_calling_3',
2799
+ 'wifi_channel',
2800
+ 'wifi_find',
2801
+ 'wifi_lock',
2802
+ 'wifi_off',
2803
+ 'wifi_password',
2804
+ 'wifi_protected_setup',
2805
+ 'wifi_proxy',
2806
+ 'wifi_tethering',
2807
+ 'wifi_tethering_error',
2808
+ 'wifi_tethering_off',
2809
+ 'wind_power',
2810
+ 'window',
2811
+ 'window_closed',
2812
+ 'window_open',
2813
+ 'window_sensor',
2814
+ 'wine_bar',
2815
+ 'woman',
2816
+ 'woman_2',
2817
+ 'work',
2818
+ 'work_history',
2819
+ 'workspace_premium',
2820
+ 'workspaces',
2821
+ 'workspaces_outline',
2822
+ 'wounds_injuries',
2823
+ 'wrap_text',
2824
+ 'wrist',
2825
+ 'wrong_location',
2826
+ 'wysiwyg',
2827
+ 'yard',
2828
+ 'youtube_activity',
2829
+ 'youtube_searched_for',
2830
+ 'zone_person_alert',
2831
+ 'zone_person_idle',
2832
+ 'zone_person_urgent',
2833
+ 'zoom_in',
2834
+ 'zoom_in_map',
2835
+ 'zoom_out',
2836
+ 'zoom_out_map',
2837
+ ];
2838
+ export default icons;