@sragatiping/cuboid 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/dist/components/CodeSnippet/CodeSnippet.d.ts +50 -0
  2. package/dist/components/CodeSnippet/CodeSnippet.stories.d.ts +17 -0
  3. package/dist/components/CodeSnippet/__fixtures__/device-profile-report.d.ts +422 -0
  4. package/dist/components/CodeSnippet/index.d.ts +2 -0
  5. package/dist/components/CodeSnippet/tokenizer.d.ts +49 -0
  6. package/dist/components/DataGrid/DataGrid.d.ts +11 -0
  7. package/dist/components/DataGrid/index.d.ts +2 -0
  8. package/dist/components/Graph/GraphCanvas.d.ts +15 -0
  9. package/dist/components/Graph/GraphCanvas.stories.d.ts +20 -0
  10. package/dist/components/Graph/GraphCard.d.ts +31 -0
  11. package/dist/components/Graph/GraphEdge.d.ts +27 -0
  12. package/dist/components/Graph/GraphHandle.d.ts +16 -0
  13. package/dist/components/Graph/GraphRow.d.ts +14 -0
  14. package/dist/components/Graph/context.d.ts +36 -0
  15. package/dist/components/Graph/index.d.ts +10 -0
  16. package/dist/components/JsonGraph/DeviceProfileReport.stories.d.ts +11 -0
  17. package/dist/components/JsonGraph/JsonCardTitle.d.ts +12 -0
  18. package/dist/components/JsonGraph/JsonFieldRow.d.ts +15 -0
  19. package/dist/components/JsonGraph/JsonGraph.stories.d.ts +19 -0
  20. package/dist/components/JsonGraph/JsonInputHandle.d.ts +30 -0
  21. package/dist/components/JsonGraph/JsonObjectRow.d.ts +22 -0
  22. package/dist/components/JsonGraph/index.d.ts +8 -0
  23. package/dist/components/JsonGraph/treeLayout.d.ts +114 -0
  24. package/dist/components/JsonViewer/JsonViewer.d.ts +15 -0
  25. package/dist/components/JsonViewer/index.d.ts +2 -0
  26. package/dist/components/core/ActionMenu/ActionMenu.d.ts +28 -0
  27. package/dist/components/core/ActionMenu/ActionMenu.stories.d.ts +10 -0
  28. package/dist/components/core/ActionMenu/ActionMenuItem.d.ts +22 -0
  29. package/dist/components/core/ActionMenu/ActionMenuList.d.ts +32 -0
  30. package/dist/components/core/ActionMenu/actionMenuCssVars.d.ts +2 -0
  31. package/dist/components/core/ActionMenu/actionMenuKeyboard.d.ts +4 -0
  32. package/dist/components/core/ActionMenu/index.d.ts +6 -0
  33. package/dist/components/core/Breadcrumb/BreadcrumbLink.d.ts +12 -0
  34. package/dist/components/core/Breadcrumb/Breadcrumbs.d.ts +13 -0
  35. package/dist/components/core/Breadcrumb/Breadcrumbs.stories.d.ts +6 -0
  36. package/dist/components/core/Breadcrumb/index.d.ts +4 -0
  37. package/dist/components/core/Button/Button.d.ts +22 -0
  38. package/dist/components/core/Button/Button.stories.d.ts +6 -0
  39. package/dist/components/core/Button/index.d.ts +2 -0
  40. package/dist/components/core/Icon/Icon.d.ts +13 -0
  41. package/dist/components/core/Icon/Icon.stories.d.ts +6 -0
  42. package/dist/components/core/Icon/index.d.ts +2 -0
  43. package/dist/components/core/IconButton/IconButton.d.ts +28 -0
  44. package/dist/components/core/IconButton/IconButton.stories.d.ts +6 -0
  45. package/dist/components/core/IconButton/index.d.ts +3 -0
  46. package/dist/components/core/Link/Link.d.ts +18 -0
  47. package/dist/components/core/Link/Link.stories.d.ts +6 -0
  48. package/dist/components/core/Link/index.d.ts +2 -0
  49. package/dist/components/core/Overlay/Overlay.d.ts +21 -0
  50. package/dist/components/core/Overlay/Overlay.stories.d.ts +10 -0
  51. package/dist/components/core/Overlay/index.d.ts +2 -0
  52. package/dist/components/core/Pill/Pill.d.ts +25 -0
  53. package/dist/components/core/Pill/Pill.stories.d.ts +6 -0
  54. package/dist/components/core/Pill/index.d.ts +3 -0
  55. package/dist/components/core/Popover/Popover.d.ts +39 -0
  56. package/dist/components/core/Popover/Popover.stories.d.ts +10 -0
  57. package/dist/components/core/Popover/index.d.ts +2 -0
  58. package/dist/components/core/ResizeHandle/ResizeHandle.d.ts +21 -0
  59. package/dist/components/core/ResizeHandle/index.d.ts +2 -0
  60. package/dist/components/core/Sheet/Sheet.d.ts +55 -0
  61. package/dist/components/core/Sheet/Sheet.stories.d.ts +14 -0
  62. package/dist/components/core/Sheet/index.d.ts +4 -0
  63. package/dist/components/core/Sidebar/Sidebar.d.ts +68 -0
  64. package/dist/components/core/Sidebar/Sidebar.stories.d.ts +11 -0
  65. package/dist/components/core/Sidebar/index.d.ts +2 -0
  66. package/dist/components/core/Sidebar/sidebarCssVars.d.ts +2 -0
  67. package/dist/components/core/SiteHeader/SiteHeader.d.ts +17 -0
  68. package/dist/components/core/SiteHeader/SiteHeader.stories.d.ts +6 -0
  69. package/dist/components/core/SiteHeader/index.d.ts +2 -0
  70. package/dist/components/core/SplitLayout/SplitLayout.d.ts +24 -0
  71. package/dist/components/core/SplitLayout/SplitLayout.stories.d.ts +6 -0
  72. package/dist/components/core/SplitLayout/index.d.ts +2 -0
  73. package/dist/components/core/Stack/Stack.d.ts +43 -0
  74. package/dist/components/core/Stack/Stack.stories.d.ts +15 -0
  75. package/dist/components/core/Stack/index.d.ts +3 -0
  76. package/dist/components/core/Text/Text.d.ts +29 -0
  77. package/dist/components/core/Text/Text.stories.d.ts +8 -0
  78. package/dist/components/core/Text/index.d.ts +2 -0
  79. package/dist/components/core/Tooltip/Tooltip.d.ts +17 -0
  80. package/dist/components/core/Tooltip/Tooltip.stories.d.ts +10 -0
  81. package/dist/components/core/Tooltip/index.d.ts +2 -0
  82. package/dist/components/core/index.d.ts +34 -0
  83. package/dist/icons/Icons.stories.d.ts +6 -0
  84. package/dist/icons/index.d.ts +13 -0
  85. package/dist/icons/manifest.json.d.ts +2489 -0
  86. package/dist/icons/material/config.d.ts +4 -0
  87. package/dist/icons/material/createMaterialIcon.d.ts +7 -0
  88. package/dist/icons/material/index.d.ts +231 -0
  89. package/dist/icons/material/source.d.ts +220 -0
  90. package/dist/index.cjs.js +10 -0
  91. package/dist/index.cjs.js.map +1 -0
  92. package/dist/index.d.ts +47 -0
  93. package/dist/index.es.js +8135 -0
  94. package/dist/index.es.js.map +1 -0
  95. package/dist/style.css +1 -0
  96. package/dist/theme/ThemeContext.d.ts +20 -0
  97. package/dist/theme/defaultTheme.d.ts +2 -0
  98. package/dist/theme/figma/buildFigmaTheme.d.ts +7 -0
  99. package/dist/theme/output/base.json.d.ts +208 -0
  100. package/dist/theme/output/theme.json.d.ts +1898 -0
  101. package/dist/theme/types.d.ts +610 -0
  102. package/dist/theme/utils.d.ts +6 -0
  103. package/dist/utils/flattenJson.d.ts +18 -0
  104. package/dist/utils/parseLengthPx.d.ts +2 -0
  105. package/dist/utils/responsive.d.ts +8 -0
  106. package/package.json +71 -0
