jfs-components 0.1.23 → 0.1.28
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/CHANGELOG.md +40 -0
- package/lib/commonjs/components/AutoplayControl/AutoplayControl.js +66 -0
- package/lib/commonjs/components/CardCTA/CardCTA.js +32 -25
- package/lib/commonjs/components/Carousel/Carousel.js +112 -19
- package/lib/commonjs/components/ChipSelect/ChipSelect.js +2 -1
- package/lib/commonjs/components/ContentSheet/ContentSheet.js +39 -5
- package/lib/commonjs/components/FormUpload/Additem.js +168 -0
- package/lib/commonjs/components/FormUpload/FormUpload.js +198 -0
- package/lib/commonjs/components/Grid/Grid.js +206 -0
- package/lib/commonjs/components/ListItem/ListItem.js +11 -4
- package/lib/commonjs/components/MetricData/MetricData.js +132 -0
- package/lib/commonjs/components/NumberPagination/NumberPagination.js +144 -0
- package/lib/commonjs/components/ProfileCard/ProfileCard.js +208 -0
- package/lib/commonjs/components/Rating/Rating.js +137 -0
- package/lib/commonjs/components/UpiHandle/UpiHandle.js +23 -11
- package/lib/commonjs/components/index.js +42 -0
- package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/commonjs/design-tokens/figma-modes.generated.js +23 -10
- package/lib/commonjs/icons/components/IconBrokenimage.js +19 -0
- package/lib/commonjs/icons/components/IconImage.js +19 -0
- package/lib/commonjs/icons/components/IconMic.js +19 -0
- package/lib/commonjs/icons/components/IconMicoff.js +19 -0
- package/lib/commonjs/icons/components/IconPause.js +19 -0
- package/lib/commonjs/icons/components/IconPlay.js +19 -0
- package/lib/commonjs/icons/components/index.js +66 -0
- package/lib/commonjs/icons/registry.js +2 -2
- package/lib/module/components/AutoplayControl/AutoplayControl.js +60 -0
- package/lib/module/components/CardCTA/CardCTA.js +32 -25
- package/lib/module/components/Carousel/Carousel.js +111 -19
- package/lib/module/components/ChipSelect/ChipSelect.js +2 -1
- package/lib/module/components/ContentSheet/ContentSheet.js +41 -7
- package/lib/module/components/FormUpload/Additem.js +162 -0
- package/lib/module/components/FormUpload/FormUpload.js +192 -0
- package/lib/module/components/Grid/Grid.js +201 -0
- package/lib/module/components/ListItem/ListItem.js +11 -4
- package/lib/module/components/MetricData/MetricData.js +127 -0
- package/lib/module/components/NumberPagination/NumberPagination.js +138 -0
- package/lib/module/components/ProfileCard/ProfileCard.js +202 -0
- package/lib/module/components/Rating/Rating.js +132 -0
- package/lib/module/components/UpiHandle/UpiHandle.js +23 -11
- package/lib/module/components/index.js +7 -1
- package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/module/design-tokens/figma-modes.generated.js +23 -10
- package/lib/module/icons/components/IconBrokenimage.js +12 -0
- package/lib/module/icons/components/IconImage.js +12 -0
- package/lib/module/icons/components/IconMic.js +12 -0
- package/lib/module/icons/components/IconMicoff.js +12 -0
- package/lib/module/icons/components/IconPause.js +12 -0
- package/lib/module/icons/components/IconPlay.js +12 -0
- package/lib/module/icons/components/index.js +6 -0
- package/lib/module/icons/registry.js +2 -2
- package/lib/typescript/src/components/AutoplayControl/AutoplayControl.d.ts +15 -0
- package/lib/typescript/src/components/Carousel/Carousel.d.ts +8 -1
- package/lib/typescript/src/components/ChipSelect/ChipSelect.d.ts +6 -1
- package/lib/typescript/src/components/ContentSheet/ContentSheet.d.ts +7 -1
- package/lib/typescript/src/components/FormUpload/Additem.d.ts +96 -0
- package/lib/typescript/src/components/FormUpload/FormUpload.d.ts +85 -0
- package/lib/typescript/src/components/Grid/Grid.d.ts +87 -0
- package/lib/typescript/src/components/MetricData/MetricData.d.ts +53 -0
- package/lib/typescript/src/components/NumberPagination/NumberPagination.d.ts +21 -0
- package/lib/typescript/src/components/ProfileCard/ProfileCard.d.ts +89 -0
- package/lib/typescript/src/components/Rating/Rating.d.ts +30 -0
- package/lib/typescript/src/components/UpiHandle/UpiHandle.d.ts +7 -1
- package/lib/typescript/src/components/index.d.ts +34 -28
- package/lib/typescript/src/design-tokens/figma-modes.generated.d.ts +10 -4
- package/lib/typescript/src/icons/components/IconBrokenimage.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconImage.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconMic.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconMicoff.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconPause.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconPlay.d.ts +3 -0
- package/lib/typescript/src/icons/components/index.d.ts +6 -0
- package/lib/typescript/src/icons/registry.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/AutoplayControl/AutoplayControl.tsx +77 -0
- package/src/components/CardCTA/CardCTA.tsx +30 -15
- package/src/components/Carousel/Carousel.tsx +133 -23
- package/src/components/ChipSelect/ChipSelect.tsx +7 -1
- package/src/components/ContentSheet/ContentSheet.tsx +50 -0
- package/src/components/FormUpload/Additem.tsx +262 -0
- package/src/components/FormUpload/FormUpload.tsx +313 -0
- package/src/components/Grid/Grid.tsx +368 -0
- package/src/components/ListItem/ListItem.tsx +11 -4
- package/src/components/MetricData/MetricData.tsx +185 -0
- package/src/components/NumberPagination/NumberPagination.tsx +170 -0
- package/src/components/ProfileCard/ProfileCard.tsx +268 -0
- package/src/components/Rating/Rating.tsx +174 -0
- package/src/components/UpiHandle/UpiHandle.tsx +35 -24
- package/src/components/index.ts +329 -182
- package/src/design-tokens/Coin Variables-variables-full.json +1 -1
- package/src/design-tokens/figma-modes.generated.ts +23 -10
- package/src/icons/components/IconBrokenimage.tsx +11 -0
- package/src/icons/components/IconImage.tsx +11 -0
- package/src/icons/components/IconMic.tsx +11 -0
- package/src/icons/components/IconMicoff.tsx +11 -0
- package/src/icons/components/IconPause.tsx +11 -0
- package/src/icons/components/IconPlay.tsx +11 -0
- package/src/icons/components/index.ts +6 -0
- package/src/icons/registry.ts +25 -1
|
@@ -37,6 +37,7 @@ export const FIGMA_MODES = {
|
|
|
37
37
|
"AppearanceBrand": ["Primary", "Secondary", "Neutral", "Tertiary"],
|
|
38
38
|
"AppearanceSystem": ["positive", "warning", "negative"],
|
|
39
39
|
"Attached / Output": ["Default"],
|
|
40
|
+
"Autoplay Control": ["Default"],
|
|
40
41
|
"Avatar / Output": ["Default"],
|
|
41
42
|
"Avatar Group / Output": ["Default"],
|
|
42
43
|
"Avatar Size": ["L", "M", "S", "XS"],
|
|
@@ -61,6 +62,7 @@ export const FIGMA_MODES = {
|
|
|
61
62
|
"Calendar Glyph / Output": ["Default"],
|
|
62
63
|
"Calendar Glyph State": ["Idle", "notSaved", "saved"],
|
|
63
64
|
"Card / Output": ["Default"],
|
|
65
|
+
"Card Apperance": ["Default", "Plain"],
|
|
64
66
|
"Card Feedback / Output": ["Default"],
|
|
65
67
|
"Card.Media": ["Default"],
|
|
66
68
|
"Card/CTA / Output": ["Default"],
|
|
@@ -69,6 +71,7 @@ export const FIGMA_MODES = {
|
|
|
69
71
|
"CardAdvisory / Output": ["Default"],
|
|
70
72
|
"cardsShared": ["Default"],
|
|
71
73
|
"Carousel / Output": ["Default"],
|
|
74
|
+
"Carousel Control Gap": ["Default"],
|
|
72
75
|
"CarouselCardAccounts / Output": ["Default"],
|
|
73
76
|
"ccCard / Output": ["Default"],
|
|
74
77
|
"checkbox / Output": ["Default"],
|
|
@@ -95,7 +98,7 @@ export const FIGMA_MODES = {
|
|
|
95
98
|
"contentInset/Right": ["Default", "S", "M", "L"],
|
|
96
99
|
"ContentSheet / Output": ["Default"],
|
|
97
100
|
"Context": ["Default", "Nudge&Alert", "CTACard", "ListItem"],
|
|
98
|
-
"context 10": ["Default", "
|
|
101
|
+
"context 10": ["Default", "jioPlus"],
|
|
99
102
|
"context 8": ["Default", "Section"],
|
|
100
103
|
"context 9": ["Default", "Stack"],
|
|
101
104
|
"Context2": ["Default", "AppBar"],
|
|
@@ -104,6 +107,7 @@ export const FIGMA_MODES = {
|
|
|
104
107
|
"context5": ["Default", "Fullscreen Modal"],
|
|
105
108
|
"context7": ["Default", "Card", "Page Hero"],
|
|
106
109
|
"Contrast Context": ["on dark", "on light"],
|
|
110
|
+
"Control Toggle ": ["Default"],
|
|
107
111
|
"Conversation Feed / Output": ["Default"],
|
|
108
112
|
"Counter Badge / Output": ["Default"],
|
|
109
113
|
"Coverage Bar Comparison / Output": ["Default"],
|
|
@@ -135,7 +139,7 @@ export const FIGMA_MODES = {
|
|
|
135
139
|
"Gap": ["S", "M", "L", "None"],
|
|
136
140
|
"Gauge / Output": ["Default"],
|
|
137
141
|
"Grid / Output": ["Default"],
|
|
138
|
-
"Handle Boolean": ["
|
|
142
|
+
"Handle Boolean": ["True", "False"],
|
|
139
143
|
"Heading / Output": ["Default"],
|
|
140
144
|
"Heading text": ["Default", "Slot"],
|
|
141
145
|
"HeroSection / Output": ["Default"],
|
|
@@ -156,7 +160,7 @@ export const FIGMA_MODES = {
|
|
|
156
160
|
"lazyList / Output": ["Default"],
|
|
157
161
|
"LinearMeter / Output": ["Default"],
|
|
158
162
|
"LinearProgress / Output": ["Default"],
|
|
159
|
-
"LinearProgress Size": ["M", "L"],
|
|
163
|
+
"LinearProgress Size": ["S", "M", "L"],
|
|
160
164
|
"Link / Output": ["Default"],
|
|
161
165
|
"Link Apperances": ["Neutral", "Primary", "Secondary", "Tertiary"],
|
|
162
166
|
"List Item / Output": ["Default"],
|
|
@@ -177,10 +181,10 @@ export const FIGMA_MODES = {
|
|
|
177
181
|
"NavArrow": ["Default"],
|
|
178
182
|
"NavArrow / Output": ["Default"],
|
|
179
183
|
"NavArrow Direction": ["Left&Right", "Top&Bottom"],
|
|
180
|
-
"New Collection": ["Default"],
|
|
181
184
|
"NoteInput / Output": ["Default"],
|
|
182
185
|
"Nudge / Output": ["Default"],
|
|
183
186
|
"Nudge padding": ["Default", "None"],
|
|
187
|
+
"number pagination": ["Default"],
|
|
184
188
|
"Numpad / Output": ["Default"],
|
|
185
189
|
"OTP / Output": ["Mode 1"],
|
|
186
190
|
"Overlay / Output": ["Mode 1"],
|
|
@@ -199,6 +203,7 @@ export const FIGMA_MODES = {
|
|
|
199
203
|
"Product Merchandising card": ["Default"],
|
|
200
204
|
"ProductLabel / Output": ["Default"],
|
|
201
205
|
"ProductOverview / Output": ["Default"],
|
|
206
|
+
"Profile Card / Output": ["Default"],
|
|
202
207
|
"Profile Card Appearance": ["Default", "Premium"],
|
|
203
208
|
"ProgressBadge / Output": ["Default"],
|
|
204
209
|
"ProjectionMarker": ["Default"],
|
|
@@ -270,6 +275,7 @@ export const FIGMA_MODES = {
|
|
|
270
275
|
"TransactionBubble / Output": ["Default"],
|
|
271
276
|
"TransationDetails / Output": ["Default"],
|
|
272
277
|
"UPI Handle / Output": ["Default"],
|
|
278
|
+
"UPI Handle Image": ["True", "False"],
|
|
273
279
|
"ValueBar / Output": ["Default"],
|
|
274
280
|
"Video / Output": ["L", "M", "S"],
|
|
275
281
|
"VStack / Output": ["Default"],
|
|
@@ -287,9 +293,10 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
287
293
|
"AccountCard": ["AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "Emphasis"],
|
|
288
294
|
"ActionFooter": ["Color Mode", "context5"],
|
|
289
295
|
"ActionTile": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "Icon Capsule Size", "Semantic Intent"],
|
|
296
|
+
"Additem": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "Icon Capsule Size", "Semantic Intent"],
|
|
290
297
|
"AllocationComparisonChart": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
291
298
|
"AmountInput": ["Color Mode", "Context3"],
|
|
292
|
-
"AppBar": ["Color Mode", "Context2", "context5", "NavArrow Direction", "Page type"],
|
|
299
|
+
"AppBar": ["Color Mode", "context 10", "Context2", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance"],
|
|
293
300
|
"AreaLineChart": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
294
301
|
"Attached": ["Color Mode"],
|
|
295
302
|
"Avatar": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
@@ -302,7 +309,7 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
302
309
|
"BrandChip": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
303
310
|
"BubbleChart": ["Appearance / DataViz", "Color Mode", "Context", "context 10", "Emphasis / DataViz", "Profile Card Appearance", "Text Appearance"],
|
|
304
311
|
"Button": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
305
|
-
"Card": ["
|
|
312
|
+
"Card": ["Card Apperance", "Color Mode", "Gap", "Page type"],
|
|
306
313
|
"CardAdvisory": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "circularProgressBar Size", "Color Mode", "Context", "context 10", "Emphasis", "Nudge padding", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
307
314
|
"CardBankAccount": ["AppearanceBrand", "AppearanceSystem", "Avatar Size", "Badge Size", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context4", "context5", "Emphasis", "List Item Style", "Profile Card Appearance", "Semantic Intent", "Text Appearance", "Text Sizes", "Weight"],
|
|
308
315
|
"CardCTA": ["AppearanceBrand", "AppearanceSystem", "Avatar Size", "Badge Size", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "context 8", "Context4", "Emphasis", "Icon Capsule Size", "MediaBlock", "Page type", "Profile Card Appearance", "Semantic Intent"],
|
|
@@ -322,6 +329,7 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
322
329
|
"ClusterBubble": ["Appearance / DataViz", "Color Mode", "Context", "context 10", "Emphasis / DataViz", "Profile Card Appearance", "Text Appearance"],
|
|
323
330
|
"CompareTable": ["Accordion States", "AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "Emphasis", "Radius", "Selection Card Radius"],
|
|
324
331
|
"ComparisonBar": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Icon Capsule Size", "Profile Card Appearance", "Radius", "Semantic Intent"],
|
|
332
|
+
"ContentSheet": ["Color Mode", "Page type"],
|
|
325
333
|
"CoverageBarComparison": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
326
334
|
"CoverageRing": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "circularProgressBar Size", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
327
335
|
"DebitCard": ["DebitCard brand"],
|
|
@@ -336,8 +344,10 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
336
344
|
"ExpandableCheckbox": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
337
345
|
"FilterBar": ["Color Mode", "InputState"],
|
|
338
346
|
"FormField": ["Color Mode", "FormField States", "Status"],
|
|
347
|
+
"FormUpload": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "FormField States", "Icon Capsule Size", "Semantic Intent", "Status"],
|
|
339
348
|
"FullscreenModal": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "context5", "Emphasis", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
340
349
|
"Gauge": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "FormField States", "Semantic Intent", "Status"],
|
|
350
|
+
"Grid": ["Background", "Color Mode", "Context", "Padding", "Page type", "Slot gap"],
|
|
341
351
|
"HeroSection": ["AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "context 9", "context7", "Emphasis", "FormField States", "InputState", "Page type", "Status"],
|
|
342
352
|
"HoldingsCard": ["AppearanceBrand", "Color Mode"],
|
|
343
353
|
"HStack": ["Context", "Padding", "Page type", "Slot gap"],
|
|
@@ -355,10 +365,11 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
355
365
|
"MediaCard": ["Contrast Context"],
|
|
356
366
|
"MerchantProfile": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
357
367
|
"MessageField": ["Color Mode", "FormField States"],
|
|
368
|
+
"MetricData": ["AppearanceBrand", "Badge Size", "Color Mode", "context 10", "Context4", "Emphasis", "Profile Card Appearance"],
|
|
358
369
|
"MetricLegendItem": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
359
370
|
"MoneyValue": ["Color Mode", "Context3"],
|
|
360
371
|
"MonthlyStatusGrid": ["Appearance / DataViz", "Calendar Glyph State", "Color Mode", "Emphasis / DataViz"],
|
|
361
|
-
"NavArrow": ["Color Mode", "Context2", "context5", "NavArrow Direction", "Page type"],
|
|
372
|
+
"NavArrow": ["Color Mode", "context 10", "Context2", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance"],
|
|
362
373
|
"Nudge": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Nudge padding", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
363
374
|
"OTP": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "FormField States", "Input/PINSlot States", "Profile Card Appearance", "Semantic Intent", "Status"],
|
|
364
375
|
"PageHero": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
@@ -370,9 +381,11 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
370
381
|
"ProductLabel": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
371
382
|
"ProductMerchandisingCard": ["AppearanceBrand", "AppearanceSystem", "Avatar Size", "Badge Size", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context4", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
372
383
|
"ProductOverview": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
384
|
+
"ProfileCard": ["AppearanceBrand", "AppearanceSystem", "Avatar Size", "Badge Size", "Color Mode", "Context", "context 10", "Context2", "Context4", "context5", "Emphasis", "Icon Capsule Size", "List Item Style", "ListItem State", "NavArrow Direction", "Page type", "Profile Card Appearance", "Selectable", "Semantic Intent", "Slot gap", "UPI Handle Image"],
|
|
373
385
|
"ProjectionMarker": ["Color Mode", "context 10", "Profile Card Appearance"],
|
|
374
386
|
"Radio": ["Color Mode"],
|
|
375
387
|
"RangeTrack": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
388
|
+
"Rating": ["Color Mode", "Rating Star State"],
|
|
376
389
|
"RechargeCard": ["Avatar Size", "Badge Size", "Color Mode", "Context3", "Context4"],
|
|
377
390
|
"SavingsGoalSummary": ["Appearance / DataViz", "AppearanceBrand", "AppearanceSystem", "Color Mode", "Emphasis", "Emphasis / DataViz", "LinearProgress Size", "Semantic Intent"],
|
|
378
391
|
"Screen": ["Color Mode", "Page type"],
|
|
@@ -388,7 +401,7 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
388
401
|
"Step": ["Color Mode", "Step Status"],
|
|
389
402
|
"StepLabel": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Emphasis", "Semantic Intent"],
|
|
390
403
|
"SuggestiveSearch": ["Color Mode", "Dropdown Item State", "FormField States", "Status"],
|
|
391
|
-
"SummaryTile": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context2", "context5", "Emphasis", "NavArrow Direction", "Page type", "Profile Card Appearance", "Semantic Intent"],
|
|
404
|
+
"SummaryTile": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context2", "context5", "Emphasis", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance", "Semantic Intent"],
|
|
392
405
|
"SupportText": ["Color Mode", "FormField States", "Status"],
|
|
393
406
|
"SupportTextIcon": ["Color Mode", "FormField States", "Status"],
|
|
394
407
|
"SwappableAmount": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
@@ -400,9 +413,9 @@ export const FIGMA_COMPONENT_MODES: Record<string, readonly string[]> = {
|
|
|
400
413
|
"Title": ["Color Mode", "context7", "Page type"],
|
|
401
414
|
"Toggle": ["Color Mode", "Toggle States"],
|
|
402
415
|
"Tooltip": ["Color Mode"],
|
|
403
|
-
"TransactionBubble": ["Color Mode", "Context2", "Context3", "context5", "NavArrow Direction", "Page type", "Transaction Status"],
|
|
416
|
+
"TransactionBubble": ["Color Mode", "context 10", "Context2", "Context3", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance", "Transaction Status"],
|
|
404
417
|
"TransactionStatus": ["Transaction Status"],
|
|
405
|
-
"UpiHandle": ["Color Mode", "context 10", "Profile Card Appearance"],
|
|
418
|
+
"UpiHandle": ["Color Mode", "context 10", "Profile Card Appearance", "UPI Handle Image"],
|
|
406
419
|
"VStack": ["Context", "Padding", "Page type", "Slot gap"],
|
|
407
420
|
};
|
|
408
421
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconBrokenimage = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M6 9.5C6 10.33 6.67 11 7.5 11C8.33 11 9 10.33 9 9.5C9 8.67 8.33 8 7.5 8C6.67 8 6 8.67 6 9.5ZM19 4H13.6L11.29 6H18.99C19.54 6 19.99 6.45 19.99 7V13.7L16.16 10.25C15.78 9.91 15.2 9.91 14.82 10.25L12.81 12.08L13.35 12.98C13.6 13.4 13.51 13.95 13.13 14.26L11.05 15.99L13.13 17.72C13.36 17.91 13.49 18.19 13.49 18.49C13.49 18.79 13.36 19.07 13.13 19.26L12.25 19.99H18.99C20.64 19.99 21.99 18.64 21.99 16.99V7C21.99 5.35 20.64 4 18.99 4H19ZM8.5 16C8.5 15.7 8.63 15.42 8.86 15.23L9.71 14.52L8.14 13.22C7.76 12.91 7.21 12.92 6.84 13.24L4 15.76V7C4 6.45 4.45 6 5 6H8.24L10.55 4H5C3.35 4 2 5.35 2 7V17C2 18.65 3.35 20 5 20H9.14L10.94 18.5L8.86 16.77C8.63 16.58 8.5 16.3 8.5 16Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconImage = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M8.5 7C8.20333 7 7.91332 7.08797 7.66664 7.2528C7.41997 7.41762 7.22771 7.65189 7.11418 7.92597C7.00065 8.20006 6.97094 8.50166 7.02882 8.79264C7.0867 9.08361 7.22956 9.35088 7.43934 9.56066C7.64912 9.77044 7.91639 9.9133 8.20736 9.97118C8.49834 10.0291 8.79994 9.99935 9.07403 9.88582C9.34811 9.77229 9.58238 9.58003 9.7472 9.33335C9.91203 9.08668 10 8.79667 10 8.5C10 8.10218 9.84196 7.72064 9.56066 7.43934C9.27936 7.15804 8.89782 7 8.5 7ZM18 3H6C5.20435 3 4.44129 3.31607 3.87868 3.87868C3.31607 4.44129 3 5.20435 3 6V18C3 18.7956 3.31607 19.5587 3.87868 20.1213C4.44129 20.6839 5.20435 21 6 21H18C18.7956 21 19.5587 20.6839 20.1213 20.1213C20.6839 19.5587 21 18.7956 21 18V6C21 5.20435 20.6839 4.44129 20.1213 3.87868C19.5587 3.31607 18.7956 3 18 3ZM19 12.09L16.21 9.29C16.117 9.19627 16.0064 9.12188 15.8846 9.07111C15.7627 9.02034 15.632 8.9942 15.5 8.9942C15.368 8.9942 15.2373 9.02034 15.1154 9.07111C14.9936 9.12188 14.883 9.19627 14.79 9.29L10.5 13.59L9.21 12.29C9.11704 12.1963 9.00644 12.1219 8.88458 12.0711C8.76272 12.0203 8.63201 11.9942 8.5 11.9942C8.36799 11.9942 8.23728 12.0203 8.11542 12.0711C7.99356 12.1219 7.88296 12.1963 7.79 12.29L5 15.09V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H18C18.2652 5 18.5196 5.10536 18.7071 5.29289C18.8946 5.48043 19 5.73478 19 6V12.09Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconMic = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M12 15C12.7956 15 13.5587 14.6839 14.1213 14.1213C14.6839 13.5587 15 12.7956 15 12V5C15 4.20435 14.6839 3.44129 14.1213 2.87868C13.5587 2.31607 12.7956 2 12 2C11.2044 2 10.4413 2.31607 9.87868 2.87868C9.31607 3.44129 9 4.20435 9 5V12C9 12.7956 9.31607 13.5587 9.87868 14.1213C10.4413 14.6839 11.2044 15 12 15ZM18 10C17.7348 10 17.4804 10.1054 17.2929 10.2929C17.1054 10.4804 17 10.7348 17 11V12C17 13.3261 16.4732 14.5979 15.5355 15.5355C14.5979 16.4732 13.3261 17 12 17C10.6739 17 9.40215 16.4732 8.46447 15.5355C7.52678 14.5979 7 13.3261 7 12V11C7 10.7348 6.89464 10.4804 6.70711 10.2929C6.51957 10.1054 6.26522 10 6 10C5.73478 10 5.48043 10.1054 5.29289 10.2929C5.10536 10.4804 5 10.7348 5 11V12C5 13.8565 5.7375 15.637 7.05025 16.9497C8.36301 18.2625 10.1435 19 12 19C13.8565 19 15.637 18.2625 16.9497 16.9497C18.2625 15.637 19 13.8565 19 12V11C19 10.7348 18.8946 10.4804 18.7071 10.2929C18.5196 10.1054 18.2652 10 18 10ZM15 20H9C8.73478 20 8.48043 20.1054 8.29289 20.2929C8.10536 20.4804 8 20.7348 8 21C8 21.2652 8.10536 21.5196 8.29289 21.7071C8.48043 21.8946 8.73478 22 9 22H15C15.2652 22 15.5196 21.8946 15.7071 21.7071C15.8946 21.5196 16 21.2652 16 21C16 20.7348 15.8946 20.4804 15.7071 20.2929C15.5196 20.1054 15.2652 20 15 20Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconMicoff = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M7.06976 12.69C7.0311 12.4618 7.00771 12.2313 6.99976 12V11C6.99976 10.7348 6.8944 10.4804 6.70687 10.2929C6.51933 10.1054 6.26498 10 5.99976 10C5.73454 10 5.48019 10.1054 5.29265 10.2929C5.10512 10.4804 4.99976 10.7348 4.99976 11V12C5.0021 12.7977 5.14077 13.5891 5.40976 14.34L7.06976 12.69ZM11.9998 2.00002C11.2041 2.00002 10.441 2.31609 9.87844 2.8787C9.31583 3.4413 8.99976 4.20437 8.99976 5.00002V10.76L14.9998 4.76002C14.9393 4.00667 14.5967 3.3039 14.0405 2.79221C13.4844 2.28051 12.7555 1.99759 11.9998 2.00002ZM14.9998 20H8.99976C8.73454 20 8.48019 20.1054 8.29265 20.2929C8.10512 20.4804 7.99976 20.7348 7.99976 21C7.99976 21.2652 8.10512 21.5196 8.29265 21.7071C8.48019 21.8947 8.73454 22 8.99976 22H14.9998C15.265 22 15.5193 21.8947 15.7069 21.7071C15.8944 21.5196 15.9998 21.2652 15.9998 21C15.9998 20.7348 15.8944 20.4804 15.7069 20.2929C15.5193 20.1054 15.265 20 14.9998 20ZM11.9998 15C12.7954 15 13.5585 14.6839 14.1211 14.1213C14.6837 13.5587 14.9998 12.7957 14.9998 12V10.44L20.4898 5.00002C20.5876 4.90218 20.6652 4.78603 20.7182 4.65821C20.7711 4.53038 20.7984 4.39337 20.7984 4.25502C20.7984 4.11666 20.7711 3.97965 20.7182 3.85182C20.6652 3.724 20.5876 3.60785 20.4898 3.51002C20.3919 3.41218 20.2758 3.33457 20.148 3.28163C20.0201 3.22868 19.8831 3.20143 19.7448 3.20143C19.6064 3.20143 19.4694 3.22868 19.3416 3.28163C19.2137 3.33457 19.0976 3.41218 18.9998 3.51002L3.50976 19C3.41193 19.0979 3.33432 19.214 3.28137 19.3418C3.22842 19.4697 3.20117 19.6067 3.20117 19.745C3.20117 19.8834 3.22842 20.0204 3.28137 20.1482C3.33432 20.276 3.41193 20.3922 3.50976 20.49C3.70735 20.6876 3.97533 20.7986 4.25476 20.7986C4.39312 20.7986 4.53012 20.7714 4.65795 20.7184C4.78578 20.6655 4.90193 20.5879 4.99976 20.49L7.86976 17.61C8.91053 18.3706 10.1411 18.829 11.4258 18.9347C12.7105 19.0404 13.9995 18.7893 15.1506 18.2091C16.3017 17.6289 17.2702 16.7421 17.9494 15.6465C18.6286 14.5509 18.9921 13.289 18.9998 12V11C18.9998 10.7348 18.8944 10.4804 18.7069 10.2929C18.5193 10.1054 18.265 10 17.9998 10C17.7345 10 17.4802 10.1054 17.2927 10.2929C17.1051 10.4804 16.9998 10.7348 16.9998 11V12C16.9982 12.8998 16.7538 13.7825 16.2923 14.5551C15.8309 15.3276 15.1696 15.9612 14.3781 16.3892C13.5866 16.8172 12.6942 17.0237 11.7952 16.9869C10.8961 16.9501 10.0236 16.6713 9.26976 16.18L10.7298 14.71C11.1267 14.8985 11.5603 14.9975 11.9998 15Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconPause = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M8.5 4C8.10218 4 7.72064 4.15804 7.43934 4.43934C7.15804 4.72064 7 5.10218 7 5.5V18.5C7 18.8978 7.15804 19.2794 7.43934 19.5607C7.72064 19.842 8.10218 20 8.5 20C8.89782 20 9.27936 19.842 9.56066 19.5607C9.84196 19.2794 10 18.8978 10 18.5V5.5C10 5.10218 9.84196 4.72064 9.56066 4.43934C9.27936 4.15804 8.89782 4 8.5 4ZM15.5 4C15.1022 4 14.7206 4.15804 14.4393 4.43934C14.158 4.72064 14 5.10218 14 5.5V18.5C14 18.8978 14.158 19.2794 14.4393 19.5607C14.7206 19.842 15.1022 20 15.5 20C15.8978 20 16.2794 19.842 16.5607 19.5607C16.842 19.2794 17 18.8978 17 18.5V5.5C17 5.10218 16.842 4.72064 16.5607 4.43934C16.2794 4.15804 15.8978 4 15.5 4Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const IconPlay = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 24 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M19.15 10.36L9.15 3.35997C8.81279 3.1246 8.41123 2.99889 8 2.99997C7.67872 2.99676 7.36197 3.07595 7.08 3.22997C6.75541 3.39813 6.48312 3.65203 6.29271 3.96408C6.10231 4.27614 6.00107 4.63441 6 4.99997V19C6.00107 19.3655 6.10231 19.7238 6.29271 20.0359C6.48312 20.3479 6.75541 20.6018 7.08 20.77C7.36197 20.924 7.67872 21.0032 8 21C8.41123 21.0011 8.81279 20.8753 9.15 20.64L19.15 13.64C19.4141 13.4557 19.6297 13.2103 19.7786 12.9248C19.9275 12.6393 20.0053 12.322 20.0053 12C20.0053 11.6779 19.9275 11.3607 19.7786 11.0752C19.6297 10.7896 19.4141 10.5443 19.15 10.36Z"
|
|
8
|
+
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
);
|
|
@@ -170,6 +170,7 @@ export * from './IconBrightnessdisplay';
|
|
|
170
170
|
export * from './IconBrightnessfull';
|
|
171
171
|
export * from './IconBrightnesshalf';
|
|
172
172
|
export * from './IconBroadcast';
|
|
173
|
+
export * from './IconBrokenimage';
|
|
173
174
|
export * from './IconBroom';
|
|
174
175
|
export * from './IconBrush';
|
|
175
176
|
export * from './IconBuffer';
|
|
@@ -626,6 +627,7 @@ export * from './IconIce';
|
|
|
626
627
|
export * from './IconIceskating';
|
|
627
628
|
export * from './IconId';
|
|
628
629
|
export * from './IconIdcheck';
|
|
630
|
+
export * from './IconImage';
|
|
629
631
|
export * from './IconImagemask';
|
|
630
632
|
export * from './IconImport';
|
|
631
633
|
export * from './IconIncognito';
|
|
@@ -724,7 +726,9 @@ export * from './IconMerge';
|
|
|
724
726
|
export * from './IconMergeoff';
|
|
725
727
|
export * from './IconMesh';
|
|
726
728
|
export * from './IconMessagesend';
|
|
729
|
+
export * from './IconMic';
|
|
727
730
|
export * from './IconMicmuteforced';
|
|
731
|
+
export * from './IconMicoff';
|
|
728
732
|
export * from './IconMicroscope';
|
|
729
733
|
export * from './IconMilk';
|
|
730
734
|
export * from './IconMilklow';
|
|
@@ -846,6 +850,7 @@ export * from './IconPasses';
|
|
|
846
850
|
export * from './IconPaste';
|
|
847
851
|
export * from './IconPastedocument';
|
|
848
852
|
export * from './IconPatient';
|
|
853
|
+
export * from './IconPause';
|
|
849
854
|
export * from './IconPausecircle';
|
|
850
855
|
export * from './IconPaybill';
|
|
851
856
|
export * from './IconPayemiinstall';
|
|
@@ -887,6 +892,7 @@ export * from './IconPlank';
|
|
|
887
892
|
export * from './IconPlans';
|
|
888
893
|
export * from './IconPlantgrowth';
|
|
889
894
|
export * from './IconPlanting';
|
|
895
|
+
export * from './IconPlay';
|
|
890
896
|
export * from './IconPlaycircle';
|
|
891
897
|
export * from './IconPlaypause';
|
|
892
898
|
export * from './IconPlaybox';
|
package/src/icons/registry.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Auto-generated from SVG files in src/icons/
|
|
5
5
|
* DO NOT EDIT MANUALLY - Run "npm run icons:generate" to regenerate
|
|
6
6
|
*
|
|
7
|
-
* Generated: 2026-07-
|
|
7
|
+
* Generated: 2026-07-07T17:35:34.036Z
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
// Icon name to SVG data mapping
|
|
@@ -689,6 +689,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
689
689
|
path: 'M11.9998 11.5C11.7032 11.5 11.4131 11.588 11.1665 11.7528C10.9198 11.9176 10.7275 12.1519 10.614 12.426C10.5005 12.7001 10.4708 13.0017 10.5286 13.2926C10.5865 13.5836 10.7294 13.8509 10.9392 14.0607C11.1489 14.2704 11.4162 14.4133 11.7072 14.4712C11.9982 14.5291 12.2998 14.4994 12.5738 14.3858C12.8479 14.2723 13.0822 14.08 13.247 13.8334C13.4118 13.5867 13.4998 13.2967 13.4998 13C13.4998 12.6022 13.3418 12.2206 13.0605 11.9393C12.7792 11.658 12.3976 11.5 11.9998 11.5ZM11.9998 3C10.0223 3.00042 8.08934 3.58714 6.44524 4.68598C4.80114 5.78483 3.51974 7.34646 2.76304 9.17345C2.00634 11.0005 1.80831 13.0108 2.19399 14.9503C2.57966 16.8898 3.53173 18.6715 4.92982 20.07C5.01947 20.1747 5.12979 20.2597 5.25385 20.3197C5.37792 20.3797 5.51305 20.4135 5.65077 20.4188C5.78849 20.4241 5.92582 20.4009 6.05414 20.3506C6.18247 20.3004 6.29902 20.2241 6.39647 20.1266C6.49393 20.0292 6.57019 19.9126 6.62046 19.7843C6.67073 19.656 6.69394 19.5187 6.68862 19.3809C6.6833 19.2432 6.64957 19.1081 6.58955 18.984C6.52952 18.86 6.4445 18.7496 6.33982 18.66C5.22189 17.5408 4.46085 16.1153 4.15289 14.5637C3.84493 13.0121 4.00388 11.4041 4.60964 9.94277C5.2154 8.48148 6.24078 7.23258 7.55619 6.35392C8.87159 5.47526 10.418 5.00629 11.9998 5.00629C13.5817 5.00629 15.1281 5.47526 16.4435 6.35392C17.7589 7.23258 18.7842 8.48148 19.39 9.94277C19.9958 11.4041 20.1547 13.0121 19.8468 14.5637C19.5388 16.1153 18.7778 17.5408 17.6598 18.66C17.4736 18.8474 17.369 19.1008 17.369 19.365C17.369 19.6292 17.4736 19.8826 17.6598 20.07C17.8472 20.2563 18.1006 20.3608 18.3648 20.3608C18.629 20.3608 18.8825 20.2563 19.0698 20.07C20.4679 18.6715 21.42 16.8898 21.8057 14.9503C22.1913 13.0108 21.9933 11.0005 21.2366 9.17345C20.4799 7.34646 19.1985 5.78483 17.5544 4.68598C15.9103 3.58714 13.9773 3.00042 11.9998 3ZM11.9998 7C10.4085 7 8.8824 7.63214 7.75718 8.75736C6.63196 9.88258 5.99982 11.4087 5.99982 13C5.99666 13.7882 6.15068 14.5692 6.45288 15.2972C6.75507 16.0252 7.19938 16.6857 7.75982 17.24C7.84947 17.3447 7.95979 17.4297 8.08385 17.4897C8.20792 17.5497 8.34305 17.5835 8.48077 17.5888C8.61849 17.5941 8.75582 17.5709 8.88415 17.5206C9.01247 17.4704 9.12902 17.3941 9.22647 17.2966C9.32393 17.1992 9.40019 17.0826 9.45046 16.9543C9.50073 16.826 9.52394 16.6887 9.51862 16.5509C9.5133 16.4132 9.47957 16.2781 9.41955 16.154C9.35952 16.03 9.2745 15.9196 9.16982 15.83C8.61086 15.2704 8.23034 14.5577 8.07636 13.7819C7.92238 13.0061 8.00185 12.202 8.30473 11.4714C8.60761 10.7407 9.1203 10.1163 9.778 9.67696C10.4357 9.23763 11.2089 9.00315 11.9998 9.00315C12.7908 9.00315 13.5639 9.23763 14.2216 9.67696C14.8793 10.1163 15.392 10.7407 15.6949 11.4714C15.9978 12.202 16.0773 13.0061 15.9233 13.7819C15.7693 14.5577 15.3888 15.2704 14.8298 15.83C14.6436 16.0174 14.539 16.2708 14.539 16.535C14.539 16.7992 14.6436 17.0526 14.8298 17.24C15.0172 17.4263 15.2706 17.5308 15.5348 17.5308C15.799 17.5308 16.0525 17.4263 16.2398 17.24C16.8003 16.6857 17.2446 16.0252 17.5468 15.2972C17.849 14.5692 18.003 13.7882 17.9998 13C17.9998 11.4087 17.3677 9.88258 16.2425 8.75736C15.1172 7.63214 13.5911 7 11.9998 7Z',
|
|
690
690
|
viewBox: '0 0 24 24',
|
|
691
691
|
},
|
|
692
|
+
'ic_broken_image': {
|
|
693
|
+
path: 'M6 9.5C6 10.33 6.67 11 7.5 11C8.33 11 9 10.33 9 9.5C9 8.67 8.33 8 7.5 8C6.67 8 6 8.67 6 9.5ZM19 4H13.6L11.29 6H18.99C19.54 6 19.99 6.45 19.99 7V13.7L16.16 10.25C15.78 9.91 15.2 9.91 14.82 10.25L12.81 12.08L13.35 12.98C13.6 13.4 13.51 13.95 13.13 14.26L11.05 15.99L13.13 17.72C13.36 17.91 13.49 18.19 13.49 18.49C13.49 18.79 13.36 19.07 13.13 19.26L12.25 19.99H18.99C20.64 19.99 21.99 18.64 21.99 16.99V7C21.99 5.35 20.64 4 18.99 4H19ZM8.5 16C8.5 15.7 8.63 15.42 8.86 15.23L9.71 14.52L8.14 13.22C7.76 12.91 7.21 12.92 6.84 13.24L4 15.76V7C4 6.45 4.45 6 5 6H8.24L10.55 4H5C3.35 4 2 5.35 2 7V17C2 18.65 3.35 20 5 20H9.14L10.94 18.5L8.86 16.77C8.63 16.58 8.5 16.3 8.5 16Z',
|
|
694
|
+
viewBox: '0 0 24 24',
|
|
695
|
+
},
|
|
692
696
|
'ic_broom': {
|
|
693
697
|
path: 'M2.8397 11.9994C2.65655 12.0277 2.48486 12.1063 2.34378 12.2264C2.2027 12.3466 2.09779 12.5036 2.04074 12.6799C1.9837 12.8562 1.97677 13.0449 2.02073 13.2249C2.06469 13.4049 2.15781 13.5692 2.2897 13.6994L3.2897 14.6994C3.38231 14.7939 3.49276 14.8691 3.61463 14.9206C3.73651 14.972 3.86739 14.9988 3.9997 14.9994H4.9997V15.9994C4.99894 16.131 5.02416 16.2615 5.07393 16.3833C5.12369 16.5051 5.19702 16.616 5.2897 16.7094L10.2897 21.7094C10.3831 21.8021 10.494 21.8754 10.6158 21.9252C10.7376 21.9749 10.8681 22.0002 10.9997 21.9994C11.1049 21.9974 11.2092 21.9805 11.3097 21.9494C11.4847 21.893 11.6408 21.7894 11.7608 21.65C11.8807 21.5106 11.96 21.3409 11.9897 21.1594L12.6897 16.9294L7.0697 11.3094L2.8397 11.9994ZM21.4097 2.5894C21.035 2.2169 20.5281 2.00781 19.9997 2.00781C19.4713 2.00781 18.9644 2.2169 18.5897 2.5894L11.2897 9.8794L10.7097 9.2894C10.5214 9.10109 10.266 8.99531 9.9997 8.99531C9.7334 8.99531 9.478 9.10109 9.2897 9.2894C9.10139 9.4777 8.99561 9.7331 8.99561 9.9994C8.99561 10.2657 9.10139 10.5211 9.2897 10.7094L13.2897 14.7094C13.3827 14.8031 13.4933 14.8775 13.6151 14.9283C13.737 14.9791 13.8677 15.0052 13.9997 15.0052C14.1317 15.0052 14.2624 14.9791 14.3843 14.9283C14.5061 14.8775 14.6167 14.8031 14.7097 14.7094C14.8034 14.6164 14.8778 14.5058 14.9286 14.384C14.9794 14.2621 15.0055 14.1314 15.0055 13.9994C15.0055 13.8674 14.9794 13.7367 14.9286 13.6148C14.8778 13.493 14.8034 13.3824 14.7097 13.2894L14.1197 12.7094L21.4097 5.4094C21.7822 5.03467 21.9913 4.52777 21.9913 3.9994C21.9913 3.47103 21.7822 2.96412 21.4097 2.5894Z',
|
|
694
698
|
viewBox: '0 0 24 24',
|
|
@@ -2514,6 +2518,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
2514
2518
|
path: 'M19 5H5C4.20435 5 3.44129 5.31607 2.87868 5.87868C2.31607 6.44129 2 7.20435 2 8V16C2 16.7956 2.31607 17.5587 2.87868 18.1213C3.44129 18.6839 4.20435 19 5 19H19C19.7956 19 20.5587 18.6839 21.1213 18.1213C21.6839 17.5587 22 16.7956 22 16V8C22 7.20435 21.6839 6.44129 21.1213 5.87868C20.5587 5.31607 19.7956 5 19 5ZM8 8C8.29667 8 8.58668 8.08797 8.83335 8.2528C9.08003 8.41762 9.27229 8.65189 9.38582 8.92597C9.49935 9.20006 9.52906 9.50166 9.47118 9.79264C9.4133 10.0836 9.27044 10.3509 9.06066 10.5607C8.85088 10.7704 8.58361 10.9133 8.29264 10.9712C8.00166 11.0291 7.70006 10.9994 7.42597 10.8858C7.15189 10.7723 6.91762 10.58 6.7528 10.3334C6.58797 10.0867 6.5 9.79667 6.5 9.5C6.5 9.10218 6.65804 8.72064 6.93934 8.43934C7.22064 8.15804 7.60218 8 8 8ZM10 16H6C5.73478 16 5.48043 15.8946 5.29289 15.7071C5.10536 15.5196 5 15.2652 5 15C5 14.2044 5.31607 13.4413 5.87868 12.8787C6.44129 12.3161 7.20435 12 8 12C8.79565 12 9.55871 12.3161 10.1213 12.8787C10.6839 13.4413 11 14.2044 11 15C11 15.2652 10.8946 15.5196 10.7071 15.7071C10.5196 15.8946 10.2652 16 10 16ZM19.71 10.71L15.71 14.71C15.617 14.8037 15.5064 14.8781 15.3846 14.9289C15.2627 14.9797 15.132 15.0058 15 15.0058C14.868 15.0058 14.7373 14.9797 14.6154 14.9289C14.4936 14.8781 14.383 14.8037 14.29 14.71L12.29 12.71C12.1017 12.5217 11.9959 12.2663 11.9959 12C11.9959 11.7337 12.1017 11.4783 12.29 11.29C12.4783 11.1017 12.7337 10.9959 13 10.9959C13.2663 10.9959 13.5217 11.1017 13.71 11.29L15 12.59L18.29 9.29C18.4783 9.1017 18.7337 8.99591 19 8.99591C19.2663 8.99591 19.5217 9.1017 19.71 9.29C19.8983 9.4783 20.0041 9.7337 20.0041 10C20.0041 10.2663 19.8983 10.5217 19.71 10.71Z',
|
|
2515
2519
|
viewBox: '0 0 24 24',
|
|
2516
2520
|
},
|
|
2521
|
+
'ic_image': {
|
|
2522
|
+
path: 'M8.5 7C8.20333 7 7.91332 7.08797 7.66664 7.2528C7.41997 7.41762 7.22771 7.65189 7.11418 7.92597C7.00065 8.20006 6.97094 8.50166 7.02882 8.79264C7.0867 9.08361 7.22956 9.35088 7.43934 9.56066C7.64912 9.77044 7.91639 9.9133 8.20736 9.97118C8.49834 10.0291 8.79994 9.99935 9.07403 9.88582C9.34811 9.77229 9.58238 9.58003 9.7472 9.33335C9.91203 9.08668 10 8.79667 10 8.5C10 8.10218 9.84196 7.72064 9.56066 7.43934C9.27936 7.15804 8.89782 7 8.5 7ZM18 3H6C5.20435 3 4.44129 3.31607 3.87868 3.87868C3.31607 4.44129 3 5.20435 3 6V18C3 18.7956 3.31607 19.5587 3.87868 20.1213C4.44129 20.6839 5.20435 21 6 21H18C18.7956 21 19.5587 20.6839 20.1213 20.1213C20.6839 19.5587 21 18.7956 21 18V6C21 5.20435 20.6839 4.44129 20.1213 3.87868C19.5587 3.31607 18.7956 3 18 3ZM19 12.09L16.21 9.29C16.117 9.19627 16.0064 9.12188 15.8846 9.07111C15.7627 9.02034 15.632 8.9942 15.5 8.9942C15.368 8.9942 15.2373 9.02034 15.1154 9.07111C14.9936 9.12188 14.883 9.19627 14.79 9.29L10.5 13.59L9.21 12.29C9.11704 12.1963 9.00644 12.1219 8.88458 12.0711C8.76272 12.0203 8.63201 11.9942 8.5 11.9942C8.36799 11.9942 8.23728 12.0203 8.11542 12.0711C7.99356 12.1219 7.88296 12.1963 7.79 12.29L5 15.09V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H18C18.2652 5 18.5196 5.10536 18.7071 5.29289C18.8946 5.48043 19 5.73478 19 6V12.09Z',
|
|
2523
|
+
viewBox: '0 0 24 24',
|
|
2524
|
+
},
|
|
2517
2525
|
'ic_image_mask': {
|
|
2518
2526
|
path: 'M19.9796 3.37023C19.8596 3.25023 19.7196 3.16023 19.5596 3.09023C19.3996 3.03023 19.2396 2.99023 19.0696 2.99023H4.92965C4.58965 2.99023 4.25965 3.13023 4.01965 3.37023C3.77965 3.61023 3.63965 3.94023 3.63965 4.28023V11.9902C3.63965 17.9702 11.2396 20.8002 11.5596 20.9102C11.8396 21.0102 12.1496 21.0102 12.4296 20.9102C12.7496 20.7902 20.3496 17.9702 20.3496 11.9902V4.28023C20.3496 4.11023 20.3196 3.94023 20.2496 3.79023C20.1896 3.63023 20.0896 3.49023 19.9696 3.37023H19.9796ZM7.22965 7.23023C7.43965 7.02023 7.71965 6.89023 8.01965 6.86023C8.31965 6.83023 8.61965 6.91023 8.85965 7.08023C9.06965 7.22023 9.22965 7.42023 9.31965 7.66023C9.41965 7.90023 9.44965 8.15023 9.39965 8.41023C9.34965 8.66023 9.22965 8.88023 9.04965 9.06023C8.86965 9.24023 8.63965 9.36023 8.39965 9.41023C8.14965 9.46023 7.88965 9.43023 7.64965 9.33023C7.40965 9.24023 7.20965 9.08023 7.06965 8.87023C6.89965 8.62023 6.81965 8.32023 6.84965 8.03023C6.87965 7.73023 7.00965 7.45023 7.21965 7.24023L7.22965 7.23023ZM16.8196 13.6602C16.2196 14.3502 15.4796 14.9102 14.6496 15.2902C13.8196 15.6702 12.9196 15.8702 11.9996 15.8702C11.0796 15.8702 10.1796 15.6702 9.34965 15.2902C8.51965 14.9102 7.76965 14.3502 7.17965 13.6602C7.03965 13.5402 6.91965 13.3902 6.84965 13.2202C6.75965 13.0502 6.71965 12.8702 6.71965 12.6802C6.71965 12.4902 6.75965 12.3102 6.83965 12.1402C6.91965 11.9702 7.02965 11.8102 7.16965 11.6902C7.30965 11.5702 7.47965 11.4802 7.65965 11.4302C7.83965 11.3902 8.02965 11.3902 8.20965 11.4302C8.39965 11.4502 8.56965 11.5202 8.71965 11.6402C8.87965 11.7402 9.00965 11.8802 9.10965 12.0402C9.46965 12.4502 9.89965 12.7802 10.3996 13.0002C10.8996 13.2302 11.4396 13.3502 11.9796 13.3502C12.5196 13.3502 13.0696 13.2302 13.5596 13.0002C14.0496 12.7702 14.4896 12.4402 14.8496 12.0402C15.0196 11.8602 15.2396 11.7302 15.4796 11.6802C15.7196 11.6202 15.9696 11.6402 16.2096 11.7202C16.4396 11.8002 16.6496 11.9502 16.7996 12.1502C16.9496 12.3502 17.0396 12.5802 17.0596 12.8302C17.0896 13.1402 17.0096 13.4502 16.8296 13.7002V13.6602H16.8196ZM16.8196 9.02023C16.6096 9.23023 16.3296 9.36023 16.0296 9.39023C15.7296 9.42023 15.4296 9.34023 15.1896 9.17023C14.9796 9.03023 14.8196 8.83023 14.7296 8.59023C14.6296 8.35023 14.5996 8.10023 14.6496 7.84023C14.6996 7.60023 14.8096 7.38023 14.9796 7.21023C15.1496 7.03023 15.3596 6.91023 15.5996 6.85023C15.8496 6.80023 16.1096 6.83023 16.3496 6.93023C16.5896 7.02023 16.7896 7.18023 16.9296 7.39023C17.0996 7.64023 17.1796 7.94023 17.1496 8.23023C17.1196 8.53023 16.9896 8.81023 16.7796 9.02023H16.8296H16.8196Z',
|
|
2519
2527
|
viewBox: '0 0 24 24',
|
|
@@ -2907,10 +2915,18 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
2907
2915
|
path: 'M9.00019 19.0002C8.86858 19.0009 8.73812 18.9757 8.61628 18.926C8.49444 18.8762 8.38363 18.8029 8.29018 18.7102L3.29019 13.7102C3.10188 13.5219 2.99609 13.2665 2.99609 13.0002C2.99609 12.7339 3.10188 12.4785 3.29019 12.2902C3.47849 12.1019 3.73388 11.9961 4.00019 11.9961C4.26649 11.9961 4.52188 12.1019 4.71019 12.2902L9.00019 16.5902L19.2902 6.29019C19.4785 6.10188 19.7339 5.99609 20.0002 5.99609C20.2665 5.99609 20.5219 6.10188 20.7102 6.29019C20.8985 6.47849 21.0043 6.73388 21.0043 7.00019C21.0043 7.26649 20.8985 7.52188 20.7102 7.71019L9.71019 18.7102C9.61674 18.8029 9.50593 18.8762 9.38409 18.926C9.26225 18.9757 9.13179 19.0009 9.00019 19.0002Z',
|
|
2908
2916
|
viewBox: '0 0 24 24',
|
|
2909
2917
|
},
|
|
2918
|
+
'ic_mic': {
|
|
2919
|
+
path: 'M12 15C12.7956 15 13.5587 14.6839 14.1213 14.1213C14.6839 13.5587 15 12.7956 15 12V5C15 4.20435 14.6839 3.44129 14.1213 2.87868C13.5587 2.31607 12.7956 2 12 2C11.2044 2 10.4413 2.31607 9.87868 2.87868C9.31607 3.44129 9 4.20435 9 5V12C9 12.7956 9.31607 13.5587 9.87868 14.1213C10.4413 14.6839 11.2044 15 12 15ZM18 10C17.7348 10 17.4804 10.1054 17.2929 10.2929C17.1054 10.4804 17 10.7348 17 11V12C17 13.3261 16.4732 14.5979 15.5355 15.5355C14.5979 16.4732 13.3261 17 12 17C10.6739 17 9.40215 16.4732 8.46447 15.5355C7.52678 14.5979 7 13.3261 7 12V11C7 10.7348 6.89464 10.4804 6.70711 10.2929C6.51957 10.1054 6.26522 10 6 10C5.73478 10 5.48043 10.1054 5.29289 10.2929C5.10536 10.4804 5 10.7348 5 11V12C5 13.8565 5.7375 15.637 7.05025 16.9497C8.36301 18.2625 10.1435 19 12 19C13.8565 19 15.637 18.2625 16.9497 16.9497C18.2625 15.637 19 13.8565 19 12V11C19 10.7348 18.8946 10.4804 18.7071 10.2929C18.5196 10.1054 18.2652 10 18 10ZM15 20H9C8.73478 20 8.48043 20.1054 8.29289 20.2929C8.10536 20.4804 8 20.7348 8 21C8 21.2652 8.10536 21.5196 8.29289 21.7071C8.48043 21.8946 8.73478 22 9 22H15C15.2652 22 15.5196 21.8946 15.7071 21.7071C15.8946 21.5196 16 21.2652 16 21C16 20.7348 15.8946 20.4804 15.7071 20.2929C15.5196 20.1054 15.2652 20 15 20Z',
|
|
2920
|
+
viewBox: '0 0 24 24',
|
|
2921
|
+
},
|
|
2910
2922
|
'ic_mic_mute_forced': {
|
|
2911
2923
|
path: 'M15 20H9C8.73 20 8.48 20.11 8.29 20.29C8.1 20.48 8 20.73 8 21C8 21.27 8.11 21.52 8.29 21.71C8.48 21.9 8.73 22 9 22H15C15.27 22 15.52 21.89 15.71 21.71C15.9 21.53 16 21.27 16 21C16 20.73 15.89 20.48 15.71 20.29C15.53 20.1 15.27 20 15 20ZM12 15C12.25 15 12.5 14.96 12.74 14.89C12.27 14.03 12 13.05 12 12C12 9.78 13.21 7.85 15 6.81V5C15 4.2 14.68 3.44 14.12 2.88C13.56 2.32 12.79 2 12 2C11.21 2 10.44 2.32 9.88 2.88C9.32 3.44 9 4.21 9 5V12C9 12.8 9.32 13.56 9.88 14.12C10.44 14.68 11.21 15 12 15ZM12 17C10.67 17 9.4 16.47 8.46 15.54C7.52 14.6 7 13.33 7 12V11C7 10.73 6.89 10.48 6.71 10.29C6.52 10.1 6.27 10 6 10C5.73 10 5.48 10.11 5.29 10.29C5.1 10.48 5 10.73 5 11V12C5 13.86 5.74 15.64 7.05 16.95C8.36 18.26 10.14 19 12 19C13.47 19 14.9 18.53 16.08 17.68C15.34 17.43 14.66 17.04 14.08 16.53C13.43 16.83 12.73 17 12 17ZM14 12C14 14.21 15.79 16 18 16C18.74 16 19.43 15.79 20.02 15.43L14.57 9.98C14.22 10.57 14 11.26 14 12ZM18 8C17.26 8 16.57 8.21 15.98 8.57L21.43 14.02C21.78 13.43 22 12.74 22 12C22 9.79 20.21 8 18 8Z',
|
|
2912
2924
|
viewBox: '0 0 24 24',
|
|
2913
2925
|
},
|
|
2926
|
+
'ic_mic_off': {
|
|
2927
|
+
path: 'M7.06976 12.69C7.0311 12.4618 7.00771 12.2313 6.99976 12V11C6.99976 10.7348 6.8944 10.4804 6.70687 10.2929C6.51933 10.1054 6.26498 10 5.99976 10C5.73454 10 5.48019 10.1054 5.29265 10.2929C5.10512 10.4804 4.99976 10.7348 4.99976 11V12C5.0021 12.7977 5.14077 13.5891 5.40976 14.34L7.06976 12.69ZM11.9998 2.00002C11.2041 2.00002 10.441 2.31609 9.87844 2.8787C9.31583 3.4413 8.99976 4.20437 8.99976 5.00002V10.76L14.9998 4.76002C14.9393 4.00667 14.5967 3.3039 14.0405 2.79221C13.4844 2.28051 12.7555 1.99759 11.9998 2.00002ZM14.9998 20H8.99976C8.73454 20 8.48019 20.1054 8.29265 20.2929C8.10512 20.4804 7.99976 20.7348 7.99976 21C7.99976 21.2652 8.10512 21.5196 8.29265 21.7071C8.48019 21.8947 8.73454 22 8.99976 22H14.9998C15.265 22 15.5193 21.8947 15.7069 21.7071C15.8944 21.5196 15.9998 21.2652 15.9998 21C15.9998 20.7348 15.8944 20.4804 15.7069 20.2929C15.5193 20.1054 15.265 20 14.9998 20ZM11.9998 15C12.7954 15 13.5585 14.6839 14.1211 14.1213C14.6837 13.5587 14.9998 12.7957 14.9998 12V10.44L20.4898 5.00002C20.5876 4.90218 20.6652 4.78603 20.7182 4.65821C20.7711 4.53038 20.7984 4.39337 20.7984 4.25502C20.7984 4.11666 20.7711 3.97965 20.7182 3.85182C20.6652 3.724 20.5876 3.60785 20.4898 3.51002C20.3919 3.41218 20.2758 3.33457 20.148 3.28163C20.0201 3.22868 19.8831 3.20143 19.7448 3.20143C19.6064 3.20143 19.4694 3.22868 19.3416 3.28163C19.2137 3.33457 19.0976 3.41218 18.9998 3.51002L3.50976 19C3.41193 19.0979 3.33432 19.214 3.28137 19.3418C3.22842 19.4697 3.20117 19.6067 3.20117 19.745C3.20117 19.8834 3.22842 20.0204 3.28137 20.1482C3.33432 20.276 3.41193 20.3922 3.50976 20.49C3.70735 20.6876 3.97533 20.7986 4.25476 20.7986C4.39312 20.7986 4.53012 20.7714 4.65795 20.7184C4.78578 20.6655 4.90193 20.5879 4.99976 20.49L7.86976 17.61C8.91053 18.3706 10.1411 18.829 11.4258 18.9347C12.7105 19.0404 13.9995 18.7893 15.1506 18.2091C16.3017 17.6289 17.2702 16.7421 17.9494 15.6465C18.6286 14.5509 18.9921 13.289 18.9998 12V11C18.9998 10.7348 18.8944 10.4804 18.7069 10.2929C18.5193 10.1054 18.265 10 17.9998 10C17.7345 10 17.4802 10.1054 17.2927 10.2929C17.1051 10.4804 16.9998 10.7348 16.9998 11V12C16.9982 12.8998 16.7538 13.7825 16.2923 14.5551C15.8309 15.3276 15.1696 15.9612 14.3781 16.3892C13.5866 16.8172 12.6942 17.0237 11.7952 16.9869C10.8961 16.9501 10.0236 16.6713 9.26976 16.18L10.7298 14.71C11.1267 14.8985 11.5603 14.9975 11.9998 15Z',
|
|
2928
|
+
viewBox: '0 0 24 24',
|
|
2929
|
+
},
|
|
2914
2930
|
'ic_microscope': {
|
|
2915
2931
|
path: 'M10 13C10 12.7348 9.89464 12.4804 9.70711 12.2929C9.51957 12.1053 9.26522 12 9 12V5.99999C9 5.73477 8.89464 5.48042 8.70711 5.29288C8.51957 5.10534 8.26522 4.99999 8 4.99999C7.73478 4.99999 7.48043 5.10534 7.29289 5.29288C7.10536 5.48042 7 5.73477 7 5.99999V12H6V9.99999C6 9.73477 5.89464 9.48042 5.70711 9.29288C5.51957 9.10534 5.26522 8.99999 5 8.99999C4.73478 8.99999 4.48043 9.10534 4.29289 9.29288C4.10536 9.48042 4 9.73477 4 9.99999V12C3.73478 12 3.48043 12.1053 3.29289 12.2929C3.10536 12.4804 3 12.7348 3 13C3 13.2652 3.10536 13.5196 3.29289 13.7071C3.48043 13.8946 3.73478 14 4 14H9C9.26522 14 9.51957 13.8946 9.70711 13.7071C9.89464 13.5196 10 13.2652 10 13ZM20.71 4.28999L19.71 3.28999C19.5391 3.1311 19.3179 3.03701 19.0849 3.02401C18.8519 3.01102 18.6217 3.07993 18.4341 3.21881C18.2465 3.3577 18.1135 3.55781 18.0579 3.78449C18.0024 4.01117 18.0279 4.25013 18.13 4.45999L16.37 6.20999C15.99 5.98618 15.5467 5.89425 15.109 5.94851C14.6713 6.00276 14.2639 6.20016 13.95 6.50999L10.23 10.23C10.1363 10.3229 10.0619 10.4336 10.0111 10.5554C9.96034 10.6773 9.9342 10.808 9.9342 10.94C9.9342 11.072 9.96034 11.2027 10.0111 11.3246C10.0619 11.4464 10.1363 11.557 10.23 11.65L12.35 13.77C12.443 13.8637 12.5536 13.9381 12.6754 13.9889C12.7973 14.0396 12.928 14.0658 13.06 14.0658C13.192 14.0658 13.3227 14.0396 13.4446 13.9889C13.5664 13.9381 13.677 13.8637 13.77 13.77L15.48 12.06C15.9237 12.8817 16.066 13.8329 15.882 14.7485C15.698 15.6641 15.1995 16.4865 14.4728 17.0731C13.7461 17.6597 12.837 17.9735 11.9032 17.9602C10.9694 17.9468 10.0696 17.6071 9.36 17H10C10.2652 17 10.5196 16.8946 10.7071 16.7071C10.8946 16.5196 11 16.2652 11 16C11 15.7348 10.8946 15.4804 10.7071 15.2929C10.5196 15.1053 10.2652 15 10 15H6C5.73478 15 5.48043 15.1053 5.29289 15.2929C5.10536 15.4804 5 15.7348 5 16C5 16.2652 5.10536 16.5196 5.29289 16.7071C5.48043 16.8946 5.73478 17 6 17H6.82C7.28086 17.8019 7.92085 18.4864 8.69 19H7.5C7.23478 19 6.98043 19.1053 6.79289 19.2929C6.60536 19.4804 6.5 19.7348 6.5 20C6.5 20.2652 6.60536 20.5196 6.79289 20.7071C6.98043 20.8946 7.23478 21 7.5 21H16.5C16.7652 21 17.0196 20.8946 17.2071 20.7071C17.3946 20.5196 17.5 20.2652 17.5 20C17.5 19.7348 17.3946 19.4804 17.2071 19.2929C17.0196 19.1053 16.7652 19 16.5 19H15.31C16.1363 18.4534 16.8145 17.7108 17.2838 16.8383C17.7532 15.9658 17.9993 14.9907 18 14C17.9997 12.787 17.6261 11.6034 16.93 10.61L17.49 10.05C17.7998 9.73613 17.9972 9.32867 18.0515 8.891C18.1057 8.45333 18.0138 8.01 17.79 7.62999L19.54 5.86999C19.6806 5.94987 19.8384 5.99448 20 5.99999C20.1316 6.00075 20.2621 5.97552 20.3839 5.92576C20.5057 5.87599 20.6166 5.80267 20.71 5.70999C20.8037 5.61702 20.8781 5.50642 20.9289 5.38456C20.9797 5.2627 21.0058 5.132 21.0058 4.99999C21.0058 4.86797 20.9797 4.73727 20.9289 4.61541C20.8781 4.49355 20.8037 4.38295 20.71 4.28999Z',
|
|
2916
2932
|
viewBox: '0 0 24 24',
|
|
@@ -3396,6 +3412,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
3396
3412
|
path: 'M9 10.9805C10.93 10.9805 12.5 9.41047 12.5 7.48047C12.5 5.55047 10.93 3.98047 9 3.98047C7.07 3.98047 5.5 5.55047 5.5 7.48047C5.5 9.41047 7.07 10.9805 9 10.9805ZM19.24 3.99047H15.76C15.34 3.99047 15 4.33047 15 4.75047V9.49047C15 10.5105 15.62 11.3905 16.5 11.7805V13.1905C16.5 13.5305 16.71 13.8105 17 13.9305V18.9905H15V17.9905C15 14.6805 12.31 11.9905 9 11.9905C5.69 11.9905 3 14.6805 3 17.9905V19.9905H17.5C17.78 19.9905 18 19.7705 18 19.4905V13.9305C18.29 13.8105 18.5 13.5205 18.5 13.1905V11.7805C19.38 11.3905 20 10.5205 20 9.49047V4.75047C20 4.33047 19.66 3.99047 19.24 3.99047ZM19 6.79047C19 6.90047 18.91 6.99047 18.8 6.99047H18V7.79047C18 7.90047 17.91 7.99047 17.8 7.99047H17.2C17.09 7.99047 17 7.90047 17 7.79047V6.99047H16.2C16.09 6.99047 16 6.90047 16 6.79047V6.19047C16 6.08047 16.09 5.99047 16.2 5.99047H17V5.19047C17 5.08047 17.09 4.99047 17.2 4.99047H17.8C17.91 4.99047 18 5.08047 18 5.19047V5.99047H18.8C18.91 5.99047 19 6.08047 19 6.19047V6.79047Z',
|
|
3397
3413
|
viewBox: '0 0 24 24',
|
|
3398
3414
|
},
|
|
3415
|
+
'ic_pause': {
|
|
3416
|
+
path: 'M8.5 4C8.10218 4 7.72064 4.15804 7.43934 4.43934C7.15804 4.72064 7 5.10218 7 5.5V18.5C7 18.8978 7.15804 19.2794 7.43934 19.5607C7.72064 19.842 8.10218 20 8.5 20C8.89782 20 9.27936 19.842 9.56066 19.5607C9.84196 19.2794 10 18.8978 10 18.5V5.5C10 5.10218 9.84196 4.72064 9.56066 4.43934C9.27936 4.15804 8.89782 4 8.5 4ZM15.5 4C15.1022 4 14.7206 4.15804 14.4393 4.43934C14.158 4.72064 14 5.10218 14 5.5V18.5C14 18.8978 14.158 19.2794 14.4393 19.5607C14.7206 19.842 15.1022 20 15.5 20C15.8978 20 16.2794 19.842 16.5607 19.5607C16.842 19.2794 17 18.8978 17 18.5V5.5C17 5.10218 16.842 4.72064 16.5607 4.43934C16.2794 4.15804 15.8978 4 15.5 4Z',
|
|
3417
|
+
viewBox: '0 0 24 24',
|
|
3418
|
+
},
|
|
3399
3419
|
'ic_pause_circle': {
|
|
3400
3420
|
path: 'M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM11 15C11 15.3978 10.842 15.7794 10.5607 16.0607C10.2794 16.342 9.89783 16.5 9.5 16.5C9.10218 16.5 8.72065 16.342 8.43934 16.0607C8.15804 15.7794 8 15.3978 8 15V9C8 8.60218 8.15804 8.22064 8.43934 7.93934C8.72065 7.65804 9.10218 7.5 9.5 7.5C9.89783 7.5 10.2794 7.65804 10.5607 7.93934C10.842 8.22064 11 8.60218 11 9V15ZM16 15C16 15.3978 15.842 15.7794 15.5607 16.0607C15.2794 16.342 14.8978 16.5 14.5 16.5C14.1022 16.5 13.7206 16.342 13.4393 16.0607C13.158 15.7794 13 15.3978 13 15V9C13 8.60218 13.158 8.22064 13.4393 7.93934C13.7206 7.65804 14.1022 7.5 14.5 7.5C14.8978 7.5 15.2794 7.65804 15.5607 7.93934C15.842 8.22064 16 8.60218 16 9V15Z',
|
|
3401
3421
|
viewBox: '0 0 24 24',
|
|
@@ -3560,6 +3580,10 @@ export const iconRegistry: Record<string, { path: string, viewBox: string, fillR
|
|
|
3560
3580
|
path: 'M20.64 14.3201C20.527 14.2272 20.395 14.1603 20.2533 14.124C20.1116 14.0877 19.9637 14.083 19.82 14.1101C19.315 14.2077 18.8244 14.3689 18.36 14.5901C17.7833 14.878 17.1443 15.0188 16.5 15.0001C15.8588 15.0201 15.2227 14.8791 14.65 14.5901C14.1289 14.3358 13.5728 14.1605 13 14.0701V8.42006C16.94 7.80006 17 3.55006 17 3.50006C17 3.36745 16.9473 3.24028 16.8536 3.14651C16.7598 3.05274 16.6326 3.00006 16.5 3.00006C15.5484 2.92811 14.5988 3.16188 13.7893 3.66733C12.9799 4.17277 12.353 4.92347 12 5.81006C11.647 4.92347 11.0201 4.17277 10.2107 3.66733C9.40125 3.16188 8.45157 2.92811 7.5 3.00006C7.36739 3.00006 7.24022 3.05274 7.14645 3.14651C7.05268 3.24028 7 3.36745 7 3.50006C7 3.50006 7.06 7.80006 11 8.42006V14.0701C10.4237 14.1591 9.8641 14.3344 9.34 14.5901C8.77055 14.8783 8.13796 15.0193 7.5 15.0001C6.85267 15.0168 6.21096 14.8761 5.63 14.5901C5.16977 14.3673 4.68226 14.2059 4.18 14.1101C4.03628 14.083 3.88837 14.0877 3.74669 14.124C3.60501 14.1603 3.47301 14.2272 3.36 14.3201C3.24712 14.4141 3.15634 14.5318 3.09412 14.6649C3.0319 14.798 2.99976 14.9432 3 15.0901V20.0001C3 20.2653 3.10536 20.5196 3.29289 20.7072C3.48043 20.8947 3.73478 21.0001 4 21.0001H20C20.2652 21.0001 20.5196 20.8947 20.7071 20.7072C20.8946 20.5196 21 20.2653 21 20.0001V15.0901C21.0002 14.9432 20.9681 14.798 20.9059 14.6649C20.8437 14.5318 20.7529 14.4141 20.64 14.3201Z',
|
|
3561
3581
|
viewBox: '0 0 24 24',
|
|
3562
3582
|
},
|
|
3583
|
+
'ic_play': {
|
|
3584
|
+
path: 'M19.15 10.36L9.15 3.35997C8.81279 3.1246 8.41123 2.99889 8 2.99997C7.67872 2.99676 7.36197 3.07595 7.08 3.22997C6.75541 3.39813 6.48312 3.65203 6.29271 3.96408C6.10231 4.27614 6.00107 4.63441 6 4.99997V19C6.00107 19.3655 6.10231 19.7238 6.29271 20.0359C6.48312 20.3479 6.75541 20.6018 7.08 20.77C7.36197 20.924 7.67872 21.0032 8 21C8.41123 21.0011 8.81279 20.8753 9.15 20.64L19.15 13.64C19.4141 13.4557 19.6297 13.2103 19.7786 12.9248C19.9275 12.6393 20.0053 12.322 20.0053 12C20.0053 11.6779 19.9275 11.3607 19.7786 11.0752C19.6297 10.7896 19.4141 10.5443 19.15 10.36Z',
|
|
3585
|
+
viewBox: '0 0 24 24',
|
|
3586
|
+
},
|
|
3563
3587
|
'ic_play_circle': {
|
|
3564
3588
|
path: 'M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17317C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8079C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C22 10.6868 21.7413 9.38642 21.2388 8.17317C20.7363 6.95991 19.9997 5.85752 19.0711 4.92893C18.1425 4.00035 17.0401 3.26375 15.8268 2.7612C14.6136 2.25866 13.3132 2 12 2ZM15.66 13.1L11.42 16.37C11.1979 16.5424 10.9319 16.649 10.6522 16.6775C10.3725 16.7061 10.0904 16.6554 9.83809 16.5313C9.58579 16.4073 9.37344 16.2148 9.22525 15.9759C9.07707 15.7369 8.99902 15.4612 9 15.18V8.64C8.99902 8.35885 9.07707 8.08308 9.22525 7.84414C9.37344 7.60521 9.58579 7.41273 9.83809 7.28867C10.0904 7.1646 10.3725 7.11394 10.6522 7.14247C10.9319 7.171 11.1979 7.27756 11.42 7.45L15.66 10.72C15.8425 10.8601 15.9904 11.0402 16.0921 11.2466C16.1939 11.4529 16.2468 11.6799 16.2468 11.91C16.2468 12.1401 16.1939 12.3671 16.0921 12.5734C15.9904 12.7798 15.8425 12.9599 15.66 13.1Z',
|
|
3565
3589
|
viewBox: '0 0 24 24',
|