@bagelink/vue 0.0.322 → 0.0.335

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 (72) hide show
  1. package/dist/components/ComboBox.vue.d.ts.map +1 -1
  2. package/dist/components/MaterialIcon.vue.d.ts +4 -2
  3. package/dist/components/MaterialIcon.vue.d.ts.map +1 -1
  4. package/dist/components/Modal.vue.d.ts +0 -1
  5. package/dist/components/ModalBglForm.vue.d.ts.map +1 -1
  6. package/dist/components/Popover.vue.d.ts +10 -0
  7. package/dist/components/Popover.vue.d.ts.map +1 -0
  8. package/dist/components/form/BglForm.vue.d.ts +1 -9
  9. package/dist/components/form/BglForm.vue.d.ts.map +1 -1
  10. package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
  11. package/dist/components/form/inputs/SelectInput.vue.d.ts +22 -16
  12. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/TextArea.vue.d.ts +3 -1
  14. package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -1
  15. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  16. package/dist/components/formkit/index.d.ts +1 -14
  17. package/dist/components/formkit/index.d.ts.map +1 -1
  18. package/dist/components/index.d.ts +0 -2
  19. package/dist/components/index.d.ts.map +1 -1
  20. package/dist/components/layout/Layout.vue.d.ts +8 -0
  21. package/dist/components/layout/Layout.vue.d.ts.map +1 -1
  22. package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -1
  23. package/dist/components/layout/TabbedLayout.vue.d.ts +38 -0
  24. package/dist/components/layout/TabbedLayout.vue.d.ts.map +1 -0
  25. package/dist/components/layout/Tabs.vue.d.ts +24 -0
  26. package/dist/components/layout/Tabs.vue.d.ts.map +1 -0
  27. package/dist/components/layout/TabsBody.vue.d.ts +21 -0
  28. package/dist/components/layout/TabsBody.vue.d.ts.map +1 -0
  29. package/dist/components/layout/TabsNav.vue.d.ts +25 -0
  30. package/dist/components/layout/TabsNav.vue.d.ts.map +1 -0
  31. package/dist/components/layout/index.d.ts +4 -0
  32. package/dist/components/layout/index.d.ts.map +1 -1
  33. package/dist/components/layout/tabsManager.d.ts +4 -0
  34. package/dist/components/layout/tabsManager.d.ts.map +1 -0
  35. package/dist/index.cjs +783 -2035
  36. package/dist/index.d.ts +0 -1
  37. package/dist/index.mjs +785 -2037
  38. package/dist/style.css +2129 -695
  39. package/dist/types/index.d.ts +7 -1
  40. package/dist/types/index.d.ts.map +1 -1
  41. package/dist/types/materialIcon.d.ts +2 -0
  42. package/dist/types/materialIcon.d.ts.map +1 -0
  43. package/dist/types/materialIcons.d.ts +1 -1
  44. package/dist/types/materialIcons.d.ts.map +1 -1
  45. package/dist/utils/index.d.ts.map +1 -1
  46. package/package.json +1 -1
  47. package/src/components/MaterialIcon.vue +3 -2
  48. package/src/components/PageTitle.vue +10 -20
  49. package/src/components/form/BglField.vue +2 -2
  50. package/src/components/form/BglForm.vue +49 -53
  51. package/src/components/form/inputs/SelectInput.vue +128 -484
  52. package/src/components/form/inputs/TextInput.vue +158 -112
  53. package/src/components/index.ts +0 -2
  54. package/src/components/layout/Layout.vue +34 -13
  55. package/src/components/layout/SidebarMenu.vue +22 -22
  56. package/src/components/layout/TabbedLayout.vue +79 -0
  57. package/src/components/layout/Tabs.vue +19 -0
  58. package/src/components/layout/TabsBody.vue +15 -0
  59. package/src/components/layout/TabsNav.vue +48 -0
  60. package/src/components/layout/index.ts +4 -0
  61. package/src/components/layout/tabsManager.ts +18 -0
  62. package/src/styles/appearance.css +81 -0
  63. package/src/styles/bagel.css +2 -0
  64. package/src/styles/layout.css +162 -17
  65. package/src/styles/mobilLayout.css +1476 -0
  66. package/src/styles/text.css +153 -1
  67. package/src/types/index.ts +9 -1
  68. package/src/types/materialIcons.ts +1180 -1178
  69. package/src/utils/BagelFormUtils.ts +1 -1
  70. package/src/utils/index.ts +0 -1
  71. package/src/components/ComboBox.vue +0 -165
  72. package/src/components/TabbedLayout.vue +0 -87
@@ -1,1184 +1,1186 @@
1
1
  export type MaterialIcons =
2
- '123'
3
- | '18_up_rating'
4
- | '3d_rotation'
5
- | '3p'
6
- | '6_ft_apart'
7
- | 'abc'
8
- | 'accessibility'
9
- | 'accessibility_new'
10
- | 'accessible'
11
- | 'accessible_forward'
12
- | 'account_box'
13
- | 'account_child'
14
- | 'account_child_invert'
15
- | 'account_circle'
2
+ '123'
3
+ | '18_up_rating'
4
+ | '3d_rotation'
5
+ | '3p'
6
+ | '6_ft_apart'
7
+ | 'abc'
8
+ | 'accessibility'
9
+ | 'accessibility_new'
10
+ | 'accessible'
11
+ | 'accessible_forward'
12
+ | 'account_box'
13
+ | 'account_child'
14
+ | 'account_child_invert'
15
+ | 'account_circle'
16
16
 
