@churchapps/apphelper 0.0.7 → 0.0.9

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 (192) hide show
  1. package/.eslintignore +3 -3
  2. package/.eslintrc.json +22 -22
  3. package/LICENSE +21 -21
  4. package/README.md +16 -16
  5. package/dist/components/ExportLink.d.ts.map +1 -1
  6. package/dist/components/ExportLink.js +9 -7
  7. package/dist/components/ExportLink.js.map +1 -1
  8. package/dist/components/FormSubmissionEdit.d.ts +0 -1
  9. package/dist/components/FormSubmissionEdit.d.ts.map +1 -1
  10. package/dist/components/FormSubmissionEdit.js +1 -2
  11. package/dist/components/FormSubmissionEdit.js.map +1 -1
  12. package/dist/components/markdownEditor/editor.css +787 -787
  13. package/dist/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  14. package/dist/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  15. package/dist/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  16. package/dist/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  17. package/dist/components/markdownEditor/images/icons/code.svg +2 -2
  18. package/dist/components/markdownEditor/images/icons/journal-code.svg +4 -4
  19. package/dist/components/markdownEditor/images/icons/journal-text.svg +4 -4
  20. package/dist/components/markdownEditor/images/icons/justify.svg +2 -2
  21. package/dist/components/markdownEditor/images/icons/link.svg +3 -3
  22. package/dist/components/markdownEditor/images/icons/list-ol.svg +3 -3
  23. package/dist/components/markdownEditor/images/icons/list-ul.svg +2 -2
  24. package/dist/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  25. package/dist/components/markdownEditor/images/icons/text-center.svg +2 -2
  26. package/dist/components/markdownEditor/images/icons/text-left.svg +2 -2
  27. package/dist/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  28. package/dist/components/markdownEditor/images/icons/text-right.svg +2 -2
  29. package/dist/components/markdownEditor/images/icons/type-bold.svg +2 -2
  30. package/dist/components/markdownEditor/images/icons/type-h1.svg +2 -2
  31. package/dist/components/markdownEditor/images/icons/type-h2.svg +2 -2
  32. package/dist/components/markdownEditor/images/icons/type-h3.svg +2 -2
  33. package/dist/components/markdownEditor/images/icons/type-h4.svg +12 -12
  34. package/dist/components/markdownEditor/images/icons/type-italic.svg +2 -2
  35. package/dist/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  36. package/dist/components/markdownEditor/images/icons/type-underline.svg +2 -2
  37. package/dist/donationComponents/components/NonAuthDonationInner.d.ts.map +1 -1
  38. package/dist/donationComponents/components/NonAuthDonationInner.js +38 -5
  39. package/dist/donationComponents/components/NonAuthDonationInner.js.map +1 -1
  40. package/package.json +84 -84
  41. package/src/components/CreatePerson.tsx +80 -80
  42. package/src/components/DisplayBox.tsx +68 -68
  43. package/src/components/ErrorMessages.tsx +26 -26
  44. package/src/components/ExportLink.tsx +66 -61
  45. package/src/components/FloatingSupport.tsx +16 -16
  46. package/src/components/FormSubmissionEdit.tsx +120 -122
  47. package/src/components/HelpIcon.tsx +10 -10
  48. package/src/components/ImageEditor.tsx +126 -126
  49. package/src/components/InputBox.tsx +73 -73
  50. package/src/components/Loading.tsx +29 -29
  51. package/src/components/PersonAdd.tsx +75 -75
  52. package/src/components/QuestionEdit.tsx +62 -62
  53. package/src/components/SmallButton.tsx +39 -39
  54. package/src/components/SupportModal.tsx +26 -26
  55. package/src/components/TabPanel.tsx +34 -34
  56. package/src/components/gallery/GalleryModal.tsx +102 -102
  57. package/src/components/gallery/StockPhotos.tsx +74 -74
  58. package/src/components/gallery/index.ts +1 -1
  59. package/src/components/index.tsx +23 -23
  60. package/src/components/markdownEditor/Editor.tsx +132 -132
  61. package/src/components/markdownEditor/MarkdownEditor.tsx +16 -16
  62. package/src/components/markdownEditor/MarkdownModal.tsx +46 -46
  63. package/src/components/markdownEditor/MarkdownPreview.tsx +14 -14
  64. package/src/components/markdownEditor/editor.css +787 -787
  65. package/src/components/markdownEditor/images/icons/arrow-clockwise.svg +3 -3
  66. package/src/components/markdownEditor/images/icons/arrow-counterclockwise.svg +3 -3
  67. package/src/components/markdownEditor/images/icons/chat-square-quote.svg +3 -3
  68. package/src/components/markdownEditor/images/icons/chevron-down.svg +2 -2
  69. package/src/components/markdownEditor/images/icons/code.svg +2 -2
  70. package/src/components/markdownEditor/images/icons/journal-code.svg +4 -4
  71. package/src/components/markdownEditor/images/icons/journal-text.svg +4 -4
  72. package/src/components/markdownEditor/images/icons/justify.svg +2 -2
  73. package/src/components/markdownEditor/images/icons/link.svg +3 -3
  74. package/src/components/markdownEditor/images/icons/list-ol.svg +3 -3
  75. package/src/components/markdownEditor/images/icons/list-ul.svg +2 -2
  76. package/src/components/markdownEditor/images/icons/pencil-fill.svg +2 -2
  77. package/src/components/markdownEditor/images/icons/text-center.svg +2 -2
  78. package/src/components/markdownEditor/images/icons/text-left.svg +2 -2
  79. package/src/components/markdownEditor/images/icons/text-paragraph.svg +2 -2
  80. package/src/components/markdownEditor/images/icons/text-right.svg +2 -2
  81. package/src/components/markdownEditor/images/icons/type-bold.svg +2 -2
  82. package/src/components/markdownEditor/images/icons/type-h1.svg +2 -2
  83. package/src/components/markdownEditor/images/icons/type-h2.svg +2 -2
  84. package/src/components/markdownEditor/images/icons/type-h3.svg +2 -2
  85. package/src/components/markdownEditor/images/icons/type-h4.svg +12 -12
  86. package/src/components/markdownEditor/images/icons/type-italic.svg +2 -2
  87. package/src/components/markdownEditor/images/icons/type-strikethrough.svg +2 -2
  88. package/src/components/markdownEditor/images/icons/type-underline.svg +2 -2
  89. package/src/components/markdownEditor/index.ts +2 -2
  90. package/src/components/markdownEditor/plugins/AutoLinkPlugin.tsx +35 -35
  91. package/src/components/markdownEditor/plugins/ControlledEditorPlugin.tsx +24 -24
  92. package/src/components/markdownEditor/plugins/ListMaxIndentLevelPlugin.tsx +68 -68
  93. package/src/components/markdownEditor/plugins/MarkdownTransformers.ts +106 -106
  94. package/src/components/markdownEditor/plugins/ReadOnlyPlugin.tsx +15 -15
  95. package/src/components/markdownEditor/plugins/ToolbarPlugin.tsx +401 -401
  96. package/src/components/markdownEditor/plugins/customLink/CustomLinkNode.tsx +224 -224
  97. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodePlugin.tsx +32 -32
  98. package/src/components/markdownEditor/plugins/customLink/CustomLinkNodeTransformer.tsx +102 -102
  99. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.tsx +243 -243
  100. package/src/components/markdownEditor/plugins/customLink/FloatingLinkEditor.types.ts +11 -11
  101. package/src/components/markdownEditor/plugins/emoji/EmojiNode.tsx +95 -95
  102. package/src/components/markdownEditor/plugins/emoji/EmojiNodeTransform.ts +41 -41
  103. package/src/components/markdownEditor/plugins/emoji/EmojiPickerPlugin.tsx +152 -152
  104. package/src/components/markdownEditor/plugins/emoji/EmojisPlugin.tsx +65 -65
  105. package/src/components/markdownEditor/plugins/index.ts +6 -6
  106. package/src/components/markdownEditor/theme.ts +65 -65
  107. package/src/components/material/AppList.tsx +20 -20
  108. package/src/components/material/ChurchList.tsx +22 -22
  109. package/src/components/material/NavItem.tsx +41 -41
  110. package/src/components/material/NewPrivateMessage.tsx +103 -103
  111. package/src/components/material/PrivateMessageDetails.tsx +23 -23
  112. package/src/components/material/PrivateMessages.tsx +87 -87
  113. package/src/components/material/SiteWrapper.tsx +140 -140
  114. package/src/components/material/UserMenu.tsx +141 -141
  115. package/src/components/material/iconPicker/IconNamesList.ts +2240 -2240
  116. package/src/components/material/iconPicker/IconPicker.tsx +153 -153
  117. package/src/components/material/index.tsx +6 -6
  118. package/src/components/notes/AddNote.tsx +90 -90
  119. package/src/components/notes/Conversation.tsx +82 -82
  120. package/src/components/notes/Conversations.tsx +58 -58
  121. package/src/components/notes/NewConversation.tsx +78 -78
  122. package/src/components/notes/Note.tsx +44 -44
  123. package/src/components/notes/Notes.tsx +52 -52
  124. package/src/components/notes/index.ts +5 -5
  125. package/src/components/reporting/ChartReport.tsx +98 -98
  126. package/src/components/reporting/ReportFilter.tsx +54 -54
  127. package/src/components/reporting/ReportFilterField.tsx +160 -160
  128. package/src/components/reporting/ReportOutput.tsx +79 -79
  129. package/src/components/reporting/ReportWithFilter.tsx +70 -70
  130. package/src/components/reporting/TableReport.tsx +57 -57
  131. package/src/components/reporting/TreeReport.tsx +111 -111
  132. package/src/components/reporting/index.ts +4 -4
  133. package/src/donationComponents/DonationPage.tsx +136 -136
  134. package/src/donationComponents/components/BankForm.tsx +159 -159
  135. package/src/donationComponents/components/CardForm.tsx +104 -104
  136. package/src/donationComponents/components/DonationForm.tsx +235 -235
  137. package/src/donationComponents/components/FundDonation.tsx +49 -49
  138. package/src/donationComponents/components/FundDonations.tsx +39 -39
  139. package/src/donationComponents/components/NonAuthDonation.tsx +31 -31
  140. package/src/donationComponents/components/NonAuthDonationInner.tsx +259 -221
  141. package/src/donationComponents/components/PaymentMethods.tsx +135 -135
  142. package/src/donationComponents/components/RecurringDonations.tsx +121 -121
  143. package/src/donationComponents/components/RecurringDonationsEdit.tsx +93 -93
  144. package/src/donationComponents/components/index.tsx +9 -9
  145. package/src/donationComponents/index.ts +3 -3
  146. package/src/donationComponents/modals/DonationPreviewModal.tsx +66 -66
  147. package/src/helpers/AnalyticsHelper.ts +33 -33
  148. package/src/helpers/ApiHelper.ts +125 -125
  149. package/src/helpers/AppearanceHelper.ts +69 -69
  150. package/src/helpers/ArrayHelper.ts +81 -81
  151. package/src/helpers/CommonEnvironmentHelper.ts +80 -80
  152. package/src/helpers/CurrencyHelper.ts +10 -10
  153. package/src/helpers/DateHelper.ts +108 -108
  154. package/src/helpers/DonationHelper.ts +26 -26
  155. package/src/helpers/ErrorHelper.ts +36 -36
  156. package/src/helpers/EventHelper.ts +52 -52
  157. package/src/helpers/FileHelper.ts +31 -31
  158. package/src/helpers/PersonHelper.ts +60 -60
  159. package/src/helpers/SocketHelper.ts +76 -76
  160. package/src/helpers/Themes.ts +14 -14
  161. package/src/helpers/UniqueIdHelper.ts +36 -36
  162. package/src/helpers/UserHelper.ts +59 -59
  163. package/src/helpers/createEmotionCache.ts +17 -17
  164. package/src/helpers/index.ts +18 -18
  165. package/src/hooks/index.ts +1 -1
  166. package/src/hooks/useMountedState.ts +16 -16
  167. package/src/index.ts +6 -6
  168. package/src/interfaces/Access.ts +24 -24
  169. package/src/interfaces/Attendance.ts +8 -8
  170. package/src/interfaces/Content.ts +10 -10
  171. package/src/interfaces/Doing.ts +24 -24
  172. package/src/interfaces/Donation.ts +45 -45
  173. package/src/interfaces/Error.ts +17 -17
  174. package/src/interfaces/Membership.ts +51 -51
  175. package/src/interfaces/Messaging.ts +20 -20
  176. package/src/interfaces/Permissions.ts +68 -68
  177. package/src/interfaces/Reporting.ts +7 -7
  178. package/src/interfaces/UserContextInterface.ts +13 -13
  179. package/src/interfaces/index.ts +13 -13
  180. package/src/pageComponents/LoginPage.tsx +244 -244
  181. package/src/pageComponents/LogoutPage.tsx +28 -28
  182. package/src/pageComponents/components/Forgot.tsx +79 -79
  183. package/src/pageComponents/components/Login.tsx +54 -54
  184. package/src/pageComponents/components/LoginSetPassword.tsx +63 -63
  185. package/src/pageComponents/components/Register.tsx +107 -107
  186. package/src/pageComponents/components/SelectChurchModal.tsx +41 -41
  187. package/src/pageComponents/components/SelectChurchRegister.tsx +88 -88
  188. package/src/pageComponents/components/SelectChurchSearch.tsx +69 -69
  189. package/src/pageComponents/components/SelectableChurch.tsx +38 -38
  190. package/src/pageComponents/index.ts +3 -3
  191. package/tsconfig.json +34 -34
  192. package/tslint.json +14 -14
