@conveyorhq/arrow-ds 1.211.0 → 1.213.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.
- package/package.json +4 -2
- package/public/components/BrandIcon/BrandIcon.d.ts +9 -0
- package/public/components/BrandIcon/BrandIcon.js +64 -0
- package/public/components/BrandIcon/index.d.ts +3 -0
- package/public/components/BrandIcon/index.js +19 -0
- package/public/components/BrandIcon/svg/confluence.d.ts +3 -0
- package/public/components/BrandIcon/svg/confluence.js +13 -0
- package/public/components/BrandIcon/svg/conveyor-ai.d.ts +3 -0
- package/public/components/BrandIcon/svg/conveyor-ai.js +18 -0
- package/public/components/BrandIcon/svg/conveyor.d.ts +3 -0
- package/public/components/BrandIcon/svg/conveyor.js +17 -0
- package/public/components/BrandIcon/svg/front.d.ts +3 -0
- package/public/components/BrandIcon/svg/front.js +14 -0
- package/public/components/BrandIcon/svg/google-drive.d.ts +3 -0
- package/public/components/BrandIcon/svg/google-drive.js +13 -0
- package/public/components/BrandIcon/svg/index.d.ts +11 -0
- package/public/components/BrandIcon/svg/index.js +27 -0
- package/public/components/BrandIcon/svg/jira.d.ts +3 -0
- package/public/components/BrandIcon/svg/jira.js +15 -0
- package/public/components/BrandIcon/svg/microsoft-teams.d.ts +3 -0
- package/public/components/BrandIcon/svg/microsoft-teams.js +13 -0
- package/public/components/BrandIcon/svg/notion.d.ts +3 -0
- package/public/components/BrandIcon/svg/notion.js +13 -0
- package/public/components/BrandIcon/svg/salesforce.d.ts +3 -0
- package/public/components/BrandIcon/svg/salesforce.js +13 -0
- package/public/components/BrandIcon/svg/slack.d.ts +3 -0
- package/public/components/BrandIcon/svg/slack.js +20 -0
- package/public/components/BrandIcon/svg/zendesk.d.ts +3 -0
- package/public/components/BrandIcon/svg/zendesk.js +13 -0
- package/public/components/BrandIcon/types.d.ts +21 -0
- package/public/components/BrandIcon/types.js +23 -0
- package/public/components/MaterialIcon/MaterialIcon.d.ts +10 -0
- package/public/components/MaterialIcon/MaterialIcon.js +813 -0
- package/public/components/MaterialIcon/index.d.ts +3 -0
- package/public/components/MaterialIcon/index.js +19 -0
- package/public/components/MaterialIcon/symbols.d.ts +380 -0
- package/public/components/MaterialIcon/symbols.js +773 -0
- package/public/components/MaterialIcon/types.d.ts +204 -0
- package/public/components/MaterialIcon/types.js +9 -0
- package/public/components/Modal/Modal.d.ts +4 -2
- package/public/components/Modal/Modal.js +4 -4
- package/public/index.d.ts +2 -0
- package/public/index.js +2 -0
- package/public/storybook-components/ComponentStatus.d.ts +2 -1
- package/public/storybook-components/ComponentStatus.js +4 -2
- package/src/components/BrandIcon/BrandIcon.stories.mdx +164 -0
- package/src/components/BrandIcon/BrandIcon.tsx +75 -0
- package/src/components/BrandIcon/index.ts +3 -0
- package/src/components/BrandIcon/svg/confluence.tsx +18 -0
- package/src/components/BrandIcon/svg/conveyor-ai.tsx +30 -0
- package/src/components/BrandIcon/svg/conveyor.tsx +29 -0
- package/src/components/BrandIcon/svg/front.tsx +17 -0
- package/src/components/BrandIcon/svg/google-drive.tsx +18 -0
- package/src/components/BrandIcon/svg/index.ts +11 -0
- package/src/components/BrandIcon/svg/jira.tsx +21 -0
- package/src/components/BrandIcon/svg/microsoft-teams.tsx +13 -0
- package/src/components/BrandIcon/svg/notion.tsx +13 -0
- package/src/components/BrandIcon/svg/salesforce.tsx +13 -0
- package/src/components/BrandIcon/svg/slack.tsx +41 -0
- package/src/components/BrandIcon/svg/zendesk.tsx +13 -0
- package/src/components/BrandIcon/types.ts +33 -0
- package/src/components/Icon/Icon.stories.mdx +13 -2
- package/src/components/MaterialIcon/MaterialIcon.stories.mdx +201 -0
- package/src/components/MaterialIcon/MaterialIcon.tsx +834 -0
- package/src/components/MaterialIcon/index.ts +3 -0
- package/src/components/MaterialIcon/symbols.ts +575 -0
- package/src/components/MaterialIcon/types.ts +216 -0
- package/src/components/Modal/Modal.tsx +10 -1
- package/src/docs/FontAwesomeToMaterialDesign.mdx +312 -0
- package/src/index.ts +2 -0
- package/src/storybook-components/ComponentStatus.tsx +3 -1
|
@@ -0,0 +1,813 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.MaterialIcon = exports.MATERIAL_ICON_MAP = void 0;
|
|
30
|
+
const react_1 = __importStar(require("react"));
|
|
31
|
+
const classnames_1 = __importDefault(require("classnames"));
|
|
32
|
+
const Symbols = __importStar(require("./symbols"));
|
|
33
|
+
const types_1 = require("./types");
|
|
34
|
+
exports.MATERIAL_ICON_MAP = {
|
|
35
|
+
"accessibility-new": {
|
|
36
|
+
400: Symbols.AccessibilityNewFill400,
|
|
37
|
+
600: Symbols.AccessibilityNewFill600,
|
|
38
|
+
},
|
|
39
|
+
add: {
|
|
40
|
+
400: Symbols.AddFill400,
|
|
41
|
+
600: Symbols.AddFill600,
|
|
42
|
+
},
|
|
43
|
+
"add-circle": {
|
|
44
|
+
400: Symbols.AddCircleFill400,
|
|
45
|
+
600: Symbols.AddCircleFill600,
|
|
46
|
+
},
|
|
47
|
+
"align-center": {
|
|
48
|
+
400: Symbols.AlignCenterFill400,
|
|
49
|
+
600: Symbols.AlignCenterFill600,
|
|
50
|
+
},
|
|
51
|
+
"align-end": {
|
|
52
|
+
400: Symbols.AlignEndFill400,
|
|
53
|
+
600: Symbols.AlignEndFill600,
|
|
54
|
+
},
|
|
55
|
+
"align-start": {
|
|
56
|
+
400: Symbols.AlignStartFill400,
|
|
57
|
+
600: Symbols.AlignStartFill600,
|
|
58
|
+
},
|
|
59
|
+
"android-cell-5-bar": {
|
|
60
|
+
400: Symbols.AndroidCell5BarFill400,
|
|
61
|
+
600: Symbols.AndroidCell5BarFill600,
|
|
62
|
+
},
|
|
63
|
+
approval: {
|
|
64
|
+
400: Symbols.ApprovalFill400,
|
|
65
|
+
600: Symbols.ApprovalFill600,
|
|
66
|
+
},
|
|
67
|
+
"arrow-back": {
|
|
68
|
+
400: Symbols.ArrowBackFill400,
|
|
69
|
+
600: Symbols.ArrowBackFill600,
|
|
70
|
+
},
|
|
71
|
+
"arrow-downward": {
|
|
72
|
+
400: Symbols.ArrowDownwardFill400,
|
|
73
|
+
600: Symbols.ArrowDownwardFill600,
|
|
74
|
+
},
|
|
75
|
+
"arrow-drop-down": {
|
|
76
|
+
400: Symbols.ArrowDropDownFill400,
|
|
77
|
+
600: Symbols.ArrowDropDownFill600,
|
|
78
|
+
},
|
|
79
|
+
"arrow-drop-up": {
|
|
80
|
+
400: Symbols.ArrowDropUpFill400,
|
|
81
|
+
600: Symbols.ArrowDropUpFill600,
|
|
82
|
+
},
|
|
83
|
+
"arrow-forward": {
|
|
84
|
+
400: Symbols.ArrowForwardFill400,
|
|
85
|
+
600: Symbols.ArrowForwardFill600,
|
|
86
|
+
},
|
|
87
|
+
"arrow-left": {
|
|
88
|
+
400: Symbols.ArrowLeftFill400,
|
|
89
|
+
600: Symbols.ArrowLeftFill600,
|
|
90
|
+
},
|
|
91
|
+
"arrow-right": {
|
|
92
|
+
400: Symbols.ArrowRightFill400,
|
|
93
|
+
600: Symbols.ArrowRightFill600,
|
|
94
|
+
},
|
|
95
|
+
"arrow-right-alt": {
|
|
96
|
+
400: Symbols.ArrowRightAltFill400,
|
|
97
|
+
600: Symbols.ArrowRightAltFill600,
|
|
98
|
+
},
|
|
99
|
+
"arrow-upward": {
|
|
100
|
+
400: Symbols.ArrowUpwardFill400,
|
|
101
|
+
600: Symbols.ArrowUpwardFill600,
|
|
102
|
+
},
|
|
103
|
+
"attach-file": {
|
|
104
|
+
400: Symbols.AttachFileFill400,
|
|
105
|
+
600: Symbols.AttachFileFill600,
|
|
106
|
+
},
|
|
107
|
+
automation: {
|
|
108
|
+
400: Symbols.AutomationFill400,
|
|
109
|
+
600: Symbols.AutomationFill600,
|
|
110
|
+
},
|
|
111
|
+
badge: {
|
|
112
|
+
400: Symbols.BadgeFill400,
|
|
113
|
+
600: Symbols.BadgeFill600,
|
|
114
|
+
},
|
|
115
|
+
balance: {
|
|
116
|
+
400: Symbols.BalanceFill400,
|
|
117
|
+
600: Symbols.BalanceFill600,
|
|
118
|
+
},
|
|
119
|
+
"battery-horiz-050": {
|
|
120
|
+
400: Symbols.BatteryHoriz050Fill400,
|
|
121
|
+
600: Symbols.BatteryHoriz050Fill600,
|
|
122
|
+
},
|
|
123
|
+
block: {
|
|
124
|
+
400: Symbols.BlockFill400,
|
|
125
|
+
600: Symbols.BlockFill600,
|
|
126
|
+
},
|
|
127
|
+
bolt: {
|
|
128
|
+
400: Symbols.BoltFill400,
|
|
129
|
+
600: Symbols.BoltFill600,
|
|
130
|
+
},
|
|
131
|
+
"book-2": {
|
|
132
|
+
400: Symbols.Book2Fill400,
|
|
133
|
+
600: Symbols.Book2Fill600,
|
|
134
|
+
},
|
|
135
|
+
build: {
|
|
136
|
+
400: Symbols.BuildFill400,
|
|
137
|
+
600: Symbols.BuildFill600,
|
|
138
|
+
},
|
|
139
|
+
cake: {
|
|
140
|
+
400: Symbols.CakeFill400,
|
|
141
|
+
600: Symbols.CakeFill600,
|
|
142
|
+
},
|
|
143
|
+
calculate: {
|
|
144
|
+
400: Symbols.CalculateFill400,
|
|
145
|
+
600: Symbols.CalculateFill600,
|
|
146
|
+
},
|
|
147
|
+
"calendar-today": {
|
|
148
|
+
400: Symbols.CalendarTodayFill400,
|
|
149
|
+
600: Symbols.CalendarTodayFill600,
|
|
150
|
+
},
|
|
151
|
+
campaign: {
|
|
152
|
+
400: Symbols.CampaignFill400,
|
|
153
|
+
600: Symbols.CampaignFill600,
|
|
154
|
+
},
|
|
155
|
+
cancel: {
|
|
156
|
+
400: Symbols.CancelFill400,
|
|
157
|
+
600: Symbols.CancelFill600,
|
|
158
|
+
},
|
|
159
|
+
"chart-data": {
|
|
160
|
+
400: Symbols.ChartDataFill400,
|
|
161
|
+
600: Symbols.ChartDataFill600,
|
|
162
|
+
},
|
|
163
|
+
"chat-bubble": {
|
|
164
|
+
400: Symbols.ChatBubbleFill400,
|
|
165
|
+
600: Symbols.ChatBubbleFill600,
|
|
166
|
+
},
|
|
167
|
+
check: {
|
|
168
|
+
400: Symbols.CheckFill400,
|
|
169
|
+
600: Symbols.CheckFill600,
|
|
170
|
+
},
|
|
171
|
+
"check-box": {
|
|
172
|
+
400: Symbols.CheckBoxFill400,
|
|
173
|
+
600: Symbols.CheckBoxFill600,
|
|
174
|
+
},
|
|
175
|
+
"check-circle": {
|
|
176
|
+
400: Symbols.CheckCircleFill400,
|
|
177
|
+
600: Symbols.CheckCircleFill600,
|
|
178
|
+
},
|
|
179
|
+
checklist: {
|
|
180
|
+
400: Symbols.ChecklistFill400,
|
|
181
|
+
600: Symbols.ChecklistFill600,
|
|
182
|
+
},
|
|
183
|
+
circle: {
|
|
184
|
+
400: Symbols.CircleFill400,
|
|
185
|
+
600: Symbols.CircleFill600,
|
|
186
|
+
},
|
|
187
|
+
close: {
|
|
188
|
+
400: Symbols.CloseFill400,
|
|
189
|
+
600: Symbols.CloseFill600,
|
|
190
|
+
},
|
|
191
|
+
"cloud-download": {
|
|
192
|
+
400: Symbols.CloudDownloadFill400,
|
|
193
|
+
600: Symbols.CloudDownloadFill600,
|
|
194
|
+
},
|
|
195
|
+
"cloud-upload": {
|
|
196
|
+
400: Symbols.CloudUploadFill400,
|
|
197
|
+
600: Symbols.CloudUploadFill600,
|
|
198
|
+
},
|
|
199
|
+
colors: {
|
|
200
|
+
400: Symbols.ColorsFill400,
|
|
201
|
+
600: Symbols.ColorsFill600,
|
|
202
|
+
},
|
|
203
|
+
"confirmation-number": {
|
|
204
|
+
400: Symbols.ConfirmationNumberFill400,
|
|
205
|
+
600: Symbols.ConfirmationNumberFill600,
|
|
206
|
+
},
|
|
207
|
+
construction: {
|
|
208
|
+
400: Symbols.ConstructionFill400,
|
|
209
|
+
600: Symbols.ConstructionFill600,
|
|
210
|
+
},
|
|
211
|
+
"content-copy": {
|
|
212
|
+
400: Symbols.ContentCopyFill400,
|
|
213
|
+
600: Symbols.ContentCopyFill600,
|
|
214
|
+
},
|
|
215
|
+
"content-paste": {
|
|
216
|
+
400: Symbols.ContentPasteFill400,
|
|
217
|
+
600: Symbols.ContentPasteFill600,
|
|
218
|
+
},
|
|
219
|
+
"content-paste-go": {
|
|
220
|
+
400: Symbols.ContentPasteGoFill400,
|
|
221
|
+
600: Symbols.ContentPasteGoFill600,
|
|
222
|
+
},
|
|
223
|
+
crown: {
|
|
224
|
+
400: Symbols.CrownFill400,
|
|
225
|
+
600: Symbols.CrownFill600,
|
|
226
|
+
},
|
|
227
|
+
delete: {
|
|
228
|
+
400: Symbols.DeleteFill400,
|
|
229
|
+
600: Symbols.DeleteFill600,
|
|
230
|
+
},
|
|
231
|
+
description: {
|
|
232
|
+
400: Symbols.DescriptionFill400,
|
|
233
|
+
600: Symbols.DescriptionFill600,
|
|
234
|
+
},
|
|
235
|
+
"design-services": {
|
|
236
|
+
400: Symbols.DesignServicesFill400,
|
|
237
|
+
600: Symbols.DesignServicesFill600,
|
|
238
|
+
},
|
|
239
|
+
"do-not-disturb-on": {
|
|
240
|
+
400: Symbols.DoNotDisturbOnFill400,
|
|
241
|
+
600: Symbols.DoNotDisturbOnFill600,
|
|
242
|
+
},
|
|
243
|
+
"door-front": {
|
|
244
|
+
400: Symbols.DoorFrontFill400,
|
|
245
|
+
600: Symbols.DoorFrontFill600,
|
|
246
|
+
},
|
|
247
|
+
"door-open": {
|
|
248
|
+
400: Symbols.DoorOpenFill400,
|
|
249
|
+
600: Symbols.DoorOpenFill600,
|
|
250
|
+
},
|
|
251
|
+
download: {
|
|
252
|
+
400: Symbols.DownloadFill400,
|
|
253
|
+
600: Symbols.DownloadFill600,
|
|
254
|
+
},
|
|
255
|
+
draft: {
|
|
256
|
+
400: Symbols.DraftFill400,
|
|
257
|
+
600: Symbols.DraftFill600,
|
|
258
|
+
},
|
|
259
|
+
"drag-handle": {
|
|
260
|
+
400: Symbols.DragHandleFill400,
|
|
261
|
+
600: Symbols.DragHandleFill600,
|
|
262
|
+
},
|
|
263
|
+
"drag-pan": {
|
|
264
|
+
400: Symbols.DragPanFill400,
|
|
265
|
+
600: Symbols.DragPanFill600,
|
|
266
|
+
},
|
|
267
|
+
edit: {
|
|
268
|
+
400: Symbols.EditFill400,
|
|
269
|
+
600: Symbols.EditFill600,
|
|
270
|
+
},
|
|
271
|
+
"edit-square": {
|
|
272
|
+
400: Symbols.EditSquareFill400,
|
|
273
|
+
600: Symbols.EditSquareFill600,
|
|
274
|
+
},
|
|
275
|
+
error: {
|
|
276
|
+
400: Symbols.ErrorFill400,
|
|
277
|
+
600: Symbols.ErrorFill600,
|
|
278
|
+
},
|
|
279
|
+
exclamation: {
|
|
280
|
+
400: Symbols.ExclamationFill400,
|
|
281
|
+
600: Symbols.ExclamationFill600,
|
|
282
|
+
},
|
|
283
|
+
experiment: {
|
|
284
|
+
400: Symbols.ExperimentFill400,
|
|
285
|
+
600: Symbols.ExperimentFill600,
|
|
286
|
+
},
|
|
287
|
+
explore: {
|
|
288
|
+
400: Symbols.ExploreFill400,
|
|
289
|
+
600: Symbols.ExploreFill600,
|
|
290
|
+
},
|
|
291
|
+
"fact-check": {
|
|
292
|
+
400: Symbols.FactCheckFill400,
|
|
293
|
+
600: Symbols.FactCheckFill600,
|
|
294
|
+
},
|
|
295
|
+
"fast-forward": {
|
|
296
|
+
400: Symbols.FastForwardFill400,
|
|
297
|
+
600: Symbols.FastForwardFill600,
|
|
298
|
+
},
|
|
299
|
+
"fast-rewind": {
|
|
300
|
+
400: Symbols.FastRewindFill400,
|
|
301
|
+
600: Symbols.FastRewindFill600,
|
|
302
|
+
},
|
|
303
|
+
"file-export": {
|
|
304
|
+
400: Symbols.FileExportFill400,
|
|
305
|
+
600: Symbols.FileExportFill600,
|
|
306
|
+
},
|
|
307
|
+
"filter-alt": {
|
|
308
|
+
400: Symbols.FilterAltFill400,
|
|
309
|
+
600: Symbols.FilterAltFill600,
|
|
310
|
+
},
|
|
311
|
+
flag: {
|
|
312
|
+
400: Symbols.FlagFill400,
|
|
313
|
+
600: Symbols.FlagFill600,
|
|
314
|
+
},
|
|
315
|
+
folder: {
|
|
316
|
+
400: Symbols.FolderFill400,
|
|
317
|
+
600: Symbols.FolderFill600,
|
|
318
|
+
},
|
|
319
|
+
"folder-copy": {
|
|
320
|
+
400: Symbols.FolderCopyFill400,
|
|
321
|
+
600: Symbols.FolderCopyFill600,
|
|
322
|
+
},
|
|
323
|
+
"folder-open": {
|
|
324
|
+
400: Symbols.FolderOpenFill400,
|
|
325
|
+
600: Symbols.FolderOpenFill600,
|
|
326
|
+
},
|
|
327
|
+
"format-bold": {
|
|
328
|
+
400: Symbols.FormatBoldFill400,
|
|
329
|
+
600: Symbols.FormatBoldFill600,
|
|
330
|
+
},
|
|
331
|
+
"format-italic": {
|
|
332
|
+
400: Symbols.FormatItalicFill400,
|
|
333
|
+
600: Symbols.FormatItalicFill600,
|
|
334
|
+
},
|
|
335
|
+
fullscreen: {
|
|
336
|
+
400: Symbols.FullscreenFill400,
|
|
337
|
+
600: Symbols.FullscreenFill600,
|
|
338
|
+
},
|
|
339
|
+
"fullscreen-exit": {
|
|
340
|
+
400: Symbols.FullscreenExitFill400,
|
|
341
|
+
600: Symbols.FullscreenExitFill600,
|
|
342
|
+
},
|
|
343
|
+
gavel: {
|
|
344
|
+
400: Symbols.GavelFill400,
|
|
345
|
+
600: Symbols.GavelFill600,
|
|
346
|
+
},
|
|
347
|
+
globe: {
|
|
348
|
+
400: Symbols.GlobeFill400,
|
|
349
|
+
600: Symbols.GlobeFill600,
|
|
350
|
+
},
|
|
351
|
+
"globe-uk": {
|
|
352
|
+
400: Symbols.GlobeUkFill400,
|
|
353
|
+
600: Symbols.GlobeUkFill600,
|
|
354
|
+
},
|
|
355
|
+
"graph-8": {
|
|
356
|
+
400: Symbols.Graph8Fill400,
|
|
357
|
+
600: Symbols.Graph8Fill600,
|
|
358
|
+
},
|
|
359
|
+
"grid-view": {
|
|
360
|
+
400: Symbols.GridViewFill400,
|
|
361
|
+
600: Symbols.GridViewFill600,
|
|
362
|
+
},
|
|
363
|
+
group: {
|
|
364
|
+
400: Symbols.GroupFill400,
|
|
365
|
+
600: Symbols.GroupFill600,
|
|
366
|
+
},
|
|
367
|
+
groups: {
|
|
368
|
+
400: Symbols.GroupsFill400,
|
|
369
|
+
600: Symbols.GroupsFill600,
|
|
370
|
+
},
|
|
371
|
+
handshake: {
|
|
372
|
+
400: Symbols.HandshakeFill400,
|
|
373
|
+
600: Symbols.HandshakeFill600,
|
|
374
|
+
},
|
|
375
|
+
healing: {
|
|
376
|
+
400: Symbols.HealingFill400,
|
|
377
|
+
600: Symbols.HealingFill600,
|
|
378
|
+
},
|
|
379
|
+
"heart-broken": {
|
|
380
|
+
400: Symbols.HeartBrokenFill400,
|
|
381
|
+
600: Symbols.HeartBrokenFill600,
|
|
382
|
+
},
|
|
383
|
+
help: {
|
|
384
|
+
400: Symbols.HelpFill400,
|
|
385
|
+
600: Symbols.HelpFill600,
|
|
386
|
+
},
|
|
387
|
+
history: {
|
|
388
|
+
400: Symbols.HistoryFill400,
|
|
389
|
+
600: Symbols.HistoryFill600,
|
|
390
|
+
},
|
|
391
|
+
hotel: {
|
|
392
|
+
400: Symbols.HotelFill400,
|
|
393
|
+
600: Symbols.HotelFill600,
|
|
394
|
+
},
|
|
395
|
+
image: {
|
|
396
|
+
400: Symbols.ImageFill400,
|
|
397
|
+
600: Symbols.ImageFill600,
|
|
398
|
+
},
|
|
399
|
+
"inbox-text": {
|
|
400
|
+
400: Symbols.InboxTextFill400,
|
|
401
|
+
600: Symbols.InboxTextFill600,
|
|
402
|
+
},
|
|
403
|
+
info: {
|
|
404
|
+
400: Symbols.InfoFill400,
|
|
405
|
+
600: Symbols.InfoFill600,
|
|
406
|
+
},
|
|
407
|
+
"ink-eraser": {
|
|
408
|
+
400: Symbols.InkEraserFill400,
|
|
409
|
+
600: Symbols.InkEraserFill600,
|
|
410
|
+
},
|
|
411
|
+
"ink-highlighter": {
|
|
412
|
+
400: Symbols.InkHighlighterFill400,
|
|
413
|
+
600: Symbols.InkHighlighterFill600,
|
|
414
|
+
},
|
|
415
|
+
"insert-chart": {
|
|
416
|
+
400: Symbols.InsertChartFill400,
|
|
417
|
+
600: Symbols.InsertChartFill600,
|
|
418
|
+
},
|
|
419
|
+
"inventory-2": {
|
|
420
|
+
400: Symbols.Inventory2Fill400,
|
|
421
|
+
600: Symbols.Inventory2Fill600,
|
|
422
|
+
},
|
|
423
|
+
key: {
|
|
424
|
+
400: Symbols.KeyFill400,
|
|
425
|
+
600: Symbols.KeyFill600,
|
|
426
|
+
},
|
|
427
|
+
keyboard: {
|
|
428
|
+
400: Symbols.KeyboardFill400,
|
|
429
|
+
600: Symbols.KeyboardFill600,
|
|
430
|
+
},
|
|
431
|
+
"keyboard-arrow-down": {
|
|
432
|
+
400: Symbols.KeyboardArrowDownFill400,
|
|
433
|
+
600: Symbols.KeyboardArrowDownFill600,
|
|
434
|
+
},
|
|
435
|
+
"keyboard-arrow-left": {
|
|
436
|
+
400: Symbols.KeyboardArrowLeftFill400,
|
|
437
|
+
600: Symbols.KeyboardArrowLeftFill600,
|
|
438
|
+
},
|
|
439
|
+
"keyboard-arrow-right": {
|
|
440
|
+
400: Symbols.KeyboardArrowRightFill400,
|
|
441
|
+
600: Symbols.KeyboardArrowRightFill600,
|
|
442
|
+
},
|
|
443
|
+
"keyboard-arrow-up": {
|
|
444
|
+
400: Symbols.KeyboardArrowUpFill400,
|
|
445
|
+
600: Symbols.KeyboardArrowUpFill600,
|
|
446
|
+
},
|
|
447
|
+
labs: {
|
|
448
|
+
400: Symbols.LabsFill400,
|
|
449
|
+
600: Symbols.LabsFill600,
|
|
450
|
+
},
|
|
451
|
+
language: {
|
|
452
|
+
400: Symbols.LanguageFill400,
|
|
453
|
+
600: Symbols.LanguageFill600,
|
|
454
|
+
},
|
|
455
|
+
"laptop-mac": {
|
|
456
|
+
400: Symbols.LaptopMacFill400,
|
|
457
|
+
600: Symbols.LaptopMacFill600,
|
|
458
|
+
},
|
|
459
|
+
"left-click": {
|
|
460
|
+
400: Symbols.LeftClickFill400,
|
|
461
|
+
600: Symbols.LeftClickFill600,
|
|
462
|
+
},
|
|
463
|
+
link: {
|
|
464
|
+
400: Symbols.LinkFill400,
|
|
465
|
+
600: Symbols.LinkFill600,
|
|
466
|
+
},
|
|
467
|
+
"link-off": {
|
|
468
|
+
400: Symbols.LinkOffFill400,
|
|
469
|
+
600: Symbols.LinkOffFill600,
|
|
470
|
+
},
|
|
471
|
+
list: {
|
|
472
|
+
400: Symbols.ListFill400,
|
|
473
|
+
600: Symbols.ListFill600,
|
|
474
|
+
},
|
|
475
|
+
"location-on": {
|
|
476
|
+
400: Symbols.LocationOnFill400,
|
|
477
|
+
600: Symbols.LocationOnFill600,
|
|
478
|
+
},
|
|
479
|
+
lock: {
|
|
480
|
+
400: Symbols.LockFill400,
|
|
481
|
+
600: Symbols.LockFill600,
|
|
482
|
+
},
|
|
483
|
+
"lock-open": {
|
|
484
|
+
400: Symbols.LockOpenFill400,
|
|
485
|
+
600: Symbols.LockOpenFill600,
|
|
486
|
+
},
|
|
487
|
+
"lock-person": {
|
|
488
|
+
400: Symbols.LockPersonFill400,
|
|
489
|
+
600: Symbols.LockPersonFill600,
|
|
490
|
+
},
|
|
491
|
+
logout: {
|
|
492
|
+
400: Symbols.LogoutFill400,
|
|
493
|
+
600: Symbols.LogoutFill600,
|
|
494
|
+
},
|
|
495
|
+
luggage: {
|
|
496
|
+
400: Symbols.LuggageFill400,
|
|
497
|
+
600: Symbols.LuggageFill600,
|
|
498
|
+
},
|
|
499
|
+
mail: {
|
|
500
|
+
400: Symbols.MailFill400,
|
|
501
|
+
600: Symbols.MailFill600,
|
|
502
|
+
},
|
|
503
|
+
"mark-chat-read": {
|
|
504
|
+
400: Symbols.MarkChatReadFill400,
|
|
505
|
+
600: Symbols.MarkChatReadFill600,
|
|
506
|
+
},
|
|
507
|
+
menu: {
|
|
508
|
+
400: Symbols.MenuFill400,
|
|
509
|
+
600: Symbols.MenuFill600,
|
|
510
|
+
},
|
|
511
|
+
mop: {
|
|
512
|
+
400: Symbols.MopFill400,
|
|
513
|
+
600: Symbols.MopFill600,
|
|
514
|
+
},
|
|
515
|
+
"more-horiz": {
|
|
516
|
+
400: Symbols.MoreHorizFill400,
|
|
517
|
+
600: Symbols.MoreHorizFill600,
|
|
518
|
+
},
|
|
519
|
+
"more-vert": {
|
|
520
|
+
400: Symbols.MoreVertFill400,
|
|
521
|
+
600: Symbols.MoreVertFill600,
|
|
522
|
+
},
|
|
523
|
+
"my-location": {
|
|
524
|
+
400: Symbols.MyLocationFill400,
|
|
525
|
+
600: Symbols.MyLocationFill600,
|
|
526
|
+
},
|
|
527
|
+
notifications: {
|
|
528
|
+
400: Symbols.NotificationsFill400,
|
|
529
|
+
600: Symbols.NotificationsFill600,
|
|
530
|
+
},
|
|
531
|
+
"notifications-off": {
|
|
532
|
+
400: Symbols.NotificationsOffFill400,
|
|
533
|
+
600: Symbols.NotificationsOffFill600,
|
|
534
|
+
},
|
|
535
|
+
"open-in-new": {
|
|
536
|
+
400: Symbols.OpenInNewFill400,
|
|
537
|
+
600: Symbols.OpenInNewFill600,
|
|
538
|
+
},
|
|
539
|
+
"package-2": {
|
|
540
|
+
400: Symbols.Package2Fill400,
|
|
541
|
+
600: Symbols.Package2Fill600,
|
|
542
|
+
},
|
|
543
|
+
palette: {
|
|
544
|
+
400: Symbols.PaletteFill400,
|
|
545
|
+
600: Symbols.PaletteFill600,
|
|
546
|
+
},
|
|
547
|
+
pause: {
|
|
548
|
+
400: Symbols.PauseFill400,
|
|
549
|
+
600: Symbols.PauseFill600,
|
|
550
|
+
},
|
|
551
|
+
person: {
|
|
552
|
+
400: Symbols.PersonFill400,
|
|
553
|
+
600: Symbols.PersonFill600,
|
|
554
|
+
},
|
|
555
|
+
"person-add": {
|
|
556
|
+
400: Symbols.PersonAddFill400,
|
|
557
|
+
600: Symbols.PersonAddFill600,
|
|
558
|
+
},
|
|
559
|
+
"person-shield": {
|
|
560
|
+
400: Symbols.PersonShieldFill400,
|
|
561
|
+
600: Symbols.PersonShieldFill600,
|
|
562
|
+
},
|
|
563
|
+
"pest-control": {
|
|
564
|
+
400: Symbols.PestControlFill400,
|
|
565
|
+
600: Symbols.PestControlFill600,
|
|
566
|
+
},
|
|
567
|
+
"photo-camera": {
|
|
568
|
+
400: Symbols.PhotoCameraFill400,
|
|
569
|
+
600: Symbols.PhotoCameraFill600,
|
|
570
|
+
},
|
|
571
|
+
"play-arrow": {
|
|
572
|
+
400: Symbols.PlayArrowFill400,
|
|
573
|
+
600: Symbols.PlayArrowFill600,
|
|
574
|
+
},
|
|
575
|
+
power: {
|
|
576
|
+
400: Symbols.PowerFill400,
|
|
577
|
+
600: Symbols.PowerFill600,
|
|
578
|
+
},
|
|
579
|
+
"progress-activity": {
|
|
580
|
+
400: Symbols.ProgressActivityFill400,
|
|
581
|
+
600: Symbols.ProgressActivityFill600,
|
|
582
|
+
},
|
|
583
|
+
psychiatry: {
|
|
584
|
+
400: Symbols.PsychiatryFill400,
|
|
585
|
+
600: Symbols.PsychiatryFill600,
|
|
586
|
+
},
|
|
587
|
+
"query-stats": {
|
|
588
|
+
400: Symbols.QueryStatsFill400,
|
|
589
|
+
600: Symbols.QueryStatsFill600,
|
|
590
|
+
},
|
|
591
|
+
"question-mark": {
|
|
592
|
+
400: Symbols.QuestionMarkFill400,
|
|
593
|
+
600: Symbols.QuestionMarkFill600,
|
|
594
|
+
},
|
|
595
|
+
rainy: {
|
|
596
|
+
400: Symbols.RainyFill400,
|
|
597
|
+
600: Symbols.RainyFill600,
|
|
598
|
+
},
|
|
599
|
+
recenter: {
|
|
600
|
+
400: Symbols.RecenterFill400,
|
|
601
|
+
600: Symbols.RecenterFill600,
|
|
602
|
+
},
|
|
603
|
+
redeem: {
|
|
604
|
+
400: Symbols.RedeemFill400,
|
|
605
|
+
600: Symbols.RedeemFill600,
|
|
606
|
+
},
|
|
607
|
+
redo: {
|
|
608
|
+
400: Symbols.RedoFill400,
|
|
609
|
+
600: Symbols.RedoFill600,
|
|
610
|
+
},
|
|
611
|
+
remove: {
|
|
612
|
+
400: Symbols.RemoveFill400,
|
|
613
|
+
600: Symbols.RemoveFill600,
|
|
614
|
+
},
|
|
615
|
+
reply: {
|
|
616
|
+
400: Symbols.ReplyFill400,
|
|
617
|
+
600: Symbols.ReplyFill600,
|
|
618
|
+
},
|
|
619
|
+
robot: {
|
|
620
|
+
400: Symbols.RobotFill400,
|
|
621
|
+
600: Symbols.RobotFill600,
|
|
622
|
+
},
|
|
623
|
+
"rocket-launch": {
|
|
624
|
+
400: Symbols.RocketLaunchFill400,
|
|
625
|
+
600: Symbols.RocketLaunchFill600,
|
|
626
|
+
},
|
|
627
|
+
save: {
|
|
628
|
+
400: Symbols.SaveFill400,
|
|
629
|
+
600: Symbols.SaveFill600,
|
|
630
|
+
},
|
|
631
|
+
schedule: {
|
|
632
|
+
400: Symbols.ScheduleFill400,
|
|
633
|
+
600: Symbols.ScheduleFill600,
|
|
634
|
+
},
|
|
635
|
+
search: {
|
|
636
|
+
400: Symbols.SearchFill400,
|
|
637
|
+
600: Symbols.SearchFill600,
|
|
638
|
+
},
|
|
639
|
+
sell: {
|
|
640
|
+
400: Symbols.SellFill400,
|
|
641
|
+
600: Symbols.SellFill600,
|
|
642
|
+
},
|
|
643
|
+
send: {
|
|
644
|
+
400: Symbols.SendFill400,
|
|
645
|
+
600: Symbols.SendFill600,
|
|
646
|
+
},
|
|
647
|
+
settings: {
|
|
648
|
+
400: Symbols.SettingsFill400,
|
|
649
|
+
600: Symbols.SettingsFill600,
|
|
650
|
+
},
|
|
651
|
+
"shadow-add": {
|
|
652
|
+
400: Symbols.ShadowAddFill400,
|
|
653
|
+
600: Symbols.ShadowAddFill600,
|
|
654
|
+
},
|
|
655
|
+
share: {
|
|
656
|
+
400: Symbols.ShareFill400,
|
|
657
|
+
600: Symbols.ShareFill600,
|
|
658
|
+
},
|
|
659
|
+
"share-windows": {
|
|
660
|
+
400: Symbols.ShareWindowsFill400,
|
|
661
|
+
600: Symbols.ShareWindowsFill600,
|
|
662
|
+
},
|
|
663
|
+
shield: {
|
|
664
|
+
400: Symbols.ShieldFill400,
|
|
665
|
+
600: Symbols.ShieldFill600,
|
|
666
|
+
},
|
|
667
|
+
shuffle: {
|
|
668
|
+
400: Symbols.ShuffleFill400,
|
|
669
|
+
600: Symbols.ShuffleFill600,
|
|
670
|
+
},
|
|
671
|
+
signature: {
|
|
672
|
+
400: Symbols.SignatureFill400,
|
|
673
|
+
600: Symbols.SignatureFill600,
|
|
674
|
+
},
|
|
675
|
+
signpost: {
|
|
676
|
+
400: Symbols.SignpostFill400,
|
|
677
|
+
600: Symbols.SignpostFill600,
|
|
678
|
+
},
|
|
679
|
+
"skip-next": {
|
|
680
|
+
400: Symbols.SkipNextFill400,
|
|
681
|
+
600: Symbols.SkipNextFill600,
|
|
682
|
+
},
|
|
683
|
+
"skip-previous": {
|
|
684
|
+
400: Symbols.SkipPreviousFill400,
|
|
685
|
+
600: Symbols.SkipPreviousFill600,
|
|
686
|
+
},
|
|
687
|
+
skull: {
|
|
688
|
+
400: Symbols.SkullFill400,
|
|
689
|
+
600: Symbols.SkullFill600,
|
|
690
|
+
},
|
|
691
|
+
square: {
|
|
692
|
+
400: Symbols.SquareFill400,
|
|
693
|
+
600: Symbols.SquareFill600,
|
|
694
|
+
},
|
|
695
|
+
stacks: {
|
|
696
|
+
400: Symbols.StacksFill400,
|
|
697
|
+
600: Symbols.StacksFill600,
|
|
698
|
+
},
|
|
699
|
+
star: {
|
|
700
|
+
400: Symbols.StarFill400,
|
|
701
|
+
600: Symbols.StarFill600,
|
|
702
|
+
},
|
|
703
|
+
straighten: {
|
|
704
|
+
400: Symbols.StraightenFill400,
|
|
705
|
+
600: Symbols.StraightenFill600,
|
|
706
|
+
},
|
|
707
|
+
support: {
|
|
708
|
+
400: Symbols.SupportFill400,
|
|
709
|
+
600: Symbols.SupportFill600,
|
|
710
|
+
},
|
|
711
|
+
sync: {
|
|
712
|
+
400: Symbols.SyncFill400,
|
|
713
|
+
600: Symbols.SyncFill600,
|
|
714
|
+
},
|
|
715
|
+
"sync-alt": {
|
|
716
|
+
400: Symbols.SyncAltFill400,
|
|
717
|
+
600: Symbols.SyncAltFill600,
|
|
718
|
+
},
|
|
719
|
+
table: {
|
|
720
|
+
400: Symbols.TableFill400,
|
|
721
|
+
600: Symbols.TableFill600,
|
|
722
|
+
},
|
|
723
|
+
tag: {
|
|
724
|
+
400: Symbols.TagFill400,
|
|
725
|
+
600: Symbols.TagFill600,
|
|
726
|
+
},
|
|
727
|
+
target: {
|
|
728
|
+
400: Symbols.TargetFill400,
|
|
729
|
+
600: Symbols.TargetFill600,
|
|
730
|
+
},
|
|
731
|
+
"thumb-down": {
|
|
732
|
+
400: Symbols.ThumbDownFill400,
|
|
733
|
+
600: Symbols.ThumbDownFill600,
|
|
734
|
+
},
|
|
735
|
+
"thumb-up": {
|
|
736
|
+
400: Symbols.ThumbUpFill400,
|
|
737
|
+
600: Symbols.ThumbUpFill600,
|
|
738
|
+
},
|
|
739
|
+
timer: {
|
|
740
|
+
400: Symbols.TimerFill400,
|
|
741
|
+
600: Symbols.TimerFill600,
|
|
742
|
+
},
|
|
743
|
+
trophy: {
|
|
744
|
+
400: Symbols.TrophyFill400,
|
|
745
|
+
600: Symbols.TrophyFill600,
|
|
746
|
+
},
|
|
747
|
+
tune: {
|
|
748
|
+
400: Symbols.TuneFill400,
|
|
749
|
+
600: Symbols.TuneFill600,
|
|
750
|
+
},
|
|
751
|
+
undo: {
|
|
752
|
+
400: Symbols.UndoFill400,
|
|
753
|
+
600: Symbols.UndoFill600,
|
|
754
|
+
},
|
|
755
|
+
"upload-file": {
|
|
756
|
+
400: Symbols.UploadFileFill400,
|
|
757
|
+
600: Symbols.UploadFileFill600,
|
|
758
|
+
},
|
|
759
|
+
verified: {
|
|
760
|
+
400: Symbols.VerifiedFill400,
|
|
761
|
+
600: Symbols.VerifiedFill600,
|
|
762
|
+
},
|
|
763
|
+
videocam: {
|
|
764
|
+
400: Symbols.VideocamFill400,
|
|
765
|
+
600: Symbols.VideocamFill600,
|
|
766
|
+
},
|
|
767
|
+
"view-column-2": {
|
|
768
|
+
400: Symbols.ViewColumn2Fill400,
|
|
769
|
+
600: Symbols.ViewColumn2Fill600,
|
|
770
|
+
},
|
|
771
|
+
visibility: {
|
|
772
|
+
400: Symbols.VisibilityFill400,
|
|
773
|
+
600: Symbols.VisibilityFill600,
|
|
774
|
+
},
|
|
775
|
+
"visibility-off": {
|
|
776
|
+
400: Symbols.VisibilityOffFill400,
|
|
777
|
+
600: Symbols.VisibilityOffFill600,
|
|
778
|
+
},
|
|
779
|
+
"volunteer-activism": {
|
|
780
|
+
400: Symbols.VolunteerActivismFill400,
|
|
781
|
+
600: Symbols.VolunteerActivismFill600,
|
|
782
|
+
},
|
|
783
|
+
"wand-shine": {
|
|
784
|
+
400: Symbols.WandShineFill400,
|
|
785
|
+
600: Symbols.WandShineFill600,
|
|
786
|
+
},
|
|
787
|
+
warning: {
|
|
788
|
+
400: Symbols.WarningFill400,
|
|
789
|
+
600: Symbols.WarningFill600,
|
|
790
|
+
},
|
|
791
|
+
"zoom-in": {
|
|
792
|
+
400: Symbols.ZoomInFill400,
|
|
793
|
+
600: Symbols.ZoomInFill600,
|
|
794
|
+
},
|
|
795
|
+
};
|
|
796
|
+
exports.MaterialIcon = (0, react_1.forwardRef)(function MaterialSymbol(props, ref) {
|
|
797
|
+
var _a;
|
|
798
|
+
const { name, weight = 400, size = "md", className, style, ...rest } = props;
|
|
799
|
+
const iconSize = types_1.materialIconSizeMap[size];
|
|
800
|
+
const SvgIconComponent = (_a = exports.MATERIAL_ICON_MAP[name]) === null || _a === void 0 ? void 0 : _a[weight];
|
|
801
|
+
if (!SvgIconComponent) {
|
|
802
|
+
if (process.env.NODE_ENV !== "production") {
|
|
803
|
+
console.warn(`Material Icon "${name}" with weight "${weight}" not found`);
|
|
804
|
+
}
|
|
805
|
+
return null;
|
|
806
|
+
}
|
|
807
|
+
return (react_1.default.createElement("span", { ref: ref, className: (0, classnames_1.default)("inline-flex items-center justify-center", className), style: {
|
|
808
|
+
width: iconSize,
|
|
809
|
+
height: iconSize,
|
|
810
|
+
...style,
|
|
811
|
+
}, ...rest },
|
|
812
|
+
react_1.default.createElement(SvgIconComponent, { fill: "currentColor", width: "100%", height: "100%", role: "img", focusable: "false", "aria-hidden": "true" })));
|
|
813
|
+
});
|