jfs-components 0.1.25 → 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/Carousel/Carousel.js +112 -19
- 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/NumberPagination/NumberPagination.js +144 -0
- package/lib/commonjs/components/ProfileCard/ProfileCard.js +208 -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 +21 -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/Carousel/Carousel.js +111 -19
- 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/NumberPagination/NumberPagination.js +138 -0
- package/lib/module/components/ProfileCard/ProfileCard.js +202 -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 +21 -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/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/NumberPagination/NumberPagination.d.ts +21 -0
- package/lib/typescript/src/components/ProfileCard/ProfileCard.d.ts +89 -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/Carousel/Carousel.tsx +133 -23
- 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/NumberPagination/NumberPagination.tsx +170 -0
- package/src/components/ProfileCard/ProfileCard.tsx +268 -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 +21 -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
|
@@ -39,6 +39,7 @@ export const FIGMA_MODES = {
|
|
|
39
39
|
"AppearanceBrand": ["Primary", "Secondary", "Neutral", "Tertiary"],
|
|
40
40
|
"AppearanceSystem": ["positive", "warning", "negative"],
|
|
41
41
|
"Attached / Output": ["Default"],
|
|
42
|
+
"Autoplay Control": ["Default"],
|
|
42
43
|
"Avatar / Output": ["Default"],
|
|
43
44
|
"Avatar Group / Output": ["Default"],
|
|
44
45
|
"Avatar Size": ["L", "M", "S", "XS"],
|
|
@@ -63,6 +64,7 @@ export const FIGMA_MODES = {
|
|
|
63
64
|
"Calendar Glyph / Output": ["Default"],
|
|
64
65
|
"Calendar Glyph State": ["Idle", "notSaved", "saved"],
|
|
65
66
|
"Card / Output": ["Default"],
|
|
67
|
+
"Card Apperance": ["Default", "Plain"],
|
|
66
68
|
"Card Feedback / Output": ["Default"],
|
|
67
69
|
"Card.Media": ["Default"],
|
|
68
70
|
"Card/CTA / Output": ["Default"],
|
|
@@ -71,6 +73,7 @@ export const FIGMA_MODES = {
|
|
|
71
73
|
"CardAdvisory / Output": ["Default"],
|
|
72
74
|
"cardsShared": ["Default"],
|
|
73
75
|
"Carousel / Output": ["Default"],
|
|
76
|
+
"Carousel Control Gap": ["Default"],
|
|
74
77
|
"CarouselCardAccounts / Output": ["Default"],
|
|
75
78
|
"ccCard / Output": ["Default"],
|
|
76
79
|
"checkbox / Output": ["Default"],
|
|
@@ -97,7 +100,7 @@ export const FIGMA_MODES = {
|
|
|
97
100
|
"contentInset/Right": ["Default", "S", "M", "L"],
|
|
98
101
|
"ContentSheet / Output": ["Default"],
|
|
99
102
|
"Context": ["Default", "Nudge&Alert", "CTACard", "ListItem"],
|
|
100
|
-
"context 10": ["Default", "
|
|
103
|
+
"context 10": ["Default", "jioPlus"],
|
|
101
104
|
"context 8": ["Default", "Section"],
|
|
102
105
|
"context 9": ["Default", "Stack"],
|
|
103
106
|
"Context2": ["Default", "AppBar"],
|
|
@@ -106,6 +109,7 @@ export const FIGMA_MODES = {
|
|
|
106
109
|
"context5": ["Default", "Fullscreen Modal"],
|
|
107
110
|
"context7": ["Default", "Card", "Page Hero"],
|
|
108
111
|
"Contrast Context": ["on dark", "on light"],
|
|
112
|
+
"Control Toggle ": ["Default"],
|
|
109
113
|
"Conversation Feed / Output": ["Default"],
|
|
110
114
|
"Counter Badge / Output": ["Default"],
|
|
111
115
|
"Coverage Bar Comparison / Output": ["Default"],
|
|
@@ -137,7 +141,7 @@ export const FIGMA_MODES = {
|
|
|
137
141
|
"Gap": ["S", "M", "L", "None"],
|
|
138
142
|
"Gauge / Output": ["Default"],
|
|
139
143
|
"Grid / Output": ["Default"],
|
|
140
|
-
"Handle Boolean": ["
|
|
144
|
+
"Handle Boolean": ["True", "False"],
|
|
141
145
|
"Heading / Output": ["Default"],
|
|
142
146
|
"Heading text": ["Default", "Slot"],
|
|
143
147
|
"HeroSection / Output": ["Default"],
|
|
@@ -158,7 +162,7 @@ export const FIGMA_MODES = {
|
|
|
158
162
|
"lazyList / Output": ["Default"],
|
|
159
163
|
"LinearMeter / Output": ["Default"],
|
|
160
164
|
"LinearProgress / Output": ["Default"],
|
|
161
|
-
"LinearProgress Size": ["M", "L"],
|
|
165
|
+
"LinearProgress Size": ["S", "M", "L"],
|
|
162
166
|
"Link / Output": ["Default"],
|
|
163
167
|
"Link Apperances": ["Neutral", "Primary", "Secondary", "Tertiary"],
|
|
164
168
|
"List Item / Output": ["Default"],
|
|
@@ -179,10 +183,10 @@ export const FIGMA_MODES = {
|
|
|
179
183
|
"NavArrow": ["Default"],
|
|
180
184
|
"NavArrow / Output": ["Default"],
|
|
181
185
|
"NavArrow Direction": ["Left&Right", "Top&Bottom"],
|
|
182
|
-
"New Collection": ["Default"],
|
|
183
186
|
"NoteInput / Output": ["Default"],
|
|
184
187
|
"Nudge / Output": ["Default"],
|
|
185
188
|
"Nudge padding": ["Default", "None"],
|
|
189
|
+
"number pagination": ["Default"],
|
|
186
190
|
"Numpad / Output": ["Default"],
|
|
187
191
|
"OTP / Output": ["Mode 1"],
|
|
188
192
|
"Overlay / Output": ["Mode 1"],
|
|
@@ -201,6 +205,7 @@ export const FIGMA_MODES = {
|
|
|
201
205
|
"Product Merchandising card": ["Default"],
|
|
202
206
|
"ProductLabel / Output": ["Default"],
|
|
203
207
|
"ProductOverview / Output": ["Default"],
|
|
208
|
+
"Profile Card / Output": ["Default"],
|
|
204
209
|
"Profile Card Appearance": ["Default", "Premium"],
|
|
205
210
|
"ProgressBadge / Output": ["Default"],
|
|
206
211
|
"ProjectionMarker": ["Default"],
|
|
@@ -272,6 +277,7 @@ export const FIGMA_MODES = {
|
|
|
272
277
|
"TransactionBubble / Output": ["Default"],
|
|
273
278
|
"TransationDetails / Output": ["Default"],
|
|
274
279
|
"UPI Handle / Output": ["Default"],
|
|
280
|
+
"UPI Handle Image": ["True", "False"],
|
|
275
281
|
"ValueBar / Output": ["Default"],
|
|
276
282
|
"Video / Output": ["L", "M", "S"],
|
|
277
283
|
"VStack / Output": ["Default"],
|
|
@@ -289,9 +295,10 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
289
295
|
"AccountCard": ["AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "Emphasis"],
|
|
290
296
|
"ActionFooter": ["Color Mode", "context5"],
|
|
291
297
|
"ActionTile": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "Icon Capsule Size", "Semantic Intent"],
|
|
298
|
+
"Additem": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "Icon Capsule Size", "Semantic Intent"],
|
|
292
299
|
"AllocationComparisonChart": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
293
300
|
"AmountInput": ["Color Mode", "Context3"],
|
|
294
|
-
"AppBar": ["Color Mode", "Context2", "context5", "NavArrow Direction", "Page type"],
|
|
301
|
+
"AppBar": ["Color Mode", "context 10", "Context2", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance"],
|
|
295
302
|
"AreaLineChart": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
296
303
|
"Attached": ["Color Mode"],
|
|
297
304
|
"Avatar": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
@@ -304,7 +311,7 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
304
311
|
"BrandChip": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
305
312
|
"BubbleChart": ["Appearance / DataViz", "Color Mode", "Context", "context 10", "Emphasis / DataViz", "Profile Card Appearance", "Text Appearance"],
|
|
306
313
|
"Button": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
307
|
-
"Card": ["
|
|
314
|
+
"Card": ["Card Apperance", "Color Mode", "Gap", "Page type"],
|
|
308
315
|
"CardAdvisory": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "circularProgressBar Size", "Color Mode", "Context", "context 10", "Emphasis", "Nudge padding", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
309
316
|
"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"],
|
|
310
317
|
"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"],
|
|
@@ -324,6 +331,7 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
324
331
|
"ClusterBubble": ["Appearance / DataViz", "Color Mode", "Context", "context 10", "Emphasis / DataViz", "Profile Card Appearance", "Text Appearance"],
|
|
325
332
|
"CompareTable": ["Accordion States", "AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "Emphasis", "Radius", "Selection Card Radius"],
|
|
326
333
|
"ComparisonBar": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Icon Capsule Size", "Profile Card Appearance", "Radius", "Semantic Intent"],
|
|
334
|
+
"ContentSheet": ["Color Mode", "Page type"],
|
|
327
335
|
"CoverageBarComparison": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
328
336
|
"CoverageRing": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "circularProgressBar Size", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
329
337
|
"DebitCard": ["DebitCard brand"],
|
|
@@ -338,8 +346,10 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
338
346
|
"ExpandableCheckbox": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
339
347
|
"FilterBar": ["Color Mode", "InputState"],
|
|
340
348
|
"FormField": ["Color Mode", "FormField States", "Status"],
|
|
349
|
+
"FormUpload": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Context", "Emphasis", "FormField States", "Icon Capsule Size", "Semantic Intent", "Status"],
|
|
341
350
|
"FullscreenModal": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "context5", "Emphasis", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
342
351
|
"Gauge": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "FormField States", "Semantic Intent", "Status"],
|
|
352
|
+
"Grid": ["Background", "Color Mode", "Context", "Padding", "Page type", "Slot gap"],
|
|
343
353
|
"HeroSection": ["AppearanceBrand", "Button / Size", "Button / State", "Color Mode", "context 9", "context7", "Emphasis", "FormField States", "InputState", "Page type", "Status"],
|
|
344
354
|
"HoldingsCard": ["AppearanceBrand", "Color Mode"],
|
|
345
355
|
"HStack": ["Context", "Padding", "Page type", "Slot gap"],
|
|
@@ -361,7 +371,7 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
361
371
|
"MetricLegendItem": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
362
372
|
"MoneyValue": ["Color Mode", "Context3"],
|
|
363
373
|
"MonthlyStatusGrid": ["Appearance / DataViz", "Calendar Glyph State", "Color Mode", "Emphasis / DataViz"],
|
|
364
|
-
"NavArrow": ["Color Mode", "Context2", "context5", "NavArrow Direction", "Page type"],
|
|
374
|
+
"NavArrow": ["Color Mode", "context 10", "Context2", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance"],
|
|
365
375
|
"Nudge": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Nudge padding", "Profile Card Appearance", "Semantic Intent", "Slot gap"],
|
|
366
376
|
"OTP": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "FormField States", "Input/PINSlot States", "Profile Card Appearance", "Semantic Intent", "Status"],
|
|
367
377
|
"PageHero": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
@@ -373,6 +383,7 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
373
383
|
"ProductLabel": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
374
384
|
"ProductMerchandisingCard": ["AppearanceBrand", "AppearanceSystem", "Avatar Size", "Badge Size", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context4", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
375
385
|
"ProductOverview": ["Avatar Size", "Badge Size", "Color Mode", "context 10", "Context4", "Profile Card Appearance"],
|
|
386
|
+
"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"],
|
|
376
387
|
"ProjectionMarker": ["Color Mode", "context 10", "Profile Card Appearance"],
|
|
377
388
|
"Radio": ["Color Mode"],
|
|
378
389
|
"RangeTrack": ["Appearance / DataViz", "Color Mode", "Emphasis / DataViz"],
|
|
@@ -392,7 +403,7 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
392
403
|
"Step": ["Color Mode", "Step Status"],
|
|
393
404
|
"StepLabel": ["AppearanceBrand", "AppearanceSystem", "Color Mode", "Emphasis", "Semantic Intent"],
|
|
394
405
|
"SuggestiveSearch": ["Color Mode", "Dropdown Item State", "FormField States", "Status"],
|
|
395
|
-
"SummaryTile": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Context2", "context5", "Emphasis", "NavArrow Direction", "Page type", "Profile Card Appearance", "Semantic Intent"],
|
|
406
|
+
"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"],
|
|
396
407
|
"SupportText": ["Color Mode", "FormField States", "Status"],
|
|
397
408
|
"SupportTextIcon": ["Color Mode", "FormField States", "Status"],
|
|
398
409
|
"SwappableAmount": ["AppearanceBrand", "AppearanceSystem", "Button / Size", "Button / State", "Color Mode", "Context", "context 10", "Emphasis", "Profile Card Appearance", "Semantic Intent"],
|
|
@@ -404,9 +415,9 @@ export const FIGMA_COMPONENT_MODES = {
|
|
|
404
415
|
"Title": ["Color Mode", "context7", "Page type"],
|
|
405
416
|
"Toggle": ["Color Mode", "Toggle States"],
|
|
406
417
|
"Tooltip": ["Color Mode"],
|
|
407
|
-
"TransactionBubble": ["Color Mode", "Context2", "Context3", "context5", "NavArrow Direction", "Page type", "Transaction Status"],
|
|
418
|
+
"TransactionBubble": ["Color Mode", "context 10", "Context2", "Context3", "context5", "List Item Style", "NavArrow Direction", "Page type", "Profile Card Appearance", "Transaction Status"],
|
|
408
419
|
"TransactionStatus": ["Transaction Status"],
|
|
409
|
-
"UpiHandle": ["Color Mode", "context 10", "Profile Card Appearance"],
|
|
420
|
+
"UpiHandle": ["Color Mode", "context 10", "Profile Card Appearance", "UPI Handle Image"],
|
|
410
421
|
"VStack": ["Context", "Padding", "Page type", "Slot gap"]
|
|
411
422
|
};
|
|
412
423
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconBrokenimage = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconImage = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconMic = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconMicoff = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconPause = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Svg, { Path } from 'react-native-svg';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
export const IconPlay = props => /*#__PURE__*/_jsx(Svg, {
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
...props,
|
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
|
10
|
+
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"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
@@ -172,6 +172,7 @@ export * from './IconBrightnessdisplay';
|
|
|
172
172
|
export * from './IconBrightnessfull';
|
|
173
173
|
export * from './IconBrightnesshalf';
|
|
174
174
|
export * from './IconBroadcast';
|
|
175
|
+
export * from './IconBrokenimage';
|
|
175
176
|
export * from './IconBroom';
|
|
176
177
|
export * from './IconBrush';
|
|
177
178
|
export * from './IconBuffer';
|
|
@@ -628,6 +629,7 @@ export * from './IconIce';
|
|
|
628
629
|
export * from './IconIceskating';
|
|
629
630
|
export * from './IconId';
|
|
630
631
|
export * from './IconIdcheck';
|
|
632
|
+
export * from './IconImage';
|
|
631
633
|
export * from './IconImagemask';
|
|
632
634
|
export * from './IconImport';
|
|
633
635
|
export * from './IconIncognito';
|
|
@@ -726,7 +728,9 @@ export * from './IconMerge';
|
|
|
726
728
|
export * from './IconMergeoff';
|
|
727
729
|
export * from './IconMesh';
|
|
728
730
|
export * from './IconMessagesend';
|
|
731
|
+
export * from './IconMic';
|
|
729
732
|
export * from './IconMicmuteforced';
|
|
733
|
+
export * from './IconMicoff';
|
|
730
734
|
export * from './IconMicroscope';
|
|
731
735
|
export * from './IconMilk';
|
|
732
736
|
export * from './IconMilklow';
|
|
@@ -848,6 +852,7 @@ export * from './IconPasses';
|
|
|
848
852
|
export * from './IconPaste';
|
|
849
853
|
export * from './IconPastedocument';
|
|
850
854
|
export * from './IconPatient';
|
|
855
|
+
export * from './IconPause';
|
|
851
856
|
export * from './IconPausecircle';
|
|
852
857
|
export * from './IconPaybill';
|
|
853
858
|
export * from './IconPayemiinstall';
|
|
@@ -889,6 +894,7 @@ export * from './IconPlank';
|
|
|
889
894
|
export * from './IconPlans';
|
|
890
895
|
export * from './IconPlantgrowth';
|
|
891
896
|
export * from './IconPlanting';
|
|
897
|
+
export * from './IconPlay';
|
|
892
898
|
export * from './IconPlaycircle';
|
|
893
899
|
export * from './IconPlaypause';
|
|
894
900
|
export * from './IconPlaybox';
|