@@ -1,2240 +1,2240 @@
1
- const IconNamesList = [
2
- "10k",
3
- "10mp",
4
- "11mp",
5
- "123",
6
- "12mp",
7
- "13mp",
8
- "14mp",
9
- "15mp",
10
- "16mp",
11
- "17mp",
12
- "18_up_rating",
13
- "18mp",
14
- "19mp",
15
- "1k",
16
- "1k_plus",
17
- "1x_mobiledata",
18
- "20mp",
19
- "21mp",
20
- "22mp",
21
- "23mp",
22
- "24mp",
23
- "2k",
24
- "2k_plus",
25
- "2mp",
26
- "30fps",
27
- "30fps_select",
28
- "360",
29
- "3d_rotation",
30
- "3g_mobiledata",
31
- "3k",
32
- "3k_plus",
33
- "3mp",
34
- "3p",
35
- "4g_mobiledata",
36
- "4g_plus_mobiledata",
37
- "4k",
38
- "4k_plus",
39
- "4mp",
40
- "5g",
41
- "5k",
42
- "5k_plus",
43
- "5mp",
44
- "60fps",
45
- "60fps_select",
46
- "6_ft_apart",
47
- "6k",
48
- "6k_plus",
49
- "6mp",
50
- "7k",
51
- "7k_plus",
52
- "7mp",
53
- "8k",
54
- "8k_plus",
55
- "8mp",
56
- "9k",
57
- "9k_plus",
58
- "9mp",
59
- "abc",
60
- "ac_unit",
61
- "access_alarm",
62
- "access_alarms",
63
- "access_time",
64
- "access_time_filled",
65
- "accessibility",
66
- "accessibility_new",
67
- "accessible",
68
- "accessible_forward",
69
- "account_balance",
70
- "account_balance_wallet",
71
- "account_box",
72
- "account_circle",
73
- "account_tree",
74
- "ad_units",
75
- "adb",
76
- "add",
77
- "add_a_photo",
78
- "add_alarm",
79
- "add_alert",
80
- "add_box",
81
- "add_business",
82
- "add_call",
83
- "add_card",
84
- "add_chart",
85
- "add_circle",
86
- "add_circle_outline",
87
- "add_comment",
88
- "add_home",
89
- "add_home_work",
90
- "add_ic_call",
91
- "add_link",
92
- "add_location",
93
- "add_location_alt",
94
- "add_moderator",
95
- "add_photo_alternate",
96
- "add_reaction",
97
- "add_road",
98
- "add_shopping_cart",
99
- "add_task",
100
- "add_to_drive",
101
- "add_to_home_screen",
102
- "add_to_photos",
103
- "add_to_queue",
104
- "addchart",
105
- "adf_scanner",
106
- "adjust",
107
- "admin_panel_settings",
108
- "adobe",
109
- "ads_click",
110
- "agriculture",
111
- "air",
112
- "airline_seat_flat",
113
- "airline_seat_flat_angled",
114
- "airline_seat_individual_suite",
115
- "airline_seat_legroom_extra",
116
- "airline_seat_legroom_normal",
117
- "airline_seat_legroom_reduced",
118
- "airline_seat_recline_extra",
119
- "airline_seat_recline_normal",
120
- "airline_stops",
121
- "airlines",
122
- "airplane_ticket",
123
- "airplanemode_active",
124
- "airplanemode_inactive",
125
- "airplanemode_off",
126
- "airplanemode_on",
127
- "airplay",
128
- "airport_shuttle",
129
- "alarm",
130
- "alarm_add",
131
- "alarm_off",
132
- "alarm_on",
133
- "album",
134
- "align_horizontal_center",
135
- "align_horizontal_left",
136
- "align_horizontal_right",
137
- "align_vertical_bottom",
138
- "align_vertical_center",
139
- "align_vertical_top",
140
- "all_inbox",
141
- "all_inclusive",
142
- "all_out",
143
- "alt_route",
144
- "alternate_email",
145
- "amp_stories",
146
- "analytics",
147
- "anchor",
148
- "android",
149
- "animation",
150
- "announcement",
151
- "aod",
152
- "apartment",
153
- "api",
154
- "app_blocking",
155
- "app_registration",
156
- "app_settings_alt",
157
- "app_shortcut",
158
- "apple",
159
- "approval",
160
- "apps",
161
- "apps_outage",
162
- "architecture",
163
- "archive",
164
- "area_chart",
165
- "arrow_back",
166
- "arrow_back_ios",
167
- "arrow_back_ios_new",
168
- "arrow_circle_down",
169
- "arrow_circle_left",
170
- "arrow_circle_right",
171
- "arrow_circle_up",
172
- "arrow_downward",
173
- "arrow_drop_down",
174
- "arrow_drop_down_circle",
175
- "arrow_drop_up",
176
- "arrow_forward",
177
- "arrow_forward_ios",
178
- "arrow_left",
179
- "arrow_outward",
180
- "arrow_right",
181
- "arrow_right_alt",
182
- "arrow_upward",
183
- "art_track",
184
- "article",
185
- "aspect_ratio",
186
- "assessment",
187
- "assignment",
188
- "assignment_add",
189
- "assignment_ind",
190
- "assignment_late",
191
- "assignment_return",
192
- "assignment_returned",
193
- "assignment_turned_in",
194
- "assist_walker",
195
- "assistant",
196
- "assistant_direction",
197
- "assistant_navigation",
198
- "assistant_photo",
199
- "assured_workload",
200
- "atm",
201
- "attach_email",
202
- "attach_file",
203
- "attach_money",
204
- "attachment",
205
- "attractions",
206
- "attribution",
207
- "audio_file",
208
- "audiotrack",
209
- "auto_awesome",
210
- "auto_awesome_mosaic",
211
- "auto_awesome_motion",
212
- "auto_delete",
213
- "auto_fix_high",
214
- "auto_fix_normal",
215
- "auto_fix_off",
216
- "auto_graph",
217
- "auto_mode",
218
- "auto_stories",
219
- "autofps_select",
220
- "autorenew",
221
- "av_timer",
222
- "baby_changing_station",
223
- "back_hand",
224
- "backpack",
225
- "backspace",
226
- "backup",
227
- "backup_table",
228
- "badge",
229
- "bakery_dining",
230
- "balance",
231
- "balcony",
232
- "ballot",
233
- "bar_chart",
234
- "barcode_reader",
235
- "batch_prediction",
236
- "bathroom",
237
- "bathtub",
238
- "battery_0_bar",
239
- "battery_1_bar",
240
- "battery_2_bar",
241
- "battery_3_bar",
242
- "battery_4_bar",
243
- "battery_5_bar",
244
- "battery_6_bar",
245
- "battery_alert",
246
- "battery_charging_full",
247
- "battery_full",
248
- "battery_saver",
249
- "battery_std",
250
- "battery_unknown",
251
- "beach_access",
252
- "bed",
253
- "bedroom_baby",
254
- "bedroom_child",
255
- "bedroom_parent",
256
- "bedtime",
257
- "bedtime_off",
258
- "beenhere",
259
- "bento",
260
- "bike_scooter",
261
- "biotech",
262
- "blender",
263
- "blind",
264
- "blinds",
265
- "blinds_closed",
266
- "block",
267
- "block_flipped",
268
- "bloodtype",
269
- "bluetooth",
270
- "bluetooth_audio",
271
- "bluetooth_connected",
272
- "bluetooth_disabled",
273
- "bluetooth_drive",
274
- "bluetooth_searching",
275
- "blur_circular",
276
- "blur_linear",
277
- "blur_off",
278
- "blur_on",
279
- "bolt",
280
- "book",
281
- "book_online",
282
- "bookmark",
283
- "bookmark_add",
284
- "bookmark_added",
285
- "bookmark_border",
286
- "bookmark_outline",
287
- "bookmark_remove",
288
- "bookmarks",
289
- "border_all",
290
- "border_bottom",
291
- "border_clear",
292
- "border_color",
293
- "border_horizontal",
294
- "border_inner",
295
- "border_left",
296
- "border_outer",
297
- "border_right",
298
- "border_style",
299
- "border_top",
300
- "border_vertical",
301
- "boy",
302
- "branding_watermark",
303
- "breakfast_dining",
304
- "brightness_1",
305
- "brightness_2",
306
- "brightness_3",
307
- "brightness_4",
308
- "brightness_5",
309
- "brightness_6",
310
- "brightness_7",
311
- "brightness_auto",
312
- "brightness_high",
313
- "brightness_low",
314
- "brightness_medium",
315
- "broadcast_on_home",
316
- "broadcast_on_personal",
317
- "broken_image",
318
- "browse_gallery",
319
- "browser_not_supported",
320
- "browser_updated",
321
- "brunch_dining",
322
- "brush",
323
- "bubble_chart",
324
- "bug_report",
325
- "build",
326
- "build_circle",
327
- "bungalow",
328
- "burst_mode",
329
- "bus_alert",
330
- "business",
331
- "business_center",
332
- "cabin",
333
- "cable",
334
- "cached",
335
- "cake",
336
- "calculate",
337
- "calendar_month",
338
- "calendar_today",
339
- "calendar_view_day",
340
- "calendar_view_month",
341
- "calendar_view_week",
342
- "call",
343
- "call_end",
344
- "call_made",
345
- "call_merge",
346
- "call_missed",
347
- "call_missed_outgoing",
348
- "call_received",
349
- "call_split",
350
- "call_to_action",
351
- "camera",
352
- "camera_alt",
353
- "camera_enhance",
354
- "camera_front",
355
- "camera_indoor",
356
- "camera_outdoor",
357
- "camera_rear",
358
- "camera_roll",
359
- "cameraswitch",
360
- "campaign",
361
- "cancel",
362
- "cancel_presentation",
363
- "cancel_schedule_send",
364
- "candlestick_chart",
365
- "car_crash",
366
- "car_rental",
367
- "car_repair",
368
- "card_giftcard",
369
- "card_membership",
370
- "card_travel",
371
- "carpenter",
372
- "cases",
373
- "casino",
374
- "cast",
375
- "cast_connected",
376
- "cast_for_education",
377
- "castle",
378
- "catching_pokemon",
379
- "category",
380
- "celebration",
381
- "cell_tower",
382
- "cell_wifi",
383
- "center_focus_strong",
384
- "center_focus_weak",
385
- "chair",
386
- "chair_alt",
387
- "chalet",
388
- "change_circle",
389
- "change_history",
390
- "charging_station",
391
- "chat",
392
- "chat_bubble",
393
- "chat_bubble_outline",
394
- "check",
395
- "check_box",
396
- "check_box_outline_blank",
397
- "check_circle",
398
- "check_circle_outline",
399
- "checklist",
400
- "checklist_rtl",
401
- "checkroom",
402
- "chevron_left",
403
- "chevron_right",
404
- "child_care",
405
- "child_friendly",
406
- "chrome_reader_mode",
407
- "church",
408
- "circle",
409
- "circle_notifications",
410
- "class",
411
- "clean_hands",
412
- "cleaning_services",
413
- "clear",
414
- "clear_all",
415
- "close",
416
- "close_fullscreen",
417
- "closed_caption",
418
- "closed_caption_disabled",
419
- "closed_caption_off",
420
- "cloud",
421
- "cloud_circle",
422
- "cloud_done",
423
- "cloud_download",
424
- "cloud_off",
425
- "cloud_queue",
426
- "cloud_sync",
427
- "cloud_upload",
428
- "cloudy_snowing",
429
- "co2",
430
- "co_present",
431
- "code",
432
- "code_off",
433
- "coffee",
434
- "coffee_maker",
435
- "collections",
436
- "collections_bookmark",
437
- "color_lens",
438
- "colorize",
439
- "comment",
440
- "comment_bank",
441
- "comments_disabled",
442
- "commit",
443
- "commute",
444
- "compare",
445
- "compare_arrows",
446
- "compass_calibration",
447
- "compost",
448
- "compress",
449
- "computer",
450
- "confirmation_num",
451
- "confirmation_number",
452
- "connect_without_contact",
453
- "connected_tv",
454
- "connecting_airports",
455
- "construction",
456
- "contact_emergency",
457
- "contact_mail",
458
- "contact_page",
459
- "contact_phone",
460
- "contact_support",
461
- "contactless",
462
- "contacts",
463
- "content_copy",
464
- "content_cut",
465
- "content_paste",
466
- "content_paste_go",
467
- "content_paste_off",
468
- "content_paste_search",
469
- "contrast",
470
- "control_camera",
471
- "control_point",
472
- "control_point_duplicate",
473
- "conveyor_belt",
474
- "cookie",
475
- "copy_all",
476
- "copyright",
477
- "coronavirus",
478
- "corporate_fare",
479
- "cottage",
480
- "countertops",
481
- "create",
482
- "create_new_folder",
483
- "credit_card",
484
- "credit_card_off",
485
- "credit_score",
486
- "crib",
487
- "crisis_alert",
488
- "crop",
489
- "crop_16_9",
490
- "crop_3_2",
491
- "crop_5_4",
492
- "crop_7_5",
493
- "crop_din",
494
- "crop_free",
495
- "crop_landscape",
496
- "crop_original",
497
- "crop_portrait",
498
- "crop_rotate",
499
- "crop_square",
500
- "cruelty_free",
501
- "css",
502
- "currency_bitcoin",
503
- "currency_exchange",
504
- "currency_franc",
505
- "currency_lira",
506
- "currency_pound",
507
- "currency_ruble",
508
- "currency_rupee",
509
- "currency_yen",
510
- "currency_yuan",
511
- "curtains",
512
- "curtains_closed",
513
- "cyclone",
514
- "dangerous",
515
- "dark_mode",
516
- "dashboard",
517
- "dashboard_customize",
518
- "data_array",
519
- "data_exploration",
520
- "data_object",
521
- "data_saver_off",
522
- "data_saver_on",
523
- "data_thresholding",
524
- "data_usage",
525
- "dataset",
526
- "dataset_linked",
527
- "date_range",
528
- "deblur",
529
- "deck",
530
- "dehaze",
531
- "delete",
532
- "delete_forever",
533
- "delete_outline",
534
- "delete_sweep",
535
- "delivery_dining",
536
- "density_large",
537
- "density_medium",
538
- "density_small",
539
- "departure_board",
540
- "description",
541
- "deselect",
542
- "design_services",
543
- "desk",
544
- "desktop_access_disabled",
545
- "desktop_mac",
546
- "desktop_windows",
547
- "details",
548
- "developer_board",
549
- "developer_board_off",
550
- "developer_mode",
551
- "device_hub",
552
- "device_thermostat",
553
- "device_unknown",
554
- "devices",
555
- "devices_fold",
556
- "devices_other",
557
- "dew_point",
558
- "dialer_sip",
559
- "dialpad",
560
- "diamond",
561
- "difference",
562
- "dining",
563
- "dinner_dining",
564
- "directions",
565
- "directions_bike",
566
- "directions_boat",
567
- "directions_boat_filled",
568
- "directions_bus",
569
- "directions_bus_filled",
570
- "directions_car",
571
- "directions_car_filled",
572
- "directions_ferry",
573
- "directions_off",
574
- "directions_railway",
575
- "directions_railway_filled",
576
- "directions_run",
577
- "directions_subway",
578
- "directions_subway_filled",
579
- "directions_train",
580
- "directions_transit",
581
- "directions_transit_filled",
582
- "directions_walk",
583
- "dirty_lens",
584
- "disabled_by_default",
585
- "disabled_visible",
586
- "disc_full",
587
- "discord",
588
- "discount",
589
- "display_settings",
590
- "diversity_1",
591
- "diversity_2",
592
- "diversity_3",
593
- "dnd_forwardslash",
594
- "dns",
595
- "do_disturb",
596
- "do_disturb_alt",
597
- "do_disturb_off",
598
- "do_disturb_on",
599
- "do_not_disturb",
600
- "do_not_disturb_alt",
601
- "do_not_disturb_off",
602
- "do_not_disturb_on",
603
- "do_not_disturb_on_total_silence",
604
- "do_not_step",
605
- "do_not_touch",
606
- "dock",
607
- "document_scanner",
608
- "domain",
609
- "domain_add",
610
- "domain_disabled",
611
- "domain_verification",
612
- "done",
613
- "done_all",
614
- "done_outline",
615
- "donut_large",
616
- "donut_small",
617
- "door_back",
618
- "door_front",
619
- "door_sliding",
620
- "doorbell",
621
- "double_arrow",
622
- "downhill_skiing",
623
- "download",
624
- "download_done",
625
- "download_for_offline",
626
- "downloading",
627
- "drafts",
628
- "drag_handle",
629
- "drag_indicator",
630
- "draw",
631
- "drive_eta",
632
- "drive_file_move",
633
- "drive_file_move_outline",
634
- "drive_file_move_rtl",
635
- "drive_file_rename_outline",
636
- "drive_folder_upload",
637
- "dry",
638
- "dry_cleaning",
639
- "duo",
640
- "dvr",
641
- "dynamic_feed",
642
- "dynamic_form",
643
- "e_mobiledata",
644
- "earbuds",
645
- "earbuds_battery",
646
- "east",
647
- "eco",
648
- "edgesensor_high",
649
- "edgesensor_low",
650
- "edit",
651
- "edit_attributes",
652
- "edit_calendar",
653
- "edit_document",
654
- "edit_location",
655
- "edit_location_alt",
656
- "edit_note",
657
- "edit_notifications",
658
- "edit_off",
659
- "edit_road",
660
- "edit_square",
661
- "egg",
662
- "egg_alt",
663
- "eject",
664
- "elderly",
665
- "elderly_woman",
666
- "electric_bike",
667
- "electric_bolt",
668
- "electric_car",
669
- "electric_meter",
670
- "electric_moped",
671
- "electric_rickshaw",
672
- "electric_scooter",
673
- "electrical_services",
674
- "elevator",
675
- "email",
676
- "emergency",
677
- "emergency_recording",
678
- "emergency_share",
679
- "emoji_emotions",
680
- "emoji_events",
681
- "emoji_flags",
682
- "emoji_food_beverage",
683
- "emoji_nature",
684
- "emoji_objects",
685
- "emoji_people",
686
- "emoji_symbols",
687
- "emoji_transportation",
688
- "energy_savings_leaf",
689
- "engineering",
690
- "enhance_photo_translate",
691
- "enhanced_encryption",
692
- "equalizer",
693
- "error",
694
- "error_outline",
695
- "escalator",
696
- "escalator_warning",
697
- "euro",
698
- "euro_symbol",
699
- "ev_station",
700
- "event",
701
- "event_available",
702
- "event_busy",
703
- "event_note",
704
- "event_repeat",
705
- "event_seat",
706
- "exit_to_app",
707
- "expand",
708
- "expand_circle_down",
709
- "expand_less",
710
- "expand_more",
711
- "explicit",
712
- "explore",
713
- "explore_off",
714
- "exposure",
715
- "exposure_minus_1",
716
- "exposure_minus_2",
717
- "exposure_neg_1",
718
- "exposure_neg_2",
719
- "exposure_plus_1",
720
- "exposure_plus_2",
721
- "exposure_zero",
722
- "extension",
723
- "extension_off",
724
- "face",
725
- "face_2",
726
- "face_3",
727
- "face_4",
728
- "face_5",
729
- "face_6",
730
- "face_retouching_natural",
731
- "face_retouching_off",
732
- "facebook",
733
- "fact_check",
734
- "factory",
735
- "family_restroom",
736
- "fast_forward",
737
- "fast_rewind",
738
- "fastfood",
739
- "favorite",
740
- "favorite_border",
741
- "favorite_outline",
742
- "fax",
743
- "featured_play_list",
744
- "featured_video",
745
- "feed",
746
- "feedback",
747
- "female",
748
- "fence",
749
- "festival",
750
- "fiber_dvr",
751
- "fiber_manual_record",
752
- "fiber_new",
753
- "fiber_pin",
754
- "fiber_smart_record",
755
- "file_copy",
756
- "file_download",
757
- "file_download_done",
758
- "file_download_off",
759
- "file_open",
760
- "file_present",
761
- "file_upload",
762
- "file_upload_off",
763
- "filter",
764
- "filter_1",
765
- "filter_2",
766
- "filter_3",
767
- "filter_4",
768
- "filter_5",
769
- "filter_6",
770
- "filter_7",
771
- "filter_8",
772
- "filter_9",
773
- "filter_9_plus",
774
- "filter_alt",
775
- "filter_alt_off",
776
- "filter_b_and_w",
777
- "filter_center_focus",
778
- "filter_drama",
779
- "filter_frames",
780
- "filter_hdr",
781
- "filter_list",
782
- "filter_list_alt",
783
- "filter_list_off",
784
- "filter_none",
785
- "filter_tilt_shift",
786
- "filter_vintage",
787
- "find_in_page",
788
- "find_replace",
789
- "fingerprint",
790
- "fire_extinguisher",
791
- "fire_hydrant",
792
- "fire_hydrant_alt",
793
- "fire_truck",
794
- "fireplace",
795
- "first_page",
796
- "fit_screen",
797
- "fitbit",
798
- "fitness_center",
799
- "flag",
800
- "flag_circle",
801
- "flaky",
802
- "flare",
803
- "flash_auto",
804
- "flash_off",
805
- "flash_on",
806
- "flashlight_off",
807
- "flashlight_on",
808
- "flatware",
809
- "flight",
810
- "flight_class",
811
- "flight_land",
812
- "flight_takeoff",
813
- "flip",
814
- "flip_camera_android",
815
- "flip_camera_ios",
816
- "flip_to_back",
817
- "flip_to_front",
818
- "flood",
819
- "flourescent",
820
- "flourescent",
821
- "fluorescent",
822
- "flutter_dash",
823
- "fmd_bad",
824
- "fmd_good",
825
- "foggy",
826
- "folder",
827
- "folder_copy",
828
- "folder_delete",
829
- "folder_off",
830
- "folder_open",
831
- "folder_shared",
832
- "folder_special",
833
- "folder_zip",
834
- "follow_the_signs",
835
- "font_download",
836
- "font_download_off",
837
- "food_bank",
838
- "forest",
839
- "fork_left",
840
- "fork_right",
841
- "forklift",
842
- "format_align_center",
843
- "format_align_justify",
844
- "format_align_left",
845
- "format_align_right",
846
- "format_bold",
847
- "format_clear",
848
- "format_color_fill",
849
- "format_color_reset",
850
- "format_color_text",
851
- "format_indent_decrease",
852
- "format_indent_increase",
853
- "format_italic",
854
- "format_line_spacing",
855
- "format_list_bulleted",
856
- "format_list_bulleted_add",
857
- "format_list_numbered",
858
- "format_list_numbered_rtl",
859
- "format_overline",
860
- "format_paint",
861
- "format_quote",
862
- "format_shapes",
863
- "format_size",
864
- "format_strikethrough",
865
- "format_textdirection_l_to_r",
866
- "format_textdirection_r_to_l",
867
- "format_underline",
868
- "format_underlined",
869
- "fort",
870
- "forum",
871
- "forward",
872
- "forward_10",
873
- "forward_30",
874
- "forward_5",
875
- "forward_to_inbox",
876
- "foundation",
877
- "free_breakfast",
878
- "free_cancellation",
879
- "front_hand",
880
- "front_loader",
881
- "fullscreen",
882
- "fullscreen_exit",
883
- "functions",
884
- "g_mobiledata",
885
- "g_translate",
886
- "gamepad",
887
- "games",
888
- "garage",
889
- "gas_meter",
890
- "gavel",
891
- "generating_tokens",
892
- "gesture",
893
- "get_app",
894
- "gif",
895
- "gif_box",
896
- "girl",
897
- "gite",
898
- "goat",
899
- "golf_course",
900
- "gpp_bad",
901
- "gpp_good",
902
- "gpp_maybe",
903
- "gps_fixed",
904
- "gps_not_fixed",
905
- "gps_off",
906
- "grade",
907
- "gradient",
908
- "grading",
909
- "grain",
910
- "graphic_eq",
911
- "grass",
912
- "grid_3x3",
913
- "grid_4x4",
914
- "grid_goldenratio",
915
- "grid_off",
916
- "grid_on",
917
- "grid_view",
918
- "group",
919
- "group_add",
920
- "group_off",
921
- "group_remove",
922
- "group_work",
923
- "groups",
924
- "groups_2",
925
- "groups_3",
926
- "h_mobiledata",
927
- "h_plus_mobiledata",
928
- "hail",
929
- "handshake",
930
- "handyman",
931
- "hardware",
932
- "hd",
933
- "hdr_auto",
934
- "hdr_auto_select",
935
- "hdr_enhanced_select",
936
- "hdr_off",
937
- "hdr_off_select",
938
- "hdr_on",
939
- "hdr_on_select",
940
- "hdr_plus",
941
- "hdr_strong",
942
- "hdr_weak",
943
- "headphones",
944
- "headphones_battery",
945
- "headset",
946
- "headset_mic",
947
- "headset_off",
948
- "healing",
949
- "health_and_safety",
950
- "hearing",
951
- "hearing_disabled",
952
- "heart_broken",
953
- "heat_pump",
954
- "height",
955
- "help",
956
- "help_center",
957
- "help_outline",
958
- "hevc",
959
- "hexagon",
960
- "hide_image",
961
- "hide_source",
962
- "high_quality",
963
- "highlight",
964
- "highlight_alt",
965
- "highlight_off",
966
- "highlight_remove",
967
- "hiking",
968
- "history",
969
- "history_edu",
970
- "history_toggle_off",
971
- "hive",
972
- "hls",
973
- "hls_off",
974
- "holiday_village",
975
- "home",
976
- "home_filled",
977
- "home_max",
978
- "home_mini",
979
- "home_repair_service",
980
- "home_work",
981
- "horizontal_distribute",
982
- "horizontal_rule",
983
- "horizontal_split",
984
- "hot_tub",
985
- "hotel",
986
- "hotel_class",
987
- "hourglass_bottom",
988
- "hourglass_disabled",
989
- "hourglass_empty",
990
- "hourglass_full",
991
- "hourglass_top",
992
- "house",
993
- "house_siding",
994
- "houseboat",
995
- "how_to_reg",
996
- "how_to_vote",
997
- "html",
998
- "http",
999
- "https",
1000
- "hub",
1001
- "hvac",
1002
- "ice_skating",
1003
- "icecream",
1004
- "image",
1005
- "image_aspect_ratio",
1006
- "image_not_supported",
1007
- "image_search",
1008
- "imagesearch_roller",
1009
- "import_contacts",
1010
- "import_export",
1011
- "important_devices",
1012
- "inbox",
1013
- "incomplete_circle",
1014
- "indeterminate_check_box",
1015
- "info",
1016
- "info_outline",
1017
- "input",
1018
- "insert_chart",
1019
- "insert_chart_outlined",
1020
- "insert_comment",
1021
- "insert_drive_file",
1022
- "insert_emoticon",
1023
- "insert_invitation",
1024
- "insert_link",
1025
- "insert_page_break",
1026
- "insert_photo",
1027
- "insights",
1028
- "install_desktop",
1029
- "install_mobile",
1030
- "integration_instructions",
1031
- "interests",
1032
- "interpreter_mode",
1033
- "inventory",
1034
- "inventory_2",
1035
- "invert_colors",
1036
- "invert_colors_off",
1037
- "invert_colors_on",
1038
- "ios_share",
1039
- "iron",
1040
- "iso",
1041
- "javascript",
1042
- "join_full",
1043
- "join_inner",
1044
- "join_left",
1045
- "join_right",
1046
- "kayaking",
1047
- "kebab_dining",
1048
- "key",
1049
- "key_off",
1050
- "keyboard",
1051
- "keyboard_alt",
1052
- "keyboard_arrow_down",
1053
- "keyboard_arrow_left",
1054
- "keyboard_arrow_right",
1055
- "keyboard_arrow_up",
1056
- "keyboard_backspace",
1057
- "keyboard_capslock",
1058
- "keyboard_command",
1059
- "keyboard_command_key",
1060
- "keyboard_control",
1061
- "keyboard_control_key",
1062
- "keyboard_double_arrow_down",
1063
- "keyboard_double_arrow_left",
1064
- "keyboard_double_arrow_right",
1065
- "keyboard_double_arrow_up",
1066
- "keyboard_hide",
1067
- "keyboard_option",
1068
- "keyboard_option_key",
1069
- "keyboard_return",
1070
- "keyboard_tab",
1071
- "keyboard_voice",
1072
- "king_bed",
1073
- "kitchen",
1074
- "kitesurfing",
1075
- "label",
1076
- "label_important",
1077
- "label_important_outline",
1078
- "label_off",
1079
- "label_outline",
1080
- "lan",
1081
- "landscape",
1082
- "landslide",
1083
- "language",
1084
- "laptop",
1085
- "laptop_chromebook",
1086
- "laptop_mac",
1087
- "laptop_windows",
1088
- "last_page",
1089
- "launch",
1090
- "layers",
1091
- "layers_clear",
1092
- "leaderboard",
1093
- "leak_add",
1094
- "leak_remove",
1095
- "leave_bags_at_home",
1096
- "legend_toggle",
1097
- "lens",
1098
- "lens_blur",
1099
- "library_add",
1100
- "library_add_check",
1101
- "library_books",
1102
- "library_music",
1103
- "light",
1104
- "light_mode",
1105
- "lightbulb",
1106
- "lightbulb_circle",
1107
- "lightbulb_outline",
1108
- "line_axis",
1109
- "line_style",
1110
- "line_weight",
1111
- "linear_scale",
1112
- "link",
1113
- "link_off",
1114
- "linked_camera",
1115
- "liquor",
1116
- "list",
1117
- "list_alt",
1118
- "live_help",
1119
- "live_tv",
1120
- "living",
1121
- "local_activity",
1122
- "local_airport",
1123
- "local_atm",
1124
- "local_attraction",
1125
- "local_bar",
1126
- "local_cafe",
1127
- "local_car_wash",
1128
- "local_convenience_store",
1129
- "local_dining",
1130
- "local_drink",
1131
- "local_fire_department",
1132
- "local_florist",
1133
- "local_gas_station",
1134
- "local_grocery_store",
1135
- "local_hospital",
1136
- "local_hotel",
1137
- "local_laundry_service",
1138
- "local_library",
1139
- "local_mall",
1140
- "local_movies",
1141
- "local_offer",
1142
- "local_parking",
1143
- "local_pharmacy",
1144
- "local_phone",
1145
- "local_pizza",
1146
- "local_play",
1147
- "local_police",
1148
- "local_post_office",
1149
- "local_print_shop",
1150
- "local_printshop",
1151
- "local_restaurant",
1152
- "local_see",
1153
- "local_shipping",
1154
- "local_taxi",
1155
- "location_city",
1156
- "location_disabled",
1157
- "location_history",
1158
- "location_off",
1159
- "location_on",
1160
- "location_pin",
1161
- "location_searching",
1162
- "lock",
1163
- "lock_clock",
1164
- "lock_open",
1165
- "lock_outline",
1166
- "lock_person",
1167
- "lock_reset",
1168
- "login",
1169
- "logo_dev",
1170
- "logout",
1171
- "looks",
1172
- "looks_3",
1173
- "looks_4",
1174
- "looks_5",
1175
- "looks_6",
1176
- "looks_one",
1177
- "looks_two",
1178
- "loop",
1179
- "loupe",
1180
- "low_priority",
1181
- "loyalty",
1182
- "lte_mobiledata",
1183
- "lte_plus_mobiledata",
1184
- "luggage",
1185
- "lunch_dining",
1186
- "lyrics",
1187
- "macro_off",
1188
- "mail",
1189
- "mail_lock",
1190
- "mail_outline",
1191
- "male",
1192
- "man",
1193
- "man_2",
1194
- "man_3",
1195
- "man_4",
1196
- "manage_accounts",
1197
- "manage_history",
1198
- "manage_search",
1199
- "map",
1200
- "maps_home_work",
1201
- "maps_ugc",
1202
- "margin",
1203
- "mark_as_unread",
1204
- "mark_chat_read",
1205
- "mark_chat_unread",
1206
- "mark_email_read",
1207
- "mark_email_unread",
1208
- "mark_unread_chat_alt",
1209
- "markunread",
1210
- "markunread_mailbox",
1211
- "masks",
1212
- "maximize",
1213
- "media_bluetooth_off",
1214
- "media_bluetooth_on",
1215
- "mediation",
1216
- "medical_information",
1217
- "medical_services",
1218
- "medication",
1219
- "medication_liquid",
1220
- "meeting_room",
1221
- "memory",
1222
- "menu",
1223
- "menu_book",
1224
- "menu_open",
1225
- "merge",
1226
- "merge_type",
1227
- "message",
1228
- "messenger",
1229
- "messenger_outline",
1230
- "mic",
1231
- "mic_external_off",
1232
- "mic_external_on",
1233
- "mic_none",
1234
- "mic_off",
1235
- "microwave",
1236
- "military_tech",
1237
- "minimize",
1238
- "minor_crash",
1239
- "miscellaneous_services",
1240
- "missed_video_call",
1241
- "mms",
1242
- "mobile_friendly",
1243
- "mobile_off",
1244
- "mobile_screen_share",
1245
- "mobiledata_off",
1246
- "mode",
1247
- "mode_comment",
1248
- "mode_edit",
1249
- "mode_edit_outline",
1250
- "mode_fan_off",
1251
- "mode_night",
1252
- "mode_of_travel",
1253
- "mode_standby",
1254
- "model_training",
1255
- "monetization_on",
1256
- "money",
1257
- "money_off",
1258
- "money_off_csred",
1259
- "monitor",
1260
- "monitor_heart",
1261
- "monitor_weight",
1262
- "monochrome_photos",
1263
- "mood",
1264
- "mood_bad",
1265
- "moped",
1266
- "more",
1267
- "more_horiz",
1268
- "more_time",
1269
- "more_vert",
1270
- "mosque",
1271
- "motion_photos_auto",
1272
- "motion_photos_off",
1273
- "motion_photos_on",
1274
- "motion_photos_pause",
1275
- "motion_photos_paused",
1276
- "motorcycle",
1277
- "mouse",
1278
- "move_down",
1279
- "move_to_inbox",
1280
- "move_up",
1281
- "movie",
1282
- "movie_creation",
1283
- "movie_edit",
1284
- "movie_filter",
1285
- "moving",
1286
- "mp",
1287
- "multiline_chart",
1288
- "multiple_stop",
1289
- "multitrack_audio",
1290
- "museum",
1291
- "music_note",
1292
- "music_off",
1293
- "music_video",
1294
- "my_library_add",
1295
- "my_library_books",
1296
- "my_library_music",
1297
- "my_location",
1298
- "nat",
1299
- "nature",
1300
- "nature_people",
1301
- "navigate_before",
1302
- "navigate_next",
1303
- "navigation",
1304
- "near_me",
1305
- "near_me_disabled",
1306
- "nearby_error",
1307
- "nearby_off",
1308
- "nest_cam_wired_stand",
1309
- "network_cell",
1310
- "network_check",
1311
- "network_locked",
1312
- "network_ping",
1313
- "network_wifi",
1314
- "network_wifi_1_bar",
1315
- "network_wifi_2_bar",
1316
- "network_wifi_3_bar",
1317
- "new_label",
1318
- "new_releases",
1319
- "newspaper",
1320
- "next_plan",
1321
- "next_week",
1322
- "nfc",
1323
- "night_shelter",
1324
- "nightlife",
1325
- "nightlight",
1326
- "nightlight_round",
1327
- "nights_stay",
1328
- "no_accounts",
1329
- "no_adult_content",
1330
- "no_backpack",
1331
- "no_cell",
1332
- "no_crash",
1333
- "no_drinks",
1334
- "no_encryption",
1335
- "no_encryption_gmailerrorred",
1336
- "no_flash",
1337
- "no_food",
1338
- "no_luggage",
1339
- "no_meals",
1340
- "no_meals_ouline",
1341
- "no_meeting_room",
1342
- "no_photography",
1343
- "no_sim",
1344
- "no_stroller",
1345
- "no_transfer",
1346
- "noise_aware",
1347
- "noise_control_off",
1348
- "nordic_walking",
1349
- "north",
1350
- "north_east",
1351
- "north_west",
1352
- "not_accessible",
1353
- "not_interested",
1354
- "not_listed_location",
1355
- "not_started",
1356
- "note",
1357
- "note_add",
1358
- "note_alt",
1359
- "notes",
1360
- "notification_add",
1361
- "notification_important",
1362
- "notifications",
1363
- "notifications_active",
1364
- "notifications_none",
1365
- "notifications_off",
1366
- "notifications_on",
1367
- "notifications_paused",
1368
- "now_wallpaper",
1369
- "now_widgets",
1370
- "numbers",
1371
- "offline_bolt",
1372
- "offline_pin",
1373
- "offline_share",
1374
- "oil_barrel",
1375
- "on_device_training",
1376
- "ondemand_video",
1377
- "online_prediction",
1378
- "opacity",
1379
- "open_in_browser",
1380
- "open_in_full",
1381
- "open_in_new",
1382
- "open_in_new_off",
1383
- "open_with",
1384
- "other_houses",
1385
- "outbond",
1386
- "outbound",
1387
- "outbox",
1388
- "outdoor_grill",
1389
- "outgoing_mail",
1390
- "outlet",
1391
- "outlined_flag",
1392
- "output",
1393
- "padding",
1394
- "pages",
1395
- "pageview",
1396
- "paid",
1397
- "palette",
1398
- "pallet",
1399
- "pan_tool",
1400
- "pan_tool_alt",
1401
- "panorama",
1402
- "panorama_fish_eye",
1403
- "panorama_fisheye",
1404
- "panorama_horizontal",
1405
- "panorama_horizontal_select",
1406
- "panorama_photosphere",
1407
- "panorama_photosphere_select",
1408
- "panorama_vertical",
1409
- "panorama_vertical_select",
1410
- "panorama_wide_angle",
1411
- "panorama_wide_angle_select",
1412
- "paragliding",
1413
- "park",
1414
- "party_mode",
1415
- "password",
1416
- "pattern",
1417
- "pause",
1418
- "pause_circle",
1419
- "pause_circle_filled",
1420
- "pause_circle_outline",
1421
- "pause_presentation",
1422
- "payment",
1423
- "payments",
1424
- "paypal",
1425
- "pedal_bike",
1426
- "pending",
1427
- "pending_actions",
1428
- "pentagon",
1429
- "people",
1430
- "people_alt",
1431
- "people_outline",
1432
- "percent",
1433
- "perm_camera_mic",
1434
- "perm_contact_cal",
1435
- "perm_contact_calendar",
1436
- "perm_data_setting",
1437
- "perm_device_info",
1438
- "perm_device_information",
1439
- "perm_identity",
1440
- "perm_media",
1441
- "perm_phone_msg",
1442
- "perm_scan_wifi",
1443
- "person",
1444
- "person_2",
1445
- "person_3",
1446
- "person_4",
1447
- "person_add",
1448
- "person_add_alt",
1449
- "person_add_alt_1",
1450
- "person_add_disabled",
1451
- "person_off",
1452
- "person_outline",
1453
- "person_pin",
1454
- "person_pin_circle",
1455
- "person_remove",
1456
- "person_remove_alt_1",
1457
- "person_search",
1458
- "personal_injury",
1459
- "personal_video",
1460
- "pest_control",
1461
- "pest_control_rodent",
1462
- "pets",
1463
- "phishing",
1464
- "phone",
1465
- "phone_android",
1466
- "phone_bluetooth_speaker",
1467
- "phone_callback",
1468
- "phone_disabled",
1469
- "phone_enabled",
1470
- "phone_forwarded",
1471
- "phone_in_talk",
1472
- "phone_iphone",
1473
- "phone_locked",
1474
- "phone_missed",
1475
- "phone_paused",
1476
- "phonelink",
1477
- "phonelink_erase",
1478
- "phonelink_lock",
1479
- "phonelink_off",
1480
- "phonelink_ring",
1481
- "phonelink_setup",
1482
- "photo",
1483
- "photo_album",
1484
- "photo_camera",
1485
- "photo_camera_back",
1486
- "photo_camera_front",
1487
- "photo_filter",
1488
- "photo_library",
1489
- "photo_size_select_actual",
1490
- "photo_size_select_large",
1491
- "photo_size_select_small",
1492
- "php",
1493
- "piano",
1494
- "piano_off",
1495
- "picture_as_pdf",
1496
- "picture_in_picture",
1497
- "picture_in_picture_alt",
1498
- "pie_chart",
1499
- "pie_chart_outline",
1500
- "pie_chart_outlined",
1501
- "pin",
1502
- "pin_drop",
1503
- "pin_end",
1504
- "pin_invoke",
1505
- "pinch",
1506
- "pivot_table_chart",
1507
- "pix",
1508
- "place",
1509
- "plagiarism",
1510
- "play_arrow",
1511
- "play_circle",
1512
- "play_circle_fill",
1513
- "play_circle_filled",
1514
- "play_circle_outline",
1515
- "play_disabled",
1516
- "play_for_work",
1517
- "play_lesson",
1518
- "playlist_add",
1519
- "playlist_add_check",
1520
- "playlist_add_check_circle",
1521
- "playlist_add_circle",
1522
- "playlist_play",
1523
- "playlist_remove",
1524
- "plumbing",
1525
- "plus_one",
1526
- "podcasts",
1527
- "point_of_sale",
1528
- "policy",
1529
- "poll",
1530
- "polyline",
1531
- "polymer",
1532
- "pool",
1533
- "portable_wifi_off",
1534
- "portrait",
1535
- "post_add",
1536
- "power",
1537
- "power_input",
1538
- "power_off",
1539
- "power_settings_new",
1540
- "precision_manufacturing",
1541
- "pregnant_woman",
1542
- "present_to_all",
1543
- "preview",
1544
- "price_change",
1545
- "price_check",
1546
- "print",
1547
- "print_disabled",
1548
- "priority_high",
1549
- "privacy_tip",
1550
- "private_connectivity",
1551
- "production_quantity_limits",
1552
- "propane",
1553
- "propane_tank",
1554
- "psychology",
1555
- "psychology_alt",
1556
- "public",
1557
- "public_off",
1558
- "publish",
1559
- "published_with_changes",
1560
- "punch_clock",
1561
- "push_pin",
1562
- "qr_code",
1563
- "qr_code_2",
1564
- "qr_code_scanner",
1565
- "query_builder",
1566
- "query_stats",
1567
- "question_answer",
1568
- "question_mark",
1569
- "queue",
1570
- "queue_music",
1571
- "queue_play_next",
1572
- "quick_contacts_dialer",
1573
- "quick_contacts_mail",
1574
- "quickreply",
1575
- "quiz",
1576
- "quora",
1577
- "r_mobiledata",
1578
- "radar",
1579
- "radio",
1580
- "radio_button_checked",
1581
- "radio_button_off",
1582
- "radio_button_on",
1583
- "radio_button_unchecked",
1584
- "railway_alert",
1585
- "ramen_dining",
1586
- "ramp_left",
1587
- "ramp_right",
1588
- "rate_review",
1589
- "raw_off",
1590
- "raw_on",
1591
- "read_more",
1592
- "real_estate_agent",
1593
- "rebase_edit",
1594
- "receipt",
1595
- "receipt_long",
1596
- "recent_actors",
1597
- "recommend",
1598
- "record_voice_over",
1599
- "rectangle",
1600
- "recycling",
1601
- "reddit",
1602
- "redeem",
1603
- "redo",
1604
- "reduce_capacity",
1605
- "refresh",
1606
- "remember_me",
1607
- "remove",
1608
- "remove_circle",
1609
- "remove_circle_outline",
1610
- "remove_done",
1611
- "remove_from_queue",
1612
- "remove_moderator",
1613
- "remove_red_eye",
1614
- "remove_road",
1615
- "remove_shopping_cart",
1616
- "reorder",
1617
- "repartition",
1618
- "repeat",
1619
- "repeat_on",
1620
- "repeat_one",
1621
- "repeat_one_on",
1622
- "replay",
1623
- "replay_10",
1624
- "replay_30",
1625
- "replay_5",
1626
- "replay_circle_filled",
1627
- "reply",
1628
- "reply_all",
1629
- "report",
1630
- "report_gmailerrorred",
1631
- "report_off",
1632
- "report_problem",
1633
- "request_page",
1634
- "request_quote",
1635
- "reset_tv",
1636
- "restart_alt",
1637
- "restaurant",
1638
- "restaurant_menu",
1639
- "restore",
1640
- "restore_from_trash",
1641
- "restore_page",
1642
- "reviews",
1643
- "rice_bowl",
1644
- "ring_volume",
1645
- "rocket",
1646
- "rocket_launch",
1647
- "roller_shades",
1648
- "roller_shades_closed",
1649
- "roller_skating",
1650
- "roofing",
1651
- "room",
1652
- "room_preferences",
1653
- "room_service",
1654
- "rotate_90_degrees_ccw",
1655
- "rotate_90_degrees_cw",
1656
- "rotate_left",
1657
- "rotate_right",
1658
- "roundabout_left",
1659
- "roundabout_right",
1660
- "rounded_corner",
1661
- "route",
1662
- "router",
1663
- "rowing",
1664
- "rss_feed",
1665
- "rsvp",
1666
- "rtt",
1667
- "rule",
1668
- "rule_folder",
1669
- "run_circle",
1670
- "running_with_errors",
1671
- "rv_hookup",
1672
- "safety_check",
1673
- "safety_divider",
1674
- "sailing",
1675
- "sanitizer",
1676
- "satellite",
1677
- "satellite_alt",
1678
- "save",
1679
- "save_alt",
1680
- "save_as",
1681
- "saved_search",
1682
- "savings",
1683
- "scale",
1684
- "scanner",
1685
- "scatter_plot",
1686
- "schedule",
1687
- "schedule_send",
1688
- "schema",
1689
- "school",
1690
- "science",
1691
- "score",
1692
- "scoreboard",
1693
- "screen_lock_landscape",
1694
- "screen_lock_portrait",
1695
- "screen_lock_rotation",
1696
- "screen_rotation",
1697
- "screen_rotation_alt",
1698
- "screen_search_desktop",
1699
- "screen_share",
1700
- "screenshot",
1701
- "screenshot_monitor",
1702
- "scuba_diving",
1703
- "sd",
1704
- "sd_card",
1705
- "sd_card_alert",
1706
- "sd_storage",
1707
- "search",
1708
- "search_off",
1709
- "security",
1710
- "security_update",
1711
- "security_update_good",
1712
- "security_update_warning",
1713
- "segment",
1714
- "select_all",
1715
- "self_improvement",
1716
- "sell",
1717
- "send",
1718
- "send_and_archive",
1719
- "send_time_extension",
1720
- "send_to_mobile",
1721
- "sensor_door",
1722
- "sensor_occupied",
1723
- "sensor_window",
1724
- "sensors",
1725
- "sensors_off",
1726
- "sentiment_dissatisfied",
1727
- "sentiment_neutral",
1728
- "sentiment_satisfied",
1729
- "sentiment_satisfied_alt",
1730
- "sentiment_very_dissatisfied",
1731
- "sentiment_very_satisfied",
1732
- "set_meal",
1733
- "settings",
1734
- "settings_accessibility",
1735
- "settings_applications",
1736
- "settings_backup_restore",
1737
- "settings_bluetooth",
1738
- "settings_brightness",
1739
- "settings_cell",
1740
- "settings_display",
1741
- "settings_ethernet",
1742
- "settings_input_antenna",
1743
- "settings_input_component",
1744
- "settings_input_composite",
1745
- "settings_input_hdmi",
1746
- "settings_input_svideo",
1747
- "settings_overscan",
1748
- "settings_phone",
1749
- "settings_power",
1750
- "settings_remote",
1751
- "settings_suggest",
1752
- "settings_system_daydream",
1753
- "settings_voice",
1754
- "severe_cold",
1755
- "shape_line",
1756
- "share",
1757
- "share_arrival_time",
1758
- "share_location",
1759
- "shelves",
1760
- "shield",
1761
- "shield_moon",
1762
- "shop",
1763
- "shop_2",
1764
- "shop_two",
1765
- "shopify",
1766
- "shopping_bag",
1767
- "shopping_basket",
1768
- "shopping_cart",
1769
- "shopping_cart_checkout",
1770
- "short_text",
1771
- "shortcut",
1772
- "show_chart",
1773
- "shower",
1774
- "shuffle",
1775
- "shuffle_on",
1776
- "shutter_speed",
1777
- "sick",
1778
- "sign_language",
1779
- "signal_cellular_0_bar",
1780
- "signal_cellular_4_bar",
1781
- "signal_cellular_alt",
1782
- "signal_cellular_alt_1_bar",
1783
- "signal_cellular_alt_2_bar",
1784
- "signal_cellular_connected_no_internet_0_bar",
1785
- "signal_cellular_connected_no_internet_4_bar",
1786
- "signal_cellular_no_sim",
1787
- "signal_cellular_nodata",
1788
- "signal_cellular_null",
1789
- "signal_cellular_off",
1790
- "signal_wifi_0_bar",
1791
- "signal_wifi_4_bar",
1792
- "signal_wifi_4_bar_lock",
1793
- "signal_wifi_bad",
1794
- "signal_wifi_connected_no_internet_4",
1795
- "signal_wifi_off",
1796
- "signal_wifi_statusbar_4_bar",
1797
- "signal_wifi_statusbar_connected_no_internet_4",
1798
- "signal_wifi_statusbar_null",
1799
- "signpost",
1800
- "sim_card",
1801
- "sim_card_alert",
1802
- "sim_card_download",
1803
- "single_bed",
1804
- "sip",
1805
- "skateboarding",
1806
- "skip_next",
1807
- "skip_previous",
1808
- "sledding",
1809
- "slideshow",
1810
- "slow_motion_video",
1811
- "smart_button",
1812
- "smart_display",
1813
- "smart_screen",
1814
- "smart_toy",
1815
- "smartphone",
1816
- "smoke_free",
1817
- "smoking_rooms",
1818
- "sms",
1819
- "sms_failed",
1820
- "snapchat",
1821
- "snippet_folder",
1822
- "snooze",
1823
- "snowboarding",
1824
- "snowing",
1825
- "snowmobile",
1826
- "snowshoeing",
1827
- "soap",
1828
- "social_distance",
1829
- "solar_power",
1830
- "sort",
1831
- "sort_by_alpha",
1832
- "sos",
1833
- "soup_kitchen",
1834
- "source",
1835
- "south",
1836
- "south_america",
1837
- "south_east",
1838
- "south_west",
1839
- "spa",
1840
- "space_bar",
1841
- "space_dashboard",
1842
- "spatial_audio",
1843
- "spatial_audio_off",
1844
- "spatial_tracking",
1845
- "speaker",
1846
- "speaker_group",
1847
- "speaker_notes",
1848
- "speaker_notes_off",
1849
- "speaker_phone",
1850
- "speed",
1851
- "spellcheck",
1852
- "splitscreen",
1853
- "spoke",
1854
- "sports",
1855
- "sports_bar",
1856
- "sports_baseball",
1857
- "sports_basketball",
1858
- "sports_cricket",
1859
- "sports_esports",
1860
- "sports_football",
1861
- "sports_golf",
1862
- "sports_gymnastics",
1863
- "sports_handball",
1864
- "sports_hockey",
1865
- "sports_kabaddi",
1866
- "sports_martial_arts",
1867
- "sports_mma",
1868
- "sports_motorsports",
1869
- "sports_rugby",
1870
- "sports_score",
1871
- "sports_soccer",
1872
- "sports_tennis",
1873
- "sports_volleyball",
1874
- "square",
1875
- "square_foot",
1876
- "ssid_chart",
1877
- "stacked_bar_chart",
1878
- "stacked_line_chart",
1879
- "stadium",
1880
- "stairs",
1881
- "star",
1882
- "star_border",
1883
- "star_border_purple500",
1884
- "star_half",
1885
- "star_outline",
1886
- "star_purple500",
1887
- "star_rate",
1888
- "stars",
1889
- "start",
1890
- "stay_current_landscape",
1891
- "stay_current_portrait",
1892
- "stay_primary_landscape",
1893
- "stay_primary_portrait",
1894
- "sticky_note_2",
1895
- "stop",
1896
- "stop_circle",
1897
- "stop_screen_share",
1898
- "storage",
1899
- "store",
1900
- "store_mall_directory",
1901
- "storefront",
1902
- "storm",
1903
- "straight",
1904
- "straighten",
1905
- "stream",
1906
- "streetview",
1907
- "strikethrough_s",
1908
- "stroller",
1909
- "style",
1910
- "subdirectory_arrow_left",
1911
- "subdirectory_arrow_right",
1912
- "subject",
1913
- "subscript",
1914
- "subscriptions",
1915
- "subtitles",
1916
- "subtitles_off",
1917
- "subway",
1918
- "summarize",
1919
- "sunny",
1920
- "sunny_snowing",
1921
- "superscript",
1922
- "supervised_user_circle",
1923
- "supervisor_account",
1924
- "support",
1925
- "support_agent",
1926
- "surfing",
1927
- "surround_sound",
1928
- "swap_calls",
1929
- "swap_horiz",
1930
- "swap_horizontal_circle",
1931
- "swap_vert",
1932
- "swap_vert_circle",
1933
- "swap_vertical_circle",
1934
- "swipe",
1935
- "swipe_down",
1936
- "swipe_down_alt",
1937
- "swipe_left",
1938
- "swipe_left_alt",
1939
- "swipe_right",
1940
- "swipe_right_alt",
1941
- "swipe_up",
1942
- "swipe_up_alt",
1943
- "swipe_vertical",
1944
- "switch_access_shortcut",
1945
- "switch_access_shortcut_add",
1946
- "switch_account",
1947
- "switch_camera",
1948
- "switch_left",
1949
- "switch_right",
1950
- "switch_video",
1951
- "synagogue",
1952
- "sync",
1953
- "sync_alt",
1954
- "sync_disabled",
1955
- "sync_lock",
1956
- "sync_problem",
1957
- "system_security_update",
1958
- "system_security_update_good",
1959
- "system_security_update_warning",
1960
- "system_update",
1961
- "system_update_alt",
1962
- "system_update_tv",
1963
- "tab",
1964
- "tab_unselected",
1965
- "table_bar",
1966
- "table_chart",
1967
- "table_restaurant",
1968
- "table_rows",
1969
- "table_view",
1970
- "tablet",
1971
- "tablet_android",
1972
- "tablet_mac",
1973
- "tag",
1974
- "tag_faces",
1975
- "takeout_dining",
1976
- "tap_and_play",
1977
- "tapas",
1978
- "task",
1979
- "task_alt",
1980
- "taxi_alert",
1981
- "telegram",
1982
- "temple_buddhist",
1983
- "temple_hindu",
1984
- "terminal",
1985
- "terrain",
1986
- "text_decrease",
1987
- "text_fields",
1988
- "text_format",
1989
- "text_increase",
1990
- "text_rotate_up",
1991
- "text_rotate_vertical",
1992
- "text_rotation_angledown",
1993
- "text_rotation_angleup",
1994
- "text_rotation_down",
1995
- "text_rotation_none",
1996
- "text_snippet",
1997
- "textsms",
1998
- "texture",
1999
- "theater_comedy",
2000
- "theaters",
2001
- "thermostat",
2002
- "thermostat_auto",
2003
- "thumb_down",
2004
- "thumb_down_alt",
2005
- "thumb_down_off_alt",
2006
- "thumb_up",
2007
- "thumb_up_alt",
2008
- "thumb_up_off_alt",
2009
- "thumbs_up_down",
2010
- "thunderstorm",
2011
- "tiktok",
2012
- "time_to_leave",
2013
- "timelapse",
2014
- "timeline",
2015
- "timer",
2016
- "timer_10",
2017
- "timer_10_select",
2018
- "timer_3",
2019
- "timer_3_select",
2020
- "timer_off",
2021
- "tips_and_updates",
2022
- "tire_repair",
2023
- "title",
2024
- "toc",
2025
- "today",
2026
- "toggle_off",
2027
- "toggle_on",
2028
- "token",
2029
- "toll",
2030
- "tonality",
2031
- "topic",
2032
- "tornado",
2033
- "touch_app",
2034
- "tour",
2035
- "toys",
2036
- "track_changes",
2037
- "traffic",
2038
- "train",
2039
- "tram",
2040
- "transcribe",
2041
- "transfer_within_a_station",
2042
- "transform",
2043
- "transgender",
2044
- "transit_enterexit",
2045
- "translate",
2046
- "travel_explore",
2047
- "trending_down",
2048
- "trending_flat",
2049
- "trending_neutral",
2050
- "trending_up",
2051
- "trip_origin",
2052
- "trolley",
2053
- "troubleshoot",
2054
- "try",
2055
- "tsunami",
2056
- "tty",
2057
- "tune",
2058
- "tungsten",
2059
- "turn_left",
2060
- "turn_right",
2061
- "turn_sharp_left",
2062
- "turn_sharp_right",
2063
- "turn_slight_left",
2064
- "turn_slight_right",
2065
- "turned_in",
2066
- "turned_in_not",
2067
- "tv",
2068
- "tv_off",
2069
- "two_wheeler",
2070
- "type_specimen",
2071
- "u_turn_left",
2072
- "u_turn_right",
2073
- "umbrella",
2074
- "unarchive",
2075
- "undo",
2076
- "unfold_less",
2077
- "unfold_less_double",
2078
- "unfold_more",
2079
- "unfold_more_double",
2080
- "unpublished",
2081
- "unsubscribe",
2082
- "upcoming",
2083
- "update",
2084
- "update_disabled",
2085
- "upgrade",
2086
- "upload",
2087
- "upload_file",
2088
- "usb",
2089
- "usb_off",
2090
- "vaccines",
2091
- "vape_free",
2092
- "vaping_rooms",
2093
- "verified",
2094
- "verified_user",
2095
- "vertical_align_bottom",
2096
- "vertical_align_center",
2097
- "vertical_align_top",
2098
- "vertical_distribute",
2099
- "vertical_shades",
2100
- "vertical_shades_closed",
2101
- "vertical_split",
2102
- "vibration",
2103
- "video_call",
2104
- "video_camera_back",
2105
- "video_camera_front",
2106
- "video_chat",
2107
- "video_collection",
2108
- "video_file",
2109
- "video_label",
2110
- "video_library",
2111
- "video_settings",
2112
- "video_stable",
2113
- "videocam",
2114
- "videocam_off",
2115
- "videogame_asset",
2116
- "videogame_asset_off",
2117
- "view_agenda",
2118
- "view_array",
2119
- "view_carousel",
2120
- "view_column",
2121
- "view_comfortable",
2122
- "view_comfy",
2123
- "view_comfy_alt",
2124
- "view_compact",
2125
- "view_compact_alt",
2126
- "view_cozy",
2127
- "view_day",
2128
- "view_headline",
2129
- "view_in_ar",
2130
- "view_kanban",
2131
- "view_list",
2132
- "view_module",
2133
- "view_quilt",
2134
- "view_sidebar",
2135
- "view_stream",
2136
- "view_timeline",
2137
- "view_week",
2138
- "vignette",
2139
- "villa",
2140
- "visibility",
2141
- "visibility_off",
2142
- "voice_chat",
2143
- "voice_over_off",
2144
- "voicemail",
2145
- "volcano",
2146
- "volume_down",
2147
- "volume_down_alt",
2148
- "volume_mute",
2149
- "volume_off",
2150
- "volume_up",
2151
- "volunteer_activism",
2152
- "vpn_key",
2153
- "vpn_key_off",
2154
- "vpn_lock",
2155
- "vrpano",
2156
- "wallet",
2157
- "wallet_giftcard",
2158
- "wallet_membership",
2159
- "wallet_travel",
2160
- "wallpaper",
2161
- "warehouse",
2162
- "warning",
2163
- "warning_amber",
2164
- "wash",
2165
- "watch",
2166
- "watch_later",
2167
- "watch_off",
2168
- "water",
2169
- "water_damage",
2170
- "water_drop",
2171
- "waterfall_chart",
2172
- "waves",
2173
- "waving_hand",
2174
- "wb_auto",
2175
- "wb_cloudy",
2176
- "wb_incandescent",
2177
- "wb_iridescent",
2178
- "wb_shade",
2179
- "wb_sunny",
2180
- "wb_twighlight",
2181
- "wb_twilight",
2182
- "wc",
2183
- "web",
2184
- "web_asset",
2185
- "web_asset_off",
2186
- "web_stories",
2187
- "webhook",
2188
- "wechat",
2189
- "weekend",
2190
- "west",
2191
- "whatshot",
2192
- "wheelchair_pickup",
2193
- "where_to_vote",
2194
- "widgets",
2195
- "width_full",
2196
- "width_normal",
2197
- "width_wide",
2198
- "wifi",
2199
- "wifi_1_bar",
2200
- "wifi_2_bar",
2201
- "wifi_calling",
2202
- "wifi_calling_3",
2203
- "wifi_channel",
2204
- "wifi_find",
2205
- "wifi_lock",
2206
- "wifi_off",
2207
- "wifi_password",
2208
- "wifi_protected_setup",
2209
- "wifi_tethering",
2210
- "wifi_tethering_error",
2211
- "wifi_tethering_error_rounded",
2212
- "wifi_tethering_off",
2213
- "wind_power",
2214
- "window",
2215
- "wine_bar",
2216
- "woman",
2217
- "woman_2",
2218
- "woo_commerce",
2219
- "wordpress",
2220
- "work",
2221
- "work_history",
2222
- "work_off",
2223
- "work_outline",
2224
- "workspace_premium",
2225
- "workspaces",
2226
- "workspaces_filled",
2227
- "workspaces_outline",
2228
- "wrap_text",
2229
- "wrong_location",
2230
- "wysiwyg",
2231
- "yard",
2232
- "youtube_searched_for",
2233
- "zoom_in",
2234
- "zoom_in_map",
2235
- "zoom_out",
2236
- "zoom_out_map"
2237
- ];
2238
-
2239
-
2240
- export default IconNamesList;
1
+ const IconNamesList = [
2
+ "10k",
3
+ "10mp",
4
+ "11mp",
5
+ "123",
6
+ "12mp",
7
+ "13mp",
8
+ "14mp",
9
+ "15mp",
10
+ "16mp",
11
+ "17mp",
12
+ "18_up_rating",
13
+ "18mp",
14
+ "19mp",
15
+ "1k",
16
+ "1k_plus",
17
+ "1x_mobiledata",
18
+ "20mp",
19
+ "21mp",
20
+ "22mp",
21
+ "23mp",
22
+ "24mp",
23
+ "2k",
24
+ "2k_plus",
25
+ "2mp",
26
+ "30fps",
27
+ "30fps_select",
28
+ "360",
29
+ "3d_rotation",
30
+ "3g_mobiledata",
31
+ "3k",
32
+ "3k_plus",
33
+ "3mp",
34
+ "3p",
35
+ "4g_mobiledata",
36
+ "4g_plus_mobiledata",
37
+ "4k",
38
+ "4k_plus",
39
+ "4mp",
40
+ "5g",
41
+ "5k",
42
+ "5k_plus",
43
+ "5mp",
44
+ "60fps",
45
+ "60fps_select",
46
+ "6_ft_apart",
47
+ "6k",
48
+ "6k_plus",
49
+ "6mp",
50
+ "7k",
51
+ "7k_plus",
52
+ "7mp",
53
+ "8k",
54
+ "8k_plus",
55
+ "8mp",
56
+ "9k",
57
+ "9k_plus",
58
+ "9mp",
59
+ "abc",
60
+ "ac_unit",
61
+ "access_alarm",
62
+ "access_alarms",
63
+ "access_time",
64
+ "access_time_filled",
65
+ "accessibility",
66
+ "accessibility_new",
67
+ "accessible",
68
+ "accessible_forward",
69
+ "account_balance",
70
+ "account_balance_wallet",
71
+ "account_box",
72
+ "account_circle",
73
+ "account_tree",
74
+ "ad_units",
75
+ "adb",
76
+ "add",
77
+ "add_a_photo",
78
+ "add_alarm",
79
+ "add_alert",
80
+ "add_box",
81
+ "add_business",
82
+ "add_call",
83
+ "add_card",
84
+ "add_chart",
85
+ "add_circle",
86
+ "add_circle_outline",
87
+ "add_comment",
88
+ "add_home",
89
+ "add_home_work",
90
+ "add_ic_call",
91
+ "add_link",
92
+ "add_location",
93
+ "add_location_alt",
94
+ "add_moderator",
95
+ "add_photo_alternate",
96
+ "add_reaction",
97
+ "add_road",
98
+ "add_shopping_cart",
99
+ "add_task",
100
+ "add_to_drive",
101
+ "add_to_home_screen",
102
+ "add_to_photos",
103
+ "add_to_queue",
104
+ "addchart",
105
+ "adf_scanner",
106
+ "adjust",
107
+ "admin_panel_settings",
108
+ "adobe",
109
+ "ads_click",
110
+ "agriculture",
111
+ "air",
112
+ "airline_seat_flat",
113
+ "airline_seat_flat_angled",
114
+ "airline_seat_individual_suite",
115
+ "airline_seat_legroom_extra",
116
+ "airline_seat_legroom_normal",
117
+ "airline_seat_legroom_reduced",
118
+ "airline_seat_recline_extra",
119
+ "airline_seat_recline_normal",
120
+ "airline_stops",
121
+ "airlines",
122
+ "airplane_ticket",
123
+ "airplanemode_active",
124
+ "airplanemode_inactive",
125
+ "airplanemode_off",
126
+ "airplanemode_on",
127
+ "airplay",
128
+ "airport_shuttle",
129
+ "alarm",
130
+ "alarm_add",
131
+ "alarm_off",
132
+ "alarm_on",
133
+ "album",
134
+ "align_horizontal_center",
135
+ "align_horizontal_left",
136
+ "align_horizontal_right",
137
+ "align_vertical_bottom",
138
+ "align_vertical_center",
139
+ "align_vertical_top",
140
+ "all_inbox",
141
+ "all_inclusive",
142
+ "all_out",
143
+ "alt_route",
144
+ "alternate_email",
145
+ "amp_stories",
146
+ "analytics",
147
+ "anchor",
148
+ "android",
149
+ "animation",
150
+ "announcement",
151
+ "aod",
152
+ "apartment",
153
+ "api",
154
+ "app_blocking",
155
+ "app_registration",
156
+ "app_settings_alt",
157
+ "app_shortcut",
158
+ "apple",
159
+ "approval",
160
+ "apps",
161
+ "apps_outage",
162
+ "architecture",
163
+ "archive",
164
+ "area_chart",
165
+ "arrow_back",
166
+ "arrow_back_ios",
167
+ "arrow_back_ios_new",
168
+ "arrow_circle_down",
169
+ "arrow_circle_left",
170
+ "arrow_circle_right",
171
+ "arrow_circle_up",
172
+ "arrow_downward",
173
+ "arrow_drop_down",
174
+ "arrow_drop_down_circle",
175
+ "arrow_drop_up",
176
+ "arrow_forward",
177
+ "arrow_forward_ios",
178
+ "arrow_left",
179
+ "arrow_outward",
180
+ "arrow_right",
181
+ "arrow_right_alt",
182
+ "arrow_upward",
183
+ "art_track",
184
+ "article",
185
+ "aspect_ratio",
186
+ "assessment",
187
+ "assignment",
188
+ "assignment_add",
189
+ "assignment_ind",
190
+ "assignment_late",
191
+ "assignment_return",
192
+ "assignment_returned",
193
+ "assignment_turned_in",
194
+ "assist_walker",
195
+ "assistant",
196
+ "assistant_direction",
197
+ "assistant_navigation",
198
+ "assistant_photo",
199
+ "assured_workload",
200
+ "atm",
201
+ "attach_email",
202
+ "attach_file",
203
+ "attach_money",
204
+ "attachment",
205
+ "attractions",
206
+ "attribution",
207
+ "audio_file",
208
+ "audiotrack",
209
+ "auto_awesome",
210
+ "auto_awesome_mosaic",
211
+ "auto_awesome_motion",
212
+ "auto_delete",
213
+ "auto_fix_high",
214
+ "auto_fix_normal",
215
+ "auto_fix_off",
216
+ "auto_graph",
217
+ "auto_mode",
218
+ "auto_stories",
219
+ "autofps_select",
220
+ "autorenew",
221
+ "av_timer",
222
+ "baby_changing_station",
223
+ "back_hand",
224
+ "backpack",
225
+ "backspace",
226
+ "backup",
227
+ "backup_table",
228
+ "badge",
229
+ "bakery_dining",
230
+ "balance",
231
+ "balcony",
232
+ "ballot",
233
+ "bar_chart",
234
+ "barcode_reader",
235
+ "batch_prediction",
236
+ "bathroom",
237
+ "bathtub",
238
+ "battery_0_bar",
239
+ "battery_1_bar",
240
+ "battery_2_bar",
241
+ "battery_3_bar",
242
+ "battery_4_bar",
243
+ "battery_5_bar",
244
+ "battery_6_bar",
245
+ "battery_alert",
246
+ "battery_charging_full",
247
+ "battery_full",
248
+ "battery_saver",
249
+ "battery_std",
250
+ "battery_unknown",
251
+ "beach_access",
252
+ "bed",
253
+ "bedroom_baby",
254
+ "bedroom_child",
255
+ "bedroom_parent",
256
+ "bedtime",
257
+ "bedtime_off",
258
+ "beenhere",
259
+ "bento",
260
+ "bike_scooter",
261
+ "biotech",
262
+ "blender",
263
+ "blind",
264
+ "blinds",
265
+ "blinds_closed",
266
+ "block",
267
+ "block_flipped",
268
+ "bloodtype",
269
+ "bluetooth",
270
+ "bluetooth_audio",
271
+ "bluetooth_connected",
272
+ "bluetooth_disabled",
273
+ "bluetooth_drive",
274
+ "bluetooth_searching",
275
+ "blur_circular",
276
+ "blur_linear",
277
+ "blur_off",
278
+ "blur_on",
279
+ "bolt",
280
+ "book",
281
+ "book_online",
282
+ "bookmark",
283
+ "bookmark_add",
284
+ "bookmark_added",
285
+ "bookmark_border",
286
+ "bookmark_outline",
287
+ "bookmark_remove",
288
+ "bookmarks",
289
+ "border_all",
290
+ "border_bottom",
291
+ "border_clear",
292
+ "border_color",
293
+ "border_horizontal",
294
+ "border_inner",
295
+ "border_left",
296
+ "border_outer",
297
+ "border_right",
298
+ "border_style",
299
+ "border_top",
300
+ "border_vertical",
301
+ "boy",
302
+ "branding_watermark",
303
+ "breakfast_dining",
304
+ "brightness_1",
305
+ "brightness_2",
306
+ "brightness_3",
307
+ "brightness_4",
308
+ "brightness_5",
309
+ "brightness_6",
310
+ "brightness_7",
311
+ "brightness_auto",
312
+ "brightness_high",
313
+ "brightness_low",
314
+ "brightness_medium",
315
+ "broadcast_on_home",
316
+ "broadcast_on_personal",
317
+ "broken_image",
318
+ "browse_gallery",
319
+ "browser_not_supported",
320
+ "browser_updated",
321
+ "brunch_dining",
322
+ "brush",
323
+ "bubble_chart",
324
+ "bug_report",
325
+ "build",
326
+ "build_circle",
327
+ "bungalow",
328
+ "burst_mode",
329
+ "bus_alert",
330
+ "business",
331
+ "business_center",
332
+ "cabin",
333
+ "cable",
334
+ "cached",
335
+ "cake",
336
+ "calculate",
337
+ "calendar_month",
338
+ "calendar_today",
339
+ "calendar_view_day",
340
+ "calendar_view_month",
341
+ "calendar_view_week",
342
+ "call",
343
+ "call_end",
344
+ "call_made",
345
+ "call_merge",
346
+ "call_missed",
347
+ "call_missed_outgoing",
348
+ "call_received",
349
+ "call_split",
350
+ "call_to_action",
351
+ "camera",
352
+ "camera_alt",
353
+ "camera_enhance",
354
+ "camera_front",
355
+ "camera_indoor",
356
+ "camera_outdoor",
357
+ "camera_rear",
358
+ "camera_roll",
359
+ "cameraswitch",
360
+ "campaign",
361
+ "cancel",
362
+ "cancel_presentation",
363
+ "cancel_schedule_send",
364
+ "candlestick_chart",
365
+ "car_crash",
366
+ "car_rental",
367
+ "car_repair",
368
+ "card_giftcard",
369
+ "card_membership",
370
+ "card_travel",
371
+ "carpenter",
372
+ "cases",
373
+ "casino",
374
+ "cast",
375
+ "cast_connected",
376
+ "cast_for_education",
377
+ "castle",
378
+ "catching_pokemon",
379
+ "category",
380
+ "celebration",
381
+ "cell_tower",
382
+ "cell_wifi",
383
+ "center_focus_strong",
384
+ "center_focus_weak",
385
+ "chair",
386
+ "chair_alt",
387
+ "chalet",
388
+ "change_circle",
389
+ "change_history",
390
+ "charging_station",
391
+ "chat",
392
+ "chat_bubble",
393
+ "chat_bubble_outline",
394
+ "check",
395
+ "check_box",
396
+ "check_box_outline_blank",
397
+ "check_circle",
398
+ "check_circle_outline",
399
+ "checklist",
400
+ "checklist_rtl",
401
+ "checkroom",
402
+ "chevron_left",
403
+ "chevron_right",
404
+ "child_care",
405
+ "child_friendly",
406
+ "chrome_reader_mode",
407
+ "church",
408
+ "circle",
409
+ "circle_notifications",
410
+ "class",
411
+ "clean_hands",
412
+ "cleaning_services",
413
+ "clear",
414
+ "clear_all",
415
+ "close",
416
+ "close_fullscreen",
417
+ "closed_caption",
418
+ "closed_caption_disabled",
419
+ "closed_caption_off",
420
+ "cloud",
421
+ "cloud_circle",
422
+ "cloud_done",
423
+ "cloud_download",
424
+ "cloud_off",
425
+ "cloud_queue",
426
+ "cloud_sync",
427
+ "cloud_upload",
428
+ "cloudy_snowing",
429
+ "co2",
430
+ "co_present",
431
+ "code",
432
+ "code_off",
433
+ "coffee",
434
+ "coffee_maker",
435
+ "collections",
436
+ "collections_bookmark",
437
+ "color_lens",
438
+ "colorize",
439
+ "comment",
440
+ "comment_bank",
441
+ "comments_disabled",
442
+ "commit",
443
+ "commute",
444
+ "compare",
445
+ "compare_arrows",
446
+ "compass_calibration",
447
+ "compost",
448
+ "compress",
449
+ "computer",
450
+ "confirmation_num",
451
+ "confirmation_number",
452
+ "connect_without_contact",
453
+ "connected_tv",
454
+ "connecting_airports",
455
+ "construction",
456
+ "contact_emergency",
457
+ "contact_mail",
458
+ "contact_page",
459
+ "contact_phone",
460
+ "contact_support",
461
+ "contactless",
462
+ "contacts",
463
+ "content_copy",
464
+ "content_cut",
465
+ "content_paste",
466
+ "content_paste_go",
467
+ "content_paste_off",
468
+ "content_paste_search",
469
+ "contrast",
470
+ "control_camera",
471
+ "control_point",
472
+ "control_point_duplicate",
473
+ "conveyor_belt",
474
+ "cookie",
475
+ "copy_all",
476
+ "copyright",
477
+ "coronavirus",
478
+ "corporate_fare",
479
+ "cottage",
480
+ "countertops",
481
+ "create",
482
+ "create_new_folder",
483
+ "credit_card",
484
+ "credit_card_off",
485
+ "credit_score",
486
+ "crib",
487
+ "crisis_alert",
488
+ "crop",
489
+ "crop_16_9",
490
+ "crop_3_2",
491
+ "crop_5_4",
492
+ "crop_7_5",
493
+ "crop_din",
494
+ "crop_free",
495
+ "crop_landscape",
496
+ "crop_original",
497
+ "crop_portrait",
498
+ "crop_rotate",
499
+ "crop_square",
500
+ "cruelty_free",
501
+ "css",
502
+ "currency_bitcoin",
503
+ "currency_exchange",
504
+ "currency_franc",
505
+ "currency_lira",
506
+ "currency_pound",
507
+ "currency_ruble",
508
+ "currency_rupee",
509
+ "currency_yen",
510
+ "currency_yuan",
511
+ "curtains",
512
+ "curtains_closed",
513
+ "cyclone",
514
+ "dangerous",
515
+ "dark_mode",
516
+ "dashboard",
517
+ "dashboard_customize",
518
+ "data_array",
519
+ "data_exploration",
520
+ "data_object",
521
+ "data_saver_off",
522
+ "data_saver_on",
523
+ "data_thresholding",
524
+ "data_usage",
525
+ "dataset",
526
+ "dataset_linked",
527
+ "date_range",
528
+ "deblur",
529
+ "deck",
530
+ "dehaze",
531
+ "delete",
532
+ "delete_forever",
533
+ "delete_outline",
534
+ "delete_sweep",
535
+ "delivery_dining",
536
+ "density_large",
537
+ "density_medium",
538
+ "density_small",
539
+ "departure_board",
540
+ "description",
541
+ "deselect",
542
+ "design_services",
543
+ "desk",
544
+ "desktop_access_disabled",
545
+ "desktop_mac",
546
+ "desktop_windows",
547
+ "details",
548
+ "developer_board",
549
+ "developer_board_off",
550
+ "developer_mode",
551
+ "device_hub",
552
+ "device_thermostat",
553
+ "device_unknown",
554
+ "devices",
555
+ "devices_fold",
556
+ "devices_other",
557
+ "dew_point",
558
+ "dialer_sip",
559
+ "dialpad",
560
+ "diamond",
561
+ "difference",
562
+ "dining",
563
+ "dinner_dining",
564
+ "directions",
565
+ "directions_bike",
566
+ "directions_boat",
567
+ "directions_boat_filled",
568
+ "directions_bus",
569
+ "directions_bus_filled",
570
+ "directions_car",
571
+ "directions_car_filled",
572
+ "directions_ferry",
573
+ "directions_off",
574
+ "directions_railway",
575
+ "directions_railway_filled",
576
+ "directions_run",
577
+ "directions_subway",
578
+ "directions_subway_filled",
579
+ "directions_train",
580
+ "directions_transit",
581
+ "directions_transit_filled",
582
+ "directions_walk",
583
+ "dirty_lens",
584
+ "disabled_by_default",
585
+ "disabled_visible",
586
+ "disc_full",
587
+ "discord",
588
+ "discount",
589
+ "display_settings",
590
+ "diversity_1",
591
+ "diversity_2",
592
+ "diversity_3",
593
+ "dnd_forwardslash",
594
+ "dns",
595
+ "do_disturb",
596
+ "do_disturb_alt",
597
+ "do_disturb_off",
598
+ "do_disturb_on",
599
+ "do_not_disturb",
600
+ "do_not_disturb_alt",
601
+ "do_not_disturb_off",
602
+ "do_not_disturb_on",
603
+ "do_not_disturb_on_total_silence",
604
+ "do_not_step",
605
+ "do_not_touch",
606
+ "dock",
607
+ "document_scanner",
608
+ "domain",
609
+ "domain_add",
610
+ "domain_disabled",
611
+ "domain_verification",
612
+ "done",
613
+ "done_all",
614
+ "done_outline",
615
+ "donut_large",
616
+ "donut_small",
617
+ "door_back",
618
+ "door_front",
619
+ "door_sliding",
620
+ "doorbell",
621
+ "double_arrow",
622
+ "downhill_skiing",
623
+ "download",
624
+ "download_done",
625
+ "download_for_offline",
626
+ "downloading",
627
+ "drafts",
628
+ "drag_handle",
629
+ "drag_indicator",
630
+ "draw",
631
+ "drive_eta",
632
+ "drive_file_move",
633
+ "drive_file_move_outline",
634
+ "drive_file_move_rtl",
635
+ "drive_file_rename_outline",
636
+ "drive_folder_upload",
637
+ "dry",
638
+ "dry_cleaning",
639
+ "duo",
640
+ "dvr",
641
+ "dynamic_feed",
642
+ "dynamic_form",
643
+ "e_mobiledata",
644
+ "earbuds",
645
+ "earbuds_battery",
646
+ "east",
647
+ "eco",
648
+ "edgesensor_high",
649
+ "edgesensor_low",
650
+ "edit",
651
+ "edit_attributes",
652
+ "edit_calendar",
653
+ "edit_document",
654
+ "edit_location",
655
+ "edit_location_alt",
656
+ "edit_note",
657
+ "edit_notifications",
658
+ "edit_off",
659
+ "edit_road",
660
+ "edit_square",
661
+ "egg",
662
+ "egg_alt",
663
+ "eject",
664
+ "elderly",
665
+ "elderly_woman",
666
+ "electric_bike",
667
+ "electric_bolt",
668
+ "electric_car",
669
+ "electric_meter",
670
+ "electric_moped",
671
+ "electric_rickshaw",
672
+ "electric_scooter",
673
+ "electrical_services",
674
+ "elevator",
675
+ "email",
676
+ "emergency",
677
+ "emergency_recording",
678
+ "emergency_share",
679
+ "emoji_emotions",
680
+ "emoji_events",
681
+ "emoji_flags",
682
+ "emoji_food_beverage",
683
+ "emoji_nature",
684
+ "emoji_objects",
685
+ "emoji_people",
686
+ "emoji_symbols",
687
+ "emoji_transportation",
688
+ "energy_savings_leaf",
689
+ "engineering",
690
+ "enhance_photo_translate",
691
+ "enhanced_encryption",
692
+ "equalizer",
693
+ "error",
694
+ "error_outline",
695
+ "escalator",
696
+ "escalator_warning",
697
+ "euro",
698
+ "euro_symbol",
699
+ "ev_station",
700
+ "event",
701
+ "event_available",
702
+ "event_busy",
703
+ "event_note",
704
+ "event_repeat",
705
+ "event_seat",
706
+ "exit_to_app",
707
+ "expand",
708
+ "expand_circle_down",
709
+ "expand_less",
710
+ "expand_more",
711
+ "explicit",
712
+ "explore",
713
+ "explore_off",
714
+ "exposure",
715
+ "exposure_minus_1",
716
+ "exposure_minus_2",
717
+ "exposure_neg_1",
718
+ "exposure_neg_2",
719
+ "exposure_plus_1",
720
+ "exposure_plus_2",
721
+ "exposure_zero",
722
+ "extension",
723
+ "extension_off",
724
+ "face",
725
+ "face_2",
726
+ "face_3",
727
+ "face_4",
728
+ "face_5",
729
+ "face_6",
730
+ "face_retouching_natural",
731
+ "face_retouching_off",
732
+ "facebook",
733
+ "fact_check",
734
+ "factory",
735
+ "family_restroom",
736
+ "fast_forward",
737
+ "fast_rewind",
738
+ "fastfood",
739
+ "favorite",
740
+ "favorite_border",
741
+ "favorite_outline",
742
+ "fax",
743
+ "featured_play_list",
744
+ "featured_video",
745
+ "feed",
746
+ "feedback",
747
+ "female",
748
+ "fence",
749
+ "festival",
750
+ "fiber_dvr",
751
+ "fiber_manual_record",
752
+ "fiber_new",
753
+ "fiber_pin",
754
+ "fiber_smart_record",
755
+ "file_copy",
756
+ "file_download",
757
+ "file_download_done",
758
+ "file_download_off",
759
+ "file_open",
760
+ "file_present",
761
+ "file_upload",
762
+ "file_upload_off",
763
+ "filter",
764
+ "filter_1",
765
+ "filter_2",
766
+ "filter_3",
767
+ "filter_4",
768
+ "filter_5",
769
+ "filter_6",
770
+ "filter_7",
771
+ "filter_8",
772
+ "filter_9",
773
+ "filter_9_plus",
774
+ "filter_alt",
775
+ "filter_alt_off",
776
+ "filter_b_and_w",
777
+ "filter_center_focus",
778
+ "filter_drama",
779
+ "filter_frames",
780
+ "filter_hdr",
781
+ "filter_list",
782
+ "filter_list_alt",
783
+ "filter_list_off",
784
+ "filter_none",
785
+ "filter_tilt_shift",
786
+ "filter_vintage",
787
+ "find_in_page",
788
+ "find_replace",
789
+ "fingerprint",
790
+ "fire_extinguisher",
791
+ "fire_hydrant",
792
+ "fire_hydrant_alt",
793
+ "fire_truck",
794
+ "fireplace",
795
+ "first_page",
796
+ "fit_screen",
797
+ "fitbit",
798
+ "fitness_center",
799
+ "flag",
800
+ "flag_circle",
801
+ "flaky",
802
+ "flare",
803
+ "flash_auto",
804
+ "flash_off",
805
+ "flash_on",
806
+ "flashlight_off",
807
+ "flashlight_on",
808
+ "flatware",
809
+ "flight",
810
+ "flight_class",
811
+ "flight_land",
812
+ "flight_takeoff",
813
+ "flip",
814
+ "flip_camera_android",
815
+ "flip_camera_ios",
816
+ "flip_to_back",
817
+ "flip_to_front",
818
+ "flood",
819
+ "flourescent",
820
+ "flourescent",
821
+ "fluorescent",
822
+ "flutter_dash",
823
+ "fmd_bad",
824
+ "fmd_good",
825
+ "foggy",
826
+ "folder",
827
+ "folder_copy",
828
+ "folder_delete",
829
+ "folder_off",
830
+ "folder_open",
831
+ "folder_shared",
832
+ "folder_special",
833
+ "folder_zip",
834
+ "follow_the_signs",
835
+ "font_download",
836
+ "font_download_off",
837
+ "food_bank",
838
+ "forest",
839
+ "fork_left",
840
+ "fork_right",
841
+ "forklift",
842
+ "format_align_center",
843
+ "format_align_justify",
844
+ "format_align_left",
845
+ "format_align_right",
846
+ "format_bold",
847
+ "format_clear",
848
+ "format_color_fill",
849
+ "format_color_reset",
850
+ "format_color_text",
851
+ "format_indent_decrease",
852
+ "format_indent_increase",
853
+ "format_italic",
854
+ "format_line_spacing",
855
+ "format_list_bulleted",
856
+ "format_list_bulleted_add",
857
+ "format_list_numbered",
858
+ "format_list_numbered_rtl",
859
+ "format_overline",
860
+ "format_paint",
861
+ "format_quote",
862
+ "format_shapes",
863
+ "format_size",
864
+ "format_strikethrough",
865
+ "format_textdirection_l_to_r",
866
+ "format_textdirection_r_to_l",
867
+ "format_underline",
868
+ "format_underlined",
869
+ "fort",
870
+ "forum",
871
+ "forward",
872
+ "forward_10",
873
+ "forward_30",
874
+ "forward_5",
875
+ "forward_to_inbox",
876
+ "foundation",
877
+ "free_breakfast",
878
+ "free_cancellation",
879
+ "front_hand",
880
+ "front_loader",
881
+ "fullscreen",
882
+ "fullscreen_exit",
883
+ "functions",
884
+ "g_mobiledata",
885
+ "g_translate",
886
+ "gamepad",
887
+ "games",
888
+ "garage",
889
+ "gas_meter",
890
+ "gavel",
891
+ "generating_tokens",
892
+ "gesture",
893
+ "get_app",
894
+ "gif",
895
+ "gif_box",
896
+ "girl",
897
+ "gite",
898
+ "goat",
899
+ "golf_course",
900
+ "gpp_bad",
901
+ "gpp_good",
902
+ "gpp_maybe",
903
+ "gps_fixed",
904
+ "gps_not_fixed",
905
+ "gps_off",
906
+ "grade",
907
+ "gradient",
908
+ "grading",
909
+ "grain",
910
+ "graphic_eq",
911
+ "grass",
912
+ "grid_3x3",
913
+ "grid_4x4",
914
+ "grid_goldenratio",
915
+ "grid_off",
916
+ "grid_on",
917
+ "grid_view",
918
+ "group",
919
+ "group_add",
920
+ "group_off",
921
+ "group_remove",
922
+ "group_work",
923
+ "groups",
924
+ "groups_2",
925
+ "groups_3",
926
+ "h_mobiledata",
927
+ "h_plus_mobiledata",
928
+ "hail",
929
+ "handshake",
930
+ "handyman",
931
+ "hardware",
932
+ "hd",
933
+ "hdr_auto",
934
+ "hdr_auto_select",
935
+ "hdr_enhanced_select",
936
+ "hdr_off",
937
+ "hdr_off_select",
938
+ "hdr_on",
939
+ "hdr_on_select",
940
+ "hdr_plus",
941
+ "hdr_strong",
942
+ "hdr_weak",
943
+ "headphones",
944
+ "headphones_battery",
945
+ "headset",
946
+ "headset_mic",
947
+ "headset_off",
948
+ "healing",
949
+ "health_and_safety",
950
+ "hearing",
951
+ "hearing_disabled",
952
+ "heart_broken",
953
+ "heat_pump",
954
+ "height",
955
+ "help",
956
+ "help_center",
957
+ "help_outline",
958
+ "hevc",
959
+ "hexagon",
960
+ "hide_image",
961
+ "hide_source",
962
+ "high_quality",
963
+ "highlight",
964
+ "highlight_alt",
965
+ "highlight_off",
966
+ "highlight_remove",
967
+ "hiking",
968
+ "history",
969
+ "history_edu",
970
+ "history_toggle_off",
971
+ "hive",
972
+ "hls",
973
+ "hls_off",
974
+ "holiday_village",
975
+ "home",
976
+ "home_filled",
977
+ "home_max",
978
+ "home_mini",
979
+ "home_repair_service",
980
+ "home_work",
981
+ "horizontal_distribute",
982
+ "horizontal_rule",
983
+ "horizontal_split",
984
+ "hot_tub",
985
+ "hotel",
986
+ "hotel_class",
987
+ "hourglass_bottom",
988
+ "hourglass_disabled",
989
+ "hourglass_empty",
990
+ "hourglass_full",
991
+ "hourglass_top",
992
+ "house",
993
+ "house_siding",
994
+ "houseboat",
995
+ "how_to_reg",
996
+ "how_to_vote",
997
+ "html",
998
+ "http",
999
+ "https",
1000
+ "hub",
1001
+ "hvac",
1002
+ "ice_skating",
1003
+ "icecream",
1004
+ "image",
1005
+ "image_aspect_ratio",
1006
+ "image_not_supported",
1007
+ "image_search",
1008
+ "imagesearch_roller",
1009
+ "import_contacts",
1010
+ "import_export",
1011
+ "important_devices",
1012
+ "inbox",
1013
+ "incomplete_circle",
1014
+ "indeterminate_check_box",
1015
+ "info",
1016
+ "info_outline",
1017
+ "input",
1018
+ "insert_chart",
1019
+ "insert_chart_outlined",
1020
+ "insert_comment",
1021
+ "insert_drive_file",
1022
+ "insert_emoticon",
1023
+ "insert_invitation",
1024
+ "insert_link",
1025
+ "insert_page_break",
1026
+ "insert_photo",
1027
+ "insights",
1028
+ "install_desktop",
1029
+ "install_mobile",
1030
+ "integration_instructions",
1031
+ "interests",
1032
+ "interpreter_mode",
1033
+ "inventory",
1034
+ "inventory_2",
1035
+ "invert_colors",
1036
+ "invert_colors_off",
1037
+ "invert_colors_on",
1038
+ "ios_share",
1039
+ "iron",
1040
+ "iso",
1041
+ "javascript",
1042
+ "join_full",
1043
+ "join_inner",
1044
+ "join_left",
1045
+ "join_right",
1046
+ "kayaking",
1047
+ "kebab_dining",
1048
+ "key",
1049
+ "key_off",
1050
+ "keyboard",
1051
+ "keyboard_alt",
1052
+ "keyboard_arrow_down",
1053
+ "keyboard_arrow_left",
1054
+ "keyboard_arrow_right",
1055
+ "keyboard_arrow_up",
1056
+ "keyboard_backspace",
1057
+ "keyboard_capslock",
1058
+ "keyboard_command",
1059
+ "keyboard_command_key",
1060
+ "keyboard_control",
1061
+ "keyboard_control_key",
1062
+ "keyboard_double_arrow_down",
1063
+ "keyboard_double_arrow_left",
1064
+ "keyboard_double_arrow_right",
1065
+ "keyboard_double_arrow_up",
1066
+ "keyboard_hide",
1067
+ "keyboard_option",
1068
+ "keyboard_option_key",
1069
+ "keyboard_return",
1070
+ "keyboard_tab",
1071
+ "keyboard_voice",
1072
+ "king_bed",
1073
+ "kitchen",
1074
+ "kitesurfing",
1075
+ "label",
1076
+ "label_important",
1077
+ "label_important_outline",
1078
+ "label_off",
1079
+ "label_outline",
1080
+ "lan",
1081
+ "landscape",
1082
+ "landslide",
1083
+ "language",
1084
+ "laptop",
1085
+ "laptop_chromebook",
1086
+ "laptop_mac",
1087
+ "laptop_windows",
1088
+ "last_page",
1089
+ "launch",
1090
+ "layers",
1091
+ "layers_clear",
1092
+ "leaderboard",
1093
+ "leak_add",
1094
+ "leak_remove",
1095
+ "leave_bags_at_home",
1096
+ "legend_toggle",
1097
+ "lens",
1098
+ "lens_blur",
1099
+ "library_add",
1100
+ "library_add_check",
1101
+ "library_books",
1102
+ "library_music",
1103
+ "light",
1104
+ "light_mode",
1105
+ "lightbulb",
1106
+ "lightbulb_circle",
1107
+ "lightbulb_outline",
1108
+ "line_axis",
1109
+ "line_style",
1110
+ "line_weight",
1111
+ "linear_scale",
1112
+ "link",
1113
+ "link_off",
1114
+ "linked_camera",
1115
+ "liquor",
1116
+ "list",
1117
+ "list_alt",
1118
+ "live_help",
1119
+ "live_tv",
1120
+ "living",
1121
+ "local_activity",
1122
+ "local_airport",
1123
+ "local_atm",
1124
+ "local_attraction",
1125
+ "local_bar",
1126
+ "local_cafe",
1127
+ "local_car_wash",
1128
+ "local_convenience_store",
1129
+ "local_dining",
1130
+ "local_drink",
1131
+ "local_fire_department",
1132
+ "local_florist",
1133
+ "local_gas_station",
1134
+ "local_grocery_store",
1135
+ "local_hospital",
1136
+ "local_hotel",
1137
+ "local_laundry_service",
1138
+ "local_library",
1139
+ "local_mall",
1140
+ "local_movies",
1141
+ "local_offer",
1142
+ "local_parking",
1143
+ "local_pharmacy",
1144
+ "local_phone",
1145
+ "local_pizza",
1146
+ "local_play",
1147
+ "local_police",
1148
+ "local_post_office",
1149
+ "local_print_shop",
1150
+ "local_printshop",
1151
+ "local_restaurant",
1152
+ "local_see",
1153
+ "local_shipping",
1154
+ "local_taxi",
1155
+ "location_city",
1156
+ "location_disabled",
1157
+ "location_history",
1158
+ "location_off",
1159
+ "location_on",
1160
+ "location_pin",
1161
+ "location_searching",
1162
+ "lock",
1163
+ "lock_clock",
1164
+ "lock_open",
1165
+ "lock_outline",
1166
+ "lock_person",
1167
+ "lock_reset",
1168
+ "login",
1169
+ "logo_dev",
1170
+ "logout",
1171
+ "looks",
1172
+ "looks_3",
1173
+ "looks_4",
1174
+ "looks_5",
1175
+ "looks_6",
1176
+ "looks_one",
1177
+ "looks_two",
1178
+ "loop",
1179
+ "loupe",
1180
+ "low_priority",
1181
+ "loyalty",
1182
+ "lte_mobiledata",
1183
+ "lte_plus_mobiledata",
1184
+ "luggage",
1185
+ "lunch_dining",
1186
+ "lyrics",
1187
+ "macro_off",
1188
+ "mail",
1189
+ "mail_lock",
1190
+ "mail_outline",
1191
+ "male",
1192
+ "man",
1193
+ "man_2",
1194
+ "man_3",
1195
+ "man_4",
1196
+ "manage_accounts",
1197
+ "manage_history",
1198
+ "manage_search",
1199
+ "map",
1200
+ "maps_home_work",
1201
+ "maps_ugc",
1202
+ "margin",
1203
+ "mark_as_unread",
1204
+ "mark_chat_read",
1205
+ "mark_chat_unread",
1206
+ "mark_email_read",
1207
+ "mark_email_unread",
1208
+ "mark_unread_chat_alt",
1209
+ "markunread",
1210
+ "markunread_mailbox",
1211
+ "masks",
1212
+ "maximize",
1213
+ "media_bluetooth_off",
1214
+ "media_bluetooth_on",
1215
+ "mediation",
1216
+ "medical_information",
1217
+ "medical_services",
1218
+ "medication",
1219
+ "medication_liquid",
1220
+ "meeting_room",
1221
+ "memory",
1222
+ "menu",
1223
+ "menu_book",
1224
+ "menu_open",
1225
+ "merge",
1226
+ "merge_type",
1227
+ "message",
1228
+ "messenger",
1229
+ "messenger_outline",
1230
+ "mic",
1231
+ "mic_external_off",
1232
+ "mic_external_on",
1233
+ "mic_none",
1234
+ "mic_off",
1235
+ "microwave",
1236
+ "military_tech",
1237
+ "minimize",
1238
+ "minor_crash",
1239
+ "miscellaneous_services",
1240
+ "missed_video_call",
1241
+ "mms",
1242
+ "mobile_friendly",
1243
+ "mobile_off",
1244
+ "mobile_screen_share",
1245
+ "mobiledata_off",
1246
+ "mode",
1247
+ "mode_comment",
1248
+ "mode_edit",
1249
+ "mode_edit_outline",
1250
+ "mode_fan_off",
1251
+ "mode_night",
1252
+ "mode_of_travel",
1253
+ "mode_standby",
1254
+ "model_training",
1255
+ "monetization_on",
1256
+ "money",
1257
+ "money_off",
1258
+ "money_off_csred",
1259
+ "monitor",
1260
+ "monitor_heart",
1261
+ "monitor_weight",
1262
+ "monochrome_photos",
1263
+ "mood",
1264
+ "mood_bad",
1265
+ "moped",
1266
+ "more",
1267
+ "more_horiz",
1268
+ "more_time",
1269
+ "more_vert",
1270
+ "mosque",
1271
+ "motion_photos_auto",
1272
+ "motion_photos_off",
1273
+ "motion_photos_on",
1274
+ "motion_photos_pause",
1275
+ "motion_photos_paused",
1276
+ "motorcycle",
1277
+ "mouse",
1278
+ "move_down",
1279
+ "move_to_inbox",
1280
+ "move_up",
1281
+ "movie",
1282
+ "movie_creation",
1283
+ "movie_edit",
1284
+ "movie_filter",
1285
+ "moving",
1286
+ "mp",
1287
+ "multiline_chart",
1288
+ "multiple_stop",
1289
+ "multitrack_audio",
1290
+ "museum",
1291
+ "music_note",
1292
+ "music_off",
1293
+ "music_video",
1294
+ "my_library_add",
1295
+ "my_library_books",
1296
+ "my_library_music",
1297
+ "my_location",
1298
+ "nat",
1299
+ "nature",
1300
+ "nature_people",
1301
+ "navigate_before",
1302
+ "navigate_next",
1303
+ "navigation",
1304
+ "near_me",
1305
+ "near_me_disabled",
1306
+ "nearby_error",
1307
+ "nearby_off",
1308
+ "nest_cam_wired_stand",
1309
+ "network_cell",
1310
+ "network_check",
1311
+ "network_locked",
1312
+ "network_ping",
1313
+ "network_wifi",
1314
+ "network_wifi_1_bar",
1315
+ "network_wifi_2_bar",
1316
+ "network_wifi_3_bar",
1317
+ "new_label",
1318
+ "new_releases",
1319
+ "newspaper",
1320
+ "next_plan",
1321
+ "next_week",
1322
+ "nfc",
1323
+ "night_shelter",
1324
+ "nightlife",
1325
+ "nightlight",
1326
+ "nightlight_round",
1327
+ "nights_stay",
1328
+ "no_accounts",
1329
+ "no_adult_content",
1330
+ "no_backpack",
1331
+ "no_cell",
1332
+ "no_crash",
1333
+ "no_drinks",
1334
+ "no_encryption",
1335
+ "no_encryption_gmailerrorred",
1336
+ "no_flash",
1337
+ "no_food",
1338
+ "no_luggage",
1339
+ "no_meals",
1340
+ "no_meals_ouline",
1341
+ "no_meeting_room",
1342
+ "no_photography",
1343
+ "no_sim",
1344
+ "no_stroller",
1345
+ "no_transfer",
1346
+ "noise_aware",
1347
+ "noise_control_off",
1348
+ "nordic_walking",
1349
+ "north",
1350
+ "north_east",
1351
+ "north_west",
1352
+ "not_accessible",
1353
+ "not_interested",
1354
+ "not_listed_location",
1355
+ "not_started",
1356
+ "note",
1357
+ "note_add",
1358
+ "note_alt",
1359
+ "notes",
1360
+ "notification_add",
1361
+ "notification_important",
1362
+ "notifications",
1363
+ "notifications_active",
1364
+ "notifications_none",
1365
+ "notifications_off",
1366
+ "notifications_on",
1367
+ "notifications_paused",
1368
+ "now_wallpaper",
1369
+ "now_widgets",
1370
+ "numbers",
1371
+ "offline_bolt",
1372
+ "offline_pin",
1373
+ "offline_share",
1374
+ "oil_barrel",
1375
+ "on_device_training",
1376
+ "ondemand_video",
1377
+ "online_prediction",
1378
+ "opacity",
1379
+ "open_in_browser",
1380
+ "open_in_full",
1381
+ "open_in_new",
1382
+ "open_in_new_off",
1383
+ "open_with",
1384
+ "other_houses",
1385
+ "outbond",
1386
+ "outbound",
1387
+ "outbox",
1388
+ "outdoor_grill",
1389
+ "outgoing_mail",
1390
+ "outlet",
1391
+ "outlined_flag",
1392
+ "output",
1393
+ "padding",
1394
+ "pages",
1395
+ "pageview",
1396
+ "paid",
1397
+ "palette",
1398
+ "pallet",
1399
+ "pan_tool",
1400
+ "pan_tool_alt",
1401
+ "panorama",
1402
+ "panorama_fish_eye",
1403
+ "panorama_fisheye",
1404
+ "panorama_horizontal",
1405
+ "panorama_horizontal_select",
1406
+ "panorama_photosphere",
1407
+ "panorama_photosphere_select",
1408
+ "panorama_vertical",
1409
+ "panorama_vertical_select",
1410
+ "panorama_wide_angle",
1411
+ "panorama_wide_angle_select",
1412
+ "paragliding",
1413
+ "park",
1414
+ "party_mode",
1415
+ "password",
1416
+ "pattern",
1417
+ "pause",
1418
+ "pause_circle",
1419
+ "pause_circle_filled",
1420
+ "pause_circle_outline",
1421
+ "pause_presentation",
1422
+ "payment",
1423
+ "payments",
1424
+ "paypal",
1425
+ "pedal_bike",
1426
+ "pending",
1427
+ "pending_actions",
1428
+ "pentagon",
1429
+ "people",
1430
+ "people_alt",
1431
+ "people_outline",
1432
+ "percent",
1433
+ "perm_camera_mic",
1434
+ "perm_contact_cal",
1435
+ "perm_contact_calendar",
1436
+ "perm_data_setting",
1437
+ "perm_device_info",
1438
+ "perm_device_information",
1439
+ "perm_identity",
1440
+ "perm_media",
1441
+ "perm_phone_msg",
1442
+ "perm_scan_wifi",
1443
+ "person",
1444
+ "person_2",
1445
+ "person_3",
1446
+ "person_4",
1447
+ "person_add",
1448
+ "person_add_alt",
1449
+ "person_add_alt_1",
1450
+ "person_add_disabled",
1451
+ "person_off",
1452
+ "person_outline",
1453
+ "person_pin",
1454
+ "person_pin_circle",
1455
+ "person_remove",
1456
+ "person_remove_alt_1",
1457
+ "person_search",
1458
+ "personal_injury",
1459
+ "personal_video",
1460
+ "pest_control",
1461
+ "pest_control_rodent",
1462
+ "pets",
1463
+ "phishing",
1464
+ "phone",
1465
+ "phone_android",
1466
+ "phone_bluetooth_speaker",
1467
+ "phone_callback",
1468
+ "phone_disabled",
1469
+ "phone_enabled",
1470
+ "phone_forwarded",
1471
+ "phone_in_talk",
1472
+ "phone_iphone",
1473
+ "phone_locked",
1474
+ "phone_missed",
1475
+ "phone_paused",
1476
+ "phonelink",
1477
+ "phonelink_erase",
1478
+ "phonelink_lock",
1479
+ "phonelink_off",
1480
+ "phonelink_ring",
1481
+ "phonelink_setup",
1482
+ "photo",
1483
+ "photo_album",
1484
+ "photo_camera",
1485
+ "photo_camera_back",
1486
+ "photo_camera_front",
1487
+ "photo_filter",
1488
+ "photo_library",
1489
+ "photo_size_select_actual",
1490
+ "photo_size_select_large",
1491
+ "photo_size_select_small",
1492
+ "php",
1493
+ "piano",
1494
+ "piano_off",
1495
+ "picture_as_pdf",
1496
+ "picture_in_picture",
1497
+ "picture_in_picture_alt",
1498
+ "pie_chart",
1499
+ "pie_chart_outline",
1500
+ "pie_chart_outlined",
1501
+ "pin",
1502
+ "pin_drop",
1503
+ "pin_end",
1504
+ "pin_invoke",
1505
+ "pinch",
1506
+ "pivot_table_chart",
1507
+ "pix",
1508
+ "place",
1509
+ "plagiarism",
1510
+ "play_arrow",
1511
+ "play_circle",
1512
+ "play_circle_fill",
1513
+ "play_circle_filled",
1514
+ "play_circle_outline",
1515
+ "play_disabled",
1516
+ "play_for_work",
1517
+ "play_lesson",
1518
+ "playlist_add",
1519
+ "playlist_add_check",
1520
+ "playlist_add_check_circle",
1521
+ "playlist_add_circle",
1522
+ "playlist_play",
1523
+ "playlist_remove",
1524
+ "plumbing",
1525
+ "plus_one",
1526
+ "podcasts",
1527
+ "point_of_sale",
1528
+ "policy",
1529
+ "poll",
1530
+ "polyline",
1531
+ "polymer",
1532
+ "pool",
1533
+ "portable_wifi_off",
1534
+ "portrait",
1535
+ "post_add",
1536
+ "power",
1537
+ "power_input",
1538
+ "power_off",
1539
+ "power_settings_new",
1540
+ "precision_manufacturing",
1541
+ "pregnant_woman",
1542
+ "present_to_all",
1543
+ "preview",
1544
+ "price_change",
1545
+ "price_check",
1546
+ "print",
1547
+ "print_disabled",
1548
+ "priority_high",
1549
+ "privacy_tip",
1550
+ "private_connectivity",
1551
+ "production_quantity_limits",
1552
+ "propane",
1553
+ "propane_tank",
1554
+ "psychology",
1555
+ "psychology_alt",
1556
+ "public",
1557
+ "public_off",
1558
+ "publish",
1559
+ "published_with_changes",
1560
+ "punch_clock",
1561
+ "push_pin",
1562
+ "qr_code",
1563
+ "qr_code_2",
1564
+ "qr_code_scanner",
1565
+ "query_builder",
1566
+ "query_stats",
1567
+ "question_answer",
1568
+ "question_mark",
1569
+ "queue",
1570
+ "queue_music",
1571
+ "queue_play_next",
1572
+ "quick_contacts_dialer",
1573
+ "quick_contacts_mail",
1574
+ "quickreply",
1575
+ "quiz",
1576
+ "quora",
1577
+ "r_mobiledata",
1578
+ "radar",
1579
+ "radio",
1580
+ "radio_button_checked",
1581
+ "radio_button_off",
1582
+ "radio_button_on",
1583
+ "radio_button_unchecked",
1584
+ "railway_alert",
1585
+ "ramen_dining",
1586
+ "ramp_left",
1587
+ "ramp_right",
1588
+ "rate_review",
1589
+ "raw_off",
1590
+ "raw_on",
1591
+ "read_more",
1592
+ "real_estate_agent",
1593
+ "rebase_edit",
1594
+ "receipt",
1595
+ "receipt_long",
1596
+ "recent_actors",
1597
+ "recommend",
1598
+ "record_voice_over",
1599
+ "rectangle",
1600
+ "recycling",
1601
+ "reddit",
1602
+ "redeem",
1603
+ "redo",
1604
+ "reduce_capacity",
1605
+ "refresh",
1606
+ "remember_me",
1607
+ "remove",
1608
+ "remove_circle",
1609
+ "remove_circle_outline",
1610
+ "remove_done",
1611
+ "remove_from_queue",
1612
+ "remove_moderator",
1613
+ "remove_red_eye",
1614
+ "remove_road",
1615
+ "remove_shopping_cart",
1616
+ "reorder",
1617
+ "repartition",
1618
+ "repeat",
1619
+ "repeat_on",
1620
+ "repeat_one",
1621
+ "repeat_one_on",
1622
+ "replay",
1623
+ "replay_10",
1624
+ "replay_30",
1625
+ "replay_5",
1626
+ "replay_circle_filled",
1627
+ "reply",
1628
+ "reply_all",
1629
+ "report",
1630
+ "report_gmailerrorred",
1631
+ "report_off",
1632
+ "report_problem",
1633
+ "request_page",
1634
+ "request_quote",
1635
+ "reset_tv",
1636
+ "restart_alt",
1637
+ "restaurant",
1638
+ "restaurant_menu",
1639
+ "restore",
1640
+ "restore_from_trash",
1641
+ "restore_page",
1642
+ "reviews",
1643
+ "rice_bowl",
1644
+ "ring_volume",
1645
+ "rocket",
1646
+ "rocket_launch",
1647
+ "roller_shades",
1648
+ "roller_shades_closed",
1649
+ "roller_skating",
1650
+ "roofing",
1651
+ "room",
1652
+ "room_preferences",
1653
+ "room_service",
1654
+ "rotate_90_degrees_ccw",
1655
+ "rotate_90_degrees_cw",
1656
+ "rotate_left",
1657
+ "rotate_right",
1658
+ "roundabout_left",
1659
+ "roundabout_right",
1660
+ "rounded_corner",
1661
+ "route",
1662
+ "router",
1663
+ "rowing",
1664
+ "rss_feed",
1665
+ "rsvp",
1666
+ "rtt",
1667
+ "rule",
1668
+ "rule_folder",
1669
+ "run_circle",
1670
+ "running_with_errors",
1671
+ "rv_hookup",
1672
+ "safety_check",
1673
+ "safety_divider",
1674
+ "sailing",
1675
+ "sanitizer",
1676
+ "satellite",
1677
+ "satellite_alt",
1678
+ "save",
1679
+ "save_alt",
1680
+ "save_as",
1681
+ "saved_search",
1682
+ "savings",
1683
+ "scale",
1684
+ "scanner",
1685
+ "scatter_plot",
1686
+ "schedule",
1687
+ "schedule_send",
1688
+ "schema",
1689
+ "school",
1690
+ "science",
1691
+ "score",
1692
+ "scoreboard",
1693
+ "screen_lock_landscape",
1694
+ "screen_lock_portrait",
1695
+ "screen_lock_rotation",
1696
+ "screen_rotation",
1697
+ "screen_rotation_alt",
1698
+ "screen_search_desktop",
1699
+ "screen_share",
1700
+ "screenshot",
1701
+ "screenshot_monitor",
1702
+ "scuba_diving",
1703
+ "sd",
1704
+ "sd_card",
1705
+ "sd_card_alert",
1706
+ "sd_storage",
1707
+ "search",
1708
+ "search_off",
1709
+ "security",
1710
+ "security_update",
1711
+ "security_update_good",
1712
+ "security_update_warning",
1713
+ "segment",
1714
+ "select_all",
1715
+ "self_improvement",
1716
+ "sell",
1717
+ "send",
1718
+ "send_and_archive",
1719
+ "send_time_extension",
1720
+ "send_to_mobile",
1721
+ "sensor_door",
1722
+ "sensor_occupied",
1723
+ "sensor_window",
1724
+ "sensors",
1725
+ "sensors_off",
1726
+ "sentiment_dissatisfied",
1727
+ "sentiment_neutral",
1728
+ "sentiment_satisfied",
1729
+ "sentiment_satisfied_alt",
1730
+ "sentiment_very_dissatisfied",
1731
+ "sentiment_very_satisfied",
1732
+ "set_meal",
1733
+ "settings",
1734
+ "settings_accessibility",
1735
+ "settings_applications",
1736
+ "settings_backup_restore",
1737
+ "settings_bluetooth",
1738
+ "settings_brightness",
1739
+ "settings_cell",
1740
+ "settings_display",
1741
+ "settings_ethernet",
1742
+ "settings_input_antenna",
1743
+ "settings_input_component",
1744
+ "settings_input_composite",
1745
+ "settings_input_hdmi",
1746
+ "settings_input_svideo",
1747
+ "settings_overscan",
1748
+ "settings_phone",
1749
+ "settings_power",
1750
+ "settings_remote",
1751
+ "settings_suggest",
1752
+ "settings_system_daydream",
1753
+ "settings_voice",
1754
+ "severe_cold",
1755
+ "shape_line",
1756
+ "share",
1757
+ "share_arrival_time",
1758
+ "share_location",
1759
+ "shelves",
1760
+ "shield",
1761
+ "shield_moon",
1762
+ "shop",
1763
+ "shop_2",
1764
+ "shop_two",
1765
+ "shopify",
1766
+ "shopping_bag",
1767
+ "shopping_basket",
1768
+ "shopping_cart",
1769
+ "shopping_cart_checkout",
1770
+ "short_text",
1771
+ "shortcut",
1772
+ "show_chart",
1773
+ "shower",
1774
+ "shuffle",
1775
+ "shuffle_on",
1776
+ "shutter_speed",
1777
+ "sick",
1778
+ "sign_language",
1779
+ "signal_cellular_0_bar",
1780
+ "signal_cellular_4_bar",
1781
+ "signal_cellular_alt",
1782
+ "signal_cellular_alt_1_bar",
1783
+ "signal_cellular_alt_2_bar",
1784
+ "signal_cellular_connected_no_internet_0_bar",
1785
+ "signal_cellular_connected_no_internet_4_bar",
1786
+ "signal_cellular_no_sim",
1787
+ "signal_cellular_nodata",
1788
+ "signal_cellular_null",
1789
+ "signal_cellular_off",
1790
+ "signal_wifi_0_bar",
1791
+ "signal_wifi_4_bar",
1792
+ "signal_wifi_4_bar_lock",
1793
+ "signal_wifi_bad",
1794
+ "signal_wifi_connected_no_internet_4",
1795
+ "signal_wifi_off",
1796
+ "signal_wifi_statusbar_4_bar",
1797
+ "signal_wifi_statusbar_connected_no_internet_4",
1798
+ "signal_wifi_statusbar_null",
1799
+ "signpost",
1800
+ "sim_card",
1801
+ "sim_card_alert",
1802
+ "sim_card_download",
1803
+ "single_bed",
1804
+ "sip",
1805
+ "skateboarding",
1806
+ "skip_next",
1807
+ "skip_previous",
1808
+ "sledding",
1809
+ "slideshow",
1810
+ "slow_motion_video",
1811
+ "smart_button",
1812
+ "smart_display",
1813
+ "smart_screen",
1814
+ "smart_toy",
1815
+ "smartphone",
1816
+ "smoke_free",
1817
+ "smoking_rooms",
1818
+ "sms",
1819
+ "sms_failed",
1820
+ "snapchat",
1821
+ "snippet_folder",
1822
+ "snooze",
1823
+ "snowboarding",
1824
+ "snowing",
1825
+ "snowmobile",
1826
+ "snowshoeing",
1827
+ "soap",
1828
+ "social_distance",
1829
+ "solar_power",
1830
+ "sort",
1831
+ "sort_by_alpha",
1832
+ "sos",
1833
+ "soup_kitchen",
1834
+ "source",
1835
+ "south",
1836
+ "south_america",
1837
+ "south_east",
1838
+ "south_west",
1839
+ "spa",
1840
+ "space_bar",
1841
+ "space_dashboard",
1842
+ "spatial_audio",
1843
+ "spatial_audio_off",
1844
+ "spatial_tracking",
1845
+ "speaker",
1846
+ "speaker_group",
1847
+ "speaker_notes",
1848
+ "speaker_notes_off",
1849
+ "speaker_phone",
1850
+ "speed",
1851
+ "spellcheck",
1852
+ "splitscreen",
1853
+ "spoke",
1854
+ "sports",
1855
+ "sports_bar",
1856
+ "sports_baseball",
1857
+ "sports_basketball",
1858
+ "sports_cricket",
1859
+ "sports_esports",
1860
+ "sports_football",
1861
+ "sports_golf",
1862
+ "sports_gymnastics",
1863
+ "sports_handball",
1864
+ "sports_hockey",
1865
+ "sports_kabaddi",
1866
+ "sports_martial_arts",
1867
+ "sports_mma",
1868
+ "sports_motorsports",
1869
+ "sports_rugby",
1870
+ "sports_score",
1871
+ "sports_soccer",
1872
+ "sports_tennis",
1873
+ "sports_volleyball",
1874
+ "square",
1875
+ "square_foot",
1876
+ "ssid_chart",
1877
+ "stacked_bar_chart",
1878
+ "stacked_line_chart",
1879
+ "stadium",
1880
+ "stairs",
1881
+ "star",
1882
+ "star_border",
1883
+ "star_border_purple500",
1884
+ "star_half",
1885
+ "star_outline",
1886
+ "star_purple500",
1887
+ "star_rate",
1888
+ "stars",
1889
+ "start",
1890
+ "stay_current_landscape",
1891
+ "stay_current_portrait",
1892
+ "stay_primary_landscape",
1893
+ "stay_primary_portrait",
1894
+ "sticky_note_2",
1895
+ "stop",
1896
+ "stop_circle",
1897
+ "stop_screen_share",
1898
+ "storage",
1899
+ "store",
1900
+ "store_mall_directory",
1901
+ "storefront",
1902
+ "storm",
1903
+ "straight",
1904
+ "straighten",
1905
+ "stream",
1906
+ "streetview",
1907
+ "strikethrough_s",
1908
+ "stroller",
1909
+ "style",
1910
+ "subdirectory_arrow_left",
1911
+ "subdirectory_arrow_right",
1912
+ "subject",
1913
+ "subscript",
1914
+ "subscriptions",
1915
+ "subtitles",
1916
+ "subtitles_off",
1917
+ "subway",
1918
+ "summarize",
1919
+ "sunny",
1920
+ "sunny_snowing",
1921
+ "superscript",
1922
+ "supervised_user_circle",
1923
+ "supervisor_account",
1924
+ "support",
1925
+ "support_agent",
1926
+ "surfing",
1927
+ "surround_sound",
1928
+ "swap_calls",
1929
+ "swap_horiz",
1930
+ "swap_horizontal_circle",
1931
+ "swap_vert",
1932
+ "swap_vert_circle",
1933
+ "swap_vertical_circle",
1934
+ "swipe",
1935
+ "swipe_down",
1936
+ "swipe_down_alt",
1937
+ "swipe_left",
1938
+ "swipe_left_alt",
1939
+ "swipe_right",
1940
+ "swipe_right_alt",
1941
+ "swipe_up",
1942
+ "swipe_up_alt",
1943
+ "swipe_vertical",
1944
+ "switch_access_shortcut",
1945
+ "switch_access_shortcut_add",
1946
+ "switch_account",
1947
+ "switch_camera",
1948
+ "switch_left",
1949
+ "switch_right",
1950
+ "switch_video",
1951
+ "synagogue",
1952
+ "sync",
1953
+ "sync_alt",
1954
+ "sync_disabled",
1955
+ "sync_lock",
1956
+ "sync_problem",
1957
+ "system_security_update",
1958
+ "system_security_update_good",
1959
+ "system_security_update_warning",
1960
+ "system_update",
1961
+ "system_update_alt",
1962
+ "system_update_tv",
1963
+ "tab",
1964
+ "tab_unselected",
1965
+ "table_bar",
1966
+ "table_chart",
1967
+ "table_restaurant",
1968
+ "table_rows",
1969
+ "table_view",
1970
+ "tablet",
1971
+ "tablet_android",
1972
+ "tablet_mac",
1973
+ "tag",
1974
+ "tag_faces",
1975
+ "takeout_dining",
1976
+ "tap_and_play",
1977
+ "tapas",
1978
+ "task",
1979
+ "task_alt",
1980
+ "taxi_alert",
1981
+ "telegram",
1982
+ "temple_buddhist",
1983
+ "temple_hindu",
1984
+ "terminal",
1985
+ "terrain",
1986
+ "text_decrease",
1987
+ "text_fields",
1988
+ "text_format",
1989
+ "text_increase",
1990
+ "text_rotate_up",
1991
+ "text_rotate_vertical",
1992
+ "text_rotation_angledown",
1993
+ "text_rotation_angleup",
1994
+ "text_rotation_down",
1995
+ "text_rotation_none",
1996
+ "text_snippet",
1997
+ "textsms",
1998
+ "texture",
1999
+ "theater_comedy",
2000
+ "theaters",
2001
+ "thermostat",
2002
+ "thermostat_auto",
2003
+ "thumb_down",
2004
+ "thumb_down_alt",
2005
+ "thumb_down_off_alt",
2006
+ "thumb_up",
2007
+ "thumb_up_alt",
2008
+ "thumb_up_off_alt",
2009
+ "thumbs_up_down",
2010
+ "thunderstorm",
2011
+ "tiktok",
2012
+ "time_to_leave",
2013
+ "timelapse",
2014
+ "timeline",
2015
+ "timer",
2016
+ "timer_10",
2017
+ "timer_10_select",
2018
+ "timer_3",
2019
+ "timer_3_select",
2020
+ "timer_off",
2021
+ "tips_and_updates",
2022
+ "tire_repair",
2023
+ "title",
2024
+ "toc",
2025
+ "today",
2026
+ "toggle_off",
2027
+ "toggle_on",
2028
+ "token",
2029
+ "toll",
2030
+ "tonality",
2031
+ "topic",
2032
+ "tornado",
2033
+ "touch_app",
2034
+ "tour",
2035
+ "toys",
2036
+ "track_changes",
2037
+ "traffic",
2038
+ "train",
2039
+ "tram",
2040
+ "transcribe",
2041
+ "transfer_within_a_station",
2042
+ "transform",
2043
+ "transgender",
2044
+ "transit_enterexit",
2045
+ "translate",
2046
+ "travel_explore",
2047
+ "trending_down",
2048
+ "trending_flat",
2049
+ "trending_neutral",
2050
+ "trending_up",
2051
+ "trip_origin",
2052
+ "trolley",
2053
+ "troubleshoot",
2054
+ "try",
2055
+ "tsunami",
2056
+ "tty",
2057
+ "tune",
2058
+ "tungsten",
2059
+ "turn_left",
2060
+ "turn_right",
2061
+ "turn_sharp_left",
2062
+ "turn_sharp_right",
2063
+ "turn_slight_left",
2064
+ "turn_slight_right",
2065
+ "turned_in",
2066
+ "turned_in_not",
2067
+ "tv",
2068
+ "tv_off",
2069
+ "two_wheeler",
2070
+ "type_specimen",
2071
+ "u_turn_left",
2072
+ "u_turn_right",
2073
+ "umbrella",
2074
+ "unarchive",
2075
+ "undo",
2076
+ "unfold_less",
2077
+ "unfold_less_double",
2078
+ "unfold_more",
2079
+ "unfold_more_double",
2080
+ "unpublished",
2081
+ "unsubscribe",
2082
+ "upcoming",
2083
+ "update",
2084
+ "update_disabled",
2085
+ "upgrade",
2086
+ "upload",
2087
+ "upload_file",
2088
+ "usb",
2089
+ "usb_off",
2090
+ "vaccines",
2091
+ "vape_free",
2092
+ "vaping_rooms",
2093
+ "verified",
2094
+ "verified_user",
2095
+ "vertical_align_bottom",
2096
+ "vertical_align_center",
2097
+ "vertical_align_top",
2098
+ "vertical_distribute",
2099
+ "vertical_shades",
2100
+ "vertical_shades_closed",
2101
+ "vertical_split",
2102
+ "vibration",
2103
+ "video_call",
2104
+ "video_camera_back",
2105
+ "video_camera_front",
2106
+ "video_chat",
2107
+ "video_collection",
2108
+ "video_file",
2109
+ "video_label",
2110
+ "video_library",
2111
+ "video_settings",
2112
+ "video_stable",
2113
+ "videocam",
2114
+ "videocam_off",
2115
+ "videogame_asset",
2116
+ "videogame_asset_off",
2117
+ "view_agenda",
2118
+ "view_array",
2119
+ "view_carousel",
2120
+ "view_column",
2121
+ "view_comfortable",
2122
+ "view_comfy",
2123
+ "view_comfy_alt",
2124
+ "view_compact",
2125
+ "view_compact_alt",
2126
+ "view_cozy",
2127
+ "view_day",
2128
+ "view_headline",
2129
+ "view_in_ar",
2130
+ "view_kanban",
2131
+ "view_list",
2132
+ "view_module",
2133
+ "view_quilt",
2134
+ "view_sidebar",
2135
+ "view_stream",
2136
+ "view_timeline",
2137
+ "view_week",
2138
+ "vignette",
2139
+ "villa",
2140
+ "visibility",
2141
+ "visibility_off",
2142
+ "voice_chat",
2143
+ "voice_over_off",
2144
+ "voicemail",
2145
+ "volcano",
2146
+ "volume_down",
2147
+ "volume_down_alt",
2148
+ "volume_mute",
2149
+ "volume_off",
2150
+ "volume_up",
2151
+ "volunteer_activism",
2152
+ "vpn_key",
2153
+ "vpn_key_off",
2154
+ "vpn_lock",
2155
+ "vrpano",
2156
+ "wallet",
2157
+ "wallet_giftcard",
2158
+ "wallet_membership",
2159
+ "wallet_travel",
2160
+ "wallpaper",
2161
+ "warehouse",
2162
+ "warning",
2163
+ "warning_amber",
2164
+ "wash",
2165
+ "watch",
2166
+ "watch_later",
2167
+ "watch_off",
2168
+ "water",
2169
+ "water_damage",
2170
+ "water_drop",
2171
+ "waterfall_chart",
2172
+ "waves",
2173
+ "waving_hand",
2174
+ "wb_auto",
2175
+ "wb_cloudy",
2176
+ "wb_incandescent",
2177
+ "wb_iridescent",
2178
+ "wb_shade",
2179
+ "wb_sunny",
2180
+ "wb_twighlight",
2181
+ "wb_twilight",
2182
+ "wc",
2183
+ "web",
2184
+ "web_asset",
2185
+ "web_asset_off",
2186
+ "web_stories",
2187
+ "webhook",
2188
+ "wechat",
2189
+ "weekend",
2190
+ "west",
2191
+ "whatshot",
2192
+ "wheelchair_pickup",
2193
+ "where_to_vote",
2194
+ "widgets",
2195
+ "width_full",
2196
+ "width_normal",
2197
+ "width_wide",
2198
+ "wifi",
2199
+ "wifi_1_bar",
2200
+ "wifi_2_bar",
2201
+ "wifi_calling",
2202
+ "wifi_calling_3",
2203
+ "wifi_channel",
2204
+ "wifi_find",
2205
+ "wifi_lock",
2206
+ "wifi_off",
2207
+ "wifi_password",
2208
+ "wifi_protected_setup",
2209
+ "wifi_tethering",
2210
+ "wifi_tethering_error",
2211
+ "wifi_tethering_error_rounded",
2212
+ "wifi_tethering_off",
2213
+ "wind_power",
2214
+ "window",
2215
+ "wine_bar",
2216
+ "woman",
2217
+ "woman_2",
2218
+ "woo_commerce",
2219
+ "wordpress",
2220
+ "work",
2221
+ "work_history",
2222
+ "work_off",
2223
+ "work_outline",
2224
+ "workspace_premium",
2225
+ "workspaces",
2226
+ "workspaces_filled",
2227
+ "workspaces_outline",
2228
+ "wrap_text",
2229
+ "wrong_location",
2230
+ "wysiwyg",
2231
+ "yard",
2232
+ "youtube_searched_for",
2233
+ "zoom_in",
2234
+ "zoom_in_map",
2235
+ "zoom_out",
2236
+ "zoom_out_map"
2237
+ ];
2238
+
2239
+
2240
+ export default IconNamesList;