17
- | 'account_circle_off'
18
- | 'action_key'
19
- | 'acute'
20
- | 'ad'
21
- | 'ad_group'
22
- | 'ad_group_off'
23
- | 'ad_off'
24
- | 'ad_units'
25
- | 'add'
26
- | 'add_a_photo'
27
- | 'add_ad'
28
- | 'add_alert'
29
- | 'add_box'
30
- | 'add_call'
31
- | 'add_circle'
32
- | 'add_comment'
33
- | 'add_photo_alternate'
34
- | 'add_reaction'
35
- | 'add_task'
36
- | 'add_to_photos'
37
- | 'adjust'
38
- | 'admin_meds'
39
- | 'ads_click'
40
- | 'agender'
41
- | 'alarm'
42
- | 'alarm_add'
43
- | 'alarm_off'
44
- | 'alarm_on'
45
- | 'alarm_smart_wake'
46
- | 'all_inbox'
47
- | 'all_inclusive'
48
- | 'all_match'
49
- | 'all_out'
50
- | 'allergies'
51
- | 'allergy'
52
- | 'alternate_email'
53
- | 'altitude'
54
- | 'amend'
55
- | 'anchor'
56
- | 'animation'
57
- | 'apartment'
58
- | 'api'
59
- | 'app_badging'
60
- | 'app_registration'
61
- | 'app_shortcut'
62
- | 'approval'
63
- | 'approval_delegation'
64
- | 'apps'
65
- | 'apps_outage'
66
- | 'arrow_and_edge'
67
- | 'arrow_back'
68
- | 'arrow_back_ios'
69
- | 'arrow_back_ios_new'
70
- | 'arrow_circle_down'
71
- | 'arrow_circle_left'
72
- | 'arrow_circle_right'
73
- | 'arrow_circle_up'
74
- | 'arrow_downward'
75
- | 'arrow_downward_alt'
76
- | 'arrow_drop_down'
77
- | 'arrow_drop_down_circle'
78
- | 'arrow_drop_up'
79
- | 'arrow_forward'
80
- | 'arrow_forward_ios'
81
- | 'arrow_insert'
82
- | 'arrow_left'
83
- | 'arrow_left_alt'
84
- | 'arrow_or_edge'
85
- | 'arrow_outward'
86
- | 'arrow_range'
87
- | 'arrow_right'
88
- | 'arrow_right_alt'
89
- | 'arrow_selector_tool'
90
- | 'arrow_split'
91
- | 'arrow_top_left'
92
- | 'arrow_top_right'
93
- | 'arrow_upward'
94
- | 'arrow_upward_alt'
95
- | 'arrows_outward'
96
- | 'aspect_ratio'
97
- | 'assistant_direction'
98
- | 'assistant_navigation'
99
- | 'attach_email'
100
- | 'attribution'
101
- | 'auto_awesome_mosaic'
102
- | 'auto_awesome_motion'
103
- | 'auto_delete'
104
- | 'auto_read_pause'
105
- | 'auto_read_play'
106
- | 'auto_stories'
107
- | 'autorenew'
108
- | 'award_star'
109
- | 'back_to_tab'
110
- | 'background_replace'
111
- | 'backspace'
112
- | 'backup'
113
- | 'backup_table'
114
- | 'badge'
115
- | 'barefoot'
116
- | 'batch_prediction'
117
- | 'bedtime'
118
- | 'bedtime_off'
119
- | 'blind'
120
- | 'block'
121
- | 'blood_pressure'
122
- | 'bloodtype'
123
- | 'blur_on'
124
- | 'body_fat'
125
- | 'body_system'
126
- | 'bolt'
127
- | 'bomb'
128
- | 'bookmark'
129
- | 'bookmark_add'
130
- | 'bookmark_added'
131
- | 'bookmark_manager'
132
- | 'bookmark_remove'
133
- | 'bookmarks'
134
- | 'bottom_app_bar'
135
- | 'bottom_drawer'
136
- | 'bottom_navigation'
137
- | 'bottom_panel_close'
138
- | 'bottom_panel_open'
139
- | 'bottom_right_click'
140
- | 'bottom_sheets'
141
- | 'boy'
142
- | 'breastfeeding'
143
- | 'brightness_1'
144
- | 'brightness_4'
145
- | 'brightness_5'
146
- | 'brightness_6'
147
- | 'bring_your_own_ip'
148
- | 'broken_image'
149
- | 'browse'
150
- | 'browse_activity'
151
- | 'browse_gallery'
152
- | 'brush'
153
- | 'bubble'
154
- | 'bubbles'
155
- | 'bug_report'
156
- | 'build'
157
- | 'build_circle'
158
- | 'business_messages'
159
- | 'buttons_alt'
160
- | 'cached'
161
- | 'calendar_add_on'
162
- | 'calendar_apps_script'
163
- | 'calendar_clock'
164
- | 'calendar_month'
165
- | 'calendar_today'
166
- | 'call'
167
- | 'call_end'
168
- | 'call_log'
169
- | 'call_made'
170
- | 'call_merge'
171
- | 'call_missed'
172
- | 'call_missed_outgoing'
173
- | 'call_quality'
174
- | 'call_received'
175
- | 'call_split'
176
- | 'camera'
177
- | 'cancel'
178
- | 'cancel_presentation'
179
- | 'cancel_schedule_send'
180
- | 'candle'
181
- | 'captive_portal'
182
- | 'capture'
183
- | 'cardio_load'
184
- | 'cardiology'
185
- | 'cards'
186
- | 'category'
187
- | 'celebration'
188
- | 'cell_tower'
189
- | 'cell_wifi'
190
- | 'center_focus_strong'
191
- | 'center_focus_weak'
192
- | 'change_circle'
193
- | 'change_history'
194
- | 'chat'
195
- | 'chat_add_on'
196
- | 'chat_apps_script'
197
- | 'chat_bubble'
198
- | 'chat_error'
199
- | 'chat_info'
200
- | 'chat_paste_go'
201
- | 'check'
202
- | 'check_box'
203
- | 'check_box_outline_blank'
204
- | 'check_circle'
205
- | 'check_indeterminate_small'
206
- | 'check_small'
207
- | 'cheer'
208
- | 'chess'
209
- | 'chevron_left'
210
- | 'chevron_right'
211
- | 'chip_extraction'
212
- | 'chips'
213
- | 'chrome_reader_mode'
214
- | 'chronic'
215
- | 'circle'
216
- | 'circle_notifications'
217
- | 'circles'
218
- | 'circles_ext'
219
- | 'clean_hands'
220
- | 'clear_all'
221
- | 'clear_day'
222
- | 'clear_night'
223
- | 'clinical_notes'
224
- | 'clock_loader_10'
225
- | 'clock_loader_20'
226
- | 'clock_loader_40'
227
- | 'clock_loader_60'
228
- | 'clock_loader_80'
229
- | 'clock_loader_90'
230
- | 'close'
231
- | 'close_fullscreen'
232
- | 'close_small'
233
- | 'cloudy_snowing'
234
- | 'co2'
235
- | 'co_present'
236
- | 'code'
237
- | 'code_blocks'
238
- | 'code_off'
239
- | 'cognition'
240
- | 'collapse_all'
241
- | 'collapse_content'
242
- | 'collections_bookmark'
243
- | 'colorize'
244
- | 'comedy_mask'
245
- | 'comic_bubble'
246
- | 'comment'
247
- | 'comment_bank'
248
- | 'comments_disabled'
249
- | 'commit'
250
- | 'communication'
251
- | 'communities'
252
- | 'compare'
253
- | 'compare_arrows'
254
- | 'component_exchange'
255
- | 'compost'
256
- | 'compress'
257
- | 'conditions'
258
- | 'congenital'
259
- | 'connect_without_contact'
260
- | 'contact_emergency'
261
- | 'contact_mail'
262
- | 'contact_phone'
263
- | 'contact_support'
264
- | 'contacts'
265
- | 'contacts_product'
266
- | 'contrast'
267
- | 'cookie'
268
- | 'cookie_off'
269
- | 'coronavirus'
270
- | 'create_new_folder'
271
- | 'crop'
272
- | 'crop_free'
273
- | 'crop_square'
274
- | 'crossword'
275
- | 'crowdsource'
276
- | 'cruelty_free'
277
- | 'css'
278
- | 'cycle'
279
- | 'cyclone'
280
- | 'dangerous'
281
- | 'dark_mode'
282
- | 'data_alert'
283
- | 'data_check'
284
- | 'data_info_alert'
285
- | 'data_loss_prevention'
286
- | 'data_thresholding'
287
- | 'dataset'
288
- | 'dataset_linked'
289
- | 'date_range'
290
- | 'deceased'
291
- | 'dehaze'
292
- | 'delete'
293
- | 'delete_forever'
294
- | 'delete_history'
295
- | 'delete_sweep'
296
- | 'demography'
297
- | 'density_large'
298
- | 'density_medium'
299
- | 'density_small'
300
- | 'dentistry'
301
- | 'deployed_code'
302
- | 'deployed_code_account'
303
- | 'deployed_code_alert'
304
- | 'deployed_code_history'
305
- | 'deployed_code_update'
306
- | 'dermatology'
307
- | 'description'
308
- | 'destruction'
309
- | 'details'
310
- | 'developer_guide'
311
- | 'dew_point'
312
- | 'dialer_sip'
313
- | 'dialogs'
314
- | 'dialpad'
315
- | 'diamond'
316
- | 'digital_wellbeing'
317
- | 'directory_sync'
318
- | 'disabled_by_default'
319
- | 'diversity_1'
320
- | 'diversity_2'
321
- | 'diversity_3'
322
- | 'diversity_4'
323
- | 'do_not_disturb_off'
324
- | 'do_not_disturb_on'
325
- | 'domain_verification'
326
- | 'domain_verification_off'
327
- | 'domino_mask'
328
- | 'done'
329
- | 'done_all'
330
- | 'done_outline'
331
- | 'double_arrow'
332
- | 'download'
333
- | 'download_2'
334
- | 'download_done'
335
- | 'download_for_offline'
336
- | 'downloading'
337
- | 'draft_orders'
338
- | 'drafts'
339
- | 'drag_click'
340
- | 'drag_indicator'
341
- | 'drag_pan'
342
- | 'dropdown'
343
- | 'duo'
344
- | 'dynamic_feed'
345
- | 'dynamic_form'
346
- | 'e911_avatar'
347
- | 'earthquake'
348
- | 'eco'
349
- | 'edit'
17
+ | 'account_circle_off'
18
+ | 'action_key'
19
+ | 'acute'
20
+ | 'ad'
21
+ | 'ad_group'
22
+ | 'ad_group_off'
23
+ | 'ad_off'
24
+ | 'ad_units'
25
+ | 'add'
26
+ | 'add_a_photo'
27
+ | 'add_ad'
28
+ | 'add_alert'
29
+ | 'add_box'
30
+ | 'add_call'
31
+ | 'add_circle'
32
+ | 'add_comment'
33
+ | 'add_photo_alternate'
34
+ | 'add_reaction'
35
+ | 'add_task'
36
+ | 'add_to_photos'
37
+ | 'adjust'
38
+ | 'admin_meds'
39
+ | 'ads_click'
40
+ | 'agender'
41
+ | 'alarm'
42
+ | 'alarm_add'
43
+ | 'alarm_off'
44
+ | 'alarm_on'
45
+ | 'alarm_smart_wake'
46
+ | 'all_inbox'
47
+ | 'all_inclusive'
48
+ | 'all_match'
49
+ | 'all_out'
50
+ | 'allergies'
51
+ | 'allergy'
52
+ | 'alternate_email'
53
+ | 'altitude'
54
+ | 'amend'
55
+ | 'anchor'
56
+ | 'animation'
57
+ | 'apartment'
58
+ | 'api'
59
+ | 'app_badging'
60
+ | 'app_registration'
61
+ | 'app_shortcut'
62
+ | 'approval'
63
+ | 'approval_delegation'
64
+ | 'apps'
65
+ | 'apps_outage'
66
+ | 'arrow_and_edge'
67
+ | 'arrow_back'
68
+ | 'arrow_back_ios'
69
+ | 'arrow_back_ios_new'
70
+ | 'arrow_circle_down'
71
+ | 'arrow_circle_left'
72
+ | 'arrow_circle_right'
73
+ | 'arrow_circle_up'
74
+ | 'arrow_downward'
75
+ | 'arrow_downward_alt'
76
+ | 'arrow_drop_down'
77
+ | 'arrow_drop_down_circle'
78
+ | 'arrow_drop_up'
79
+ | 'arrow_forward'
80
+ | 'arrow_forward_ios'
81
+ | 'arrow_insert'
82
+ | 'arrow_left'
83
+ | 'arrow_left_alt'
84
+ | 'arrow_or_edge'
85
+ | 'arrow_outward'
86
+ | 'arrow_range'
87
+ | 'arrow_right'
88
+ | 'arrow_right_alt'
89
+ | 'arrow_selector_tool'
90
+ | 'arrow_split'
91
+ | 'arrow_top_left'
92
+ | 'arrow_top_right'
93
+ | 'arrow_upward'
94
+ | 'arrow_upward_alt'
95
+ | 'arrows_outward'
96
+ | 'aspect_ratio'
97
+ | 'assistant_direction'
98
+ | 'assistant_navigation'
99
+ | 'attach_email'
100
+ | 'attribution'
101
+ | 'auto_awesome_mosaic'
102
+ | 'auto_awesome_motion'
103
+ | 'auto_delete'
104
+ | 'auto_read_pause'
105
+ | 'auto_read_play'
106
+ | 'auto_stories'
107
+ | 'autorenew'
108
+ | 'award_star'
109
+ | 'back_to_tab'
110
+ | 'background_replace'
111
+ | 'backspace'
112
+ | 'backup'
113
+ | 'backup_table'
114
+ | 'badge'
115
+ | 'barefoot'
116
+ | 'batch_prediction'
117
+ | 'bedtime'
118
+ | 'bedtime_off'
119
+ | 'blind'
120
+ | 'block'
121
+ | 'blood_pressure'
122
+ | 'bloodtype'
123
+ | 'blur_on'
124
+ | 'body_fat'
125
+ | 'body_system'
126
+ | 'bolt'
127
+ | 'bomb'
128
+ | 'bookmark'
129
+ | 'bookmark_add'
130
+ | 'bookmark_added'
131
+ | 'bookmark_manager'
132
+ | 'bookmark_remove'
133
+ | 'bookmarks'
134
+ | 'bottom_app_bar'
135
+ | 'bottom_drawer'
136
+ | 'bottom_navigation'
137
+ | 'bottom_panel_close'
138
+ | 'bottom_panel_open'
139
+ | 'bottom_right_click'
140
+ | 'bottom_sheets'
141
+ | 'boy'
142
+ | 'breastfeeding'
143
+ | 'brightness_1'
144
+ | 'brightness_4'
145
+ | 'brightness_5'
146
+ | 'brightness_6'
147
+ | 'bring_your_own_ip'
148
+ | 'broken_image'
149
+ | 'browse'
150
+ | 'browse_activity'
151
+ | 'browse_gallery'
152
+ | 'brush'
153
+ | 'bubble'
154
+ | 'bubbles'
155
+ | 'bug_report'
156
+ | 'build'
157
+ | 'build_circle'
158
+ | 'business_messages'
159
+ | 'buttons_alt'
160
+ | 'cached'
161
+ | 'calendar_add_on'
162
+ | 'calendar_apps_script'
163
+ | 'calendar_clock'
164
+ | 'calendar_month'
165
+ | 'calendar_today'
166
+ | 'call'
167
+ | 'call_end'
168
+ | 'call_log'
169
+ | 'call_made'
170
+ | 'call_merge'
171
+ | 'call_missed'
172
+ | 'call_missed_outgoing'
173
+ | 'call_quality'
174
+ | 'call_received'
175
+ | 'call_split'
176
+ | 'camera'
177
+ | 'cancel'
178
+ | 'cancel_presentation'
179
+ | 'cancel_schedule_send'
180
+ | 'candle'
181
+ | 'captive_portal'
182
+ | 'capture'
183
+ | 'cardio_load'
184
+ | 'cardiology'
185
+ | 'cards'
186
+ | 'category'
187
+ | 'celebration'
188
+ | 'cell_tower'
189
+ | 'cell_wifi'
190
+ | 'center_focus_strong'
191
+ | 'center_focus_weak'
192
+ | 'change_circle'
193
+ | 'change_history'
194
+ | 'chat'
195
+ | 'chat_add_on'
196
+ | 'chat_apps_script'
197
+ | 'chat_bubble'
198
+ | 'chat_error'
199
+ | 'chat_info'
200
+ | 'chat_paste_go'
201
+ | 'check'
202
+ | 'check_box'
203
+ | 'check_box_outline_blank'
204
+ | 'check_circle'
205
+ | 'check_indeterminate_small'
206
+ | 'check_small'
207
+ | 'cheer'
208
+ | 'chess'
209
+ | 'chevron_left'
210
+ | 'chevron_right'
211
+ | 'chip_extraction'
212
+ | 'chips'
213
+ | 'chrome_reader_mode'
214
+ | 'chronic'
215
+ | 'circle'
216
+ | 'circle_notifications'
217
+ | 'circles'
218
+ | 'circles_ext'
219
+ | 'clean_hands'
220
+ | 'clear_all'
221
+ | 'clear_day'
222
+ | 'clear_night'
223
+ | 'clinical_notes'
224
+ | 'clock_loader_10'
225
+ | 'clock_loader_20'
226
+ | 'clock_loader_40'
227
+ | 'clock_loader_60'
228
+ | 'clock_loader_80'
229
+ | 'clock_loader_90'
230
+ | 'close'
231
+ | 'close_fullscreen'
232
+ | 'close_small'
233
+ | 'cloudy_snowing'
234
+ | 'co2'
235
+ | 'co_present'
236
+ | 'code'
237
+ | 'code_blocks'
238
+ | 'code_off'
239
+ | 'cognition'
240
+ | 'collapse_all'
241
+ | 'collapse_content'
242
+ | 'collections_bookmark'
243
+ | 'colorize'
244
+ | 'comedy_mask'
245
+ | 'comic_bubble'
246
+ | 'comment'
247
+ | 'comment_bank'
248
+ | 'comments_disabled'
249
+ | 'commit'
250
+ | 'communication'
251
+ | 'communities'
252
+ | 'compare'
253
+ | 'compare_arrows'
254
+ | 'component_exchange'
255
+ | 'compost'
256
+ | 'compress'
257
+ | 'conditions'
258
+ | 'congenital'
259
+ | 'connect_without_contact'
260
+ | 'contact_emergency'
261
+ | 'contact_mail'
262
+ | 'contact_phone'
263
+ | 'contact_support'
264
+ | 'contacts'
265
+ | 'contacts_product'
266
+ | 'contrast'
267
+ | 'cookie'
268
+ | 'cookie_off'
269
+ | 'coronavirus'
270
+ | 'create_new_folder'
271
+ | 'crop'
272
+ | 'crop_free'
273
+ | 'crop_square'
274
+ | 'crossword'
275
+ | 'crowdsource'
276
+ | 'cruelty_free'
277
+ | 'css'
278
+ | 'cycle'
279
+ | 'cyclone'
280
+ | 'dangerous'
281
+ | 'dark_mode'
282
+ | 'data_alert'
283
+ | 'data_check'
284
+ | 'data_info_alert'
285
+ | 'data_loss_prevention'
286
+ | 'data_thresholding'
287
+ | 'dataset'
288
+ | 'dataset_linked'
289
+ | 'date_range'
290
+ | 'deceased'
291
+ | 'dehaze'
292
+ | 'delete'
293
+ | 'delete_forever'
294
+ | 'delete_history'
295
+ | 'delete_sweep'
296
+ | 'demography'
297
+ | 'density_large'
298
+ | 'density_medium'
299
+ | 'density_small'
300
+ | 'dentistry'
301
+ | 'deployed_code'
302
+ | 'deployed_code_account'
303
+ | 'deployed_code_alert'
304
+ | 'deployed_code_history'
305
+ | 'deployed_code_update'
306
+ | 'dermatology'
307
+ | 'description'
308
+ | 'destruction'
309
+ | 'details'
310
+ | 'developer_guide'
311
+ | 'dew_point'
312
+ | 'dialer_sip'
313
+ | 'dialogs'
314
+ | 'dialpad'
315
+ | 'diamond'
316
+ | 'digital_wellbeing'
317
+ | 'directory_sync'
318
+ | 'disabled_by_default'
319
+ | 'diversity_1'
320
+ | 'diversity_2'
321
+ | 'diversity_3'
322
+ | 'diversity_4'
323
+ | 'do_not_disturb_off'
324
+ | 'do_not_disturb_on'
325
+ | 'domain_verification'
326
+ | 'domain_verification_off'
327
+ | 'domino_mask'
328
+ | 'done'
329
+ | 'done_all'
330
+ | 'done_outline'
331
+ | 'double_arrow'
332
+ | 'download'
333
+ | 'download_2'
334
+ | 'download_done'
335
+ | 'download_for_offline'
336
+ | 'downloading'
337
+ | 'draft_orders'
338
+ | 'drafts'
339
+ | 'drag_click'
340
+ | 'drag_indicator'
341
+ | 'drag_pan'
342
+ | 'dropdown'
343
+ | 'duo'
344
+ | 'dynamic_feed'
345
+ | 'dynamic_form'
346
+ | 'e911_avatar'
347
+ | 'earthquake'
348
+ | 'eco'
349
+ | 'edit'
350
350
 