@@ -0,0 +1,2489 @@
1
+ declare const _default: {
2
+ "account": {
3
+ "source": "material-rounded",
4
+ "export": "AccountIcon",
5
+ "category": "Header",
6
+ "style": "rounded",
7
+ "weight": 400,
8
+ "materialSlug": "account-circle",
9
+ "filled": false
10
+ },
11
+ "account_balance": {
12
+ "source": "material-rounded",
13
+ "export": "AccountBalanceIcon",
14
+ "category": "Header",
15
+ "style": "rounded",
16
+ "weight": 400,
17
+ "materialSlug": "account-balance",
18
+ "filled": false
19
+ },
20
+ "account-fill": {
21
+ "source": "material-rounded",
22
+ "export": "AccountIcon",
23
+ "category": "Header",
24
+ "style": "rounded",
25
+ "weight": 400,
26
+ "materialSlug": "account-circle",
27
+ "filled": true
28
+ },
29
+ "acute": {
30
+ "source": "material-rounded",
31
+ "export": "AcuteIcon",
32
+ "category": "Header",
33
+ "style": "rounded",
34
+ "weight": 400,
35
+ "materialSlug": "acute",
36
+ "filled": false
37
+ },
38
+ "add-tag": {
39
+ "source": "material-rounded",
40
+ "export": "AddTagIcon",
41
+ "category": "Header",
42
+ "style": "rounded",
43
+ "weight": 400,
44
+ "materialSlug": "sell",
45
+ "filled": false
46
+ },
47
+ "add-tag-fill": {
48
+ "source": "material-rounded",
49
+ "export": "AddTagIcon",
50
+ "category": "Header",
51
+ "style": "rounded",
52
+ "weight": 400,
53
+ "materialSlug": "sell",
54
+ "filled": true
55
+ },
56
+ "adjust": {
57
+ "source": "material-rounded",
58
+ "export": "AdjustIcon",
59
+ "category": "Header",
60
+ "style": "rounded",
61
+ "weight": 400,
62
+ "materialSlug": "adjust",
63
+ "filled": false
64
+ },
65
+ "airport_shuttle": {
66
+ "source": "material-rounded",
67
+ "export": "AirportShuttleIcon",
68
+ "category": "Header",
69
+ "style": "rounded",
70
+ "weight": 400,
71
+ "materialSlug": "airport-shuttle",
72
+ "filled": false
73
+ },
74
+ "alt_route": {
75
+ "source": "material-rounded",
76
+ "export": "AltRouteIcon",
77
+ "category": "Header",
78
+ "style": "rounded",
79
+ "weight": 400,
80
+ "materialSlug": "alt-route",
81
+ "filled": false
82
+ },
83
+ "app_spark": {
84
+ "source": "material-rounded",
85
+ "export": "AppSparkIcon",
86
+ "category": "Header",
87
+ "style": "rounded",
88
+ "weight": 400,
89
+ "materialSlug": "apps",
90
+ "filled": false
91
+ },
92
+ "application": {
93
+ "source": "material-rounded",
94
+ "export": "ApplicationIcon",
95
+ "category": "Header",
96
+ "style": "rounded",
97
+ "weight": 400,
98
+ "materialSlug": "widgets",
99
+ "filled": false
100
+ },
101
+ "application-fill": {
102
+ "source": "material-rounded",
103
+ "export": "ApplicationIcon",
104
+ "category": "Header",
105
+ "style": "rounded",
106
+ "weight": 400,
107
+ "materialSlug": "widgets",
108
+ "filled": true
109
+ },
110
+ "apps": {
111
+ "source": "material-rounded",
112
+ "export": "AppsIcon",
113
+ "category": "Header",
114
+ "style": "rounded",
115
+ "weight": 400,
116
+ "materialSlug": "apps",
117
+ "filled": false
118
+ },
119
+ "apps-user management": {
120
+ "source": "material-rounded",
121
+ "export": "AppsUserManagementIcon",
122
+ "category": "Header",
123
+ "style": "rounded",
124
+ "weight": 400,
125
+ "materialSlug": "manage-accounts",
126
+ "filled": false
127
+ },
128
+ "apps-user management-fill": {
129
+ "source": "material-rounded",
130
+ "export": "AppsUserManagementIcon",
131
+ "category": "Header",
132
+ "style": "rounded",
133
+ "weight": 400,
134
+ "materialSlug": "manage-accounts",
135
+ "filled": true
136
+ },
137
+ "arrow_split": {
138
+ "source": "material-rounded",
139
+ "export": "ArrowSplitIcon",
140
+ "category": "Header",
141
+ "style": "rounded",
142
+ "weight": 400,
143
+ "materialSlug": "call-split",
144
+ "filled": false
145
+ },
146
+ "arrow-backward": {
147
+ "source": "material-rounded",
148
+ "export": "ArrowBackwardIcon",
149
+ "category": "Header",
150
+ "style": "rounded",
151
+ "weight": 400,
152
+ "materialSlug": "arrow-back",
153
+ "filled": false
154
+ },
155
+ "arrow-circle-up": {
156
+ "source": "material-rounded",
157
+ "export": "ArrowCircleUpIcon",
158
+ "category": "Header",
159
+ "style": "rounded",
160
+ "weight": 400,
161
+ "materialSlug": "arrow-circle-up",
162
+ "filled": false
163
+ },
164
+ "arrow-downward": {
165
+ "source": "material-rounded",
166
+ "export": "ArrowDownwardIcon",
167
+ "category": "Header",
168
+ "style": "rounded",
169
+ "weight": 400,
170
+ "materialSlug": "arrow-downward",
171
+ "filled": false
172
+ },
173
+ "arrow-drop-down": {
174
+ "source": "material-rounded",
175
+ "export": "ArrowDropDownIcon",
176
+ "category": "Header",
177
+ "style": "rounded",
178
+ "weight": 400,
179
+ "materialSlug": "arrow-drop-down",
180
+ "filled": false
181
+ },
182
+ "arrow-drop-left": {
183
+ "source": "material-rounded",
184
+ "export": "ArrowDropLeftIcon",
185
+ "category": "Header",
186
+ "style": "rounded",
187
+ "weight": 400,
188
+ "materialSlug": "arrow-left",
189
+ "filled": false
190
+ },
191
+ "arrow-drop-right": {
192
+ "source": "material-rounded",
193
+ "export": "ArrowDropRightIcon",
194
+ "category": "Header",
195
+ "style": "rounded",
196
+ "weight": 400,
197
+ "materialSlug": "arrow-right",
198
+ "filled": false
199
+ },
200
+ "arrow-drop-up": {
201
+ "source": "material-rounded",
202
+ "export": "ArrowDropUpIcon",
203
+ "category": "Header",
204
+ "style": "rounded",
205
+ "weight": 400,
206
+ "materialSlug": "arrow-drop-up",
207
+ "filled": false
208
+ },
209
+ "arrow-forward": {
210
+ "source": "material-rounded",
211
+ "export": "ArrowForwardIcon",
212
+ "category": "Header",
213
+ "style": "rounded",
214
+ "weight": 400,
215
+ "materialSlug": "arrow-forward",
216
+ "filled": false
217
+ },
218
+ "arrow-upward": {
219
+ "source": "material-rounded",
220
+ "export": "ArrowUpwardIcon",
221
+ "category": "Header",
222
+ "style": "rounded",
223
+ "weight": 400,
224
+ "materialSlug": "arrow-upward",
225
+ "filled": false
226
+ },
227
+ "article": {
228
+ "source": "material-rounded",
229
+ "export": "ArticleIcon",
230
+ "category": "Header",
231
+ "style": "rounded",
232
+ "weight": 400,
233
+ "materialSlug": "article",
234
+ "filled": false
235
+ },
236
+ "article_person": {
237
+ "source": "material-rounded",
238
+ "export": "ArticlePersonIcon",
239
+ "category": "Header",
240
+ "style": "rounded",
241
+ "weight": 400,
242
+ "materialSlug": "article-person",
243
+ "filled": false
244
+ },
245
+ "article_shortcut": {
246
+ "source": "material-rounded",
247
+ "export": "ArticleShortcutIcon",
248
+ "category": "Header",
249
+ "style": "rounded",
250
+ "weight": 400,
251
+ "materialSlug": "article-shortcut",
252
+ "filled": false
253
+ },
254
+ "attachment": {
255
+ "source": "material-rounded",
256
+ "export": "AttachmentIcon",
257
+ "category": "Header",
258
+ "style": "rounded",
259
+ "weight": 400,
260
+ "materialSlug": "attachment",
261
+ "filled": false
262
+ },
263
+ "bookmark": {
264
+ "source": "material-rounded",
265
+ "export": "BookmarkIcon",
266
+ "category": "Header",
267
+ "style": "rounded",
268
+ "weight": 400,
269
+ "materialSlug": "bookmark",
270
+ "filled": false
271
+ },
272
+ "bookmark-fill": {
273
+ "source": "material-rounded",
274
+ "export": "BookmarkIcon",
275
+ "category": "Header",
276
+ "style": "rounded",
277
+ "weight": 400,
278
+ "materialSlug": "bookmark",
279
+ "filled": true
280
+ },
281
+ "border_all": {
282
+ "source": "material-rounded",
283
+ "export": "BorderAllIcon",
284
+ "category": "Header",
285
+ "style": "rounded",
286
+ "weight": 400,
287
+ "materialSlug": "border-all",
288
+ "filled": false
289
+ },
290
+ "brand-awareness": {
291
+ "source": "material-rounded",
292
+ "export": "BrandAwarenessIcon",
293
+ "category": "Header",
294
+ "style": "rounded",
295
+ "weight": 400,
296
+ "materialSlug": "brand-awareness",
297
+ "filled": false
298
+ },
299
+ "brightness": {
300
+ "source": "material-rounded",
301
+ "export": "BrightnessIcon",
302
+ "category": "Header",
303
+ "style": "rounded",
304
+ "weight": 400,
305
+ "materialSlug": "brightness-medium",
306
+ "filled": false
307
+ },
308
+ "bug-report": {
309
+ "source": "material-rounded",
310
+ "export": "BugReportIcon",
311
+ "category": "Header",
312
+ "style": "rounded",
313
+ "weight": 400,
314
+ "materialSlug": "bug-report",
315
+ "filled": false
316
+ },
317
+ "cake": {
318
+ "source": "material-rounded",
319
+ "export": "CakeIcon",
320
+ "category": "Header",
321
+ "style": "rounded",
322
+ "weight": 400,
323
+ "materialSlug": "cake",
324
+ "filled": false
325
+ },
326
+ "calendar": {
327
+ "source": "material-rounded",
328
+ "export": "CalendarIcon",
329
+ "category": "Header",
330
+ "style": "rounded",
331
+ "weight": 400,
332
+ "materialSlug": "calendar-month",
333
+ "filled": false
334
+ },
335
+ "calendar-fill": {
336
+ "source": "material-rounded",
337
+ "export": "CalendarIcon",
338
+ "category": "Header",
339
+ "style": "rounded",
340
+ "weight": 400,
341
+ "materialSlug": "calendar-month",
342
+ "filled": true
343
+ },
344
+ "call": {
345
+ "source": "material-rounded",
346
+ "export": "CallIcon",
347
+ "category": "Header",
348
+ "style": "rounded",
349
+ "weight": 400,
350
+ "materialSlug": "call",
351
+ "filled": false
352
+ },
353
+ "camera": {
354
+ "source": "material-rounded",
355
+ "export": "CameraIcon",
356
+ "category": "Header",
357
+ "style": "rounded",
358
+ "weight": 400,
359
+ "materialSlug": "camera",
360
+ "filled": false
361
+ },
362
+ "camera-fill": {
363
+ "source": "material-rounded",
364
+ "export": "CameraIcon",
365
+ "category": "Header",
366
+ "style": "rounded",
367
+ "weight": 400,
368
+ "materialSlug": "camera",
369
+ "filled": true
370
+ },
371
+ "celebration": {
372
+ "source": "material-rounded",
373
+ "export": "CelebrationIcon",
374
+ "category": "Header",
375
+ "style": "rounded",
376
+ "weight": 400,
377
+ "materialSlug": "celebration",
378
+ "filled": false
379
+ },
380
+ "chat": {
381
+ "source": "material-rounded",
382
+ "export": "ChatIcon",
383
+ "category": "Header",
384
+ "style": "rounded",
385
+ "weight": 400,
386
+ "materialSlug": "chat",
387
+ "filled": false
388
+ },
389
+ "chat-fill": {
390
+ "source": "material-rounded",
391
+ "export": "ChatIcon",
392
+ "category": "Header",
393
+ "style": "rounded",
394
+ "weight": 400,
395
+ "materialSlug": "chat",
396
+ "filled": true
397
+ },
398
+ "check": {
399
+ "source": "material-rounded",
400
+ "export": "CheckIcon",
401
+ "category": "Header",
402
+ "style": "rounded",
403
+ "weight": 400,
404
+ "materialSlug": "check",
405
+ "filled": false
406
+ },
407
+ "check_circle_unread": {
408
+ "source": "material-rounded",
409
+ "export": "CheckCircleUnreadIcon",
410
+ "category": "Header",
411
+ "style": "rounded",
412
+ "weight": 400,
413
+ "materialSlug": "mark-chat-unread",
414
+ "filled": false
415
+ },
416
+ "checkbook": {
417
+ "source": "material-rounded",
418
+ "export": "CheckbookIcon",
419
+ "category": "Header",
420
+ "style": "rounded",
421
+ "weight": 400,
422
+ "materialSlug": "checkbook",
423
+ "filled": false
424
+ },
425
+ "chevron-down": {
426
+ "source": "material-rounded",
427
+ "export": "ChevronDownIcon",
428
+ "category": "Header",
429
+ "style": "rounded",
430
+ "weight": 400,
431
+ "materialSlug": "keyboard-arrow-down",
432
+ "filled": false
433
+ },
434
+ "chevron-left": {
435
+ "source": "material-rounded",
436
+ "export": "ChevronLeftIcon",
437
+ "category": "Header",
438
+ "style": "rounded",
439
+ "weight": 400,
440
+ "materialSlug": "chevron-left",
441
+ "filled": false
442
+ },
443
+ "chevron-right": {
444
+ "source": "material-rounded",
445
+ "export": "ChevronRightIcon",
446
+ "category": "Header",
447
+ "style": "rounded",
448
+ "weight": 400,
449
+ "materialSlug": "chevron-right",
450
+ "filled": false
451
+ },
452
+ "chevron-up": {
453
+ "source": "material-rounded",
454
+ "export": "ChevronUpIcon",
455
+ "category": "Header",
456
+ "style": "rounded",
457
+ "weight": 400,
458
+ "materialSlug": "keyboard-arrow-up",
459
+ "filled": false
460
+ },
461
+ "chips": {
462
+ "source": "material-rounded",
463
+ "export": "ChipsIcon",
464
+ "category": "Header",
465
+ "style": "rounded",
466
+ "weight": 400,
467
+ "materialSlug": "chips",
468
+ "filled": false
469
+ },
470
+ "circle": {
471
+ "source": "material-rounded",
472
+ "export": "CircleIcon",
473
+ "category": "Header",
474
+ "style": "rounded",
475
+ "weight": 400,
476
+ "materialSlug": "circle",
477
+ "filled": false
478
+ },
479
+ "circle_circle": {
480
+ "source": "material-rounded",
481
+ "export": "CircleCircleIcon",
482
+ "category": "Header",
483
+ "style": "rounded",
484
+ "weight": 400,
485
+ "materialSlug": "circle",
486
+ "filled": false
487
+ },
488
+ "circle-add": {
489
+ "source": "material-rounded",
490
+ "export": "CircleAddIcon",
491
+ "category": "Header",
492
+ "style": "rounded",
493
+ "weight": 400,
494
+ "materialSlug": "add-circle",
495
+ "filled": false
496
+ },
497
+ "circle-add-fill": {
498
+ "source": "material-rounded",
499
+ "export": "CircleAddIcon",
500
+ "category": "Header",
501
+ "style": "rounded",
502
+ "weight": 400,
503
+ "materialSlug": "add-circle",
504
+ "filled": true
505
+ },
506
+ "circle-check": {
507
+ "source": "material-rounded",
508
+ "export": "CircleCheckIcon",
509
+ "category": "Header",
510
+ "style": "rounded",
511
+ "weight": 400,
512
+ "materialSlug": "check-circle",
513
+ "filled": false
514
+ },
515
+ "circle-check-fill": {
516
+ "source": "material-rounded",
517
+ "export": "CircleCheckIcon",
518
+ "category": "Header",
519
+ "style": "rounded",
520
+ "weight": 400,
521
+ "materialSlug": "check-circle",
522
+ "filled": true
523
+ },
524
+ "circle-denied": {
525
+ "source": "material-rounded",
526
+ "export": "CircleDeniedIcon",
527
+ "category": "Header",
528
+ "style": "rounded",
529
+ "weight": 400,
530
+ "materialSlug": "do-not-disturb-on",
531
+ "filled": false
532
+ },
533
+ "circle-denied-fill": {
534
+ "source": "material-rounded",
535
+ "export": "CircleDeniedIcon",
536
+ "category": "Header",
537
+ "style": "rounded",
538
+ "weight": 400,
539
+ "materialSlug": "do-not-disturb-on",
540
+ "filled": true
541
+ },
542
+ "close": {
543
+ "source": "material-rounded",
544
+ "export": "CloseIcon",
545
+ "category": "Header",
546
+ "style": "rounded",
547
+ "weight": 400,
548
+ "materialSlug": "close",
549
+ "filled": false
550
+ },
551
+ "cloud_download": {
552
+ "source": "material-rounded",
553
+ "export": "CloudDownloadIcon",
554
+ "category": "Header",
555
+ "style": "rounded",
556
+ "weight": 400,
557
+ "materialSlug": "cloud-download",
558
+ "filled": false
559
+ },
560
+ "code": {
561
+ "source": "material-rounded",
562
+ "export": "CodeIcon",
563
+ "category": "Header",
564
+ "style": "rounded",
565
+ "weight": 400,
566
+ "materialSlug": "code",
567
+ "filled": false
568
+ },
569
+ "code-fill": {
570
+ "source": "material-rounded",
571
+ "export": "CodeIcon",
572
+ "category": "Header",
573
+ "style": "rounded",
574
+ "weight": 400,
575
+ "materialSlug": "code",
576
+ "filled": true
577
+ },
578
+ "collapse": {
579
+ "source": "material-rounded",
580
+ "export": "CollapseIcon",
581
+ "category": "Header",
582
+ "style": "rounded",
583
+ "weight": 400,
584
+ "materialSlug": "collapse-all",
585
+ "filled": false
586
+ },
587
+ "collapse-sheet": {
588
+ "source": "material-rounded",
589
+ "export": "CollapseSheetIcon",
590
+ "category": "Header",
591
+ "style": "rounded",
592
+ "weight": 400,
593
+ "materialSlug": "close-fullscreen",
594
+ "filled": false
595
+ },
596
+ "comment": {
597
+ "source": "material-rounded",
598
+ "export": "CommentIcon",
599
+ "category": "Header",
600
+ "style": "rounded",
601
+ "weight": 400,
602
+ "materialSlug": "comment",
603
+ "filled": false
604
+ },
605
+ "contract-edit": {
606
+ "source": "material-rounded",
607
+ "export": "ContractEditIcon",
608
+ "category": "Header",
609
+ "style": "rounded",
610
+ "weight": 400,
611
+ "materialSlug": "contract-edit",
612
+ "filled": false
613
+ },
614
+ "convert_to_text": {
615
+ "source": "material-rounded",
616
+ "export": "ConvertToTextIcon",
617
+ "category": "Header",
618
+ "style": "rounded",
619
+ "weight": 400,
620
+ "materialSlug": "convert-to-text",
621
+ "filled": false
622
+ },
623
+ "copy": {
624
+ "source": "material-rounded",
625
+ "export": "CopyIcon",
626
+ "category": "Header",
627
+ "style": "rounded",
628
+ "weight": 400,
629
+ "materialSlug": "content-copy",
630
+ "filled": false
631
+ },
632
+ "copy-fill": {
633
+ "source": "material-rounded",
634
+ "export": "CopyIcon",
635
+ "category": "Header",
636
+ "style": "rounded",
637
+ "weight": 400,
638
+ "materialSlug": "content-copy",
639
+ "filled": true
640
+ },
641
+ "cottage": {
642
+ "source": "material-rounded",
643
+ "export": "CottageIcon",
644
+ "category": "Header",
645
+ "style": "rounded",
646
+ "weight": 400,
647
+ "materialSlug": "cottage",
648
+ "filled": false
649
+ },
650
+ "credit-card": {
651
+ "source": "material-rounded",
652
+ "export": "CreditCardIcon",
653
+ "category": "Header",
654
+ "style": "rounded",
655
+ "weight": 400,
656
+ "materialSlug": "credit-card",
657
+ "filled": false
658
+ },
659
+ "credit-worthy": {
660
+ "source": "material-rounded",
661
+ "export": "CreditWorthyIcon",
662
+ "category": "Header",
663
+ "style": "rounded",
664
+ "weight": 400,
665
+ "materialSlug": "credit-score",
666
+ "filled": false
667
+ },
668
+ "crop_square": {
669
+ "source": "material-rounded",
670
+ "export": "CropSquareIcon",
671
+ "category": "Header",
672
+ "style": "rounded",
673
+ "weight": 400,
674
+ "materialSlug": "crop-square",
675
+ "filled": false
676
+ },
677
+ "crown": {
678
+ "source": "material-rounded",
679
+ "export": "CrownIcon",
680
+ "category": "Header",
681
+ "style": "rounded",
682
+ "weight": 400,
683
+ "materialSlug": "crown",
684
+ "filled": false
685
+ },
686
+ "dangerous": {
687
+ "source": "material-rounded",
688
+ "export": "DangerousIcon",
689
+ "category": "Header",
690
+ "style": "rounded",
691
+ "weight": 400,
692
+ "materialSlug": "dangerous",
693
+ "filled": false
694
+ },
695
+ "data-object": {
696
+ "source": "material-rounded",
697
+ "export": "DataObjectIcon",
698
+ "category": "Header",
699
+ "style": "rounded",
700
+ "weight": 400,
701
+ "materialSlug": "data-object",
702
+ "filled": false
703
+ },
704
+ "database": {
705
+ "source": "material-rounded",
706
+ "export": "DatabaseIcon",
707
+ "category": "Header",
708
+ "style": "rounded",
709
+ "weight": 400,
710
+ "materialSlug": "database",
711
+ "filled": false
712
+ },
713
+ "deblur": {
714
+ "source": "material-rounded",
715
+ "export": "DeblurIcon",
716
+ "category": "Header",
717
+ "style": "rounded",
718
+ "weight": 400,
719
+ "materialSlug": "deblur",
720
+ "filled": false
721
+ },
722
+ "delete": {
723
+ "source": "material-rounded",
724
+ "export": "DeleteIcon",
725
+ "category": "Header",
726
+ "style": "rounded",
727
+ "weight": 400,
728
+ "materialSlug": "delete",
729
+ "filled": false
730
+ },
731
+ "delete-fill": {
732
+ "source": "material-rounded",
733
+ "export": "DeleteIcon",
734
+ "category": "Header",
735
+ "style": "rounded",
736
+ "weight": 400,
737
+ "materialSlug": "delete",
738
+ "filled": true
739
+ },
740
+ "delivery_truck_speed": {
741
+ "source": "material-rounded",
742
+ "export": "DeliveryTruckSpeedIcon",
743
+ "category": "Header",
744
+ "style": "rounded",
745
+ "weight": 400,
746
+ "materialSlug": "delivery-truck-speed",
747
+ "filled": false
748
+ },
749
+ "deployed-code": {
750
+ "source": "material-rounded",
751
+ "export": "DeployedCodeIcon",
752
+ "category": "Header",
753
+ "style": "rounded",
754
+ "weight": 400,
755
+ "materialSlug": "deployed-code",
756
+ "filled": false
757
+ },
758
+ "directions_car": {
759
+ "source": "material-rounded",
760
+ "export": "DirectionsCarIcon",
761
+ "category": "Header",
762
+ "style": "rounded",
763
+ "weight": 400,
764
+ "materialSlug": "directions-car",
765
+ "filled": false
766
+ },
767
+ "discover_tune": {
768
+ "source": "material-rounded",
769
+ "export": "DiscoverTuneIcon",
770
+ "category": "Header",
771
+ "style": "rounded",
772
+ "weight": 400,
773
+ "materialSlug": "tune",
774
+ "filled": false
775
+ },
776
+ "dock_to_bottom": {
777
+ "source": "material-rounded",
778
+ "export": "DockToBottomIcon",
779
+ "category": "Header",
780
+ "style": "rounded",
781
+ "weight": 400,
782
+ "materialSlug": "dock-to-bottom",
783
+ "filled": false
784
+ },
785
+ "dock_to_left": {
786
+ "source": "material-rounded",
787
+ "export": "DockToLeftIcon",
788
+ "category": "Header",
789
+ "style": "rounded",
790
+ "weight": 400,
791
+ "materialSlug": "dock-to-left",
792
+ "filled": false
793
+ },
794
+ "dock_to_right": {
795
+ "source": "material-rounded",
796
+ "export": "DockToRightIcon",
797
+ "category": "Header",
798
+ "style": "rounded",
799
+ "weight": 400,
800
+ "materialSlug": "dock-to-right",
801
+ "filled": false
802
+ },
803
+ "docs": {
804
+ "source": "material-rounded",
805
+ "export": "DocsIcon",
806
+ "category": "Header",
807
+ "style": "rounded",
808
+ "weight": 400,
809
+ "materialSlug": "docs",
810
+ "filled": false
811
+ },
812
+ "document": {
813
+ "source": "material-rounded",
814
+ "export": "DocumentIcon",
815
+ "category": "Header",
816
+ "style": "rounded",
817
+ "weight": 400,
818
+ "materialSlug": "description",
819
+ "filled": false
820
+ },
821
+ "document-fill": {
822
+ "source": "material-rounded",
823
+ "export": "DocumentIcon",
824
+ "category": "Header",
825
+ "style": "rounded",
826
+ "weight": 400,
827
+ "materialSlug": "description",
828
+ "filled": true
829
+ },
830
+ "dollar": {
831
+ "source": "material-rounded",
832
+ "export": "DollarIcon",
833
+ "category": "Header",
834
+ "style": "rounded",
835
+ "weight": 400,
836
+ "materialSlug": "attach-money",
837
+ "filled": false
838
+ },
839
+ "dollar-fill": {
840
+ "source": "material-rounded",
841
+ "export": "DollarIcon",
842
+ "category": "Header",
843
+ "style": "rounded",
844
+ "weight": 400,
845
+ "materialSlug": "attach-money",
846
+ "filled": true
847
+ },
848
+ "dollar-input": {
849
+ "source": "material-rounded",
850
+ "export": "DollarInputIcon",
851
+ "category": "Header",
852
+ "style": "rounded",
853
+ "weight": 400,
854
+ "materialSlug": "attach-money",
855
+ "filled": false
856
+ },
857
+ "dot-indicator": {
858
+ "source": "material-rounded",
859
+ "export": "DotIndicatorIcon",
860
+ "category": "Header",
861
+ "style": "rounded",
862
+ "weight": 400,
863
+ "materialSlug": "fiber-manual-record",
864
+ "filled": false
865
+ },
866
+ "download": {
867
+ "source": "material-rounded",
868
+ "export": "DownloadIcon",
869
+ "category": "Header",
870
+ "style": "rounded",
871
+ "weight": 400,
872
+ "materialSlug": "download",
873
+ "filled": false
874
+ },
875
+ "download-fill": {
876
+ "source": "material-rounded",
877
+ "export": "DownloadIcon",
878
+ "category": "Header",
879
+ "style": "rounded",
880
+ "weight": 400,
881
+ "materialSlug": "download",
882
+ "filled": true
883
+ },
884
+ "downloading": {
885
+ "source": "material-rounded",
886
+ "export": "DownloadingIcon",
887
+ "category": "Header",
888
+ "style": "rounded",
889
+ "weight": 400,
890
+ "materialSlug": "downloading",
891
+ "filled": false
892
+ },
893
+ "drag-handle": {
894
+ "source": "material-rounded",
895
+ "export": "DragHandleIcon",
896
+ "category": "Header",
897
+ "style": "rounded",
898
+ "weight": 400,
899
+ "materialSlug": "drag-handle",
900
+ "filled": false
901
+ },
902
+ "drag-indicator": {
903
+ "source": "material-rounded",
904
+ "export": "DragIndicatorIcon",
905
+ "category": "Header",
906
+ "style": "rounded",
907
+ "weight": 400,
908
+ "materialSlug": "drag-indicator",
909
+ "filled": false
910
+ },
911
+ "edit": {
912
+ "source": "material-rounded",
913
+ "export": "EditIcon",
914
+ "category": "Header",
915
+ "style": "rounded",
916
+ "weight": 400,
917
+ "materialSlug": "edit",
918
+ "filled": false
919
+ },
920
+ "edit-fill": {
921
+ "source": "material-rounded",
922
+ "export": "EditIcon",
923
+ "category": "Header",
924
+ "style": "rounded",
925
+ "weight": 400,
926
+ "materialSlug": "edit",
927
+ "filled": true
928
+ },
929
+ "eligibility-rule": {
930
+ "source": "material-rounded",
931
+ "export": "EligibilityRuleIcon",
932
+ "category": "Header",
933
+ "style": "rounded",
934
+ "weight": 400,
935
+ "materialSlug": "rule",
936
+ "filled": false
937
+ },
938
+ "emergency_home": {
939
+ "source": "material-rounded",
940
+ "export": "EmergencyHomeIcon",
941
+ "category": "Header",
942
+ "style": "rounded",
943
+ "weight": 400,
944
+ "materialSlug": "emergency-home",
945
+ "filled": false
946
+ },
947
+ "emoji_objects": {
948
+ "source": "material-rounded",
949
+ "export": "EmojiObjectsIcon",
950
+ "category": "Header",
951
+ "style": "rounded",
952
+ "weight": 400,
953
+ "materialSlug": "emoji-objects",
954
+ "filled": false
955
+ },
956
+ "energy_program_saving": {
957
+ "source": "material-rounded",
958
+ "export": "EnergyProgramSavingIcon",
959
+ "category": "Header",
960
+ "style": "rounded",
961
+ "weight": 400,
962
+ "materialSlug": "energy-savings-leaf",
963
+ "filled": false
964
+ },
965
+ "equalizer": {
966
+ "source": "material-rounded",
967
+ "export": "EqualizerIcon",
968
+ "category": "Header",
969
+ "style": "rounded",
970
+ "weight": 400,
971
+ "materialSlug": "equalizer",
972
+ "filled": false
973
+ },
974
+ "error": {
975
+ "source": "material-rounded",
976
+ "export": "ErrorIcon",
977
+ "category": "Header",
978
+ "style": "rounded",
979
+ "weight": 400,
980
+ "materialSlug": "error",
981
+ "filled": false
982
+ },
983
+ "error-fill": {
984
+ "source": "material-rounded",
985
+ "export": "ErrorIcon",
986
+ "category": "Header",
987
+ "style": "rounded",
988
+ "weight": 400,
989
+ "materialSlug": "error",
990
+ "filled": true
991
+ },
992
+ "expand": {
993
+ "source": "material-rounded",
994
+ "export": "ExpandIcon",
995
+ "category": "Header",
996
+ "style": "rounded",
997
+ "weight": 400,
998
+ "materialSlug": "expand-all",
999
+ "filled": false
1000
+ },
1001
+ "expand-circle-down": {
1002
+ "source": "material-rounded",
1003
+ "export": "ExpandCircleDownIcon",
1004
+ "category": "Header",
1005
+ "style": "rounded",
1006
+ "weight": 400,
1007
+ "materialSlug": "expand-circle-down",
1008
+ "filled": false
1009
+ },
1010
+ "expand-circle-down-fill": {
1011
+ "source": "material-rounded",
1012
+ "export": "ExpandCircleDownIcon",
1013
+ "category": "Header",
1014
+ "style": "rounded",
1015
+ "weight": 400,
1016
+ "materialSlug": "expand-circle-down",
1017
+ "filled": true
1018
+ },
1019
+ "expand-circle-up": {
1020
+ "source": "material-rounded",
1021
+ "export": "ExpandCircleUpIcon",
1022
+ "category": "Header",
1023
+ "style": "rounded",
1024
+ "weight": 400,
1025
+ "materialSlug": "expand-circle-up",
1026
+ "filled": false
1027
+ },
1028
+ "expand-circle-up-fill": {
1029
+ "source": "material-rounded",
1030
+ "export": "ExpandCircleUpIcon",
1031
+ "category": "Header",
1032
+ "style": "rounded",
1033
+ "weight": 400,
1034
+ "materialSlug": "expand-circle-up",
1035
+ "filled": true
1036
+ },
1037
+ "expand-sheet": {
1038
+ "source": "material-rounded",
1039
+ "export": "ExpandSheetIcon",
1040
+ "category": "Header",
1041
+ "style": "rounded",
1042
+ "weight": 400,
1043
+ "materialSlug": "open-in-full",
1044
+ "filled": false
1045
+ },
1046
+ "fields": {
1047
+ "source": "material-rounded",
1048
+ "export": "FieldsIcon",
1049
+ "category": "Header",
1050
+ "style": "rounded",
1051
+ "weight": 400,
1052
+ "materialSlug": "view-column",
1053
+ "filled": false
1054
+ },
1055
+ "first_page": {
1056
+ "source": "material-rounded",
1057
+ "export": "FirstPageIcon",
1058
+ "category": "Header",
1059
+ "style": "rounded",
1060
+ "weight": 400,
1061
+ "materialSlug": "first-page",
1062
+ "filled": false
1063
+ },
1064
+ "flag": {
1065
+ "source": "material-rounded",
1066
+ "export": "FlagIcon",
1067
+ "category": "Header",
1068
+ "style": "rounded",
1069
+ "weight": 400,
1070
+ "materialSlug": "flag",
1071
+ "filled": false
1072
+ },
1073
+ "flag_2": {
1074
+ "source": "material-rounded",
1075
+ "export": "Flag2Icon",
1076
+ "category": "Header",
1077
+ "style": "rounded",
1078
+ "weight": 400,
1079
+ "materialSlug": "flag-2",
1080
+ "filled": false
1081
+ },
1082
+ "flip": {
1083
+ "source": "material-rounded",
1084
+ "export": "FlipIcon",
1085
+ "category": "Header",
1086
+ "style": "rounded",
1087
+ "weight": 400,
1088
+ "materialSlug": "flip",
1089
+ "filled": false
1090
+ },
1091
+ "folder": {
1092
+ "source": "material-rounded",
1093
+ "export": "FolderIcon",
1094
+ "category": "Header",
1095
+ "style": "rounded",
1096
+ "weight": 400,
1097
+ "materialSlug": "folder",
1098
+ "filled": false
1099
+ },
1100
+ "folder-fill": {
1101
+ "source": "material-rounded",
1102
+ "export": "FolderIcon",
1103
+ "category": "Header",
1104
+ "style": "rounded",
1105
+ "weight": 400,
1106
+ "materialSlug": "folder",
1107
+ "filled": true
1108
+ },
1109
+ "format_italic": {
1110
+ "source": "material-rounded",
1111
+ "export": "FormatItalicIcon",
1112
+ "category": "Header",
1113
+ "style": "rounded",
1114
+ "weight": 400,
1115
+ "materialSlug": "format-italic",
1116
+ "filled": false
1117
+ },
1118
+ "format_list_numbered": {
1119
+ "source": "material-rounded",
1120
+ "export": "FormatListNumberedIcon",
1121
+ "category": "Header",
1122
+ "style": "rounded",
1123
+ "weight": 400,
1124
+ "materialSlug": "format-list-numbered",
1125
+ "filled": false
1126
+ },
1127
+ "format-align-center": {
1128
+ "source": "material-rounded",
1129
+ "export": "FormatAlignCenterIcon",
1130
+ "category": "Header",
1131
+ "style": "rounded",
1132
+ "weight": 400,
1133
+ "materialSlug": "format-align-center",
1134
+ "filled": false
1135
+ },
1136
+ "format-align-left": {
1137
+ "source": "material-rounded",
1138
+ "export": "FormatAlignLeftIcon",
1139
+ "category": "Header",
1140
+ "style": "rounded",
1141
+ "weight": 400,
1142
+ "materialSlug": "format-align-left",
1143
+ "filled": false
1144
+ },
1145
+ "format-align-right": {
1146
+ "source": "material-rounded",
1147
+ "export": "FormatAlignRightIcon",
1148
+ "category": "Header",
1149
+ "style": "rounded",
1150
+ "weight": 400,
1151
+ "materialSlug": "format-align-right",
1152
+ "filled": false
1153
+ },
1154
+ "format-bold": {
1155
+ "source": "material-rounded",
1156
+ "export": "FormatBoldIcon",
1157
+ "category": "Header",
1158
+ "style": "rounded",
1159
+ "weight": 400,
1160
+ "materialSlug": "format-bold",
1161
+ "filled": false
1162
+ },
1163
+ "format-list-bulleted": {
1164
+ "source": "material-rounded",
1165
+ "export": "FormatListBulletedIcon",
1166
+ "category": "Header",
1167
+ "style": "rounded",
1168
+ "weight": 400,
1169
+ "materialSlug": "format-list-bulleted",
1170
+ "filled": false
1171
+ },
1172
+ "format-underlined": {
1173
+ "source": "material-rounded",
1174
+ "export": "FormatUnderlinedIcon",
1175
+ "category": "Header",
1176
+ "style": "rounded",
1177
+ "weight": 400,
1178
+ "materialSlug": "format-underlined",
1179
+ "filled": false
1180
+ },
1181
+ "forward_media": {
1182
+ "source": "material-rounded",
1183
+ "export": "ForwardMediaIcon",
1184
+ "category": "Header",
1185
+ "style": "rounded",
1186
+ "weight": 400,
1187
+ "materialSlug": "forward-media",
1188
+ "filled": false
1189
+ },
1190
+ "frame_spark": {
1191
+ "source": "material-rounded",
1192
+ "export": "FrameSparkIcon",
1193
+ "category": "Header",
1194
+ "style": "rounded",
1195
+ "weight": 400,
1196
+ "materialSlug": "frame-inspect",
1197
+ "filled": false
1198
+ },
1199
+ "function": {
1200
+ "source": "material-rounded",
1201
+ "export": "FunctionIcon",
1202
+ "category": "Header",
1203
+ "style": "rounded",
1204
+ "weight": 400,
1205
+ "materialSlug": "function",
1206
+ "filled": false
1207
+ },
1208
+ "gite": {
1209
+ "source": "material-rounded",
1210
+ "export": "GiteIcon",
1211
+ "category": "Header",
1212
+ "style": "rounded",
1213
+ "weight": 400,
1214
+ "materialSlug": "gite",
1215
+ "filled": false
1216
+ },
1217
+ "help": {
1218
+ "source": "material-rounded",
1219
+ "export": "HelpIcon",
1220
+ "category": "Header",
1221
+ "style": "rounded",
1222
+ "weight": 400,
1223
+ "materialSlug": "help",
1224
+ "filled": false
1225
+ },
1226
+ "help-fill": {
1227
+ "source": "material-rounded",
1228
+ "export": "HelpIcon",
1229
+ "category": "Header",
1230
+ "style": "rounded",
1231
+ "weight": 400,
1232
+ "materialSlug": "help",
1233
+ "filled": true
1234
+ },
1235
+ "history": {
1236
+ "source": "material-rounded",
1237
+ "export": "HistoryIcon",
1238
+ "category": "Header",
1239
+ "style": "rounded",
1240
+ "weight": 400,
1241
+ "materialSlug": "history",
1242
+ "filled": false
1243
+ },
1244
+ "home": {
1245
+ "source": "material-rounded",
1246
+ "export": "HomeIcon",
1247
+ "category": "Header",
1248
+ "style": "rounded",
1249
+ "weight": 400,
1250
+ "materialSlug": "home",
1251
+ "filled": false
1252
+ },
1253
+ "home-fill": {
1254
+ "source": "material-rounded",
1255
+ "export": "HomeIcon",
1256
+ "category": "Header",
1257
+ "style": "rounded",
1258
+ "weight": 400,
1259
+ "materialSlug": "home",
1260
+ "filled": true
1261
+ },
1262
+ "id-verify": {
1263
+ "source": "material-rounded",
1264
+ "export": "IdVerifyIcon",
1265
+ "category": "Header",
1266
+ "style": "rounded",
1267
+ "weight": 400,
1268
+ "materialSlug": "id-card",
1269
+ "filled": false
1270
+ },
1271
+ "image": {
1272
+ "source": "material-rounded",
1273
+ "export": "ImageIcon",
1274
+ "category": "Header",
1275
+ "style": "rounded",
1276
+ "weight": 400,
1277
+ "materialSlug": "image",
1278
+ "filled": false
1279
+ },
1280
+ "image-fill": {
1281
+ "source": "material-rounded",
1282
+ "export": "ImageIcon",
1283
+ "category": "Header",
1284
+ "style": "rounded",
1285
+ "weight": 400,
1286
+ "materialSlug": "image",
1287
+ "filled": true
1288
+ },
1289
+ "in_home_mode": {
1290
+ "source": "material-rounded",
1291
+ "export": "InHomeModeIcon",
1292
+ "category": "Header",
1293
+ "style": "rounded",
1294
+ "weight": 400,
1295
+ "materialSlug": "home-app-logo",
1296
+ "filled": false
1297
+ },
1298
+ "jamboard_kiosk": {
1299
+ "source": "material-rounded",
1300
+ "export": "JamboardKioskIcon",
1301
+ "category": "Header",
1302
+ "style": "rounded",
1303
+ "weight": 400,
1304
+ "materialSlug": "jamboard-kiosk",
1305
+ "filled": false
1306
+ },
1307
+ "kid_star": {
1308
+ "source": "material-rounded",
1309
+ "export": "KidStarIcon",
1310
+ "category": "Header",
1311
+ "style": "rounded",
1312
+ "weight": 400,
1313
+ "materialSlug": "kid-star",
1314
+ "filled": false
1315
+ },
1316
+ "label": {
1317
+ "source": "material-rounded",
1318
+ "export": "LabelIcon",
1319
+ "category": "Header",
1320
+ "style": "rounded",
1321
+ "weight": 400,
1322
+ "materialSlug": "label",
1323
+ "filled": false
1324
+ },
1325
+ "label-fill": {
1326
+ "source": "material-rounded",
1327
+ "export": "LabelIcon",
1328
+ "category": "Header",
1329
+ "style": "rounded",
1330
+ "weight": 400,
1331
+ "materialSlug": "label",
1332
+ "filled": true
1333
+ },
1334
+ "laptop_mac": {
1335
+ "source": "material-rounded",
1336
+ "export": "LaptopMacIcon",
1337
+ "category": "Header",
1338
+ "style": "rounded",
1339
+ "weight": 400,
1340
+ "materialSlug": "laptop-mac",
1341
+ "filled": false
1342
+ },
1343
+ "laptop_windows": {
1344
+ "source": "material-rounded",
1345
+ "export": "LaptopWindowsIcon",
1346
+ "category": "Header",
1347
+ "style": "rounded",
1348
+ "weight": 400,
1349
+ "materialSlug": "laptop-windows",
1350
+ "filled": false
1351
+ },
1352
+ "lightbulb": {
1353
+ "source": "material-rounded",
1354
+ "export": "LightbulbIcon",
1355
+ "category": "Header",
1356
+ "style": "rounded",
1357
+ "weight": 400,
1358
+ "materialSlug": "lightbulb",
1359
+ "filled": false
1360
+ },
1361
+ "lightbulb-fill": {
1362
+ "source": "material-rounded",
1363
+ "export": "LightbulbIcon",
1364
+ "category": "Header",
1365
+ "style": "rounded",
1366
+ "weight": 400,
1367
+ "materialSlug": "lightbulb",
1368
+ "filled": true
1369
+ },
1370
+ "link": {
1371
+ "source": "material-rounded",
1372
+ "export": "LinkIcon",
1373
+ "category": "Header",
1374
+ "style": "rounded",
1375
+ "weight": 400,
1376
+ "materialSlug": "link",
1377
+ "filled": false
1378
+ },
1379
+ "lock": {
1380
+ "source": "material-rounded",
1381
+ "export": "LockIcon",
1382
+ "category": "Header",
1383
+ "style": "rounded",
1384
+ "weight": 400,
1385
+ "materialSlug": "lock",
1386
+ "filled": false
1387
+ },
1388
+ "lock-fill": {
1389
+ "source": "material-rounded",
1390
+ "export": "LockIcon",
1391
+ "category": "Header",
1392
+ "style": "rounded",
1393
+ "weight": 400,
1394
+ "materialSlug": "lock",
1395
+ "filled": true
1396
+ },
1397
+ "log-in": {
1398
+ "source": "material-rounded",
1399
+ "export": "LogInIcon",
1400
+ "category": "Header",
1401
+ "style": "rounded",
1402
+ "weight": 400,
1403
+ "materialSlug": "login",
1404
+ "filled": false
1405
+ },
1406
+ "log-out": {
1407
+ "source": "material-rounded",
1408
+ "export": "LogOutIcon",
1409
+ "category": "Header",
1410
+ "style": "rounded",
1411
+ "weight": 400,
1412
+ "materialSlug": "logout",
1413
+ "filled": false
1414
+ },
1415
+ "logo": {
1416
+ "source": "material-rounded",
1417
+ "export": "LogoIcon",
1418
+ "category": "Header",
1419
+ "style": "rounded",
1420
+ "weight": 400,
1421
+ "materialSlug": "token",
1422
+ "filled": false
1423
+ },
1424
+ "logo-fill": {
1425
+ "source": "material-rounded",
1426
+ "export": "LogoIcon",
1427
+ "category": "Header",
1428
+ "style": "rounded",
1429
+ "weight": 400,
1430
+ "materialSlug": "token",
1431
+ "filled": true
1432
+ },
1433
+ "mail": {
1434
+ "source": "material-rounded",
1435
+ "export": "MailIcon",
1436
+ "category": "Header",
1437
+ "style": "rounded",
1438
+ "weight": 400,
1439
+ "materialSlug": "mail",
1440
+ "filled": false
1441
+ },
1442
+ "mail-fill": {
1443
+ "source": "material-rounded",
1444
+ "export": "MailIcon",
1445
+ "category": "Header",
1446
+ "style": "rounded",
1447
+ "weight": 400,
1448
+ "materialSlug": "mail",
1449
+ "filled": true
1450
+ },
1451
+ "map-pin": {
1452
+ "source": "material-rounded",
1453
+ "export": "MapPinIcon",
1454
+ "category": "Header",
1455
+ "style": "rounded",
1456
+ "weight": 400,
1457
+ "materialSlug": "location-on",
1458
+ "filled": false
1459
+ },
1460
+ "map-pin-fill": {
1461
+ "source": "material-rounded",
1462
+ "export": "MapPinIcon",
1463
+ "category": "Header",
1464
+ "style": "rounded",
1465
+ "weight": 400,
1466
+ "materialSlug": "location-on",
1467
+ "filled": true
1468
+ },
1469
+ "margin": {
1470
+ "source": "material-rounded",
1471
+ "export": "MarginIcon",
1472
+ "category": "Header",
1473
+ "style": "rounded",
1474
+ "weight": 400,
1475
+ "materialSlug": "margin",
1476
+ "filled": false
1477
+ },
1478
+ "mark-email-unread": {
1479
+ "source": "material-rounded",
1480
+ "export": "MarkEmailUnreadIcon",
1481
+ "category": "Header",
1482
+ "style": "rounded",
1483
+ "weight": 400,
1484
+ "materialSlug": "mark-email-unread",
1485
+ "filled": false
1486
+ },
1487
+ "menu": {
1488
+ "source": "material-rounded",
1489
+ "export": "MenuIcon",
1490
+ "category": "Header",
1491
+ "style": "rounded",
1492
+ "weight": 400,
1493
+ "materialSlug": "menu",
1494
+ "filled": false
1495
+ },
1496
+ "message": {
1497
+ "source": "material-rounded",
1498
+ "export": "MessageIcon",
1499
+ "category": "Header",
1500
+ "style": "rounded",
1501
+ "weight": 400,
1502
+ "materialSlug": "chat",
1503
+ "filled": false
1504
+ },
1505
+ "mic": {
1506
+ "source": "material-rounded",
1507
+ "export": "MicIcon",
1508
+ "category": "Header",
1509
+ "style": "rounded",
1510
+ "weight": 400,
1511
+ "materialSlug": "mic",
1512
+ "filled": false
1513
+ },
1514
+ "minus": {
1515
+ "source": "material-rounded",
1516
+ "export": "MinusIcon",
1517
+ "category": "Header",
1518
+ "style": "rounded",
1519
+ "weight": 400,
1520
+ "materialSlug": "remove",
1521
+ "filled": false
1522
+ },
1523
+ "mobile_2": {
1524
+ "source": "material-rounded",
1525
+ "export": "Mobile2Icon",
1526
+ "category": "Header",
1527
+ "style": "rounded",
1528
+ "weight": 400,
1529
+ "materialSlug": "mobile-2",
1530
+ "filled": false
1531
+ },
1532
+ "money_bag": {
1533
+ "source": "material-rounded",
1534
+ "export": "MoneyBagIcon",
1535
+ "category": "Header",
1536
+ "style": "rounded",
1537
+ "weight": 400,
1538
+ "materialSlug": "money-bag",
1539
+ "filled": false
1540
+ },
1541
+ "more-horiz": {
1542
+ "source": "material-rounded",
1543
+ "export": "MoreHorizIcon",
1544
+ "category": "Header",
1545
+ "style": "rounded",
1546
+ "weight": 400,
1547
+ "materialSlug": "more-horiz",
1548
+ "filled": false
1549
+ },
1550
+ "more-vert": {
1551
+ "source": "material-rounded",
1552
+ "export": "MoreVertIcon",
1553
+ "category": "Header",
1554
+ "style": "rounded",
1555
+ "weight": 400,
1556
+ "materialSlug": "more-vert",
1557
+ "filled": false
1558
+ },
1559
+ "motion_photos_paused": {
1560
+ "source": "material-rounded",
1561
+ "export": "MotionPhotosPausedIcon",
1562
+ "category": "Header",
1563
+ "style": "rounded",
1564
+ "weight": 400,
1565
+ "materialSlug": "motion-photos-paused",
1566
+ "filled": false
1567
+ },
1568
+ "motion_play": {
1569
+ "source": "material-rounded",
1570
+ "export": "MotionPlayIcon",
1571
+ "category": "Header",
1572
+ "style": "rounded",
1573
+ "weight": 400,
1574
+ "materialSlug": "motion-play",
1575
+ "filled": false
1576
+ },
1577
+ "nest_eco_leaf": {
1578
+ "source": "material-rounded",
1579
+ "export": "NestEcoLeafIcon",
1580
+ "category": "Header",
1581
+ "style": "rounded",
1582
+ "weight": 400,
1583
+ "materialSlug": "nest-eco-leaf",
1584
+ "filled": false
1585
+ },
1586
+ "new_window": {
1587
+ "source": "material-rounded",
1588
+ "export": "NewWindowIcon",
1589
+ "category": "Header",
1590
+ "style": "rounded",
1591
+ "weight": 400,
1592
+ "materialSlug": "open-in-new",
1593
+ "filled": false
1594
+ },
1595
+ "news": {
1596
+ "source": "material-rounded",
1597
+ "export": "NewsIcon",
1598
+ "category": "Header",
1599
+ "style": "rounded",
1600
+ "weight": 400,
1601
+ "materialSlug": "news",
1602
+ "filled": false
1603
+ },
1604
+ "notes": {
1605
+ "source": "material-rounded",
1606
+ "export": "NotesIcon",
1607
+ "category": "Header",
1608
+ "style": "rounded",
1609
+ "weight": 400,
1610
+ "materialSlug": "notes",
1611
+ "filled": false
1612
+ },
1613
+ "notifications": {
1614
+ "source": "material-rounded",
1615
+ "export": "NotificationsIcon",
1616
+ "category": "Header",
1617
+ "style": "rounded",
1618
+ "weight": 400,
1619
+ "materialSlug": "notifications",
1620
+ "filled": false
1621
+ },
1622
+ "notifications-fill": {
1623
+ "source": "material-rounded",
1624
+ "export": "NotificationsIcon",
1625
+ "category": "Header",
1626
+ "style": "rounded",
1627
+ "weight": 400,
1628
+ "materialSlug": "notifications",
1629
+ "filled": true
1630
+ },
1631
+ "numbers": {
1632
+ "source": "material-rounded",
1633
+ "export": "NumbersIcon",
1634
+ "category": "Header",
1635
+ "style": "rounded",
1636
+ "weight": 400,
1637
+ "materialSlug": "numbers",
1638
+ "filled": false
1639
+ },
1640
+ "page_footer": {
1641
+ "source": "material-rounded",
1642
+ "export": "PageFooterIcon",
1643
+ "category": "Header",
1644
+ "style": "rounded",
1645
+ "weight": 400,
1646
+ "materialSlug": "page-footer",
1647
+ "filled": false
1648
+ },
1649
+ "passkey": {
1650
+ "source": "material-rounded",
1651
+ "export": "PasskeyIcon",
1652
+ "category": "Header",
1653
+ "style": "rounded",
1654
+ "weight": 400,
1655
+ "materialSlug": "passkey",
1656
+ "filled": false
1657
+ },
1658
+ "pending": {
1659
+ "source": "material-rounded",
1660
+ "export": "PendingIcon",
1661
+ "category": "Header",
1662
+ "style": "rounded",
1663
+ "weight": 400,
1664
+ "materialSlug": "pending",
1665
+ "filled": false
1666
+ },
1667
+ "pending-fill": {
1668
+ "source": "material-rounded",
1669
+ "export": "PendingIcon",
1670
+ "category": "Header",
1671
+ "style": "rounded",
1672
+ "weight": 400,
1673
+ "materialSlug": "pending",
1674
+ "filled": true
1675
+ },
1676
+ "percent": {
1677
+ "source": "material-rounded",
1678
+ "export": "PercentIcon",
1679
+ "category": "Header",
1680
+ "style": "rounded",
1681
+ "weight": 400,
1682
+ "materialSlug": "percent",
1683
+ "filled": false
1684
+ },
1685
+ "percent_discount": {
1686
+ "source": "material-rounded",
1687
+ "export": "PercentDiscountIcon",
1688
+ "category": "Header",
1689
+ "style": "rounded",
1690
+ "weight": 400,
1691
+ "materialSlug": "percent-discount",
1692
+ "filled": false
1693
+ },
1694
+ "percent-input": {
1695
+ "source": "material-rounded",
1696
+ "export": "PercentInputIcon",
1697
+ "category": "Header",
1698
+ "style": "rounded",
1699
+ "weight": 400,
1700
+ "materialSlug": "percent",
1701
+ "filled": false
1702
+ },
1703
+ "person": {
1704
+ "source": "material-rounded",
1705
+ "export": "PersonIcon",
1706
+ "category": "Header",
1707
+ "style": "rounded",
1708
+ "weight": 400,
1709
+ "materialSlug": "person",
1710
+ "filled": false
1711
+ },
1712
+ "person-add": {
1713
+ "source": "material-rounded",
1714
+ "export": "PersonAddIcon",
1715
+ "category": "Header",
1716
+ "style": "rounded",
1717
+ "weight": 400,
1718
+ "materialSlug": "person-add",
1719
+ "filled": false
1720
+ },
1721
+ "person-add-fill": {
1722
+ "source": "material-rounded",
1723
+ "export": "PersonAddIcon",
1724
+ "category": "Header",
1725
+ "style": "rounded",
1726
+ "weight": 400,
1727
+ "materialSlug": "person-add",
1728
+ "filled": true
1729
+ },
1730
+ "person-fill": {
1731
+ "source": "material-rounded",
1732
+ "export": "PersonIcon",
1733
+ "category": "Header",
1734
+ "style": "rounded",
1735
+ "weight": 400,
1736
+ "materialSlug": "person",
1737
+ "filled": true
1738
+ },
1739
+ "play_circle": {
1740
+ "source": "material-rounded",
1741
+ "export": "PlayCircleIcon",
1742
+ "category": "Header",
1743
+ "style": "rounded",
1744
+ "weight": 400,
1745
+ "materialSlug": "play-circle",
1746
+ "filled": false
1747
+ },
1748
+ "play-arrow": {
1749
+ "source": "material-rounded",
1750
+ "export": "PlayArrowIcon",
1751
+ "category": "Header",
1752
+ "style": "rounded",
1753
+ "weight": 400,
1754
+ "materialSlug": "play-arrow",
1755
+ "filled": false
1756
+ },
1757
+ "plus": {
1758
+ "source": "material-rounded",
1759
+ "export": "PlusIcon",
1760
+ "category": "Header",
1761
+ "style": "rounded",
1762
+ "weight": 400,
1763
+ "materialSlug": "add",
1764
+ "filled": false
1765
+ },
1766
+ "primary-color": {
1767
+ "source": "material-rounded",
1768
+ "export": "PrimaryColorIcon",
1769
+ "category": "Header",
1770
+ "style": "rounded",
1771
+ "weight": 400,
1772
+ "materialSlug": "palette",
1773
+ "filled": false
1774
+ },
1775
+ "priority": {
1776
+ "source": "material-rounded",
1777
+ "export": "PriorityIcon",
1778
+ "category": "Header",
1779
+ "style": "rounded",
1780
+ "weight": 400,
1781
+ "materialSlug": "priority-high",
1782
+ "filled": false
1783
+ },
1784
+ "productivity": {
1785
+ "source": "material-rounded",
1786
+ "export": "ProductivityIcon",
1787
+ "category": "Header",
1788
+ "style": "rounded",
1789
+ "weight": 400,
1790
+ "materialSlug": "productivity",
1791
+ "filled": false
1792
+ },
1793
+ "release_alert": {
1794
+ "source": "material-rounded",
1795
+ "export": "ReleaseAlertIcon",
1796
+ "category": "Header",
1797
+ "style": "rounded",
1798
+ "weight": 400,
1799
+ "materialSlug": "release-alert",
1800
+ "filled": false
1801
+ },
1802
+ "reply": {
1803
+ "source": "material-rounded",
1804
+ "export": "ReplyIcon",
1805
+ "category": "Header",
1806
+ "style": "rounded",
1807
+ "weight": 400,
1808
+ "materialSlug": "reply",
1809
+ "filled": false
1810
+ },
1811
+ "report-box": {
1812
+ "source": "material-rounded",
1813
+ "export": "ReportBoxIcon",
1814
+ "category": "Header",
1815
+ "style": "rounded",
1816
+ "weight": 400,
1817
+ "materialSlug": "inventory-2",
1818
+ "filled": false
1819
+ },
1820
+ "report-box-fill": {
1821
+ "source": "material-rounded",
1822
+ "export": "ReportBoxIcon",
1823
+ "category": "Header",
1824
+ "style": "rounded",
1825
+ "weight": 400,
1826
+ "materialSlug": "inventory-2",
1827
+ "filled": true
1828
+ },
1829
+ "restart-alt": {
1830
+ "source": "material-rounded",
1831
+ "export": "RestartAltIcon",
1832
+ "category": "Header",
1833
+ "style": "rounded",
1834
+ "weight": 400,
1835
+ "materialSlug": "restart-alt",
1836
+ "filled": false
1837
+ },
1838
+ "roofing": {
1839
+ "source": "material-rounded",
1840
+ "export": "RoofingIcon",
1841
+ "category": "Header",
1842
+ "style": "rounded",
1843
+ "weight": 400,
1844
+ "materialSlug": "roofing",
1845
+ "filled": false
1846
+ },
1847
+ "rotate_left": {
1848
+ "source": "material-rounded",
1849
+ "export": "RotateLeftIcon",
1850
+ "category": "Header",
1851
+ "style": "rounded",
1852
+ "weight": 400,
1853
+ "materialSlug": "rotate-left",
1854
+ "filled": false
1855
+ },
1856
+ "savings": {
1857
+ "source": "material-rounded",
1858
+ "export": "SavingsIcon",
1859
+ "category": "Header",
1860
+ "style": "rounded",
1861
+ "weight": 400,
1862
+ "materialSlug": "savings",
1863
+ "filled": false
1864
+ },
1865
+ "savings-fill": {
1866
+ "source": "material-rounded",
1867
+ "export": "SavingsIcon",
1868
+ "category": "Header",
1869
+ "style": "rounded",
1870
+ "weight": 400,
1871
+ "materialSlug": "savings",
1872
+ "filled": true
1873
+ },
1874
+ "scan": {
1875
+ "source": "material-rounded",
1876
+ "export": "ScanIcon",
1877
+ "category": "Header",
1878
+ "style": "rounded",
1879
+ "weight": 400,
1880
+ "materialSlug": "document-scanner",
1881
+ "filled": false
1882
+ },
1883
+ "schedule": {
1884
+ "source": "material-rounded",
1885
+ "export": "ScheduleIcon",
1886
+ "category": "Header",
1887
+ "style": "rounded",
1888
+ "weight": 400,
1889
+ "materialSlug": "schedule",
1890
+ "filled": false
1891
+ },
1892
+ "school": {
1893
+ "source": "material-rounded",
1894
+ "export": "SchoolIcon",
1895
+ "category": "Header",
1896
+ "style": "rounded",
1897
+ "weight": 400,
1898
+ "materialSlug": "school",
1899
+ "filled": false
1900
+ },
1901
+ "science": {
1902
+ "source": "material-rounded",
1903
+ "export": "ScienceIcon",
1904
+ "category": "Header",
1905
+ "style": "rounded",
1906
+ "weight": 400,
1907
+ "materialSlug": "science",
1908
+ "filled": false
1909
+ },
1910
+ "search": {
1911
+ "source": "material-rounded",
1912
+ "export": "SearchIcon",
1913
+ "category": "Header",
1914
+ "style": "rounded",
1915
+ "weight": 400,
1916
+ "materialSlug": "search",
1917
+ "filled": false
1918
+ },
1919
+ "security": {
1920
+ "source": "material-rounded",
1921
+ "export": "SecurityIcon",
1922
+ "category": "Header",
1923
+ "style": "rounded",
1924
+ "weight": 400,
1925
+ "materialSlug": "security",
1926
+ "filled": false
1927
+ },
1928
+ "send": {
1929
+ "source": "material-rounded",
1930
+ "export": "SendIcon",
1931
+ "category": "Header",
1932
+ "style": "rounded",
1933
+ "weight": 400,
1934
+ "materialSlug": "send",
1935
+ "filled": false
1936
+ },
1937
+ "send-fill": {
1938
+ "source": "material-rounded",
1939
+ "export": "SendIcon",
1940
+ "category": "Header",
1941
+ "style": "rounded",
1942
+ "weight": 400,
1943
+ "materialSlug": "send",
1944
+ "filled": true
1945
+ },
1946
+ "settings": {
1947
+ "source": "material-rounded",
1948
+ "export": "SettingsIcon",
1949
+ "category": "Header",
1950
+ "style": "rounded",
1951
+ "weight": 400,
1952
+ "materialSlug": "settings",
1953
+ "filled": false
1954
+ },
1955
+ "settings_backup_restore": {
1956
+ "source": "material-rounded",
1957
+ "export": "SettingsBackupRestoreIcon",
1958
+ "category": "Header",
1959
+ "style": "rounded",
1960
+ "weight": 400,
1961
+ "materialSlug": "settings-backup-restore",
1962
+ "filled": false
1963
+ },
1964
+ "shield-person": {
1965
+ "source": "material-rounded",
1966
+ "export": "ShieldPersonIcon",
1967
+ "category": "Header",
1968
+ "style": "rounded",
1969
+ "weight": 400,
1970
+ "materialSlug": "shield-person",
1971
+ "filled": false
1972
+ },
1973
+ "shopping": {
1974
+ "source": "material-rounded",
1975
+ "export": "ShoppingIcon",
1976
+ "category": "Header",
1977
+ "style": "rounded",
1978
+ "weight": 400,
1979
+ "materialSlug": "shopping-bag",
1980
+ "filled": false
1981
+ },
1982
+ "shopping_bag_speed": {
1983
+ "source": "material-rounded",
1984
+ "export": "ShoppingBagSpeedIcon",
1985
+ "category": "Header",
1986
+ "style": "rounded",
1987
+ "weight": 400,
1988
+ "materialSlug": "shopping-bag-speed",
1989
+ "filled": false
1990
+ },
1991
+ "shopping-fill": {
1992
+ "source": "material-rounded",
1993
+ "export": "ShoppingIcon",
1994
+ "category": "Header",
1995
+ "style": "rounded",
1996
+ "weight": 400,
1997
+ "materialSlug": "shopping-bag",
1998
+ "filled": true
1999
+ },
2000
+ "siren": {
2001
+ "source": "material-rounded",
2002
+ "export": "SirenIcon",
2003
+ "category": "Header",
2004
+ "style": "rounded",
2005
+ "weight": 400,
2006
+ "materialSlug": "crisis-alert",
2007
+ "filled": false
2008
+ },
2009
+ "sort": {
2010
+ "source": "material-rounded",
2011
+ "export": "SortIcon",
2012
+ "category": "Header",
2013
+ "style": "rounded",
2014
+ "weight": 400,
2015
+ "materialSlug": "sort",
2016
+ "filled": false
2017
+ },
2018
+ "sort-default": {
2019
+ "source": "material-rounded",
2020
+ "export": "SortDefaultIcon",
2021
+ "category": "Header",
2022
+ "style": "rounded",
2023
+ "weight": 400,
2024
+ "materialSlug": "sort",
2025
+ "filled": false
2026
+ },
2027
+ "stack": {
2028
+ "source": "material-rounded",
2029
+ "export": "StackIcon",
2030
+ "category": "Header",
2031
+ "style": "rounded",
2032
+ "weight": 400,
2033
+ "materialSlug": "stack",
2034
+ "filled": false
2035
+ },
2036
+ "stethoscope": {
2037
+ "source": "material-rounded",
2038
+ "export": "StethoscopeIcon",
2039
+ "category": "Header",
2040
+ "style": "rounded",
2041
+ "weight": 400,
2042
+ "materialSlug": "stethoscope",
2043
+ "filled": false
2044
+ },
2045
+ "sticky_note": {
2046
+ "source": "material-rounded",
2047
+ "export": "StickyNoteIcon",
2048
+ "category": "Header",
2049
+ "style": "rounded",
2050
+ "weight": 400,
2051
+ "materialSlug": "sticky-note-2",
2052
+ "filled": false
2053
+ },
2054
+ "sticky_note_2": {
2055
+ "source": "material-rounded",
2056
+ "export": "StickyNote2Icon",
2057
+ "category": "Header",
2058
+ "style": "rounded",
2059
+ "weight": 400,
2060
+ "materialSlug": "sticky-note",
2061
+ "filled": false
2062
+ },
2063
+ "stop_circle": {
2064
+ "source": "material-rounded",
2065
+ "export": "StopCircleIcon",
2066
+ "category": "Header",
2067
+ "style": "rounded",
2068
+ "weight": 400,
2069
+ "materialSlug": "stop-circle",
2070
+ "filled": false
2071
+ },
2072
+ "storefront": {
2073
+ "source": "material-rounded",
2074
+ "export": "StorefrontIcon",
2075
+ "category": "Header",
2076
+ "style": "rounded",
2077
+ "weight": 400,
2078
+ "materialSlug": "storefront",
2079
+ "filled": false
2080
+ },
2081
+ "strikethrough_s": {
2082
+ "source": "material-rounded",
2083
+ "export": "StrikethroughSIcon",
2084
+ "category": "Header",
2085
+ "style": "rounded",
2086
+ "weight": 400,
2087
+ "materialSlug": "strikethrough-s",
2088
+ "filled": false
2089
+ },
2090
+ "stylus_fountain_pen": {
2091
+ "source": "material-rounded",
2092
+ "export": "StylusFountainPenIcon",
2093
+ "category": "Header",
2094
+ "style": "rounded",
2095
+ "weight": 400,
2096
+ "materialSlug": "stylus-fountain-pen",
2097
+ "filled": false
2098
+ },
2099
+ "stylus_highlighter": {
2100
+ "source": "material-rounded",
2101
+ "export": "StylusHighlighterIcon",
2102
+ "category": "Header",
2103
+ "style": "rounded",
2104
+ "weight": 400,
2105
+ "materialSlug": "stylus-highlighter",
2106
+ "filled": false
2107
+ },
2108
+ "stylus_note": {
2109
+ "source": "material-rounded",
2110
+ "export": "StylusNoteIcon",
2111
+ "category": "Header",
2112
+ "style": "rounded",
2113
+ "weight": 400,
2114
+ "materialSlug": "stylus-note",
2115
+ "filled": false
2116
+ },
2117
+ "swap_vert": {
2118
+ "source": "material-rounded",
2119
+ "export": "SwapVertIcon",
2120
+ "category": "Header",
2121
+ "style": "rounded",
2122
+ "weight": 400,
2123
+ "materialSlug": "swap-vert",
2124
+ "filled": false
2125
+ },
2126
+ "table": {
2127
+ "source": "material-rounded",
2128
+ "export": "TableIcon",
2129
+ "category": "Header",
2130
+ "style": "rounded",
2131
+ "weight": 400,
2132
+ "materialSlug": "table",
2133
+ "filled": false
2134
+ },
2135
+ "table-fill": {
2136
+ "source": "material-rounded",
2137
+ "export": "TableIcon",
2138
+ "category": "Header",
2139
+ "style": "rounded",
2140
+ "weight": 400,
2141
+ "materialSlug": "table",
2142
+ "filled": true
2143
+ },
2144
+ "tag": {
2145
+ "source": "material-rounded",
2146
+ "export": "TagIcon",
2147
+ "category": "Header",
2148
+ "style": "rounded",
2149
+ "weight": 400,
2150
+ "materialSlug": "tag",
2151
+ "filled": false
2152
+ },
2153
+ "text": {
2154
+ "source": "material-rounded",
2155
+ "export": "TextIcon",
2156
+ "category": "Header",
2157
+ "style": "rounded",
2158
+ "weight": 400,
2159
+ "materialSlug": "text-fields",
2160
+ "filled": false
2161
+ },
2162
+ "text_compare": {
2163
+ "source": "material-rounded",
2164
+ "export": "TextCompareIcon",
2165
+ "category": "Header",
2166
+ "style": "rounded",
2167
+ "weight": 400,
2168
+ "materialSlug": "text-compare",
2169
+ "filled": false
2170
+ },
2171
+ "text-snippet": {
2172
+ "source": "material-rounded",
2173
+ "export": "TextSnippetIcon",
2174
+ "category": "Header",
2175
+ "style": "rounded",
2176
+ "weight": 400,
2177
+ "materialSlug": "text-snippet",
2178
+ "filled": false
2179
+ },
2180
+ "text-snippet-fill": {
2181
+ "source": "material-rounded",
2182
+ "export": "TextSnippetIcon",
2183
+ "category": "Header",
2184
+ "style": "rounded",
2185
+ "weight": 400,
2186
+ "materialSlug": "text-snippet",
2187
+ "filled": true
2188
+ },
2189
+ "theme": {
2190
+ "source": "material-rounded",
2191
+ "export": "ThemeIcon",
2192
+ "category": "Header",
2193
+ "style": "rounded",
2194
+ "weight": 400,
2195
+ "materialSlug": "dark-mode",
2196
+ "filled": false
2197
+ },
2198
+ "theme-fill": {
2199
+ "source": "material-rounded",
2200
+ "export": "ThemeIcon",
2201
+ "category": "Header",
2202
+ "style": "rounded",
2203
+ "weight": 400,
2204
+ "materialSlug": "dark-mode",
2205
+ "filled": true
2206
+ },
2207
+ "thermostat_carbon": {
2208
+ "source": "material-rounded",
2209
+ "export": "ThermostatCarbonIcon",
2210
+ "category": "Header",
2211
+ "style": "rounded",
2212
+ "weight": 400,
2213
+ "materialSlug": "thermostat-carbon",
2214
+ "filled": false
2215
+ },
2216
+ "thought": {
2217
+ "source": "material-rounded",
2218
+ "export": "ThoughtIcon",
2219
+ "category": "Header",
2220
+ "style": "rounded",
2221
+ "weight": 400,
2222
+ "materialSlug": "psychology",
2223
+ "filled": false
2224
+ },
2225
+ "thumb-down": {
2226
+ "source": "material-rounded",
2227
+ "export": "ThumbDownIcon",
2228
+ "category": "Header",
2229
+ "style": "rounded",
2230
+ "weight": 400,
2231
+ "materialSlug": "thumb-down",
2232
+ "filled": false
2233
+ },
2234
+ "thumb-up": {
2235
+ "source": "material-rounded",
2236
+ "export": "ThumbUpIcon",
2237
+ "category": "Header",
2238
+ "style": "rounded",
2239
+ "weight": 400,
2240
+ "materialSlug": "thumb-up",
2241
+ "filled": false
2242
+ },
2243
+ "timer": {
2244
+ "source": "material-rounded",
2245
+ "export": "TimerIcon",
2246
+ "category": "Header",
2247
+ "style": "rounded",
2248
+ "weight": 400,
2249
+ "materialSlug": "timer",
2250
+ "filled": false
2251
+ },
2252
+ "timer-filled": {
2253
+ "source": "material-rounded",
2254
+ "export": "TimerIcon",
2255
+ "category": "Header",
2256
+ "style": "rounded",
2257
+ "weight": 400,
2258
+ "materialSlug": "timer",
2259
+ "filled": true
2260
+ },
2261
+ "tips": {
2262
+ "source": "material-rounded",
2263
+ "export": "TipsIcon",
2264
+ "category": "Header",
2265
+ "style": "rounded",
2266
+ "weight": 400,
2267
+ "materialSlug": "lightbulb",
2268
+ "filled": false
2269
+ },
2270
+ "tips-fill": {
2271
+ "source": "material-rounded",
2272
+ "export": "TipsIcon",
2273
+ "category": "Header",
2274
+ "style": "rounded",
2275
+ "weight": 400,
2276
+ "materialSlug": "lightbulb",
2277
+ "filled": true
2278
+ },
2279
+ "toggle-on": {
2280
+ "source": "material-rounded",
2281
+ "export": "ToggleOnIcon",
2282
+ "category": "Header",
2283
+ "style": "rounded",
2284
+ "weight": 400,
2285
+ "materialSlug": "toggle-on",
2286
+ "filled": false
2287
+ },
2288
+ "tooltip-info": {
2289
+ "source": "material-rounded",
2290
+ "export": "TooltipInfoIcon",
2291
+ "category": "Header",
2292
+ "style": "rounded",
2293
+ "weight": 400,
2294
+ "materialSlug": "info",
2295
+ "filled": false
2296
+ },
2297
+ "tooltip-info-filled": {
2298
+ "source": "material-rounded",
2299
+ "export": "TooltipInfoIcon",
2300
+ "category": "Header",
2301
+ "style": "rounded",
2302
+ "weight": 400,
2303
+ "materialSlug": "info",
2304
+ "filled": true
2305
+ },
2306
+ "travel_explore": {
2307
+ "source": "material-rounded",
2308
+ "export": "TravelExploreIcon",
2309
+ "category": "Header",
2310
+ "style": "rounded",
2311
+ "weight": 400,
2312
+ "materialSlug": "travel-explore",
2313
+ "filled": false
2314
+ },
2315
+ "triangle_down": {
2316
+ "source": "material-rounded",
2317
+ "export": "TriangleDownIcon",
2318
+ "category": "Header",
2319
+ "style": "rounded",
2320
+ "weight": 400,
2321
+ "materialSlug": "arrow-drop-down",
2322
+ "filled": false
2323
+ },
2324
+ "triangle_up": {
2325
+ "source": "material-rounded",
2326
+ "export": "TriangleUpIcon",
2327
+ "category": "Header",
2328
+ "style": "rounded",
2329
+ "weight": 400,
2330
+ "materialSlug": "arrow-drop-up",
2331
+ "filled": false
2332
+ },
2333
+ "unfold-less": {
2334
+ "source": "material-rounded",
2335
+ "export": "UnfoldLessIcon",
2336
+ "category": "Header",
2337
+ "style": "rounded",
2338
+ "weight": 400,
2339
+ "materialSlug": "unfold-less",
2340
+ "filled": false
2341
+ },
2342
+ "unfold-more": {
2343
+ "source": "material-rounded",
2344
+ "export": "UnfoldMoreIcon",
2345
+ "category": "Header",
2346
+ "style": "rounded",
2347
+ "weight": 400,
2348
+ "materialSlug": "unfold-more",
2349
+ "filled": false
2350
+ },
2351
+ "upload": {
2352
+ "source": "material-rounded",
2353
+ "export": "UploadIcon",
2354
+ "category": "Header",
2355
+ "style": "rounded",
2356
+ "weight": 400,
2357
+ "materialSlug": "upload",
2358
+ "filled": false
2359
+ },
2360
+ "upload-cloud": {
2361
+ "source": "material-rounded",
2362
+ "export": "UploadCloudIcon",
2363
+ "category": "Header",
2364
+ "style": "rounded",
2365
+ "weight": 400,
2366
+ "materialSlug": "cloud-upload",
2367
+ "filled": false
2368
+ },
2369
+ "upload-cloud-fill": {
2370
+ "source": "material-rounded",
2371
+ "export": "UploadCloudIcon",
2372
+ "category": "Header",
2373
+ "style": "rounded",
2374
+ "weight": 400,
2375
+ "materialSlug": "cloud-upload",
2376
+ "filled": true
2377
+ },
2378
+ "upload-fill": {
2379
+ "source": "material-rounded",
2380
+ "export": "UploadIcon",
2381
+ "category": "Header",
2382
+ "style": "rounded",
2383
+ "weight": 400,
2384
+ "materialSlug": "upload",
2385
+ "filled": true
2386
+ },
2387
+ "variable-add": {
2388
+ "source": "material-rounded",
2389
+ "export": "VariableAddIcon",
2390
+ "category": "Header",
2391
+ "style": "rounded",
2392
+ "weight": 400,
2393
+ "materialSlug": "variable-add",
2394
+ "filled": false
2395
+ },
2396
+ "verified": {
2397
+ "source": "material-rounded",
2398
+ "export": "VerifiedIcon",
2399
+ "category": "Header",
2400
+ "style": "rounded",
2401
+ "weight": 400,
2402
+ "materialSlug": "verified",
2403
+ "filled": false
2404
+ },
2405
+ "view_kanban": {
2406
+ "source": "material-rounded",
2407
+ "export": "ViewKanbanIcon",
2408
+ "category": "Header",
2409
+ "style": "rounded",
2410
+ "weight": 400,
2411
+ "materialSlug": "view-kanban",
2412
+ "filled": false
2413
+ },
2414
+ "view-new-window": {
2415
+ "source": "material-rounded",
2416
+ "export": "ViewNewWindowIcon",
2417
+ "category": "Header",
2418
+ "style": "rounded",
2419
+ "weight": 400,
2420
+ "materialSlug": "open-in-new",
2421
+ "filled": false
2422
+ },
2423
+ "visibility-off": {
2424
+ "source": "material-rounded",
2425
+ "export": "VisibilityOffIcon",
2426
+ "category": "Header",
2427
+ "style": "rounded",
2428
+ "weight": 400,
2429
+ "materialSlug": "visibility-off",
2430
+ "filled": false
2431
+ },
2432
+ "visibility-off-fill": {
2433
+ "source": "material-rounded",
2434
+ "export": "VisibilityOffIcon",
2435
+ "category": "Header",
2436
+ "style": "rounded",
2437
+ "weight": 400,
2438
+ "materialSlug": "visibility-off",
2439
+ "filled": true
2440
+ },
2441
+ "visibility-on": {
2442
+ "source": "material-rounded",
2443
+ "export": "VisibilityOnIcon",
2444
+ "category": "Header",
2445
+ "style": "rounded",
2446
+ "weight": 400,
2447
+ "materialSlug": "visibility",
2448
+ "filled": false
2449
+ },
2450
+ "visibility-on-fill": {
2451
+ "source": "material-rounded",
2452
+ "export": "VisibilityOnIcon",
2453
+ "category": "Header",
2454
+ "style": "rounded",
2455
+ "weight": 400,
2456
+ "materialSlug": "visibility",
2457
+ "filled": true
2458
+ },
2459
+ "wand_stars": {
2460
+ "source": "material-rounded",
2461
+ "export": "WandStarsIcon",
2462
+ "category": "Header",
2463
+ "style": "rounded",
2464
+ "weight": 400,
2465
+ "materialSlug": "wand-stars",
2466
+ "filled": false
2467
+ },
2468
+ "warning": {
2469
+ "source": "material-rounded",
2470
+ "export": "WarningIcon",
2471
+ "category": "Header",
2472
+ "style": "rounded",
2473
+ "weight": 400,
2474
+ "materialSlug": "warning",
2475
+ "filled": false
2476
+ },
2477
+ "warning-fill": {
2478
+ "source": "material-rounded",
2479
+ "export": "WarningIcon",
2480
+ "category": "Header",
2481
+ "style": "rounded",
2482
+ "weight": 400,
2483
+ "materialSlug": "warning",
2484
+ "filled": true
2485
+ }
2486
+ }
2487
+ ;
2488
+
2489
+ export default _default;