351
- | 'edit_calendar'
352
- | 'edit_notifications'
353
- | 'edit_square'
354
- | 'editor_choice'
355
- | 'egg'
356
- | 'egg_alt'
357
- | 'eject'
358
- | 'elderly'
359
- | 'elderly_woman'
360
- | 'emoji_events'
361
- | 'emoji_flags'
362
- | 'emoji_food_beverage'
363
- | 'emoji_nature'
364
- | 'emoji_objects'
365
- | 'emoji_people'
366
- | 'emoji_symbols'
367
- | 'emoji_transportation'
368
- | 'emoticon'
369
- | 'empty_dashboard'
370
- | 'enable'
371
- | 'endocrinology'
372
- | 'ent'
373
- | 'error'
374
- | 'error_med'
375
- | 'event'
376
- | 'event_available'
377
- | 'event_busy'
378
- | 'event_list'
379
- | 'event_note'
380
- | 'event_repeat'
381
- | 'event_upcoming'
382
- | 'exit_to_app'
383
- | 'expand'
384
- | 'expand_all'
385
- | 'expand_circle_down'
386
- | 'expand_circle_right'
387
- | 'expand_circle_up'
388
- | 'expand_content'
389
- | 'expand_less'
390
- | 'expand_more'
391
- | 'explosion'
392
- | 'exposure_plus_1'
393
- | 'extension'
394
- | 'extension_off'
395
- | 'eyeglasses'
396
- | 'face'
397
- | 'face_2'
398
- | 'face_3'
399
- | 'face_4'
400
- | 'face_5'
401
- | 'face_6'
402
- | 'falling'
403
- | 'family_star'
404
- | 'favorite'
405
- | 'feature_search'
406
- | 'feedback'
407
- | 'female'
408
- | 'femur'
409
- | 'femur_alt'
410
- | 'file_download_done'
411
- | 'file_download_off'
412
- | 'file_open'
413
- | 'file_upload_off'
414
- | 'filter'
415
- | 'filter_1'
416
- | 'filter_alt'
417
- | 'filter_alt_off'
418
- | 'filter_center_focus'
419
- | 'filter_drama'
420
- | 'filter_list'
421
- | 'filter_list_off'
422
- | 'filter_none'
423
- | 'filter_vintage'
424
- | 'find_replace'
425
- | 'fingerprint'
426
- | 'first_page'
427
- | 'fit_screen'
428
- | 'flaky'
429
- | 'flare'
430
- | 'flash_off'
431
- | 'flash_on'
432
- | 'flip'
433
- | 'flip_camera_android'
434
- | 'flip_camera_ios'
435
- | 'flood'
436
- | 'fluid'
437
- | 'fluid_balance'
438
- | 'fluid_med'
439
- | 'flutter'
440
- | 'flutter_dash'
441
- | 'foggy'
442
- | 'folded_hands'
443
- | 'follow_the_signs'
444
- | 'foot_bones'
445
- | 'footprint'
446
- | 'for_you'
447
- | 'forest'
448
- | 'forum'
449
- | 'forward'
450
- | 'forward_to_inbox'
451
- | 'free_cancellation'
452
- | 'front_hand'
453
- | 'fullscreen'
454
- | 'fullscreen_exit'
455
- | 'g_translate'
456
- | 'garden_cart'
457
- | 'gastroenterology'
458
- | 'gavel'
459
- | 'genetics'
460
- | 'gesture'
461
- | 'gesture_select'
462
- | 'gif_box'
463
- | 'girl'
464
- | 'globe'
465
- | 'globe_asia'
466
- | 'globe_uk'
467
- | 'glucose'
468
- | 'go_to_line'
469
- | 'grade'
470
- | 'grain'
471
- | 'grid_on'
472
- | 'group'
473
- | 'group_add'
474
- | 'group_off'
475
- | 'group_remove'
476
- | 'group_work'
477
- | 'groups'
478
- | 'groups_2'
479
- | 'groups_3'
480
- | 'guardian'
481
- | 'gynecology'
482
- | 'hand_bones'
483
- | 'hand_gesture'
484
- | 'handshake'
485
- | 'healing'
486
- | 'health_and_safety'
487
- | 'heart_broken'
488
- | 'heart_check'
489
- | 'heart_minus'
490
- | 'heart_plus'
491
- | 'helicopter'
492
- | 'help'
493
- | 'help_center'
494
- | 'help_clinic'
495
- | 'hematology'
496
- | 'hide'
497
- | 'hide_source'
498
- | 'highlight_keyboard_focus'
499
- | 'highlight_mouse_cursor'
500
- | 'highlight_text_cursor'
501
- | 'history'
502
- | 'history_off'
503
- | 'history_toggle_off'
504
- | 'hive'
505
- | 'hls'
506
- | 'hls_off'
507
- | 'home'
508
- | 'home_app_logo'
509
- | 'home_health'
510
- | 'hotel_class'
511
- | 'hourglass'
512
- | 'hourglass_bottom'
513
- | 'hourglass_disabled'
514
- | 'hourglass_empty'
515
- | 'hourglass_top'
516
- | 'house'
517
- | 'how_to_reg'
518
- | 'html'
519
- | 'http'
520
- | 'hub'
521
- | 'humerus'
522
- | 'humerus_alt'
523
- | 'humidity_percentage'
524
- | 'iframe'
525
- | 'iframe_off'
526
- | 'image'
527
- | 'image_search'
528
- | 'imagesmode'
529
- | 'immunology'
530
- | 'import_contacts'
531
- | 'inbox'
532
- | 'inbox_customize'
533
- | 'incomplete_circle'
534
- | 'indeterminate_check_box'
535
- | 'indeterminate_question_box'
536
- | 'info'
537
- | 'info_i'
538
- | 'infrared'
539
- | 'inpatient'
540
- | 'input'
541
- | 'input_circle'
542
- | 'install_desktop'
543
- | 'install_mobile'
544
- | 'interests'
545
- | 'inventory_2'
546
- | 'invert_colors'
547
- | 'ios_share'
548
- | 'javascript'
549
- | 'jump_to_element'
550
- | 'keep'
551
- | 'keep_off'
552
- | 'keep_public'
553
- | 'key'
554
- | 'key_off'
555
- | 'key_vertical'
556
- | 'keyboard_command_key'
557
- | 'keyboard_control_key'
558
- | 'keyboard_double_arrow_down'
559
- | 'keyboard_double_arrow_left'
560
- | 'keyboard_double_arrow_right'
561
- | 'keyboard_double_arrow_up'
562
- | 'keyboard_option_key'
563
- | 'kid_star'
564
- | 'lab_panel'
565
- | 'lab_research'
566
- | 'label'
567
- | 'label_important'
568
- | 'label_off'
569
- | 'labs'
570
- | 'lan'
571
- | 'landscape'
572
- | 'landslide'
573
- | 'language'
574
- | 'last_page'
575
- | 'left_click'
576
- | 'left_panel_close'
577
- | 'left_panel_open'
578
- | 'lens'
579
- | 'lens_blur'
580
- | 'library_add'
581
- | 'license'
582
- | 'lightbulb'
583
- | 'lightbulb_circle'
584
- | 'link'
585
- | 'link_off'
586
- | 'linked_services'
587
- | 'lists'
588
- | 'live_help'
589
- | 'local_shipping'
590
- | 'lock'
591
- | 'lock_clock'
592
- | 'lock_open'
593
- | 'lock_open_right'
594
- | 'lock_person'
595
- | 'lock_reset'
596
- | 'login'
597
- | 'logo_dev'
598
- | 'logout'
599
- | 'looks_3'
600
- | 'looks_4'
601
- | 'looks_one'
602
- | 'looks_two'
603
- | 'loupe'
604
- | 'magnification_large'
605
- | 'magnification_small'
606
- | 'mail'
351
+ | 'edit_calendar'
352
+ | 'edit_notifications'
353
+ | 'edit_square'
354
+ | 'editor_choice'
355
+ | 'egg'
356
+ | 'egg_alt'
357
+ | 'eject'
358
+ | 'elderly'
359
+ | 'elderly_woman'
360
+ | 'emoji_events'
361
+ | 'emoji_flags'
362
+ | 'emoji_food_beverage'
363
+ | 'emoji_nature'
364
+ | 'emoji_objects'
365
+ | 'emoji_people'
366
+ | 'emoji_symbols'
367
+ | 'emoji_transportation'
368
+ | 'emoticon'
369
+ | 'empty_dashboard'
370
+ | 'enable'
371
+ | 'endocrinology'
372
+ | 'ent'
373
+ | 'error'
374
+ | 'error_med'
375
+ | 'event'
376
+ | 'event_available'
377
+ | 'event_busy'
378
+ | 'event_list'
379
+ | 'event_note'
380
+ | 'event_repeat'
381
+ | 'event_upcoming'
382
+ | 'exit_to_app'
383
+ | 'expand'
384
+ | 'expand_all'
385
+ | 'expand_circle_down'
386
+ | 'expand_circle_right'
387
+ | 'expand_circle_up'
388
+ | 'expand_content'
389
+ | 'expand_less'
390
+ | 'expand_more'
391
+ | 'explosion'
392
+ | 'exposure_plus_1'
393
+ | 'extension'
394
+ | 'extension_off'
395
+ | 'eyeglasses'
396
+ | 'face'
397
+ | 'face_2'
398
+ | 'face_3'
399
+ | 'face_4'
400
+ | 'face_5'
401
+ | 'face_6'
402
+ | 'falling'
403
+ | 'family_star'
404
+ | 'favorite'
405
+ | 'feature_search'
406
+ | 'feedback'
407
+ | 'female'
408
+ | 'femur'
409
+ | 'femur_alt'
410
+ | 'fiber_manual_record'
411
+ | 'file_download_done'
412
+ | 'file_download_off'
413
+ | 'file_open'
414
+ | 'file_upload_off'
415
+ | 'filter'
416
+ | 'filter_1'
417
+ | 'filter_alt'
418
+ | 'filter_alt_off'
419
+ | 'filter_center_focus'
420
+ | 'filter_drama'
421
+ | 'filter_list'
422
+ | 'filter_list_off'
423
+ | 'filter_none'
424
+ | 'filter_vintage'
425
+ | 'find_replace'
426
+ | 'fingerprint'
427
+ | 'first_page'
428
+ | 'fit_screen'
429
+ | 'flaky'
430
+ | 'flare'
431
+ | 'flash_off'
432
+ | 'flash_on'
433
+ | 'flip'
434
+ | 'flip_camera_android'
435
+ | 'flip_camera_ios'
436
+ | 'flood'
437
+ | 'fluid'
438
+ | 'fluid_balance'
439
+ | 'fluid_med'
440
+ | 'flutter'
441
+ | 'flutter_dash'
442
+ | 'foggy'
443
+ | 'folded_hands'
444
+ | 'follow_the_signs'
445
+ | 'foot_bones'
446
+ | 'footprint'
447
+ | 'for_you'
448
+ | 'forest'
449
+ | 'forum'
450
+ | 'forward'
451
+ | 'forward_to_inbox'
452
+ | 'free_cancellation'
453
+ | 'front_hand'
454
+ | 'fullscreen'
455
+ | 'fullscreen_exit'
456
+ | 'g_translate'
457
+ | 'garden_cart'
458
+ | 'gastroenterology'
459
+ | 'gavel'
460
+ | 'genetics'
461
+ | 'gesture'
462
+ | 'gesture_select'
463
+ | 'gif_box'
464
+ | 'girl'
465
+ | 'globe'
466
+ | 'globe_asia'
467
+ | 'globe_uk'
468
+ | 'glucose'
469
+ | 'go_to_line'
470
+ | 'grade'
471
+ | 'grain'
472
+ | 'grid_on'
473
+ | 'group'
474
+ | 'group_add'
475
+ | 'group_off'
476
+ | 'group_remove'
477
+ | 'group_work'
478
+ | 'groups'
479
+ | 'groups_2'
480
+ | 'groups_3'
481
+ | 'guardian'
482
+ | 'gynecology'
483
+ | 'hand_bones'
484
+ | 'hand_gesture'
485
+ | 'handshake'
486
+ | 'healing'
487
+ | 'health_and_safety'
488
+ | 'heart_broken'
489
+ | 'heart_check'
490
+ | 'heart_minus'
491
+ | 'heart_plus'
492
+ | 'helicopter'
493
+ | 'help'
494
+ | 'help_center'
495
+ | 'help_clinic'
496
+ | 'hematology'
497
+ | 'hide'
498
+ | 'hide_source'
499
+ | 'highlight_keyboard_focus'
500
+ | 'highlight_mouse_cursor'
501
+ | 'highlight_text_cursor'
502
+ | 'history'
503
+ | 'history_off'
504
+ | 'history_toggle_off'
505
+ | 'hive'
506
+ | 'hls'
507
+ | 'hls_off'
508
+ | 'home'
509
+ | 'home_app_logo'
510
+ | 'home_health'
511
+ | 'hotel_class'
512
+ | 'hourglass'
513
+ | 'hourglass_bottom'
514
+ | 'hourglass_disabled'
515
+ | 'hourglass_empty'
516
+ | 'hourglass_top'
517
+ | 'house'
518
+ | 'how_to_reg'
519
+ | 'html'
520
+ | 'http'
521
+ | 'hub'
522
+ | 'humerus'
523
+ | 'humerus_alt'
524
+ | 'humidity_percentage'
525
+ | 'iframe'
526
+ | 'iframe_off'
527
+ | 'image'
528
+ | 'image_search'
529
+ | 'imagesmode'
530
+ | 'immunology'
531
+ | 'import_contacts'
532
+ | 'inbox'
533
+ | 'inbox_customize'
534
+ | 'incomplete_circle'
535
+ | 'indeterminate_check_box'
536
+ | 'indeterminate_question_box'
537
+ | 'info'
538
+ | 'info_i'
539
+ | 'infrared'
540
+ | 'inpatient'
541
+ | 'input'
542
+ | 'input_circle'
543
+ | 'install_desktop'
544
+ | 'install_mobile'
545
+ | 'interests'
546
+ | 'inventory_2'
547
+ | 'invert_colors'
548
+ | 'ios_share'
549
+ | 'javascript'
550
+ | 'jump_to_element'
551
+ | 'keep'
552
+ | 'keep_off'
553
+ | 'keep_public'
554
+ | 'key'
555
+ | 'key_off'
556
+ | 'key_vertical'
557
+ | 'keyboard_arrow_right'
558
+ | 'keyboard_command_key'
559
+ | 'keyboard_control_key'
560
+ | 'keyboard_double_arrow_down'
561
+ | 'keyboard_double_arrow_left'
562
+ | 'keyboard_double_arrow_right'
563
+ | 'keyboard_double_arrow_up'
564
+ | 'keyboard_option_key'
565
+ | 'kid_star'
566
+ | 'lab_panel'
567
+ | 'lab_research'
568
+ | 'label'
569
+ | 'label_important'
570
+ | 'label_off'
571
+ | 'labs'
572
+ | 'lan'
573
+ | 'landscape'
574
+ | 'landslide'
575
+ | 'language'
576
+ | 'last_page'
577
+ | 'left_click'
578
+ | 'left_panel_close'
579
+ | 'left_panel_open'
580
+ | 'lens'
581
+ | 'lens_blur'
582
+ | 'library_add'
583
+ | 'license'
584
+ | 'lightbulb'
585
+ | 'lightbulb_circle'
586
+ | 'link'
587
+ | 'link_off'
588
+ | 'linked_services'
589
+ | 'lists'
590
+ | 'live_help'
591
+ | 'local_shipping'
592
+ | 'lock'
593
+ | 'lock_clock'
594
+ | 'lock_open'
595
+ | 'lock_open_right'
596
+ | 'lock_person'
597
+ | 'lock_reset'
598
+ | 'login'
599
+ | 'logo_dev'
600
+ | 'logout'
601
+ | 'looks_3'
602
+ | 'looks_4'
603
+ | 'looks_one'
604
+ | 'looks_two'
605
+ | 'loupe'
606
+ | 'magnification_large'
607
+ | 'magnification_small'
608
+ | 'mail'
607
609
 
608
- | 'mail_lock'
609
- | 'male'
610
- | 'man'
611
- | 'man_2'
612
- | 'man_3'
613
- | 'man_4'
614
- | 'manage_accounts'
615
- | 'manage_history'
616
- | 'manage_search'
617
- | 'manga'
618
- | 'manufacturing'
619
- | 'mark_as_unread'
620
- | 'mark_chat_read'
621
- | 'mark_chat_unread'
622
- | 'mark_email_read'
623
- | 'mark_email_unread'
624
- | 'mark_unread_chat_alt'
625
- | 'markunread_mailbox'
626
- | 'masks'
627
- | 'maximize'
628
- | 'measuring_tape'
629
- | 'medical_information'
630
- | 'medical_mask'
631
- | 'medication'
632
- | 'medication_liquid'
633
- | 'menu'
634
- | 'menu_open'
635
- | 'metabolism'
636
- | 'mic_external_on'
637
- | 'microbiology'
638
- | 'military_tech'
639
- | 'minimize'
640
- | 'mist'
641
- | 'mixture_med'
642
- | 'mms'
643
- | 'mode_comment'
644
- | 'model_training'
645
- | 'monitor_heart'
646
- | 'mood'
647
- | 'mood_bad'
648
- | 'more'
649
- | 'more_down'
650
- | 'more_horiz'
651
- | 'more_time'
652
- | 'more_up'
653
- | 'more_vert'
654
- | 'mountain_flag'
655
- | 'move_down'
656
- | 'move_group'
657
- | 'move_item'
658
- | 'move_selection_down'
659
- | 'move_selection_left'
660
- | 'move_selection_right'
661
- | 'move_selection_up'
662
- | 'move_to_inbox'
663
- | 'move_up'
664
- | 'moving_beds'
665
- | 'mystery'
666
- | 'nat'
667
- | 'nature'
668
- | 'nature_people'
669
- | 'navigate_before'
670
- | 'navigate_next'
671
- | 'nephrology'
672
- | 'nest_gale_wifi'
673
- | 'network_intelligence_history'
674
- | 'network_intelligence_update'
675
- | 'network_manage'
676
- | 'neurology'
677
- | 'new_label'
678
- | 'new_releases'
679
- | 'new_window'
680
- | 'next_plan'
681
- | 'no_accounts'
682
- | 'no_adult_content'
683
- | 'no_photography'
684
- | 'not_accessible'
685
- | 'not_accessible_forward'
686
- | 'notification_add'
687
- | 'notification_important'
688
- | 'notification_multiple'
689
- | 'notifications'
690
- | 'notifications_active'
691
- | 'notifications_off'
692
- | 'notifications_paused'
693
- | 'notifications_unread'
694
- | 'nutrition'
695
- | 'ods'
696
- | 'odt'
697
- | 'offline_bolt'
698
- | 'offline_pin'
699
- | 'offline_pin_off'
700
- | 'oil_barrel'
701
- | 'on_device_training'
702
- | 'oncology'
703
- | 'online_prediction'
704
- | 'opacity'
705
- | 'open_in_browser'
706
- | 'open_in_full'
707
- | 'open_in_new'
708
- | 'open_in_new_down'
709
- | 'open_in_new_off'
710
- | 'open_run'
711
- | 'open_with'
712
- | 'ophthalmology'
713
- | 'oral_disease'
714
- | 'orthopedics'
715
- | 'outbound'
716
- | 'outbox'
717
- | 'outbox_alt'
718
- | 'outdoor_garden'
719
- | 'outgoing_mail'
720
- | 'outpatient'
721
- | 'outpatient_med'
722
- | 'output'
723
- | 'output_circle'
724
- | 'oxygen_saturation'
725
- | 'page_control'
726
- | 'page_info'
727
- | 'pageview'
728
- | 'palette'
729
- | 'pan_tool'
730
- | 'pan_tool_alt'
731
- | 'pan_zoom'
732
- | 'panorama'
733
- | 'panorama_fish_eye'
734
- | 'partly_cloudy_day'
735
- | 'partly_cloudy_night'
736
- | 'partner_exchange'
737
- | 'partner_reports'
738
- | 'patient_list'
739
- | 'pause_presentation'
740
- | 'pediatrics'
741
- | 'pending'
742
- | 'perm_contact_calendar'
743
- | 'perm_phone_msg'
744
- | 'person'
610
+ | 'mail_lock'
611
+ | 'male'
612
+ | 'man'
613
+ | 'man_2'
614
+ | 'man_3'
615
+ | 'man_4'
616
+ | 'manage_accounts'
617
+ | 'manage_history'
618
+ | 'manage_search'
619
+ | 'manga'
620
+ | 'manufacturing'
621
+ | 'mark_as_unread'
622
+ | 'mark_chat_read'
623
+ | 'mark_chat_unread'
624
+ | 'mark_email_read'
625
+ | 'mark_email_unread'
626
+ | 'mark_unread_chat_alt'
627
+ | 'markunread_mailbox'
628
+ | 'masks'
629
+ | 'maximize'
630
+ | 'measuring_tape'
631
+ | 'medical_information'
632
+ | 'medical_mask'
633
+ | 'medication'
634
+ | 'medication_liquid'
635
+ | 'menu'
636
+ | 'menu_open'
637
+ | 'metabolism'
638
+ | 'mic_external_on'
639
+ | 'microbiology'
640
+ | 'military_tech'
641
+ | 'minimize'
642
+ | 'mist'
643
+ | 'mixture_med'
644
+ | 'mms'
645
+ | 'mode_comment'
646
+ | 'model_training'
647
+ | 'monitor_heart'
648
+ | 'mood'
649
+ | 'mood_bad'
650
+ | 'more'
651
+ | 'more_down'
652
+ | 'more_horiz'
653
+ | 'more_time'
654
+ | 'more_up'
655
+ | 'more_vert'
656
+ | 'mountain_flag'
657
+ | 'move_down'
658
+ | 'move_group'
659
+ | 'move_item'
660
+ | 'move_selection_down'
661
+ | 'move_selection_left'
662
+ | 'move_selection_right'
663
+ | 'move_selection_up'
664
+ | 'move_to_inbox'
665
+ | 'move_up'
666
+ | 'moving_beds'
667
+ | 'mystery'
668
+ | 'nat'
669
+ | 'nature'
670
+ | 'nature_people'
671
+ | 'navigate_before'
672
+ | 'navigate_next'
673
+ | 'nephrology'
674
+ | 'nest_gale_wifi'
675
+ | 'network_intelligence_history'
676
+ | 'network_intelligence_update'
677
+ | 'network_manage'
678
+ | 'neurology'
679
+ | 'new_label'
680
+ | 'new_releases'
681
+ | 'new_window'
682
+ | 'next_plan'
683
+ | 'no_accounts'
684
+ | 'no_adult_content'
685
+ | 'no_photography'
686
+ | 'not_accessible'
687
+ | 'not_accessible_forward'
688
+ | 'notification_add'
689
+ | 'notification_important'
690
+ | 'notification_multiple'
691
+ | 'notifications'
692
+ | 'notifications_active'
693
+ | 'notifications_off'
694
+ | 'notifications_paused'
695
+ | 'notifications_unread'
696
+ | 'nutrition'
697
+ | 'ods'
698
+ | 'odt'
699
+ | 'offline_bolt'
700
+ | 'offline_pin'
701
+ | 'offline_pin_off'
702
+ | 'oil_barrel'
703
+ | 'on_device_training'
704
+ | 'oncology'
705
+ | 'online_prediction'
706
+ | 'opacity'
707
+ | 'open_in_browser'
708
+ | 'open_in_full'
709
+ | 'open_in_new'
710
+ | 'open_in_new_down'
711
+ | 'open_in_new_off'
712
+ | 'open_run'
713
+ | 'open_with'
714
+ | 'ophthalmology'
715
+ | 'oral_disease'
716
+ | 'orthopedics'
717
+ | 'outbound'
718
+ | 'outbox'
719
+ | 'outbox_alt'
720
+ | 'outdoor_garden'
721
+ | 'outgoing_mail'
722
+ | 'outpatient'
723
+ | 'outpatient_med'
724
+ | 'output'
725
+ | 'output_circle'
726
+ | 'oxygen_saturation'
727
+ | 'page_control'
728
+ | 'page_info'
729
+ | 'pageview'
730
+ | 'palette'
731
+ | 'pan_tool'
732
+ | 'pan_tool_alt'
733
+ | 'pan_zoom'
734
+ | 'panorama'
735
+ | 'panorama_fish_eye'
736
+ | 'partly_cloudy_day'
737
+ | 'partly_cloudy_night'
738
+ | 'partner_exchange'
739
+ | 'partner_reports'
740
+ | 'patient_list'
741
+ | 'pause_presentation'
742
+ | 'pediatrics'
743
+ | 'pending'
744
+ | 'perm_contact_calendar'
745
+ | 'perm_phone_msg'
746
+ | 'person'
745
747
 
746
- | 'person_2'
747
- | 'person_3'
748
- | 'person_4'
749
- | 'person_add'
750
- | 'person_add_disabled'
751
- | 'person_alert'
752
- | 'person_apron'
753
- | 'person_cancel'
754
- | 'person_check'
755
- | 'person_edit'
756
- | 'person_off'
757
- | 'person_raised_hand'
758
- | 'person_remove'
759
- | 'person_search'
760
- | 'pets'
761
- | 'phone_bluetooth_speaker'
762
- | 'phone_callback'
763
- | 'phone_disabled'
764
- | 'phone_enabled'
765
- | 'phone_forwarded'
766
- | 'phone_in_talk'
767
- | 'phone_iphone'
768
- | 'phone_locked'
769
- | 'phone_missed'
770
- | 'phone_paused'
771
- | 'phonelink_erase'
772
- | 'phonelink_lock'
773
- | 'phonelink_ring'
774
- | 'phonelink_ring_off'
775
- | 'photo'
776
- | 'photo_camera'
777
- | 'photo_library'
778
- | 'php'
779
- | 'picture_as_pdf'
780
- | 'picture_in_picture'
781
- | 'picture_in_picture_alt'
782
- | 'picture_in_picture_center'
783
- | 'picture_in_picture_large'
784
- | 'picture_in_picture_medium'
785
- | 'picture_in_picture_mobile'
786
- | 'picture_in_picture_off'
787
- | 'picture_in_picture_small'
788
- | 'pill'
789
- | 'pill_off'
790
- | 'pin_drop'
791
- | 'pin_end'
792
- | 'pin_invoke'
793
- | 'pinch'
794
- | 'pinch_zoom_in'
795
- | 'pinch_zoom_out'
796
- | 'pip'
797
- | 'pip_exit'
798
- | 'place_item'
799
- | 'play_arrow'
800
- | 'play_for_work'
801
- | 'playing_cards'
802
- | 'point_scan'
803
- | 'polymer'
804
- | 'position_bottom_left'
805
- | 'position_bottom_right'
806
- | 'position_top_right'
807
- | 'potted_plant'
808
- | 'power_settings_new'
809
- | 'prayer_times'
810
- | 'pregnancy'
811
- | 'pregnant_woman'
812
- | 'preliminary'
813
- | 'prescriptions'
814
- | 'present_to_all'
815
- | 'preview'
816
- | 'preview_off'
817
- | 'priority'
818
- | 'priority_high'
819
- | 'problem'
820
- | 'procedure'
821
- | 'progress_activity'
822
- | 'prompt_suggestion'
823
- | 'psychiatry'
824
- | 'psychology'
825
- | 'psychology_alt'
826
- | 'public'
827
- | 'public_off'
828
- | 'publish'
829
- | 'published_with_changes'
830
- | 'pulmonology'
831
- | 'pulse_alert'
832
- | 'question_exchange'
833
- | 'question_mark'
834
- | 'quick_reference'
835
- | 'quick_reference_all'
836
- | 'quickreply'
837
- | 'quiz'
838
- | 'radio_button_checked'
839
- | 'radio_button_partial'
840
- | 'radio_button_unchecked'
841
- | 'radiology'
842
- | 'rainy'
843
- | 'rainy_heavy'
844
- | 'rainy_light'
845
- | 'rainy_snow'
846
- | 'rate_review'
847
- | 'raven'
848
- | 'rebase'
849
- | 'rebase_edit'
850
- | 'recent_patient'
851
- | 'recenter'
852
- | 'recommend'
853
- | 'record_voice_over'
854
- | 'recycling'
855
- | 'redo'
856
- | 'reduce_capacity'
857
- | 'refresh'
858
- | 'release_alert'
859
- | 'reminder'
860
- | 'remove'
861
- | 'remove_done'
862
- | 'reopen_window'
863
- | 'repartition'
864
- | 'reply'
865
- | 'reply_all'
866
- | 'resize'
867
- | 'respiratory_rate'
868
- | 'responsive_layout'
869
- | 'restart_alt'
870
- | 'restore_from_trash'
871
- | 'reviews'
872
- | 'rheumatology'
873
- | 'rib_cage'
874
- | 'right_click'
875
- | 'right_panel_close'
876
- | 'right_panel_open'
877
- | 'ring_volume'
878
- | 'ripples'
879
- | 'rocket'
880
- | 'rocket_launch'
881
- | 'rotate_left'
882
- | 'rotate_right'
883
- | 'rounded_corner'
884
- | 'routine'
885
- | 'rsvp'
886
- | 'rtt'
887
- | 'rule'
888
- | 'rule_settings'
889
- | 'running_with_errors'
890
- | 'safety_divider'
891
- | 'salinity'
892
- | 'sanitizer'
893
- | 'satellite_alt'
894
- | 'save_as'
895
- | 'saved_search'
896
- | 'schedule'
897
- | 'schedule_send'
898
- | 'school'
899
- | 'score'
900
- | 'scrollable_header'
901
- | 'sdk'
902
- | 'search'
748
+ | 'person_2'
749
+ | 'person_3'
750
+ | 'person_4'
751
+ | 'person_add'
752
+ | 'person_add_disabled'
753
+ | 'person_alert'
754
+ | 'person_apron'
755
+ | 'person_cancel'
756
+ | 'person_check'
757
+ | 'person_edit'
758
+ | 'person_off'
759
+ | 'person_raised_hand'
760
+ | 'person_remove'
761
+ | 'person_search'
762
+ | 'pets'
763
+ | 'phone_bluetooth_speaker'
764
+ | 'phone_callback'
765
+ | 'phone_disabled'
766
+ | 'phone_enabled'
767
+ | 'phone_forwarded'
768
+ | 'phone_in_talk'
769
+ | 'phone_iphone'
770
+ | 'phone_locked'
771
+ | 'phone_missed'
772
+ | 'phone_paused'
773
+ | 'phonelink_erase'
774
+ | 'phonelink_lock'
775
+ | 'phonelink_ring'
776
+ | 'phonelink_ring_off'
777
+ | 'photo'
778
+ | 'photo_camera'
779
+ | 'photo_library'
780
+ | 'php'
781
+ | 'picture_as_pdf'
782
+ | 'picture_in_picture'
783
+ | 'picture_in_picture_alt'
784
+ | 'picture_in_picture_center'
785
+ | 'picture_in_picture_large'
786
+ | 'picture_in_picture_medium'
787
+ | 'picture_in_picture_mobile'
788
+ | 'picture_in_picture_off'
789
+ | 'picture_in_picture_small'
790
+ | 'pill'
791
+ | 'pill_off'
792
+ | 'pin_drop'
793
+ | 'pin_end'
794
+ | 'pin_invoke'
795
+ | 'pinch'
796
+ | 'pinch_zoom_in'
797
+ | 'pinch_zoom_out'
798
+ | 'pip'
799
+ | 'pip_exit'
800
+ | 'place_item'
801
+ | 'play_arrow'
802
+ | 'play_for_work'
803
+ | 'playing_cards'
804
+ | 'point_scan'
805
+ | 'polymer'
806
+ | 'position_bottom_left'
807
+ | 'position_bottom_right'
808
+ | 'position_top_right'
809
+ | 'potted_plant'
810
+ | 'power_settings_new'
811
+ | 'prayer_times'
812
+ | 'pregnancy'
813
+ | 'pregnant_woman'
814
+ | 'preliminary'
815
+ | 'prescriptions'
816
+ | 'present_to_all'
817
+ | 'preview'
818
+ | 'preview_off'
819
+ | 'priority'
820
+ | 'priority_high'
821
+ | 'problem'
822
+ | 'procedure'
823
+ | 'progress_activity'
824
+ | 'prompt_suggestion'
825
+ | 'psychiatry'
826
+ | 'psychology'
827
+ | 'psychology_alt'
828
+ | 'public'
829
+ | 'public_off'
830
+ | 'publish'
831
+ | 'published_with_changes'
832
+ | 'pulmonology'
833
+ | 'pulse_alert'
834
+ | 'question_exchange'
835
+ | 'question_mark'
836
+ | 'quick_reference'
837
+ | 'quick_reference_all'
838
+ | 'quickreply'
839
+ | 'quiz'
840
+ | 'radio_button_checked'
841
+ | 'radio_button_partial'
842
+ | 'radio_button_unchecked'
843
+ | 'radiology'
844
+ | 'rainy'
845
+ | 'rainy_heavy'
846
+ | 'rainy_light'
847
+ | 'rainy_snow'
848
+ | 'rate_review'
849
+ | 'raven'
850
+ | 'rebase'
851
+ | 'rebase_edit'
852
+ | 'recent_patient'
853
+ | 'recenter'
854
+ | 'recommend'
855
+ | 'record_voice_over'
856
+ | 'recycling'
857
+ | 'redo'
858
+ | 'reduce_capacity'
859
+ | 'refresh'
860
+ | 'release_alert'
861
+ | 'reminder'
862
+ | 'remove'
863
+ | 'remove_done'
864
+ | 'reopen_window'
865
+ | 'repartition'
866
+ | 'reply'
867
+ | 'reply_all'
868
+ | 'resize'
869
+ | 'respiratory_rate'
870
+ | 'responsive_layout'
871
+ | 'restart_alt'
872
+ | 'restore_from_trash'
873
+ | 'reviews'
874
+ | 'rheumatology'
875
+ | 'rib_cage'
876
+ | 'right_click'
877
+ | 'right_panel_close'
878
+ | 'right_panel_open'
879
+ | 'ring_volume'
880
+ | 'ripples'
881
+ | 'rocket'
882
+ | 'rocket_launch'
883
+ | 'rotate_left'
884
+ | 'rotate_right'
885
+ | 'rounded_corner'
886
+ | 'routine'
887
+ | 'rsvp'
888
+ | 'rtt'
889
+ | 'rule'
890
+ | 'rule_settings'
891
+ | 'running_with_errors'
892
+ | 'safety_divider'
893
+ | 'salinity'
894
+ | 'sanitizer'
895
+ | 'satellite_alt'
896
+ | 'save_as'
897
+ | 'saved_search'
898
+ | 'schedule'
899
+ | 'schedule_send'
900
+ | 'school'
901
+ | 'score'
902
+ | 'scrollable_header'
903
+ | 'sdk'
904
+ | 'search'
903
905
 
904
- | 'search_check'
905
- | 'search_hands_free'
906
- | 'search_off'
907
- | 'select_all'
908
- | 'select_check_box'
909
- | 'select_window'
910
- | 'select_window_2'
911
- | 'select_window_off'
912
- | 'send'
913
- | 'send_and_archive'
914
- | 'send_time_extension'
915
- | 'sentiment_calm'
916
- | 'sentiment_content'
917
- | 'sentiment_dissatisfied'
918
- | 'sentiment_excited'
919
- | 'sentiment_extremely_dissatisfied'
920
- | 'sentiment_frustrated'
921
- | 'sentiment_neutral'
922
- | 'sentiment_sad'
923
- | 'sentiment_satisfied'
924
- | 'sentiment_stressed'
925
- | 'sentiment_very_dissatisfied'
926
- | 'sentiment_very_satisfied'
927
- | 'sentiment_worried'
928
- | 'settings'
929
- | 'settings_accessibility'
930
- | 'settings_account_box'
931
- | 'settings_applications'
932
- | 'settings_backup_restore'
933
- | 'settings_bluetooth'
934
- | 'settings_brightness'
935
- | 'settings_heart'
936
- | 'settings_overscan'
937
- | 'settings_phone'
938
- | 'settings_power'
939
- | 'severe_cold'
940
- | 'shadow'
941
- | 'shadow_add'
942
- | 'shadow_minus'
943
- | 'share'
944
- | 'share_off'
945
- | 'share_reviews'
946
- | 'share_windows'
947
- | 'shelf_auto_hide'
948
- | 'shelf_position'
949
- | 'shift'
950
- | 'shift_lock'
951
- | 'shopping_cart'
952
- | 'shopping_cart_checkout'
953
- | 'short_stay'
954
- | 'sick'
955
- | 'side_navigation'
956
- | 'sign_language'
957
- | 'signal_cellular_add'
958
- | 'sip'
959
- | 'skeleton'
960
- | 'skull'
961
- | 'sliders'
962
- | 'slideshow'
963
- | 'sms'
964
- | 'snooze'
965
- | 'snowing'
966
- | 'snowing_heavy'
967
- | 'social_distance'
968
- | 'social_leaderboard'
969
- | 'solar_power'
970
- | 'sort'
971
- | 'sort_by_alpha'
972
- | 'south_america'
973
- | 'speaker_notes'
974
- | 'speaker_notes_off'
975
- | 'speaker_phone'
976
- | 'specific_gravity'
977
- | 'spoke'
978
- | 'square_foot'
979
- | 'stack'
980
- | 'stack_off'
981
- | 'stack_star'
982
- | 'stacked_email'
983
- | 'stacked_inbox'
984
- | 'stacks'
985
- | 'stadia_controller'
986
- | 'star'
987
- | 'star_half'
988
- | 'star_rate'
989
- | 'star_rate_half'
990
- | 'stars'
991
- | 'start'
992
- | 'stat_0'
993
- | 'stat_1'
994
- | 'stat_2'
995
- | 'stat_3'
996
- | 'stat_minus_1'
997
- | 'stat_minus_2'
998
- | 'stat_minus_3'
999
- | 'step'
1000
- | 'step_into'
1001
- | 'step_out'
1002
- | 'step_over'
1003
- | 'steppers'
1004
- | 'stethoscope'
1005
- | 'stethoscope_arrow'
1006
- | 'stethoscope_check'
1007
- | 'straighten'
1008
- | 'strategy'
1009
- | 'style'
1010
- | 'subdirectory_arrow_left'
1011
- | 'subdirectory_arrow_right'
1012
- | 'subheader'
1013
- | 'sunny'
1014
- | 'sunny_snowing'
1015
- | 'supervised_user_circle'
1016
- | 'supervised_user_circle_off'
1017
- | 'supervisor_account'
1018
- | 'support'
1019
- | 'support_agent'
1020
- | 'surgical'
1021
- | 'swap_calls'
1022
- | 'swap_horiz'
1023
- | 'swap_horizontal_circle'
1024
- | 'swap_vert'
1025
- | 'swap_vertical_circle'
1026
- | 'sweep'
1027
- | 'swipe'
1028
- | 'swipe_down'
1029
- | 'swipe_down_alt'
1030
- | 'swipe_left'
1031
- | 'swipe_left_alt'
1032
- | 'swipe_right'
1033
- | 'swipe_right_alt'
1034
- | 'swipe_up'
1035
- | 'swipe_up_alt'
1036
- | 'swipe_vertical'
1037
- | 'switch_access'
1038
- | 'switch_access_2'
1039
- | 'switch_access_shortcut'
1040
- | 'switch_access_shortcut_add'
1041
- | 'switch_left'
1042
- | 'switch_right'
1043
- | 'switches'
1044
- | 'sword_rose'
1045
- | 'symptoms'
1046
- | 'sync'
1047
- | 'sync_alt'
1048
- | 'sync_disabled'
1049
- | 'sync_problem'
1050
- | 'sync_saved_locally'
1051
- | 'syringe'
1052
- | 'system_update_alt'
1053
- | 'tab'
1054
- | 'tab_unselected'
1055
- | 'tabs'
1056
- | 'tactic'
1057
- | 'target'
1058
- | 'task_alt'
1059
- | 'taunt'
1060
- | 'terminal'
1061
- | 'texture'
1062
- | 'thread_unread'
1063
- | 'thumb_down'
1064
- | 'thumb_up'
1065
- | 'thumbs_up_down'
1066
- | 'thunderstorm'
1067
- | 'tibia'
1068
- | 'tibia_alt'
1069
- | 'time_auto'
1070
- | 'timelapse'
1071
- | 'timer'
1072
- | 'timer_10_alt_1'
1073
- | 'timer_3_alt_1'
1074
- | 'timer_off'
1075
- | 'timer_pause'
1076
- | 'timer_play'
1077
- | 'toast'
1078
- | 'today'
1079
- | 'toggle_off'
1080
- | 'toggle_on'
1081
- | 'token'
1082
- | 'toolbar'
1083
- | 'tooltip'
1084
- | 'topic'
1085
- | 'tornado'
1086
- | 'total_dissolved_solids'
1087
- | 'touch_app'
1088
- | 'trackpad_input'
1089
- | 'transcribe'
1090
- | 'transgender'
1091
- | 'translate'
1092
- | 'travel_explore'
1093
- | 'tsunami'
1094
- | 'tune'
1095
- | 'ulna_radius'
1096
- | 'ulna_radius_alt'
1097
- | 'unarchive'
1098
- | 'undo'
1099
- | 'unfold_less'
1100
- | 'unfold_less_double'
1101
- | 'unfold_more'
1102
- | 'unfold_more_double'
1103
- | 'unknown_5'
1104
- | 'unknown_med'
1105
- | 'unlicense'
1106
- | 'unpublished'
1107
- | 'unsubscribe'
1108
- | 'upcoming'
1109
- | 'update'
1110
- | 'update_disabled'
1111
- | 'upgrade'
1112
- | 'upload'
1113
- | 'upload_2'
1114
- | 'upload_file'
1115
- | 'urology'
1116
- | 'user_attributes'
1117
- | 'vaccines'
1118
- | 'vape_free'
1119
- | 'vaping_rooms'
1120
- | 'verified'
1121
- | 'video_chat'
1122
- | 'view_comfy_alt'
1123
- | 'view_compact'
1124
- | 'view_compact_alt'
1125
- | 'view_cozy'
1126
- | 'view_kanban'
1127
- | 'view_timeline'
1128
- | 'visibility'
1129
- | 'visibility_lock'
1130
- | 'visibility_off'
1131
- | 'vital_signs'
1132
- | 'voice_chat'
1133
- | 'voice_over_off'
1134
- | 'voicemail'
1135
- | 'volcano'
1136
- | 'ward'
1137
- | 'warning'
1138
- | 'warning_off'
1139
- | 'watch_screentime'
1140
- | 'water_bottle'
1141
- | 'water_bottle_large'
1142
- | 'water_do'
1143
- | 'water_drop'
1144
- | 'water_ec'
1145
- | 'water_lock'
1146
- | 'water_lux'
1147
- | 'water_orp'
1148
- | 'water_ph'
1149
- | 'water_voc'
1150
- | 'waving_hand'
1151
- | 'wb_incandescent'
1152
- | 'wb_sunny'
1153
- | 'wb_twilight'
1154
- | 'wc'
1155
- | 'weather_hail'
1156
- | 'weather_mix'
1157
- | 'web'
1158
- | 'web_asset'
1159
- | 'web_asset_off'
1160
- | 'web_stories'
1161
- | 'web_traffic'
1162
- | 'webhook'
1163
- | 'weight'
1164
- | 'whatshot'
1165
- | 'width_full'
1166
- | 'width_normal'
1167
- | 'width_wide'
1168
- | 'wifi_add'
1169
- | 'wifi_calling'
1170
- | 'wifi_channel'
1171
- | 'wifi_protected_setup'
1172
- | 'wifi_proxy'
1173
- | 'wind_power'
1174
- | 'woman'
1175
- | 'woman_2'
1176
- | 'workspace_premium'
1177
- | 'workspaces'
1178
- | 'wounds_injuries'
1179
- | 'wrist'
1180
- | 'wysiwyg'
1181
- | 'youtube_activity'
1182
- | 'youtube_searched_for'
1183
- | 'zoom_in'
1184
- | 'zoom_out'
906
+ | 'search_check'
907
+ | 'search_hands_free'
908
+ | 'search_off'
909
+ | 'select_all'
910
+ | 'select_check_box'
911
+ | 'select_window'
912
+ | 'select_window_2'
913
+ | 'select_window_off'
914
+ | 'send'
915
+ | 'send_and_archive'
916
+ | 'send_time_extension'
917
+ | 'sentiment_calm'
918
+ | 'sentiment_content'
919
+ | 'sentiment_dissatisfied'
920
+ | 'sentiment_excited'
921
+ | 'sentiment_extremely_dissatisfied'
922
+ | 'sentiment_frustrated'
923
+ | 'sentiment_neutral'
924
+ | 'sentiment_sad'
925
+ | 'sentiment_satisfied'
926
+ | 'sentiment_stressed'
927
+ | 'sentiment_very_dissatisfied'
928
+ | 'sentiment_very_satisfied'
929
+ | 'sentiment_worried'
930
+ | 'settings'
931
+ | 'settings_accessibility'
932
+ | 'settings_account_box'
933
+ | 'settings_applications'
934
+ | 'settings_backup_restore'
935
+ | 'settings_bluetooth'
936
+ | 'settings_brightness'
937
+ | 'settings_heart'
938
+ | 'settings_overscan'
939
+ | 'settings_phone'
940
+ | 'settings_power'
941
+ | 'severe_cold'
942
+ | 'shadow'
943
+ | 'shadow_add'
944
+ | 'shadow_minus'
945
+ | 'share'
946
+ | 'share_off'
947
+ | 'share_reviews'
948
+ | 'share_windows'
949
+ | 'shelf_auto_hide'
950
+ | 'shelf_position'
951
+ | 'shift'
952
+ | 'shift_lock'
953
+ | 'shopping_cart'
954
+ | 'shopping_cart_checkout'
955
+ | 'short_stay'
956
+ | 'sick'
957
+ | 'side_navigation'
958
+ | 'sign_language'
959
+ | 'signal_cellular_add'
960
+ | 'sip'
961
+ | 'skeleton'
962
+ | 'skull'
963
+ | 'sliders'
964
+ | 'slideshow'
965
+ | 'sms'
966
+ | 'snooze'
967
+ | 'snowing'
968
+ | 'snowing_heavy'
969
+ | 'social_distance'
970
+ | 'social_leaderboard'
971
+ | 'solar_power'
972
+ | 'sort'
973
+ | 'sort_by_alpha'
974
+ | 'south_america'
975
+ | 'speaker_notes'
976
+ | 'speaker_notes_off'
977
+ | 'speaker_phone'
978
+ | 'specific_gravity'
979
+ | 'spoke'
980
+ | 'square_foot'
981
+ | 'stack'
982
+ | 'stack_off'
983
+ | 'stack_star'
984
+ | 'stacked_email'
985
+ | 'stacked_inbox'
986
+ | 'stacks'
987
+ | 'stadia_controller'
988
+ | 'star'
989
+ | 'star_half'
990
+ | 'star_rate'
991
+ | 'star_rate_half'
992
+ | 'stars'
993
+ | 'start'
994
+ | 'stat_0'
995
+ | 'stat_1'
996
+ | 'stat_2'
997
+ | 'stat_3'
998
+ | 'stat_minus_1'
999
+ | 'stat_minus_2'
1000
+ | 'stat_minus_3'
1001
+ | 'step'
1002
+ | 'step_into'
1003
+ | 'step_out'
1004
+ | 'step_over'
1005
+ | 'steppers'
1006
+ | 'stethoscope'
1007
+ | 'stethoscope_arrow'
1008
+ | 'stethoscope_check'
1009
+ | 'straighten'
1010
+ | 'strategy'
1011
+ | 'style'
1012
+ | 'subdirectory_arrow_left'
1013
+ | 'subdirectory_arrow_right'
1014
+ | 'subheader'
1015
+ | 'sunny'
1016
+ | 'sunny_snowing'
1017
+ | 'supervised_user_circle'
1018
+ | 'supervised_user_circle_off'
1019
+ | 'supervisor_account'
1020
+ | 'support'
1021
+ | 'support_agent'
1022
+ | 'surgical'
1023
+ | 'swap_calls'
1024
+ | 'swap_horiz'
1025
+ | 'swap_horizontal_circle'
1026
+ | 'swap_vert'
1027
+ | 'swap_vertical_circle'
1028
+ | 'sweep'
1029
+ | 'swipe'
1030
+ | 'swipe_down'
1031
+ | 'swipe_down_alt'
1032
+ | 'swipe_left'
1033
+ | 'swipe_left_alt'
1034
+ | 'swipe_right'
1035
+ | 'swipe_right_alt'
1036
+ | 'swipe_up'
1037
+ | 'swipe_up_alt'
1038
+ | 'swipe_vertical'
1039
+ | 'switch_access'
1040
+ | 'switch_access_2'
1041
+ | 'switch_access_shortcut'
1042
+ | 'switch_access_shortcut_add'
1043
+ | 'switch_left'
1044
+ | 'switch_right'
1045
+ | 'switches'
1046
+ | 'sword_rose'
1047
+ | 'symptoms'
1048
+ | 'sync'
1049
+ | 'sync_alt'
1050
+ | 'sync_disabled'
1051
+ | 'sync_problem'
1052
+ | 'sync_saved_locally'
1053
+ | 'syringe'
1054
+ | 'system_update_alt'
1055
+ | 'tab'
1056
+ | 'tab_unselected'
1057
+ | 'tabs'
1058
+ | 'tactic'
1059
+ | 'target'
1060
+ | 'task_alt'
1061
+ | 'taunt'
1062
+ | 'terminal'
1063
+ | 'texture'
1064
+ | 'thread_unread'
1065
+ | 'thumb_down'
1066
+ | 'thumb_up'
1067
+ | 'thumbs_up_down'
1068
+ | 'thunderstorm'
1069
+ | 'tibia'
1070
+ | 'tibia_alt'
1071
+ | 'time_auto'
1072
+ | 'timelapse'
1073
+ | 'timer'
1074
+ | 'timer_10_alt_1'
1075
+ | 'timer_3_alt_1'
1076
+ | 'timer_off'
1077
+ | 'timer_pause'
1078
+ | 'timer_play'
1079
+ | 'toast'
1080
+ | 'today'
1081
+ | 'toggle_off'
1082
+ | 'toggle_on'
1083
+ | 'token'
1084
+ | 'toolbar'
1085
+ | 'tooltip'
1086
+ | 'topic'
1087
+ | 'tornado'
1088
+ | 'total_dissolved_solids'
1089
+ | 'touch_app'
1090
+ | 'trackpad_input'
1091
+ | 'transcribe'
1092
+ | 'transgender'
1093
+ | 'translate'
1094
+ | 'travel_explore'
1095
+ | 'tsunami'
1096
+ | 'tune'
1097
+ | 'ulna_radius'
1098
+ | 'ulna_radius_alt'
1099
+ | 'unarchive'
1100
+ | 'undo'
1101
+ | 'unfold_less'
1102
+ | 'unfold_less_double'
1103
+ | 'unfold_more'
1104
+ | 'unfold_more_double'
1105
+ | 'unknown_5'
1106
+ | 'unknown_med'
1107
+ | 'unlicense'
1108
+ | 'unpublished'
1109
+ | 'unsubscribe'
1110
+ | 'upcoming'
1111
+ | 'update'
1112
+ | 'update_disabled'
1113
+ | 'upgrade'
1114
+ | 'upload'
1115
+ | 'upload_2'
1116
+ | 'upload_file'
1117
+ | 'urology'
1118
+ | 'user_attributes'
1119
+ | 'vaccines'
1120
+ | 'vape_free'
1121
+ | 'vaping_rooms'
1122
+ | 'verified'
1123
+ | 'video_chat'
1124
+ | 'view_comfy_alt'
1125
+ | 'view_compact'
1126
+ | 'view_compact_alt'
1127
+ | 'view_cozy'
1128
+ | 'view_kanban'
1129
+ | 'view_timeline'
1130
+ | 'visibility'
1131
+ | 'visibility_lock'
1132
+ | 'visibility_off'
1133
+ | 'vital_signs'
1134
+ | 'voice_chat'
1135
+ | 'voice_over_off'
1136
+ | 'voicemail'
1137
+ | 'volcano'
1138
+ | 'ward'
1139
+ | 'warning'
1140
+ | 'warning_off'
1141
+ | 'watch_screentime'
1142
+ | 'water_bottle'
1143
+ | 'water_bottle_large'
1144
+ | 'water_do'
1145
+ | 'water_drop'
1146
+ | 'water_ec'
1147
+ | 'water_lock'
1148
+ | 'water_lux'
1149
+ | 'water_orp'
1150
+ | 'water_ph'
1151
+ | 'water_voc'
1152
+ | 'waving_hand'
1153
+ | 'wb_incandescent'
1154
+ | 'wb_sunny'
1155
+ | 'wb_twilight'
1156
+ | 'wc'
1157
+ | 'weather_hail'
1158
+ | 'weather_mix'
1159
+ | 'web'
1160
+ | 'web_asset'
1161
+ | 'web_asset_off'
1162
+ | 'web_stories'
1163
+ | 'web_traffic'
1164
+ | 'webhook'
1165
+ | 'weight'
1166
+ | 'whatshot'
1167
+ | 'width_full'
1168
+ | 'width_normal'
1169
+ | 'width_wide'
1170
+ | 'wifi_add'
1171
+ | 'wifi_calling'
1172
+ | 'wifi_channel'
1173
+ | 'wifi_protected_setup'
1174
+ | 'wifi_proxy'
1175
+ | 'wind_power'
1176
+ | 'woman'
1177
+ | 'woman_2'
1178
+ | 'workspace_premium'
1179
+ | 'workspaces'
1180
+ | 'wounds_injuries'
1181
+ | 'wrist'
1182
+ | 'wysiwyg'
1183
+ | 'youtube_activity'
1184
+ | 'youtube_searched_for'
1185
+ | 'zoom_in'
1186
+ | 'zoom_out'