@app-studio/web 0.8.17 → 0.8.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/components/Icon/Icon.d.ts +57 -0
  2. package/dist/components/Layout/Center/Center/Center.view.d.ts +2 -2
  3. package/dist/components/Layout/Horizontal/Horizontal/Horizontal.view.d.ts +2 -2
  4. package/dist/components/Layout/Horizontal/Horizontal.d.ts +2 -2
  5. package/dist/components/Layout/Vertical/Vertical/Vertical.view.d.ts +2 -2
  6. package/dist/components/Layout/View/View.d.ts +1 -1
  7. package/dist/components/index.d.ts +1 -0
  8. package/dist/pages/icon.page.d.ts +3 -0
  9. package/dist/web.cjs.development.js +1172 -595
  10. package/dist/web.cjs.development.js.map +1 -1
  11. package/dist/web.cjs.production.min.js +1 -1
  12. package/dist/web.cjs.production.min.js.map +1 -1
  13. package/dist/web.esm.js +1123 -596
  14. package/dist/web.esm.js.map +1 -1
  15. package/dist/web.umd.development.js +1174 -599
  16. package/dist/web.umd.development.js.map +1 -1
  17. package/dist/web.umd.production.min.js +1 -1
  18. package/dist/web.umd.production.min.js.map +1 -1
  19. package/package.json +2 -2
  20. package/dist/components/Svg/ArrowDown.d.ts +0 -8
  21. package/dist/components/Svg/ArrowUp.d.ts +0 -8
  22. package/dist/components/Svg/Check.d.ts +0 -8
  23. package/dist/components/Svg/Close.d.ts +0 -8
  24. package/dist/components/Svg/CloseEye.d.ts +0 -8
  25. package/dist/components/Svg/DustBin.d.ts +0 -8
  26. package/dist/components/Svg/Edit.d.ts +0 -8
  27. package/dist/components/Svg/Error.d.ts +0 -8
  28. package/dist/components/Svg/ExternalLink.d.ts +0 -8
  29. package/dist/components/Svg/Indeterminate.d.ts +0 -8
  30. package/dist/components/Svg/Info.d.ts +0 -8
  31. package/dist/components/Svg/OpenEye.d.ts +0 -8
  32. package/dist/components/Svg/Plus.d.ts +0 -8
  33. package/dist/components/Svg/Profile.d.ts +0 -8
  34. package/dist/components/Svg/RightArrow.d.ts +0 -8
  35. package/dist/components/Svg/Search.d.ts +0 -8
  36. package/dist/components/Svg/Success.d.ts +0 -8
  37. package/dist/components/Svg/Tick.d.ts +0 -8
  38. package/dist/components/Svg/Warning.d.ts +0 -8
  39. package/dist/components/Svg/index.d.ts +0 -16
package/dist/web.esm.js CHANGED
@@ -9,9 +9,11 @@ import { Link as Link$1 } from 'react-router-dom';
9
9
  import 'core-js/modules/es.array.includes.js';
10
10
  import 'core-js/modules/es.string.includes.js';
11
11
  import 'core-js/modules/es.string.starts-with.js';
12
+ import { ChevronIcon as ChevronIcon$1, SearchIcon as SearchIcon$1, TickIcon as TickIcon$1 } from 'src/components/Icon/Icon';
12
13
  import format from 'date-fns/format';
13
14
  import { useFormikContext, getIn } from 'formik';
14
15
  import { create } from 'zustand';
16
+ import { Vertical as Vertical$1 } from 'src/components/Layout';
15
17
 
16
18
  var Top = props => (/*#__PURE__*/React.createElement(View$1, Object.assign({
17
19
  marginBottom: "auto"
@@ -43,33 +45,33 @@ function _objectWithoutPropertiesLoose(r, e) {
43
45
 
44
46
  var HeadingSizes = {
45
47
  h1: {
46
- fontSize: 96,
47
- lineHeight: 112,
48
- letterSpacing: -1.5
49
- },
50
- h2: {
51
48
  fontSize: 60,
52
49
  lineHeight: 71,
53
50
  letterSpacing: -0.5
54
51
  },
55
- h3: {
52
+ h2: {
56
53
  fontSize: 48,
57
54
  lineHeight: 57,
58
55
  letterSpacing: 0
59
56
  },
60
- h4: {
57
+ h3: {
61
58
  fontSize: 34,
62
59
  lineHeight: 40,
63
60
  letterSpacing: 0.25
64
61
  },
65
- h5: {
62
+ h4: {
66
63
  fontSize: 24,
67
64
  lineHeight: 28,
68
65
  letterSpacing: 0
69
66
  },
67
+ h5: {
68
+ fontSize: 18,
69
+ lineHeight: 22,
70
+ letterSpacing: 0.15
71
+ },
70
72
  h6: {
71
- fontSize: 20,
72
- lineHeight: 24,
73
+ fontSize: 14,
74
+ lineHeight: 18,
73
75
  letterSpacing: 0.15
74
76
  }
75
77
  };
@@ -164,12 +166,11 @@ var TextComponent = props => {
164
166
  var Text = TextComponent;
165
167
 
166
168
  var _excluded$1 = ["justifyContent", "isReversed"];
167
- // Defines the functional component VerticalView with props specified by VerticalProps
168
- var VerticalView = _ref => {
169
+ var VerticalView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
169
170
  var {
170
- // Sets a default alignment for content within the vertical container to 'flex-start'
171
+ // Sets a default alignment for content within the Vertical container to 'flex-start'
171
172
  justifyContent = 'flex-start',
172
- // Determines the direction in which the vertical elements are stacked, default not reversed
173
+ // Determines the direction in which the Vertical elements are stacked, default not reversed
173
174
  isReversed = false
174
175
  } = _ref,
175
176
  props = _objectWithoutPropertiesLoose(_ref, _excluded$1);
@@ -177,447 +178,1029 @@ var VerticalView = _ref => {
177
178
  display: "flex",
178
179
  justifyContent: justifyContent,
179
180
  flexDirection: isReversed ? 'column-reverse' : 'column'
180
- }, props));
181
- };
181
+ }, props, {
182
+ ref: ref
183
+ }));
184
+ });
185
+ VerticalView.displayName = 'VerticalView';
182
186
 
183
- // Defines the VerticalComponent as a functional component with VerticalProps as its props signature.
184
- var VerticalComponent = props => (
185
- /*#__PURE__*/
186
- // Renders the VerticalView component, passing all of the received props through to it.
187
- React.createElement(VerticalView, Object.assign({}, props)));
188
- // Exports the VerticalComponent as Vertical for use in other parts of the application.
189
- var Vertical = VerticalComponent;
187
+ var Vertical = props => (/*#__PURE__*/React.createElement(VerticalView, Object.assign({}, props)));
190
188
 
191
- // Defines a functional component 'HorizontalComponent' utilizing 'ViewProps'. It leverages flexbox to create a horizontal view, which can be reversed based on a prop.
192
- var HorizontalComponent = props => (/*#__PURE__*/React.createElement(View$1, Object.assign({
193
- display: "flex",
194
- flexDirection: props.isReversed ? 'row-reverse' : 'row'
195
- }, props)));
196
- // Exports the HorizontalComponent as 'Horizontal', making it available for use in other parts of the application.
197
- var Horizontal = HorizontalComponent;
189
+ var _excluded$2 = ["justifyContent", "isReversed"];
190
+ var HorizontalView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
191
+ var {
192
+ // Sets a default alignment for content within the Horizontal container to 'flex-start'
193
+ justifyContent = 'flex-start',
194
+ // Determines the direction in which the Horizontal elements are stacked, default not reversed
195
+ isReversed = false
196
+ } = _ref,
197
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
198
+ return /*#__PURE__*/React.createElement(View$1, Object.assign({
199
+ display: "flex",
200
+ justifyContent: justifyContent,
201
+ flexDirection: isReversed ? 'row-reverse' : 'row'
202
+ }, props, {
203
+ ref: ref
204
+ }));
205
+ });
206
+ HorizontalView.displayName = 'Horizontal';
198
207
 
199
- // Defines a React Functional Component named CenterView which centers its children both horizontally and vertically using flexbox.
200
- var CenterView = props => (
201
- /*#__PURE__*/
202
- // Renders a 'View' component with display flex and center alignment applied on both axes, passing all received props.
203
- React.createElement(View$1, Object.assign({
204
- display: "flex",
205
- justifyContent: "center",
206
- alignItems: "center"
207
- }, props)));
208
+ var Horizontal = props => (/*#__PURE__*/React.createElement(HorizontalView, Object.assign({}, props)));
208
209
 
209
- // Defines a functional component named CenterComponent utilizing React's functional component structure, which expects props of the CenterProps type.
210
- var CenterComponent = props => (
211
- /*#__PURE__*/
212
- // Renders the CenterView component, passing down all the props received by the CenterComponent.
213
- React.createElement(CenterView, Object.assign({}, props)));
214
- // Exports CenterComponent as Center, making it available for use in other parts of the application.
215
- var Center = CenterComponent;
210
+ var _excluded$3 = ["isReversed"];
211
+ var CenterView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
212
+ var props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
213
+ return /*#__PURE__*/React.createElement(View$1, Object.assign({
214
+ display: "flex",
215
+ justifyContent: "center",
216
+ alignItems: "center"
217
+ }, props, {
218
+ ref: ref
219
+ }));
220
+ });
221
+ CenterView.displayName = 'Center';
222
+
223
+ var Center = props => (/*#__PURE__*/React.createElement(CenterView, Object.assign({}, props)));
216
224
 
217
- var _excluded$2 = ["size", "color"];
218
- var ArrowDownSvg = _ref => {
225
+ var _excluded$4 = ["size", "color"],
226
+ _excluded2 = ["size", "color"],
227
+ _excluded3 = ["size", "color"],
228
+ _excluded4 = ["size", "color"],
229
+ _excluded5 = ["size", "color"],
230
+ _excluded6 = ["size", "color"],
231
+ _excluded7 = ["size", "color"],
232
+ _excluded8 = ["size", "color"],
233
+ _excluded9 = ["size", "color"],
234
+ _excluded10 = ["size", "color"],
235
+ _excluded11 = ["size", "color"],
236
+ _excluded12 = ["size", "color"],
237
+ _excluded13 = ["size", "color"],
238
+ _excluded14 = ["size", "color"],
239
+ _excluded15 = ["size", "color"],
240
+ _excluded16 = ["size", "color"],
241
+ _excluded17 = ["size", "color"],
242
+ _excluded18 = ["size", "color"],
243
+ _excluded19 = ["size", "color"],
244
+ _excluded20 = ["size", "color"],
245
+ _excluded21 = ["size", "color"],
246
+ _excluded22 = ["size", "color"],
247
+ _excluded23 = ["size", "color"],
248
+ _excluded24 = ["size", "color"],
249
+ _excluded25 = ["size", "color"],
250
+ _excluded26 = ["size", "color"],
251
+ _excluded27 = ["size", "color"],
252
+ _excluded28 = ["size", "color"],
253
+ _excluded29 = ["size", "color"],
254
+ _excluded30 = ["size", "color"],
255
+ _excluded31 = ["size", "color"],
256
+ _excluded32 = ["size", "color"],
257
+ _excluded33 = ["size", "color"],
258
+ _excluded34 = ["size", "color"],
259
+ _excluded35 = ["size", "color"],
260
+ _excluded36 = ["size", "color"],
261
+ _excluded37 = ["size", "color"],
262
+ _excluded38 = ["size", "color"],
263
+ _excluded39 = ["size", "color"],
264
+ _excluded40 = ["size", "color"],
265
+ _excluded41 = ["size", "color"],
266
+ _excluded42 = ["size", "color"],
267
+ _excluded43 = ["size", "color"],
268
+ _excluded44 = ["size", "color"],
269
+ _excluded45 = ["size", "color"],
270
+ _excluded46 = ["size", "color"],
271
+ _excluded47 = ["size", "color"],
272
+ _excluded48 = ["size", "color"],
273
+ _excluded49 = ["size", "color"],
274
+ _excluded50 = ["size", "color"];
275
+ // Default wrapper component for consistent sizing
276
+ var IconWrapper = _ref => {
219
277
  var {
220
- size = 64,
221
- color = 'white'
222
- } = _ref,
223
- props = _objectWithoutPropertiesLoose(_ref, _excluded$2);
278
+ size,
279
+ color = 'black',
280
+ transform,
281
+ orientation,
282
+ children
283
+ } = _ref;
224
284
  return /*#__PURE__*/React.createElement(Center, {
225
- width: size + "px",
226
- height: size + "px"
227
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
228
- viewBox: "0 -4.5 20 20",
229
- version: "1.1",
230
- fill: "#000000"
231
- }, props), /*#__PURE__*/React.createElement("g", {
232
- id: "SVGRepo_bgCarrier",
233
- strokeWidth: "0"
234
- }), /*#__PURE__*/React.createElement("g", {
235
- id: "SVGRepo_tracerCarrier",
285
+ size: size,
286
+ lineHeight: size,
287
+ color: color,
288
+ display: "flex",
289
+ transform: transform ? transform : orientation == 'left' ? 'rotate(-90deg)' : orientation == 'right' ? 'rotate(90deg)' : orientation == 'up' ? 'rotate(0deg)' : orientation == 'down' ? 'rotate(180deg)' : 'none'
290
+ }, children);
291
+ };
292
+ var ChevronIcon = _ref2 => {
293
+ var {
294
+ size = 24,
295
+ color = 'currentColor'
296
+ } = _ref2,
297
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded$4);
298
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
299
+ size: size,
300
+ color: color
301
+ }, props), /*#__PURE__*/React.createElement("svg", {
302
+ width: "16",
303
+ height: "16",
304
+ fill: "currentColor",
305
+ viewBox: "0 0 24 24"
306
+ }, /*#__PURE__*/React.createElement("path", {
307
+ d: "M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"
308
+ })));
309
+ };
310
+ var CheckIcon = _ref3 => {
311
+ var {
312
+ size = 24,
313
+ color = 'currentColor'
314
+ } = _ref3,
315
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
316
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
317
+ size: size,
318
+ color: color
319
+ }, props), /*#__PURE__*/React.createElement("svg", {
320
+ viewBox: "0 0 24 24",
321
+ fill: "none",
322
+ stroke: 'currentColor',
323
+ strokeWidth: "1"
324
+ }, /*#__PURE__*/React.createElement("path", {
325
+ d: "M17.0001 9L10 16L7 13",
236
326
  strokeLinecap: "round",
237
327
  strokeLinejoin: "round"
238
- }), /*#__PURE__*/React.createElement("g", {
239
- id: "SVGRepo_iconCarrier"
240
- }, /*#__PURE__*/React.createElement("title", null, "arrow_down [#338]"), " ", /*#__PURE__*/React.createElement("desc", null, "Created with Sketch."), /*#__PURE__*/React.createElement("defs", null, " "), /*#__PURE__*/React.createElement("g", {
241
- id: "Page-1",
242
- stroke: "none",
243
- strokeWidth: "1",
328
+ })));
329
+ };
330
+ var CloseIcon = _ref4 => {
331
+ var {
332
+ size = 24,
333
+ color = 'currentColor'
334
+ } = _ref4,
335
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
336
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
337
+ size: size,
338
+ color: color
339
+ }, props), /*#__PURE__*/React.createElement("svg", {
340
+ viewBox: "0 0 24 24",
341
+ fill: 'currentColor'
342
+ }, /*#__PURE__*/React.createElement("path", {
343
+ d: "M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"
344
+ })));
345
+ };
346
+ var CloseEyeIcon = _ref5 => {
347
+ var {
348
+ size = 24,
349
+ color = 'currentColor'
350
+ } = _ref5,
351
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
352
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
353
+ size: size,
354
+ color: color
355
+ }, props), /*#__PURE__*/React.createElement("svg", {
356
+ viewBox: "0 0 24 24",
357
+ fill: color,
358
+ xmlns: "http://www.w3.org/2000/svg"
359
+ }, /*#__PURE__*/React.createElement("path", {
360
+ d: "M19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L14.032 8.55382C13.4365 8.20193 12.7418 8 12 8C9.79086 8 8 9.79086 8 12C8 12.7418 8.20193 13.4365 8.55382 14.032L4.29289 18.2929C3.90237 18.6834 3.90237 19.3166 4.29289 19.7071C4.68342 20.0976 5.31658 20.0976 5.70711 19.7071L9.96803 15.4462C10.5635 15.7981 11.2582 16 12 16C14.2091 16 16 14.2091 16 12C16 11.2582 15.7981 10.5635 15.4462 9.96803L19.7071 5.70711ZM12.518 10.0677C12.3528 10.0236 12.1792 10 12 10C10.8954 10 10 10.8954 10 12C10 12.1792 10.0236 12.3528 10.0677 12.518L12.518 10.0677ZM11.482 13.9323L13.9323 11.482C13.9764 11.6472 14 11.8208 14 12C14 13.1046 13.1046 14 12 14C11.8208 14 11.6472 13.9764 11.482 13.9323ZM15.7651 4.8207C14.6287 4.32049 13.3675 4 12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C1.92276 13.7326 2.86706 15.0637 4.21194 16.3739L5.62626 14.9596C4.4555 13.8229 3.61144 12.6531 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C12.7719 6 13.5135 6.13385 14.2193 6.36658L15.7651 4.8207ZM12 18C11.2282 18 10.4866 17.8661 9.78083 17.6334L8.23496 19.1793C9.37136 19.6795 10.6326 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C22.0773 10.2674 21.133 8.93627 19.7881 7.62611L18.3738 9.04043C19.5446 10.1771 20.3887 11.3469 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18Z",
361
+ fill: "currentColor"
362
+ })));
363
+ };
364
+ var DustBinIcon = _ref6 => {
365
+ var {
366
+ size = 24,
367
+ color = 'currentColor'
368
+ } = _ref6,
369
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
370
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
371
+ size: size,
372
+ color: color
373
+ }, props), /*#__PURE__*/React.createElement("svg", {
374
+ viewBox: "0 0 24 24",
375
+ fill: 'currentColor'
376
+ }, /*#__PURE__*/React.createElement("path", {
377
+ d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
378
+ })));
379
+ };
380
+ var EditIcon = _ref7 => {
381
+ var {
382
+ size = 24,
383
+ color = 'currentColor'
384
+ } = _ref7,
385
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
386
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
387
+ size: size,
388
+ color: color
389
+ }, props), /*#__PURE__*/React.createElement("svg", {
390
+ viewBox: "0 0 24 24",
244
391
  fill: "none",
245
- fillRule: "evenodd"
246
- }, /*#__PURE__*/React.createElement("g", {
247
- id: "Dribbble-Light-Preview",
248
- transform: "translate(-220.000000, -6684.000000)",
249
- fill: "#000000"
250
- }, /*#__PURE__*/React.createElement("g", {
251
- id: "icons",
252
- transform: "translate(56.000000, 160.000000)"
392
+ stroke: 'currentColor',
393
+ strokeWidth: "1"
253
394
  }, /*#__PURE__*/React.createElement("path", {
254
- d: "M164.292308,6524.36583 L164.292308,6524.36583 C163.902564,6524.77071 163.902564,6525.42619 164.292308,6525.83004 L172.555873,6534.39267 C173.33636,6535.20244 174.602528,6535.20244 175.383014,6534.39267 L183.70754,6525.76791 C184.093286,6525.36716 184.098283,6524.71997 183.717533,6524.31405 C183.328789,6523.89985 182.68821,6523.89467 182.29347,6524.30266 L174.676479,6532.19636 C174.285736,6532.60124 173.653152,6532.60124 173.262409,6532.19636 L165.705379,6524.36583 C165.315635,6523.96094 164.683051,6523.96094 164.292308,6524.36583",
255
- id: "arrow_down-[#338]"
256
- })))))));
395
+ d: "M18.3785 8.44975L8.9636 17.8648C8.6844 18.144 8.3288 18.3343 7.94161 18.4117L4.99988 19.0001L5.58823 16.0583C5.66566 15.6711 5.85597 15.3155 6.13517 15.0363L15.5501 5.62132M18.3785 8.44975L19.7927 7.03553C20.1832 6.64501 20.1832 6.01184 19.7927 5.62132L18.3785 4.20711C17.988 3.81658 17.3548 3.81658 16.9643 4.20711L15.5501 5.62132M18.3785 8.44975L15.5501 5.62132"
396
+ })));
257
397
  };
258
-
259
- var _excluded$3 = ["size", "color"];
260
- var ArrowUpSvg = _ref => {
398
+ var ExternalLinkIcon = _ref8 => {
261
399
  var {
262
- size = 64,
263
- color = 'white'
264
- } = _ref,
265
- props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
266
- return /*#__PURE__*/React.createElement(Center, {
267
- width: size + "px",
268
- height: size + "px"
269
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
270
- width: size + "px",
271
- height: size + "px",
272
- viewBox: "0 -4.5 20 20",
273
- version: "1.1",
274
- fill: "#000000"
275
- }, props), /*#__PURE__*/React.createElement("g", {
276
- id: "SVGRepo_bgCarrier",
277
- strokeWidth: "0"
278
- }), /*#__PURE__*/React.createElement("g", {
279
- id: "SVGRepo_tracerCarrier",
400
+ size = 24,
401
+ color = 'currentColor'
402
+ } = _ref8,
403
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
404
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
405
+ size: size,
406
+ color: color
407
+ }, props), /*#__PURE__*/React.createElement("svg", {
408
+ viewBox: "0 0 24 24",
409
+ fill: 'currentColor'
410
+ }, /*#__PURE__*/React.createElement("path", {
411
+ d: "M14 3h7v7h-2V5.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h5v2H6v11h11v-4h2v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Z"
412
+ })));
413
+ };
414
+ var MinusIcon = _ref9 => {
415
+ var {
416
+ size = 24,
417
+ color = 'currentColor'
418
+ } = _ref9,
419
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
420
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
421
+ padding: 2,
422
+ size: size,
423
+ color: color
424
+ }, props), /*#__PURE__*/React.createElement("svg", {
425
+ viewBox: "0 0 24 24",
426
+ fill: "none",
427
+ stroke: 'currentColor',
428
+ strokeWidth: "2"
429
+ }, /*#__PURE__*/React.createElement("path", {
430
+ d: "M7 12h10",
280
431
  strokeLinecap: "round",
281
432
  strokeLinejoin: "round"
282
- }), /*#__PURE__*/React.createElement("g", {
283
- id: "SVGRepo_iconCarrier"
284
- }, /*#__PURE__*/React.createElement("title", null, "arrow_up [#337]"), " ", /*#__PURE__*/React.createElement("desc", null, "Created with Sketch."), /*#__PURE__*/React.createElement("defs", null, " "), /*#__PURE__*/React.createElement("g", {
285
- id: "Page-1",
286
- stroke: "none",
287
- strokeWidth: "1",
288
- fill: "none",
289
- fillRule: "evenodd"
290
- }, /*#__PURE__*/React.createElement("g", {
291
- id: "Dribbble-Light-Preview",
292
- transform: "translate(-260.000000, -6684.000000)",
293
- fill: "#000000"
294
- }, /*#__PURE__*/React.createElement("g", {
295
- id: "icons",
296
- transform: "translate(56.000000, 160.000000)"
433
+ })));
434
+ };
435
+ var InfoIcon = _ref10 => {
436
+ var {
437
+ size = 24,
438
+ color = 'currentColor'
439
+ } = _ref10,
440
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
441
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
442
+ size: size,
443
+ color: color
444
+ }, props), /*#__PURE__*/React.createElement("svg", {
445
+ viewBox: "0 0 24 24",
446
+ fill: 'currentColor'
297
447
  }, /*#__PURE__*/React.createElement("path", {
298
- d: "M223.707692,6534.63378 L223.707692,6534.63378 C224.097436,6534.22888 224.097436,6533.57338 223.707692,6533.16951 L215.444127,6524.60657 C214.66364,6523.79781 213.397472,6523.79781 212.616986,6524.60657 L204.29246,6533.23165 C203.906714,6533.6324 203.901717,6534.27962 204.282467,6534.68555 C204.671211,6535.10081 205.31179,6535.10495 205.70653,6534.69695 L213.323521,6526.80297 C213.714264,6526.39807 214.346848,6526.39807 214.737591,6526.80297 L222.294621,6534.63378 C222.684365,6535.03868 223.317949,6535.03868 223.707692,6534.63378",
299
- id: "arrow_up-[#337]"
300
- })))))));
448
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
449
+ })));
301
450
  };
302
-
303
- var _excluded$4 = ["size", "color"];
304
- var CheckSvg = _ref => {
451
+ var OpenEyeIcon = _ref11 => {
305
452
  var {
306
- size = 64,
307
- color = 'white'
308
- } = _ref,
309
- props = _objectWithoutPropertiesLoose(_ref, _excluded$4);
310
- return /*#__PURE__*/React.createElement(Center, {
311
- width: size + "px",
312
- height: size + "px"
313
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
314
- width: size + "px",
315
- height: size + "px",
453
+ size = 24,
454
+ color = 'currentColor'
455
+ } = _ref11,
456
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
457
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
458
+ size: size,
459
+ color: color
460
+ }, props), /*#__PURE__*/React.createElement("svg", {
461
+ viewBox: "0 0 24 24",
462
+ fill: 'currentColor'
463
+ }, /*#__PURE__*/React.createElement("path", {
464
+ d: "M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
465
+ })));
466
+ };
467
+ var PlusIcon = _ref12 => {
468
+ var {
469
+ size = 24,
470
+ color = 'currentColor'
471
+ } = _ref12,
472
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
473
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
474
+ size: size,
475
+ color: color
476
+ }, props), /*#__PURE__*/React.createElement("svg", {
477
+ viewBox: "0 0 24 24",
478
+ fill: 'currentColor'
479
+ }, /*#__PURE__*/React.createElement("path", {
480
+ d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
481
+ })));
482
+ };
483
+ var SpinnerIcon = _ref13 => {
484
+ var {
485
+ size = 24,
486
+ color = 'currentColor'
487
+ } = _ref13,
488
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
489
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
490
+ size: size,
491
+ color: color
492
+ }, props), /*#__PURE__*/React.createElement("svg", {
316
493
  viewBox: "0 0 24 24",
317
494
  fill: "none",
318
495
  xmlns: "http://www.w3.org/2000/svg"
319
- }, props), /*#__PURE__*/React.createElement("g", {
320
- id: "SVGRepo_bgCarrier",
321
- strokeWidth: "0"
322
- }), /*#__PURE__*/React.createElement("g", {
323
- id: "SVGRepo_tracerCarrier",
324
- strokeLinecap: "round",
325
- strokeLinejoin: "round",
326
- stroke: "#CCCCCC",
327
- strokeWidth: "0.048"
328
- }), /*#__PURE__*/React.createElement("g", {
329
- id: "SVGRepo_iconCarrier"
330
- }, /*#__PURE__*/React.createElement("path", {
331
- d: "M17.0001 9L10 16L7 13",
496
+ }, /*#__PURE__*/React.createElement("circle", {
497
+ cx: "12",
498
+ cy: "12",
499
+ r: "10",
332
500
  stroke: color,
333
- strokeWidth: "1.5",
334
- strokeLinecap: "round",
335
- strokeLinejoin: "round"
336
- }))));
501
+ strokeWidth: "2",
502
+ opacity: "0.3"
503
+ }), /*#__PURE__*/React.createElement("path", {
504
+ d: "M22 12a10 10 0 1 1-4.93-8.62",
505
+ stroke: color,
506
+ strokeWidth: "2",
507
+ strokeLinecap: "round"
508
+ })));
337
509
  };
338
-
339
- var _excluded$5 = ["size", "color"];
340
- var CloseSvg = _ref => {
510
+ var ProfileIcon = _ref14 => {
341
511
  var {
342
- size = 64,
343
- color = 'white'
344
- } = _ref,
345
- props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
346
- return /*#__PURE__*/React.createElement(Center, {
347
- width: size + "px",
348
- height: size + "px"
349
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
350
- width: size + "px",
351
- height: size + "px",
352
- viewBox: "0 0 1024 1024",
353
- xmlns: "http://www.w3.org/2000/svg",
354
- fill: "#000000"
355
- }, props), /*#__PURE__*/React.createElement("g", {
356
- id: "SVGRepo_bgCarrier",
357
- strokeWidth: "0"
358
- }), /*#__PURE__*/React.createElement("g", {
359
- id: "SVGRepo_tracerCarrier",
512
+ size = 24,
513
+ color = 'currentColor'
514
+ } = _ref14,
515
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
516
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
517
+ size: size,
518
+ color: color
519
+ }, props), /*#__PURE__*/React.createElement("svg", {
520
+ viewBox: "0 0 24 24",
521
+ fill: 'currentColor'
522
+ }, /*#__PURE__*/React.createElement("path", {
523
+ fill: "currentColor",
524
+ d: "M12 13c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm0-9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z M12 2C9.79 2 8 3.79 8 6s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"
525
+ })));
526
+ };
527
+ var ArrowIcon = _ref15 => {
528
+ var {
529
+ size = 24,
530
+ color = 'currentColor'
531
+ } = _ref15,
532
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
533
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
534
+ size: size,
535
+ color: color
536
+ }, props), /*#__PURE__*/React.createElement("svg", {
537
+ viewBox: "0 0 24 24",
538
+ fill: 'currentColor'
539
+ }, /*#__PURE__*/React.createElement("path", {
540
+ d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
541
+ })));
542
+ };
543
+ var SearchIcon = _ref16 => {
544
+ var {
545
+ size = 24,
546
+ color = 'currentColor'
547
+ } = _ref16,
548
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded15);
549
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
550
+ size: size,
551
+ color: color
552
+ }, props), /*#__PURE__*/React.createElement("svg", {
553
+ viewBox: "0 0 24 24",
554
+ fill: 'currentColor'
555
+ }, /*#__PURE__*/React.createElement("path", {
556
+ d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
557
+ })));
558
+ };
559
+ var SuccessIcon = _ref17 => {
560
+ var {
561
+ size = 24,
562
+ color = 'currentColor'
563
+ } = _ref17,
564
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded16);
565
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
566
+ size: size,
567
+ color: color
568
+ }, props), /*#__PURE__*/React.createElement("svg", {
569
+ viewBox: "0 0 24 24",
570
+ fill: 'currentColor'
571
+ }, /*#__PURE__*/React.createElement("path", {
572
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
573
+ })));
574
+ };
575
+ var TickIcon = _ref18 => {
576
+ var {
577
+ size = 24,
578
+ color = 'currentColor'
579
+ } = _ref18,
580
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded17);
581
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
582
+ size: size,
583
+ color: color
584
+ }, props), /*#__PURE__*/React.createElement("svg", {
585
+ viewBox: "0 0 24 24",
586
+ fill: "none",
587
+ stroke: 'currentColor',
588
+ strokeWidth: "2"
589
+ }, /*#__PURE__*/React.createElement("path", {
590
+ d: "M5 13l4 4L19 7",
360
591
  strokeLinecap: "round",
361
592
  strokeLinejoin: "round"
362
- }), /*#__PURE__*/React.createElement("g", {
363
- id: "SVGRepo_iconCarrier"
593
+ })));
594
+ };
595
+ var NotificationIcon = _ref19 => {
596
+ var {
597
+ size = 24,
598
+ color = 'currentColor'
599
+ } = _ref19,
600
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded18);
601
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
602
+ size: size,
603
+ color: color
604
+ }, props), /*#__PURE__*/React.createElement("svg", {
605
+ viewBox: "0 0 24 24",
606
+ fill: "none",
607
+ stroke: 'currentColor',
608
+ strokeWidth: "1"
364
609
  }, /*#__PURE__*/React.createElement("path", {
365
- fill: color,
366
- d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
367
- }))));
610
+ d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"
611
+ })));
612
+ };
613
+ var SettingsIcon = _ref20 => {
614
+ var {
615
+ size = 24,
616
+ color = 'currentColor'
617
+ } = _ref20,
618
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded19);
619
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
620
+ size: size,
621
+ color: color
622
+ }, props), /*#__PURE__*/React.createElement("svg", {
623
+ viewBox: "0 0 24 24",
624
+ fill: "none",
625
+ stroke: 'currentColor',
626
+ strokeWidth: "1"
627
+ }, /*#__PURE__*/React.createElement("path", {
628
+ d: "M19.4 13c0-.3.1-.6.1-1s0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.2-.4-.3-.6-.2l-2.5 1c-.5-.4-1.1-.7-1.7-.9l-.4-2.6c0-.2-.3-.4-.5-.4h-4c-.2 0-.5.2-.5.4l-.4 2.6c-.6.2-1.2.5-1.7.9l-2.5-1c-.2-.1-.5 0-.6.2l-2 3.5c-.1.2-.1.4.1.6L4.6 11c0 .3-.1.6-.1 1s0 .7.1 1l-2.1 1.6c-.2.2-.2.4-.1.6l2 3.5c.1.2.4.3.6.2l2.5-1c.5.4 1.1.7 1.7.9l.4 2.6c0 .2.3.4.5.4h4c.2 0 .5-.2.5-.4l.4-2.6c.6-.2 1.2-.5 1.7-.9l2.5 1c.2.1.5 0 .6-.2l2-3.5c.1-.2.1-.4-.1-.6L19.4 13zM12 15.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"
629
+ })));
630
+ };
631
+ var CalendarIcon = _ref21 => {
632
+ var {
633
+ size = 24,
634
+ color = 'currentColor'
635
+ } = _ref21,
636
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
637
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
638
+ size: size,
639
+ color: color
640
+ }, props), /*#__PURE__*/React.createElement("svg", {
641
+ viewBox: "0 0 24 24",
642
+ fill: "none",
643
+ stroke: 'currentColor',
644
+ strokeWidth: "1"
645
+ }, /*#__PURE__*/React.createElement("path", {
646
+ d: "M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"
647
+ })));
648
+ };
649
+ var AddIcon = _ref22 => {
650
+ var {
651
+ size = 24,
652
+ color = 'currentColor'
653
+ } = _ref22,
654
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
655
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
656
+ size: size,
657
+ color: color
658
+ }, props), /*#__PURE__*/React.createElement("svg", {
659
+ width: "16",
660
+ height: "16",
661
+ fill: "currentColor",
662
+ viewBox: "0 0 24 24"
663
+ }, /*#__PURE__*/React.createElement("path", {
664
+ d: "M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"
665
+ })));
666
+ };
667
+ var DownloadIcon = _ref23 => {
668
+ var {
669
+ size = 24,
670
+ color = 'currentColor'
671
+ } = _ref23,
672
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
673
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
674
+ size: size,
675
+ color: color
676
+ }, props), /*#__PURE__*/React.createElement("svg", {
677
+ viewBox: "0 0 24 24",
678
+ fill: "none",
679
+ stroke: 'currentColor',
680
+ strokeWidth: "1"
681
+ }, /*#__PURE__*/React.createElement("path", {
682
+ d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
683
+ })));
684
+ };
685
+ var UploadIcon = _ref24 => {
686
+ var {
687
+ size = 24,
688
+ color = 'currentColor'
689
+ } = _ref24,
690
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
691
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
692
+ size: size,
693
+ color: color
694
+ }, props), /*#__PURE__*/React.createElement("svg", {
695
+ viewBox: "0 0 24 24",
696
+ fill: "none",
697
+ stroke: 'currentColor',
698
+ strokeWidth: "1"
699
+ }, /*#__PURE__*/React.createElement("path", {
700
+ d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z"
701
+ })));
702
+ };
703
+ var BookmarkIcon = _ref25 => {
704
+ var {
705
+ size = 24,
706
+ color = 'currentColor'
707
+ } = _ref25,
708
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
709
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
710
+ size: size,
711
+ color: color
712
+ }, props), /*#__PURE__*/React.createElement("svg", {
713
+ viewBox: "0 0 24 24",
714
+ fill: "none",
715
+ stroke: 'currentColor',
716
+ strokeWidth: "1"
717
+ }, /*#__PURE__*/React.createElement("path", {
718
+ d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
719
+ })));
720
+ };
721
+ var HomeIcon = _ref26 => {
722
+ var {
723
+ size = 24,
724
+ color = 'currentColor'
725
+ } = _ref26,
726
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
727
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
728
+ size: size,
729
+ color: color
730
+ }, props), /*#__PURE__*/React.createElement("svg", {
731
+ viewBox: "0 0 24 24",
732
+ fill: "none",
733
+ stroke: 'currentColor',
734
+ strokeWidth: "1"
735
+ }, /*#__PURE__*/React.createElement("path", {
736
+ d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
737
+ })));
738
+ };
739
+ var MenuIcon = _ref27 => {
740
+ var {
741
+ size = 24,
742
+ color = 'currentColor'
743
+ } = _ref27,
744
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
745
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
746
+ size: size,
747
+ color: color
748
+ }, props), /*#__PURE__*/React.createElement("svg", {
749
+ viewBox: "0 0 24 24",
750
+ fill: "none",
751
+ stroke: 'currentColor',
752
+ strokeWidth: "1"
753
+ }, /*#__PURE__*/React.createElement("path", {
754
+ d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"
755
+ })));
756
+ };
757
+ var ShareIcon = _ref28 => {
758
+ var {
759
+ size = 24,
760
+ color = 'currentColor'
761
+ } = _ref28,
762
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
763
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
764
+ size: size,
765
+ color: color
766
+ }, props), /*#__PURE__*/React.createElement("svg", {
767
+ viewBox: "0 0 24 24",
768
+ fill: "none",
769
+ stroke: 'currentColor',
770
+ strokeWidth: "1"
771
+ }, /*#__PURE__*/React.createElement("path", {
772
+ d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
773
+ })));
774
+ };
775
+ var FilterIcon = _ref29 => {
776
+ var {
777
+ size = 24,
778
+ color = 'currentColor'
779
+ } = _ref29,
780
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
781
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
782
+ size: size,
783
+ color: color
784
+ }, props), /*#__PURE__*/React.createElement("svg", {
785
+ viewBox: "0 0 24 24",
786
+ fill: "none",
787
+ stroke: 'currentColor',
788
+ strokeWidth: "1"
789
+ }, /*#__PURE__*/React.createElement("path", {
790
+ d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"
791
+ })));
792
+ };
793
+ var RefreshIcon = _ref30 => {
794
+ var {
795
+ size = 24,
796
+ color = 'currentColor'
797
+ } = _ref30,
798
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
799
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
800
+ size: size,
801
+ color: color
802
+ }, props), /*#__PURE__*/React.createElement("svg", {
803
+ viewBox: "0 0 24 24",
804
+ fill: "none",
805
+ stroke: 'currentColor',
806
+ strokeWidth: "1"
807
+ }, /*#__PURE__*/React.createElement("path", {
808
+ d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"
809
+ })));
810
+ };
811
+ var CopyIcon = _ref31 => {
812
+ var {
813
+ size = 24,
814
+ color = 'currentColor'
815
+ } = _ref31,
816
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
817
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
818
+ size: size,
819
+ color: color
820
+ }, props), /*#__PURE__*/React.createElement("svg", {
821
+ viewBox: "0 0 24 24",
822
+ fill: "none",
823
+ stroke: 'currentColor',
824
+ strokeWidth: "1"
825
+ }, /*#__PURE__*/React.createElement("path", {
826
+ d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"
827
+ })));
828
+ };
829
+ var SaveIcon = _ref32 => {
830
+ var {
831
+ size = 24,
832
+ color = 'currentColor'
833
+ } = _ref32,
834
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
835
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
836
+ size: size,
837
+ color: color
838
+ }, props), /*#__PURE__*/React.createElement("svg", {
839
+ viewBox: "0 0 24 24",
840
+ fill: "none",
841
+ stroke: 'currentColor',
842
+ strokeWidth: "1"
843
+ }, /*#__PURE__*/React.createElement("path", {
844
+ d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z"
845
+ })));
846
+ };
847
+ var PrintIcon = _ref33 => {
848
+ var {
849
+ size = 24,
850
+ color = 'currentColor'
851
+ } = _ref33,
852
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded32);
853
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
854
+ size: size,
855
+ color: color
856
+ }, props), /*#__PURE__*/React.createElement("svg", {
857
+ viewBox: "0 0 24 24",
858
+ fill: "none",
859
+ stroke: 'currentColor',
860
+ strokeWidth: "1"
861
+ }, /*#__PURE__*/React.createElement("path", {
862
+ d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"
863
+ })));
864
+ };
865
+ var LockIcon = _ref34 => {
866
+ var {
867
+ size = 24,
868
+ color = 'currentColor'
869
+ } = _ref34,
870
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded33);
871
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
872
+ size: size,
873
+ color: color
874
+ }, props), /*#__PURE__*/React.createElement("svg", {
875
+ viewBox: "0 0 24 24",
876
+ fill: "none",
877
+ stroke: 'currentColor',
878
+ strokeWidth: "1"
879
+ }, /*#__PURE__*/React.createElement("path", {
880
+ d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"
881
+ })));
882
+ };
883
+ // Previous icons remain the same...
884
+ var UnlockIcon = _ref35 => {
885
+ var {
886
+ size = 24,
887
+ color = 'currentColor'
888
+ } = _ref35,
889
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded34);
890
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
891
+ size: size,
892
+ color: color
893
+ }, props), /*#__PURE__*/React.createElement("svg", {
894
+ viewBox: "0 0 24 24",
895
+ fill: "none",
896
+ stroke: 'currentColor',
897
+ strokeWidth: "1"
898
+ }, /*#__PURE__*/React.createElement("path", {
899
+ d: "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z"
900
+ })));
901
+ };
902
+ var StarIcon = _ref36 => {
903
+ var {
904
+ size = 24,
905
+ color = 'currentColor'
906
+ } = _ref36,
907
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
908
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
909
+ size: size,
910
+ color: color
911
+ }, props), /*#__PURE__*/React.createElement("svg", {
912
+ viewBox: "0 0 24 24",
913
+ fill: "none",
914
+ stroke: 'currentColor',
915
+ strokeWidth: "1"
916
+ }, /*#__PURE__*/React.createElement("path", {
917
+ d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"
918
+ })));
919
+ };
920
+ var HeartIcon = _ref37 => {
921
+ var {
922
+ size = 24,
923
+ color = 'currentColor'
924
+ } = _ref37,
925
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
926
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
927
+ size: size,
928
+ color: color
929
+ }, props), /*#__PURE__*/React.createElement("svg", {
930
+ viewBox: "0 0 24 24",
931
+ fill: "none",
932
+ stroke: 'currentColor',
933
+ strokeWidth: "1"
934
+ }, /*#__PURE__*/React.createElement("path", {
935
+ d: "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"
936
+ })));
937
+ };
938
+ var ThumbUpIcon = _ref38 => {
939
+ var {
940
+ size = 24,
941
+ color = 'currentColor'
942
+ } = _ref38,
943
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
944
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
945
+ size: size,
946
+ color: color
947
+ }, props), /*#__PURE__*/React.createElement("svg", {
948
+ viewBox: "0 0 24 24",
949
+ fill: "none",
950
+ stroke: 'currentColor',
951
+ strokeWidth: "1"
952
+ }, /*#__PURE__*/React.createElement("path", {
953
+ d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"
954
+ })));
955
+ };
956
+ var ThumbDownIcon = _ref39 => {
957
+ var {
958
+ size = 24,
959
+ color = 'currentColor'
960
+ } = _ref39,
961
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
962
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
963
+ size: size,
964
+ color: color
965
+ }, props), /*#__PURE__*/React.createElement("svg", {
966
+ viewBox: "0 0 24 24",
967
+ fill: "none",
968
+ stroke: 'currentColor',
969
+ strokeWidth: "1"
970
+ }, /*#__PURE__*/React.createElement("path", {
971
+ d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"
972
+ })));
973
+ };
974
+ var LocationIcon = _ref40 => {
975
+ var {
976
+ size = 24,
977
+ color = 'currentColor'
978
+ } = _ref40,
979
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded39);
980
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
981
+ size: size,
982
+ color: color
983
+ }, props), /*#__PURE__*/React.createElement("svg", {
984
+ viewBox: "0 0 24 24",
985
+ fill: "none",
986
+ stroke: 'currentColor',
987
+ strokeWidth: "1"
988
+ }, /*#__PURE__*/React.createElement("path", {
989
+ d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"
990
+ })));
991
+ };
992
+ var ClockIcon = _ref41 => {
993
+ var {
994
+ size = 24,
995
+ color = 'currentColor'
996
+ } = _ref41,
997
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded40);
998
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
999
+ size: size,
1000
+ color: color
1001
+ }, props), /*#__PURE__*/React.createElement("svg", {
1002
+ viewBox: "0 0 24 24",
1003
+ fill: "none",
1004
+ stroke: 'currentColor',
1005
+ strokeWidth: "1"
1006
+ }, /*#__PURE__*/React.createElement("path", {
1007
+ d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
1008
+ })));
368
1009
  };
369
-
370
- var _excluded$6 = ["size", "color"];
371
- var CloseEyeSvg = _ref => {
1010
+ var CameraIcon = _ref42 => {
372
1011
  var {
373
- size = 64,
374
- color = '#2F4858'
375
- } = _ref,
376
- props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
377
- return /*#__PURE__*/React.createElement(Center, {
378
- width: size + "px",
379
- height: size + "px"
380
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
1012
+ size = 24,
1013
+ color = 'currentColor'
1014
+ } = _ref42,
1015
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded41);
1016
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1017
+ size: size,
1018
+ color: color
1019
+ }, props), /*#__PURE__*/React.createElement("svg", {
381
1020
  viewBox: "0 0 24 24",
382
1021
  fill: "none",
383
- xmlns: "http://www.w3.org/2000/svg"
384
- }, props), /*#__PURE__*/React.createElement("g", {
385
- id: "SVGRepo_bgCarrier",
386
- strokeWidth: "0"
387
- }), /*#__PURE__*/React.createElement("g", {
388
- id: "SVGRepo_tracerCarrier",
389
- strokeLinecap: "round",
390
- strokeLinejoin: "round"
391
- }), /*#__PURE__*/React.createElement("g", {
392
- id: "SVGRepo_iconCarrier"
1022
+ stroke: 'currentColor',
1023
+ strokeWidth: "1"
393
1024
  }, /*#__PURE__*/React.createElement("path", {
394
- fillRule: "evenodd",
395
- clipRule: "evenodd",
396
- d: "M19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L14.032 8.55382C13.4365 8.20193 12.7418 8 12 8C9.79086 8 8 9.79086 8 12C8 12.7418 8.20193 13.4365 8.55382 14.032L4.29289 18.2929C3.90237 18.6834 3.90237 19.3166 4.29289 19.7071C4.68342 20.0976 5.31658 20.0976 5.70711 19.7071L9.96803 15.4462C10.5635 15.7981 11.2582 16 12 16C14.2091 16 16 14.2091 16 12C16 11.2582 15.7981 10.5635 15.4462 9.96803L19.7071 5.70711ZM12.518 10.0677C12.3528 10.0236 12.1792 10 12 10C10.8954 10 10 10.8954 10 12C10 12.1792 10.0236 12.3528 10.0677 12.518L12.518 10.0677ZM11.482 13.9323L13.9323 11.482C13.9764 11.6472 14 11.8208 14 12C14 13.1046 13.1046 14 12 14C11.8208 14 11.6472 13.9764 11.482 13.9323ZM15.7651 4.8207C14.6287 4.32049 13.3675 4 12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C1.92276 13.7326 2.86706 15.0637 4.21194 16.3739L5.62626 14.9596C4.4555 13.8229 3.61144 12.6531 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C12.7719 6 13.5135 6.13385 14.2193 6.36658L15.7651 4.8207ZM12 18C11.2282 18 10.4866 17.8661 9.78083 17.6334L8.23496 19.1793C9.37136 19.6795 10.6326 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C22.0773 10.2674 21.133 8.93627 19.7881 7.62611L18.3738 9.04043C19.5446 10.1771 20.3887 11.3469 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18Z",
397
- fill: color
398
- }))));
1025
+ d: "M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
1026
+ }), /*#__PURE__*/React.createElement("path", {
1027
+ d: "M12 17c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3z"
1028
+ })));
399
1029
  };
400
-
401
- var _excluded$7 = ["size", "color"];
402
- var ExternalLinkSvg = _ref => {
1030
+ var MicrophoneIcon = _ref43 => {
403
1031
  var {
404
- size = 64,
405
- color = 'white'
406
- } = _ref,
407
- props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
408
- return /*#__PURE__*/React.createElement(Center, {
409
- width: size + "px",
410
- height: size + "px"
411
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
412
- fill: color,
413
- width: size + "px",
414
- height: size + "px",
415
- viewBox: "0 0 50 50",
416
- xmlns: "http://www.w3.org/2000/svg",
417
- stroke: color
418
- }, props), /*#__PURE__*/React.createElement("g", {
419
- id: "SVGRepo_bgCarrier",
420
- strokeWidth: "0"
421
- }), /*#__PURE__*/React.createElement("g", {
422
- id: "SVGRepo_tracerCarrier",
423
- strokeLinecap: "round",
424
- strokeLinejoin: "round"
425
- }), /*#__PURE__*/React.createElement("g", {
426
- id: "SVGRepo_iconCarrier"
1032
+ size = 24,
1033
+ color = 'currentColor'
1034
+ } = _ref43,
1035
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1036
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1037
+ size: size,
1038
+ color: color
1039
+ }, props), /*#__PURE__*/React.createElement("svg", {
1040
+ viewBox: "0 0 24 24",
1041
+ fill: "none",
1042
+ stroke: 'currentColor',
1043
+ strokeWidth: "1"
427
1044
  }, /*#__PURE__*/React.createElement("path", {
428
- d: "M38.288 10.297l1.414 1.415-14.99 14.99-1.414-1.414z"
429
- }), /*#__PURE__*/React.createElement("path", {
430
- d: "M40 20h-2v-8h-8v-2h10z"
1045
+ d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"
431
1046
  }), /*#__PURE__*/React.createElement("path", {
432
- d: "M35 38H15c-1.7 0-3-1.3-3-3V15c0-1.7 1.3-3 3-3h11v2H15c-.6 0-1 .4-1 1v20c0 .6.4 1 1 1h20c.6 0 1-.4 1-1V24h2v11c0 1.7-1.3 3-3 3z"
433
- }))));
1047
+ d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"
1048
+ })));
434
1049
  };
435
-
436
- var _excluded$8 = ["size", "color"];
437
- var IndeterminateSvg = _ref => {
1050
+ var WifiIcon = _ref44 => {
438
1051
  var {
439
- size = 64,
440
- color = 'white'
441
- } = _ref,
442
- props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
443
- return /*#__PURE__*/React.createElement(Center, {
444
- width: size + "px",
445
- height: size + "px"
446
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
1052
+ size = 24,
1053
+ color = 'currentColor'
1054
+ } = _ref44,
1055
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded43);
1056
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1057
+ size: size,
1058
+ color: color
1059
+ }, props), /*#__PURE__*/React.createElement("svg", {
447
1060
  viewBox: "0 0 24 24",
448
1061
  fill: "none",
449
- xmlns: "http://www.w3.org/2000/svg"
450
- }, props), /*#__PURE__*/React.createElement("g", {
451
- id: "SVGRepo_bgCarrier",
452
- strokeWidth: "0"
453
- }), /*#__PURE__*/React.createElement("g", {
454
- id: "SVGRepo_tracerCarrier",
455
- strokeLinecap: "round",
456
- strokeLinejoin: "round"
457
- }), /*#__PURE__*/React.createElement("g", {
458
- id: "SVGRepo_iconCarrier"
1062
+ stroke: 'currentColor',
1063
+ strokeWidth: "1"
459
1064
  }, /*#__PURE__*/React.createElement("path", {
460
- d: "M7 12L17 12",
461
- stroke: color,
462
- strokeWidth: "1.5",
463
- strokeLinecap: "round",
464
- strokeLinejoin: "round"
465
- }), ' ')));
1065
+ d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"
1066
+ })));
466
1067
  };
467
-
468
- var _excluded$9 = ["size", "color"];
469
- var OpenEyeSvg = _ref => {
1068
+ var BluetoothIcon = _ref45 => {
470
1069
  var {
471
- size = 64,
472
- color = '#2F4858'
473
- } = _ref,
474
- props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
475
- return /*#__PURE__*/React.createElement(Center, {
476
- width: size + "px",
477
- height: size + "px"
478
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
1070
+ size = 24,
1071
+ color = 'currentColor'
1072
+ } = _ref45,
1073
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded44);
1074
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1075
+ size: size,
1076
+ color: color
1077
+ }, props), /*#__PURE__*/React.createElement("svg", {
1078
+ viewBox: "0 0 24 24",
1079
+ fill: 'currentColor'
1080
+ }, /*#__PURE__*/React.createElement("path", {
1081
+ d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"
1082
+ })));
1083
+ };
1084
+ var BatteryIcon = _ref46 => {
1085
+ var {
1086
+ size = 24,
1087
+ color = 'currentColor'
1088
+ } = _ref46,
1089
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded45);
1090
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1091
+ size: size,
1092
+ color: color
1093
+ }, props), /*#__PURE__*/React.createElement("svg", {
479
1094
  viewBox: "0 0 24 24",
480
1095
  fill: "none",
481
- xmlns: "http://www.w3.org/2000/svg"
482
- }, props), /*#__PURE__*/React.createElement("g", {
483
- id: "SVGRepo_bgCarrier",
484
- strokeWidth: "0"
485
- }), /*#__PURE__*/React.createElement("g", {
486
- id: "SVGRepo_tracerCarrier",
487
- strokeLinecap: "round",
488
- strokeLinejoin: "round"
489
- }), /*#__PURE__*/React.createElement("g", {
490
- id: "SVGRepo_iconCarrier"
1096
+ stroke: 'currentColor',
1097
+ strokeWidth: "1"
491
1098
  }, /*#__PURE__*/React.createElement("path", {
492
- fillRule: "evenodd",
493
- clipRule: "evenodd",
494
- d: "M6.30147 15.5771C4.77832 14.2684 3.6904 12.7726 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C14.1843 6 16.1261 7.07185 17.6986 8.42294C19.2218 9.73158 20.3097 11.2274 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18C9.81574 18 7.87402 16.9282 6.30147 15.5771ZM12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C2.00757 13.8624 3.23268 15.5772 4.99812 17.0941C6.75717 18.6054 9.14754 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C21.9925 10.1376 20.7674 8.42276 19.002 6.90595C17.2429 5.39462 14.8525 4 12 4ZM10 12C10 10.8954 10.8955 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8955 14 10 13.1046 10 12ZM12 8C9.7909 8 8.00004 9.79086 8.00004 12C8.00004 14.2091 9.7909 16 12 16C14.2092 16 16 14.2091 16 12C16 9.79086 14.2092 8 12 8Z",
495
- fill: color
496
- }))));
1099
+ d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"
1100
+ })));
497
1101
  };
498
-
499
- var _excluded$a = ["size", "color"];
500
- var WarningSvg = _ref => {
1102
+ // More modern UI icons
1103
+ var SunIcon = _ref47 => {
501
1104
  var {
502
- size = 64,
503
- color = 'white'
504
- } = _ref,
505
- props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
506
- return /*#__PURE__*/React.createElement(Center, {
507
- width: size + "px",
508
- height: size + "px"
509
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
510
- height: size + "px",
511
- width: size + "px",
512
- version: "1.1",
513
- id: "Capa_1",
514
- xmlns: "http://www.w3.org/2000/svg",
515
- viewBox: "0 0 192.146 192.146",
516
- fill: color
517
- }, props), /*#__PURE__*/React.createElement("g", {
518
- id: "SVGRepo_bgCarrier"
519
- }), /*#__PURE__*/React.createElement("g", {
520
- id: "SVGRepo_tracerCarrier"
521
- }), /*#__PURE__*/React.createElement("g", {
522
- id: "SVGRepo_iconCarrier"
523
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
524
- d: "M108.186,144.372c0,7.054-4.729,12.32-12.037,12.32h-0.254c-7.054,0-11.92-5.266-11.92-12.32 c0-7.298,5.012-12.31,12.174-12.31C103.311,132.062,108.059,137.054,108.186,144.372z M88.44,125.301h15.447l2.951-61.298H85.46 L88.44,125.301z M190.372,177.034c-2.237,3.664-6.214,5.921-10.493,5.921H12.282c-4.426,0-8.51-2.384-10.698-6.233 c-2.159-3.849-2.11-8.549,0.147-12.349l84.111-149.22c2.208-3.722,6.204-5.96,10.522-5.96h0.332 c4.445,0.107,8.441,2.618,10.513,6.546l83.515,149.229C192.717,168.768,192.629,173.331,190.372,177.034z M179.879,170.634 L96.354,21.454L12.292,170.634H179.879z"
525
- })))))));
1105
+ size = 24,
1106
+ color = 'currentColor'
1107
+ } = _ref47,
1108
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded46);
1109
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1110
+ size: size,
1111
+ color: color
1112
+ }, props), /*#__PURE__*/React.createElement("svg", {
1113
+ viewBox: "0 0 24 24",
1114
+ fill: "none",
1115
+ stroke: 'currentColor',
1116
+ strokeWidth: "1"
1117
+ }, /*#__PURE__*/React.createElement("circle", {
1118
+ cx: "12",
1119
+ cy: "12",
1120
+ r: "5"
1121
+ }), /*#__PURE__*/React.createElement("path", {
1122
+ d: "M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"
1123
+ })));
526
1124
  };
527
-
528
- var _excluded$b = ["size", "color"];
529
- var SuccessSvg = _ref => {
1125
+ var MoonIcon = _ref48 => {
1126
+ var {
1127
+ size = 24,
1128
+ color = 'currentColor'
1129
+ } = _ref48,
1130
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded47);
1131
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1132
+ size: size,
1133
+ color: color
1134
+ }, props), /*#__PURE__*/React.createElement("svg", {
1135
+ viewBox: "0 0 24 24",
1136
+ fill: "none",
1137
+ stroke: 'currentColor',
1138
+ strokeWidth: "1"
1139
+ }, /*#__PURE__*/React.createElement("path", {
1140
+ d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1141
+ })));
1142
+ };
1143
+ var ErrorIcon = _ref49 => {
530
1144
  var {
531
- size = 64,
1145
+ size = 24,
532
1146
  color = 'white'
533
- } = _ref,
534
- props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
535
- return /*#__PURE__*/React.createElement(Center, {
536
- width: size + "px",
537
- height: size + "px"
538
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
539
- height: size + "px",
540
- width: size + "px",
541
- version: "1.1",
542
- id: "Capa_1",
543
- xmlns: "http://www.w3.org/2000/svg",
544
- viewBox: "0 0 484.8 484.8",
545
- fill: color
546
- }, props), /*#__PURE__*/React.createElement("g", {
547
- id: "SVGRepo_bgCarrier"
548
- }), /*#__PURE__*/React.createElement("g", {
549
- id: "SVGRepo_tracerCarrier"
550
- }), /*#__PURE__*/React.createElement("g", {
551
- id: "SVGRepo_iconCarrier"
552
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
553
- d: "M242.4,0C108.6,0,0,108.6,0,242.4S108.6,484.8,242.4,484.8S484.8,376.2,484.8,242.4S376.2,0,242.4,0z M198.4,358.8l-120-120L84,228l114.4,114.4l188-188l28.8,28.8L198.4,358.8z",
554
- fill: color
555
- }))))));
1147
+ } = _ref49,
1148
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1149
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1150
+ size: size,
1151
+ color: color
1152
+ }, props), /*#__PURE__*/React.createElement("svg", {
1153
+ viewBox: "0 0 510 510"
1154
+ }, /*#__PURE__*/React.createElement("path", {
1155
+ d: "M255,0C114.615,0,0,114.615,0,255s114.615,255,255,255s255-114.615,255-255S395.385,0,255,0z M255,459c-114.75,0-207-92.25-207-207c0-114.75,92.25-207,207-207c114.75,0,207,92.25,207,207C462,366.75,369.75,459,255,459z"
1156
+ }), /*#__PURE__*/React.createElement("path", {
1157
+ d: "M255,140.25c11.05,0,20-8.95,20-20s-8.95-20-20-20s-20,8.95-20,20S243.95,140.25,255,140.25z"
1158
+ }), /*#__PURE__*/React.createElement("path", {
1159
+ d: "M265,357c0,11.05-8.95,20-20,20s-20-8.95-20-20v-175c0-11.05,8.95-20,20-20s20,8.95,20,20V357z"
1160
+ })));
556
1161
  };
557
-
558
- var _excluded$c = ["size", "color"];
559
- var InfoSvg = _ref => {
1162
+ var WarningIcon = _ref50 => {
560
1163
  var {
561
- size = 64,
1164
+ size = 24,
562
1165
  color = 'white'
563
- } = _ref,
564
- props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
565
- return /*#__PURE__*/React.createElement(Center, {
566
- width: size + "px",
567
- height: size + "px"
568
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
569
- height: size + "px",
570
- width: size + "px",
1166
+ } = _ref50,
1167
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1168
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1169
+ size: size,
1170
+ color: color
1171
+ }, props), /*#__PURE__*/React.createElement("svg", {
571
1172
  version: "1.1",
572
1173
  id: "Capa_1",
573
1174
  xmlns: "http://www.w3.org/2000/svg",
574
1175
  viewBox: "0 0 192.146 192.146",
575
- fill: color
576
- }, props), /*#__PURE__*/React.createElement("g", {
1176
+ fill: 'currentColor'
1177
+ }, /*#__PURE__*/React.createElement("g", {
577
1178
  id: "SVGRepo_bgCarrier"
578
1179
  }), /*#__PURE__*/React.createElement("g", {
579
1180
  id: "SVGRepo_tracerCarrier"
580
1181
  }), /*#__PURE__*/React.createElement("g", {
581
1182
  id: "SVGRepo_iconCarrier"
582
1183
  }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
583
- d: "M96.073,3.515C43.19,3.515,0,46.705,0,99.587s43.19,96.072,96.073,96.072s96.073-43.19,96.073-96.072 S148.955,3.515,96.073,3.515z M101.468,154.072h-15.447V120.57h15.447V154.072z M101.468,111.875h-15.447V49.54h15.447V111.875z"
1184
+ d: "M108.186,144.372c0,7.054-4.729,12.32-12.037,12.32h-0.254c-7.054,0-11.92-5.266-11.92-12.32 c0-7.298,5.012-12.31,12.174-12.31C103.311,132.062,108.059,137.054,108.186,144.372z M88.44,125.301h15.447l2.951-61.298H85.46 L88.44,125.301z M190.372,177.034c-2.237,3.664-6.214,5.921-10.493,5.921H12.282c-4.426,0-8.51-2.384-10.698-6.233 c-2.159-3.849-2.11-8.549,0.147-12.349l84.111-149.22c2.208-3.722,6.204-5.96,10.522-5.96h0.332 c4.445,0.107,8.441,2.618,10.513,6.546l83.515,149.229C192.717,168.768,192.629,173.331,190.372,177.034z M179.879,170.634 L96.354,21.454L12.292,170.634H179.879z"
584
1185
  })))))));
585
1186
  };
586
-
587
- var _excluded$d = ["size", "color"];
588
- var ErrorSvg = _ref => {
1187
+ var CloudIcon = _ref51 => {
589
1188
  var {
590
- size = 64,
591
- color = 'white'
592
- } = _ref,
593
- props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
594
- return /*#__PURE__*/React.createElement(Center, {
595
- width: size + "px",
596
- height: size + "px"
597
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
598
- height: size + "px",
599
- width: size + "px",
600
- version: "1.1",
601
- id: "Capa_1",
602
- xmlns: "http://www.w3.org/2000/svg",
603
- viewBox: "0 0 510 510",
604
- fill: color
605
- }, props), /*#__PURE__*/React.createElement("g", {
606
- id: "SVGRepo_bgCarrier"
607
- }), /*#__PURE__*/React.createElement("g", {
608
- id: "SVGRepo_tracerCarrier"
609
- }), /*#__PURE__*/React.createElement("g", {
610
- id: "SVGRepo_iconCarrier"
611
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
612
- d: "M255,0C114.615,0,0,114.615,0,255s114.615,255,255,255s255-114.615,255-255S395.385,0,255,0z M255,459c-114.75,0-207-92.25-207-207c0-114.75,92.25-207,207-207c114.75,0,207,92.25,207,207C462,366.75,369.75,459,255,459z",
613
- fill: color
614
- }), /*#__PURE__*/React.createElement("path", {
615
- d: "M255,140.25c11.05,0,20-8.95,20-20s-8.95-20-20-20s-20,8.95-20,20S243.95,140.25,255,140.25z",
616
- fill: color
617
- }), /*#__PURE__*/React.createElement("path", {
618
- d: "M265,357c0,11.05-8.95,20-20,20s-20-8.95-20-20v-175c0-11.05,8.95-20,20-20s20,8.95,20,20V357z",
619
- fill: color
620
- }))))));
1189
+ size = 24,
1190
+ color = 'currentColor'
1191
+ } = _ref51,
1192
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded50);
1193
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1194
+ size: size,
1195
+ color: color
1196
+ }, props), /*#__PURE__*/React.createElement("svg", {
1197
+ viewBox: "0 0 24 24",
1198
+ fill: "none",
1199
+ stroke: 'currentColor',
1200
+ strokeWidth: "1"
1201
+ }, /*#__PURE__*/React.createElement("path", {
1202
+ d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
1203
+ })));
621
1204
  };
622
1205
 
623
1206
  // Define a constant object 'Themes' exporting various theme styles.
@@ -699,7 +1282,7 @@ var AlertView = _ref => {
699
1282
  flexWrap: "nowrap"
700
1283
  }, styles == null ? void 0 : styles.container), /*#__PURE__*/React.createElement(View, {
701
1284
  alignSelf: 'center'
702
- }, icon ? icon : (/*#__PURE__*/React.createElement(WarningSvg, {
1285
+ }, icon ? icon : (/*#__PURE__*/React.createElement(WarningIcon, {
703
1286
  size: 24,
704
1287
  color: (_styles$icon$color = styles == null ? void 0 : styles.icon.color) != null ? _styles$icon$color : Themes[variant].content.color
705
1288
  }))), /*#__PURE__*/React.createElement(Vertical, {
@@ -733,7 +1316,7 @@ var AlertComponent = _ref => {
733
1316
  // Exporting the AlertComponent as 'Alert' for use in other parts of the application.
734
1317
  var Alert = AlertComponent;
735
1318
 
736
- var _excluded$e = ["ratio", "children"];
1319
+ var _excluded$5 = ["ratio", "children"];
737
1320
  // Declaration of a functional component named AspectRatioView.
738
1321
  var AspectRatioView = _ref => {
739
1322
  var {
@@ -743,7 +1326,7 @@ var AspectRatioView = _ref => {
743
1326
  children
744
1327
  // Spread the rest of the props to inherit additional properties.
745
1328
  } = _ref,
746
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
1329
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
747
1330
  return /*#__PURE__*/React.createElement(Center, Object.assign({
748
1331
  width: '100%',
749
1332
  position: "relative",
@@ -759,14 +1342,14 @@ var AspectRatioView = _ref => {
759
1342
  }, children));
760
1343
  };
761
1344
 
762
- var _excluded$f = ["ratio", "children"];
1345
+ var _excluded$6 = ["ratio", "children"];
763
1346
  // Declaration of the AspectRatioComponent functional component with destructured props.
764
1347
  var AspectRatioComponent = _ref => {
765
1348
  var {
766
1349
  ratio,
767
1350
  children
768
1351
  } = _ref,
769
- props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
1352
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
770
1353
  // Beginning of the return statement in the functional component.
771
1354
  return /*#__PURE__*/React.createElement(AspectRatioView, Object.assign({
772
1355
  ratio: ratio
@@ -1036,7 +1619,7 @@ var IconSizes = {
1036
1619
  '6xl': 64
1037
1620
  };
1038
1621
 
1039
- var _excluded$g = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
1622
+ var _excluded$7 = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
1040
1623
  // Component definition for 'LinkView', a functional component with props defined by 'LinkViewProps'.
1041
1624
  var LinkView = _ref => {
1042
1625
  var {
@@ -1059,7 +1642,7 @@ var LinkView = _ref => {
1059
1642
  // Setter function for the hover state, noop function provided by default.
1060
1643
  setIsHovered = () => {}
1061
1644
  } = _ref,
1062
- props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
1645
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
1063
1646
  // Function to handle mouse enter/leave events to toggle hover state.
1064
1647
  var handleHover = () => {
1065
1648
  if (underline === 'hover') setIsHovered(true);
@@ -1075,7 +1658,7 @@ var LinkView = _ref => {
1075
1658
  gap: 3,
1076
1659
  alignItems: "center",
1077
1660
  flexWrap: "nowrap"
1078
- }, children, isExternal && (/*#__PURE__*/React.createElement(ExternalLinkSvg, {
1661
+ }, children, isExternal && (/*#__PURE__*/React.createElement(ExternalLinkIcon, {
1079
1662
  size: IconSizes[iconSize],
1080
1663
  style: styles.icon
1081
1664
  })))));
@@ -1100,9 +1683,9 @@ var ButtonSizes = {
1100
1683
  paddingBottom: 8,
1101
1684
  paddingLeft: 12,
1102
1685
  paddingRight: 12,
1103
- fontWeight: 600,
1104
- fontSize: 'xs',
1105
- lineHeight: 16,
1686
+ fontWeight: 400,
1687
+ fontSize: 11,
1688
+ lineHeight: 14,
1106
1689
  letterSpacing: 1.25
1107
1690
  },
1108
1691
  sm: {
@@ -1111,10 +1694,10 @@ var ButtonSizes = {
1111
1694
  paddingBottom: 10,
1112
1695
  paddingLeft: 16,
1113
1696
  paddingRight: 16,
1114
- fontWeight: 600,
1115
- fontSize: 'sm',
1697
+ fontWeight: 400,
1698
+ fontSize: 12,
1116
1699
  // Establishes style configuration for medium (md) button size.
1117
- lineHeight: 20,
1700
+ lineHeight: 16,
1118
1701
  letterSpacing: 1.25
1119
1702
  },
1120
1703
  md: {
@@ -1124,9 +1707,9 @@ var ButtonSizes = {
1124
1707
  paddingLeft: 18,
1125
1708
  paddingRight: 18,
1126
1709
  // Establishes style configuration for large (lg) button size.
1127
- fontWeight: 600,
1128
- fontSize: 'md',
1129
- lineHeight: 24,
1710
+ fontSize: 14,
1711
+ fontWeight: 400,
1712
+ lineHeight: 18,
1130
1713
  letterSpacing: 1.25
1131
1714
  },
1132
1715
  lg: {
@@ -1136,8 +1719,8 @@ var ButtonSizes = {
1136
1719
  // Establishes style configuration for extra-large (xl) button size.
1137
1720
  paddingLeft: 22,
1138
1721
  paddingRight: 22,
1139
- fontWeight: 600,
1140
- fontSize: 'lg',
1722
+ fontWeight: 400,
1723
+ fontSize: 18,
1141
1724
  lineHeight: 24,
1142
1725
  letterSpacing: 1.25
1143
1726
  },
@@ -1151,10 +1734,10 @@ var ButtonSizes = {
1151
1734
  // Sets the border-radius for a rounded button shape to '4'.
1152
1735
  paddingRight: 26,
1153
1736
  // Sets the border-radius for a pill-shaped button to '24'.
1154
- fontWeight: 600,
1155
- fontSize: 'xl',
1737
+ fontWeight: 400,
1738
+ fontSize: 22,
1156
1739
  // Defines a constant 'IconSizes' as a mapping from 'Size' to corresponding 'CSSProperties' for icons.
1157
- lineHeight: 24,
1740
+ lineHeight: 28,
1158
1741
  // Sets the width, height, and padding for icons of extra-small size.
1159
1742
  letterSpacing: 1.25
1160
1743
  }
@@ -1217,17 +1800,17 @@ var DefaultSpeeds = {
1217
1800
  slow: 300
1218
1801
  };
1219
1802
 
1220
- var _excluded$h = ["size", "speed", "color"],
1221
- _excluded2 = ["size", "speed", "color"],
1222
- _excluded3 = ["size", "speed", "color"],
1223
- _excluded4 = ["size", "children", "textColor", "loaderColor", "type", "speed", "textPosition"];
1803
+ var _excluded$8 = ["size", "speed", "color"],
1804
+ _excluded2$1 = ["size", "speed", "color"],
1805
+ _excluded3$1 = ["size", "speed", "color"],
1806
+ _excluded4$1 = ["size", "children", "textColor", "loaderColor", "type", "speed", "textPosition"];
1224
1807
  var DefaultSpinner = _ref => {
1225
1808
  var {
1226
1809
  size = 'md',
1227
1810
  speed = 'normal',
1228
1811
  color = 'theme.loading'
1229
1812
  } = _ref,
1230
- props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
1813
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
1231
1814
  var theme = useTheme();
1232
1815
  var colorStyle = theme.getColor(color);
1233
1816
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1270,7 +1853,7 @@ var Dotted = _ref2 => {
1270
1853
  speed = 'normal',
1271
1854
  color = 'theme.loading'
1272
1855
  } = _ref2,
1273
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2);
1856
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
1274
1857
  var theme = useTheme();
1275
1858
  var colorStyle = theme.getColor(color);
1276
1859
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1312,7 +1895,7 @@ var Quarter = _ref3 => {
1312
1895
  speed = 'normal',
1313
1896
  color = 'theme.loading'
1314
1897
  } = _ref3,
1315
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
1898
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
1316
1899
  var theme = useTheme();
1317
1900
  var colorStyle = theme.getColor(color);
1318
1901
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1351,7 +1934,7 @@ var LoaderView = _ref4 => {
1351
1934
  speed = 'normal',
1352
1935
  textPosition = 'right'
1353
1936
  } = _ref4,
1354
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
1937
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
1355
1938
  var style = {
1356
1939
  size,
1357
1940
  speed,
@@ -1380,7 +1963,7 @@ React.createElement(LoaderView, Object.assign({}, props)));
1380
1963
  // Exports the LoaderComponent as Loader, making it available for use in other parts of the application.
1381
1964
  var Loader = LoaderComponent;
1382
1965
 
1383
- var _excluded$i = ["icon", "shadow", "children", "ariaLabel", "externalHref", "isAuto", "isFilled", "isIconRounded", "isLoading", "isDisabled", "size", "variant", "iconPosition", "colorScheme", "shape", "onClick", "loaderProps", "loaderPosition", "effect", "isHovered", "setIsHovered"];
1966
+ var _excluded$9 = ["icon", "shadow", "children", "ariaLabel", "externalHref", "isAuto", "isFilled", "isIconRounded", "isLoading", "isDisabled", "size", "variant", "iconPosition", "colorScheme", "shape", "onClick", "loaderProps", "loaderPosition", "effect", "isHovered", "setIsHovered"];
1384
1967
  var contrast = /*#__PURE__*/require('contrast');
1385
1968
  var ButtonView = _ref => {
1386
1969
  var _props$onClick;
@@ -1416,7 +1999,7 @@ var ButtonView = _ref => {
1416
1999
  setIsHovered = () => {}
1417
2000
  // Defines CSS properties for 'outline' variant of the button with conditional styles based on reverse state.
1418
2001
  } = _ref,
1419
- props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2002
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
1420
2003
  var {
1421
2004
  getColor
1422
2005
  } = useTheme();
@@ -1531,14 +2114,14 @@ var ButtonComponent = props => {
1531
2114
  };
1532
2115
  var Button = ButtonComponent;
1533
2116
 
1534
- var _excluded$j = ["src", "color"],
1535
- _excluded2$1 = ["path"];
2117
+ var _excluded$a = ["src", "color"],
2118
+ _excluded2$2 = ["path"];
1536
2119
  var FileSVG = _ref => {
1537
2120
  var {
1538
2121
  src,
1539
2122
  color
1540
2123
  } = _ref,
1541
- props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2124
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
1542
2125
  var {
1543
2126
  getColor
1544
2127
  } = useTheme();
@@ -1556,7 +2139,7 @@ var FileImage = _ref2 => {
1556
2139
  var {
1557
2140
  path
1558
2141
  } = _ref2,
1559
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2142
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
1560
2143
  return /*#__PURE__*/React.createElement(Image, Object.assign({
1561
2144
  src: path
1562
2145
  }, props));
@@ -1606,7 +2189,7 @@ var useItemState = () => {
1606
2189
  };
1607
2190
  };
1608
2191
 
1609
- var _excluded$k = ["children", "styles"];
2192
+ var _excluded$b = ["children", "styles"];
1610
2193
  var HelperText = _ref => {
1611
2194
  var {
1612
2195
  children,
@@ -1614,7 +2197,7 @@ var HelperText = _ref => {
1614
2197
  helperText: {}
1615
2198
  }
1616
2199
  } = _ref,
1617
- props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2200
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
1618
2201
  return /*#__PURE__*/React.createElement(Text, Object.assign({
1619
2202
  size: "xs",
1620
2203
  marginVertical: 0,
@@ -1623,7 +2206,7 @@ var HelperText = _ref => {
1623
2206
  }, styles['helperText'], props), children);
1624
2207
  };
1625
2208
 
1626
- var _excluded$l = ["children", "helperText", "error", "styles"];
2209
+ var _excluded$c = ["children", "helperText", "error", "styles"];
1627
2210
  var FieldContainer = _ref => {
1628
2211
  var {
1629
2212
  children,
@@ -1631,7 +2214,7 @@ var FieldContainer = _ref => {
1631
2214
  error = false,
1632
2215
  styles
1633
2216
  } = _ref,
1634
- props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2217
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
1635
2218
  return /*#__PURE__*/React.createElement(Vertical, Object.assign({
1636
2219
  gap: 5,
1637
2220
  position: "relative"
@@ -1690,7 +2273,7 @@ var PaddingWithoutLabel = {
1690
2273
  paddingRight: 36
1691
2274
  };
1692
2275
 
1693
- var _excluded$m = ["label", "shadow", "children", "value", "size", "shape", "variant", "error", "isWithLabel", "isFocused", "isHovered", "isDisabled", "isReadOnly", "colorScheme", "styles"];
2276
+ var _excluded$d = ["label", "shadow", "children", "value", "size", "shape", "variant", "error", "isWithLabel", "isFocused", "isHovered", "isDisabled", "isReadOnly", "colorScheme", "styles"];
1694
2277
  var FieldContent = _ref => {
1695
2278
  var {
1696
2279
  shadow,
@@ -1709,7 +2292,7 @@ var FieldContent = _ref => {
1709
2292
  pickerBox: {}
1710
2293
  }
1711
2294
  } = _ref,
1712
- props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2295
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
1713
2296
  var isInteractive = (isHovered || isFocused) && !isDisabled;
1714
2297
  var color = error ? 'error' : isInteractive ? colorScheme : 'midgray';
1715
2298
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
@@ -1730,12 +2313,12 @@ var FieldContent = _ref => {
1730
2313
  }, isWithLabel ? PadddingWithLabel : PaddingWithoutLabel, shadow, Shapes[shape], InputVariants[variant], styles['box'], props), children);
1731
2314
  };
1732
2315
 
1733
- var _excluded$n = ["children"];
2316
+ var _excluded$e = ["children"];
1734
2317
  var FieldIcons = _ref => {
1735
2318
  var {
1736
2319
  children
1737
2320
  } = _ref,
1738
- props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2321
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
1739
2322
  return /*#__PURE__*/React.createElement(Center, Object.assign({
1740
2323
  gap: 10,
1741
2324
  right: 16,
@@ -1787,7 +2370,7 @@ var HeadingSizes$1 = {
1787
2370
  }
1788
2371
  };
1789
2372
 
1790
- var _excluded$o = ["children", "heading", "isItalic", "isUnderlined", "isStriked", "weight", "size"];
2373
+ var _excluded$f = ["children", "heading", "isItalic", "isUnderlined", "isStriked", "weight", "size"];
1791
2374
  var LabelView = _ref => {
1792
2375
  var {
1793
2376
  children,
@@ -1803,7 +2386,7 @@ var LabelView = _ref => {
1803
2386
  size = 'sm'
1804
2387
  // The fontSize prop for the Element is determined by the 'size' prop passed to LabelView.
1805
2388
  } = _ref,
1806
- props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2389
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
1807
2390
  // The fontStyle prop toggles between 'italic' and 'normal' based on the 'isItalic' boolean prop.
1808
2391
  var headingStyles = heading ? HeadingSizes$1[heading] : {};
1809
2392
  // fontWeight is derived from the Typography module, ensuring consistent font weighting across the app.
@@ -1835,7 +2418,7 @@ React.createElement(LabelView, Object.assign({}, props))
1835
2418
  var Label = LabelComponent;
1836
2419
  // Export the 'LabelComponent' as 'Label' to be reused throughout the project.
1837
2420
 
1838
- var _excluded$p = ["children", "size", "error", "color", "styles", "helperText"];
2421
+ var _excluded$g = ["children", "size", "error", "color", "styles", "helperText"];
1839
2422
  var FieldLabel = _ref => {
1840
2423
  var {
1841
2424
  children,
@@ -1846,7 +2429,7 @@ var FieldLabel = _ref => {
1846
2429
  label: {}
1847
2430
  }
1848
2431
  } = _ref,
1849
- props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2432
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
1850
2433
  return /*#__PURE__*/React.createElement(Label, Object.assign({
1851
2434
  top: 6,
1852
2435
  zIndex: 1000,
@@ -1859,12 +2442,12 @@ var FieldLabel = _ref => {
1859
2442
  }, styles['label'], props), children);
1860
2443
  };
1861
2444
 
1862
- var _excluded$q = ["children"];
2445
+ var _excluded$h = ["children"];
1863
2446
  var FieldWrapper = _ref => {
1864
2447
  var {
1865
2448
  children
1866
2449
  } = _ref,
1867
- props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2450
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
1868
2451
  return /*#__PURE__*/React.createElement(Vertical, Object.assign({
1869
2452
  width: "100%"
1870
2453
  }, props), children);
@@ -1880,10 +2463,10 @@ var IconSizes$2 = {
1880
2463
  xl: 16
1881
2464
  };
1882
2465
 
1883
- var _excluded$r = ["isHovered", "setIsHovered", "option", "size", "callback", "style"],
1884
- _excluded2$2 = ["id", "name", "value", "onChange", "isMulti", "isDisabled", "isReadOnly", "options"],
1885
- _excluded3$1 = ["option", "size", "removeOption"],
1886
- _excluded4$1 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isMulti", "isFocused", "isHovered", "isDisabled", "isReadOnly", "options", "shadow", "size", "colorScheme", "shape", "variant", "styles", "onChange", "setHide", "setValue", "setIsHovered", "setIsFocused", "setHighlightedIndex", "highlightedIndex"];
2466
+ var _excluded$i = ["isHovered", "setIsHovered", "option", "size", "callback", "style"],
2467
+ _excluded2$3 = ["id", "name", "value", "onChange", "isMulti", "isDisabled", "isReadOnly", "options"],
2468
+ _excluded3$2 = ["option", "size", "removeOption"],
2469
+ _excluded4$2 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isMulti", "isFocused", "isHovered", "isDisabled", "isReadOnly", "options", "shadow", "size", "colorScheme", "shape", "variant", "styles", "onChange", "setHide", "setValue", "setIsHovered", "setIsFocused", "setHighlightedIndex", "highlightedIndex"];
1887
2470
  // Defines a component to render individual selection items within a list.
1888
2471
  var Item = _ref => {
1889
2472
  var {
@@ -1894,7 +2477,7 @@ var Item = _ref => {
1894
2477
  callback = () => {},
1895
2478
  style
1896
2479
  } = _ref,
1897
- props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
2480
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
1898
2481
  // Handles the click event on an option by invoking the callback with the selected option's value.
1899
2482
  var handleOptionClick = option => callback(option);
1900
2483
  // Toggles the hover state on the item.
@@ -1959,7 +2542,7 @@ var HiddenSelect = _ref3 => {
1959
2542
  isReadOnly = false,
1960
2543
  options = []
1961
2544
  } = _ref3,
1962
- props = _objectWithoutPropertiesLoose(_ref3, _excluded2$2);
2545
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded2$3);
1963
2546
  var handleChange = event => {
1964
2547
  if (onChange) onChange(event);
1965
2548
  };
@@ -2049,7 +2632,7 @@ var MultiSelect = _ref5 => {
2049
2632
  size = 'md',
2050
2633
  removeOption = () => {}
2051
2634
  } = _ref5,
2052
- props = _objectWithoutPropertiesLoose(_ref5, _excluded3$1);
2635
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded3$2);
2053
2636
  var handleClick = () => removeOption(option);
2054
2637
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
2055
2638
  gap: 10,
@@ -2061,7 +2644,7 @@ var MultiSelect = _ref5 => {
2061
2644
  onClick: event => event.stopPropagation()
2062
2645
  }, props), /*#__PURE__*/React.createElement(Text, {
2063
2646
  size: size
2064
- }, option), /*#__PURE__*/React.createElement(CloseSvg, {
2647
+ }, option), /*#__PURE__*/React.createElement(CloseIcon, {
2065
2648
  role: "close-button",
2066
2649
  color: "inherit",
2067
2650
  size: IconSizes$2[size],
@@ -2105,7 +2688,7 @@ var SelectView = _ref6 => {
2105
2688
  setHighlightedIndex,
2106
2689
  highlightedIndex
2107
2690
  } = _ref6,
2108
- props = _objectWithoutPropertiesLoose(_ref6, _excluded4$1);
2691
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded4$2);
2109
2692
  var isWithLabel = !!(isFocused && label);
2110
2693
  var handleHover = () => setIsHovered(!isHovered);
2111
2694
  var handleFocus = () => setIsFocused(true);
@@ -2175,12 +2758,14 @@ var SelectView = _ref6 => {
2175
2758
  isDisabled: isDisabled,
2176
2759
  placeholder: placeholder,
2177
2760
  removeOption: handleRemoveOption
2178
- })), /*#__PURE__*/React.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(React.Fragment, null, hide ? (/*#__PURE__*/React.createElement(ArrowDownSvg, {
2761
+ })), /*#__PURE__*/React.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(React.Fragment, null, hide ? (/*#__PURE__*/React.createElement(ChevronIcon, {
2179
2762
  color: "inherit",
2180
2763
  size: IconSizes$2[size],
2181
- style: styles.icon
2182
- })) : (/*#__PURE__*/React.createElement(ArrowUpSvg, {
2764
+ style: styles.icon,
2765
+ orientation: "down"
2766
+ })) : (/*#__PURE__*/React.createElement(ChevronIcon, {
2183
2767
  color: "inherit",
2768
+ orientation: "up",
2184
2769
  size: IconSizes$2[size],
2185
2770
  style: styles.icon
2186
2771
  })))))), !hide && (/*#__PURE__*/React.createElement(DropDown, {
@@ -2349,7 +2934,7 @@ var SliderPadding = {
2349
2934
  }
2350
2935
  };
2351
2936
 
2352
- var _excluded$s = ["id", "name", "label", "inActiveChild", "activeChild", "labelPosition", "shadow", "size", "colorScheme", "value", "isHovered", "isDisabled", "isReadOnly", "on", "setOn", "onChange", "setValue", "setIsHovered", "helperText", "styles"];
2937
+ var _excluded$j = ["id", "name", "label", "inActiveChild", "activeChild", "labelPosition", "shadow", "size", "colorScheme", "value", "isHovered", "isDisabled", "isReadOnly", "on", "setOn", "onChange", "setValue", "setIsHovered", "helperText", "styles"];
2353
2938
  var SwitchContent = props => /*#__PURE__*/React.createElement(Input, Object.assign({
2354
2939
  type: "checkbox"
2355
2940
  }, props));
@@ -2379,7 +2964,7 @@ var SwitchView = _ref => {
2379
2964
  label: {}
2380
2965
  }
2381
2966
  } = _ref,
2382
- props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
2967
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2383
2968
  var handleToggle = event => {
2384
2969
  if (!isReadOnly) {
2385
2970
  setValue(!value);
@@ -2469,7 +3054,7 @@ var useTextAreaState = _ref => {
2469
3054
  // Export of the useTextAreaState hook for external usage.
2470
3055
  };
2471
3056
 
2472
- var _excluded$t = ["id", "name", "hint", "error", "value", "label", "shadow", "helperText", "placeholder", "size", "shape", "variant", "colorScheme", "isHovered", "isFocused", "isEditable", "isReadOnly", "isDisabled", "isAutoFocus", "isMultiline", "maxRows", "maxCols", "onBlur", "onChange", "onFocus", "onChangeText", "setHint", "setValue", "setIsFocused", "setIsHovered", "styles"];
3057
+ var _excluded$k = ["id", "name", "hint", "error", "value", "label", "shadow", "helperText", "placeholder", "size", "shape", "variant", "colorScheme", "isHovered", "isFocused", "isEditable", "isReadOnly", "isDisabled", "isAutoFocus", "isMultiline", "maxRows", "maxCols", "onBlur", "onChange", "onFocus", "onChangeText", "setHint", "setValue", "setIsFocused", "setIsHovered", "styles"];
2473
3058
  var TextAreaView = _ref => {
2474
3059
  var {
2475
3060
  id,
@@ -2509,7 +3094,7 @@ var TextAreaView = _ref => {
2509
3094
  field: {}
2510
3095
  }
2511
3096
  } = _ref,
2512
- props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
3097
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2513
3098
  var isWithLabel = !!(isFocused && label);
2514
3099
  var fieldStyles = Object.assign({
2515
3100
  margin: 0,
@@ -2639,7 +3224,7 @@ var useTextFieldState = _ref => {
2639
3224
  };
2640
3225
  };
2641
3226
 
2642
- var _excluded$u = ["id", "name", "label", "hint", "value", "onChange", "leftChild", "rightChild", "helperText", "placeholder", "onChangeText", "shadow", "styles", "size", "shape", "variant", "colorScheme", "error", "isFocused", "isHovered", "isDisabled", "isReadOnly", "isClearable", "isAutoFocus", "setHint", "setIsFocused", "setIsHovered", "setValue", "onClick", "onFocus", "onBlur"];
3227
+ var _excluded$l = ["id", "name", "label", "hint", "value", "onChange", "leftChild", "rightChild", "helperText", "placeholder", "onChangeText", "shadow", "styles", "size", "shape", "variant", "colorScheme", "error", "isFocused", "isHovered", "isDisabled", "isReadOnly", "isClearable", "isAutoFocus", "setHint", "setIsFocused", "setIsHovered", "setValue", "onClick", "onFocus", "onBlur"];
2643
3228
  var TextFieldInput = props => /*#__PURE__*/React.createElement(Input, Object.assign({
2644
3229
  type: "text"
2645
3230
  }, props));
@@ -2682,7 +3267,7 @@ var TextFieldView = _ref => {
2682
3267
  onFocus,
2683
3268
  onBlur = () => {}
2684
3269
  } = _ref,
2685
- props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
3270
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2686
3271
  var {
2687
3272
  getColor
2688
3273
  } = useTheme();
@@ -2778,7 +3363,7 @@ var TextFieldView = _ref => {
2778
3363
  }, fieldStyles, props, {
2779
3364
  onChange: handleChange,
2780
3365
  value: value
2781
- }))), (rightChild || isClearable && value) && (/*#__PURE__*/React.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(CloseSvg, {
3366
+ }))), (rightChild || isClearable && value) && (/*#__PURE__*/React.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(CloseIcon, {
2782
3367
  size: Typography.fontSizes[size],
2783
3368
  color: IconColor,
2784
3369
  onClick: handleClear
@@ -2863,7 +3448,7 @@ var IconSizes$3 = {
2863
3448
  '6xl': 60
2864
3449
  };
2865
3450
 
2866
- var _excluded$v = ["id", "icon", "name", "label", "isChecked", "onChange", "onValueChange", "shadow", "labelPosition", "size", "colorScheme", "error", "isSelected", "isHovered", "isDisabled", "isReadOnly", "isIndeterminate", "defaultIsSelected", "setIsSelected", "setIsHovered", "styles", "infoText", "helperText"];
3451
+ var _excluded$m = ["id", "icon", "name", "label", "isChecked", "onChange", "onValueChange", "shadow", "labelPosition", "size", "colorScheme", "error", "isSelected", "isHovered", "isDisabled", "isReadOnly", "isIndeterminate", "defaultIsSelected", "setIsSelected", "setIsHovered", "styles", "infoText", "helperText"];
2867
3452
  var CheckboxView = _ref => {
2868
3453
  var {
2869
3454
  id,
@@ -2891,7 +3476,7 @@ var CheckboxView = _ref => {
2891
3476
  },
2892
3477
  infoText
2893
3478
  } = _ref,
2894
- props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
3479
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2895
3480
  var handleHover = () => setIsHovered(!isHovered);
2896
3481
  var handleChange = () => {
2897
3482
  if (!isReadOnly && !isDisabled) {
@@ -2938,8 +3523,12 @@ var CheckboxView = _ref => {
2938
3523
  alignItems: "center"
2939
3524
  }, labelPosition === 'left' && label && (/*#__PURE__*/React.createElement(Text, Object.assign({
2940
3525
  size: size
2941
- }, styles == null ? void 0 : styles.label), label)), /*#__PURE__*/React.createElement(Center, Object.assign({}, checkboxStyle.checkbox), isIndeterminate ? (/*#__PURE__*/React.createElement(IndeterminateSvg, null)) : (isChecked || isSelected) && (icon != null ? icon : /*#__PURE__*/React.createElement(CheckSvg, {
2942
- size: IconSizes$3[size]
3526
+ }, styles == null ? void 0 : styles.label), label)), /*#__PURE__*/React.createElement(Center, Object.assign({}, checkboxStyle.checkbox), isIndeterminate ? (/*#__PURE__*/React.createElement(MinusIcon, {
3527
+ size: IconSizes$3[size],
3528
+ color: "white"
3529
+ })) : (isChecked || isSelected) && (icon != null ? icon : /*#__PURE__*/React.createElement(TickIcon, {
3530
+ size: IconSizes$3[size],
3531
+ color: "white"
2943
3532
  }))), labelPosition === 'right' && label && (/*#__PURE__*/React.createElement(Text, Object.assign({
2944
3533
  size: size
2945
3534
  }, styles == null ? void 0 : styles.label), label))), infoText && (/*#__PURE__*/React.createElement(Text, Object.assign({
@@ -4446,11 +5035,11 @@ var IconSizes$4 = {
4446
5035
  xl: 16
4447
5036
  };
4448
5037
 
4449
- var _excluded$w = ["size"],
4450
- _excluded2$3 = ["size"],
4451
- _excluded3$2 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isHovered", "isFocused", "isAutoFocus", "isDisabled", "isReadOnly", "shadow", "newOptions", "size", "variant", "shape", "colorScheme", "onChange", "onBlur", "setHide", "setNewOptions", "setIsHovered", "setIsFocused", "setValue", "styles"];
5038
+ var _excluded$n = ["size"],
5039
+ _excluded2$4 = ["size"],
5040
+ _excluded3$3 = ["id", "name", "label", "value", "placeholder", "helperText", "hide", "error", "isHovered", "isFocused", "isAutoFocus", "isDisabled", "isReadOnly", "shadow", "newOptions", "size", "variant", "shape", "colorScheme", "onChange", "onBlur", "setHide", "setNewOptions", "setIsHovered", "setIsFocused", "setValue", "styles"];
4452
5041
  var CountryList = _ref => {
4453
- var props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5042
+ var props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
4454
5043
  return /*#__PURE__*/React.createElement(Element, Object.assign({
4455
5044
  as: "ul"
4456
5045
  }, props));
@@ -4459,7 +5048,7 @@ var CountrySelector = props => (/*#__PURE__*/React.createElement(Input, Object.a
4459
5048
  type: "country"
4460
5049
  }, props)));
4461
5050
  var CountryItem = _ref2 => {
4462
- var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5051
+ var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
4463
5052
  return /*#__PURE__*/React.createElement(Element, Object.assign({
4464
5053
  as: "li"
4465
5054
  }, props));
@@ -4483,6 +5072,7 @@ var DropDownItem = _ref3 => {
4483
5072
  margin: 0,
4484
5073
  role: "DropDownItem",
4485
5074
  listStyleType: "none",
5075
+ fontWeight: "normal",
4486
5076
  paddingVertical: 6,
4487
5077
  paddingHorizontal: 12,
4488
5078
  onMouseEnter: handleHover,
@@ -4561,7 +5151,7 @@ var CountryPickerView = _ref5 => {
4561
5151
  box: {}
4562
5152
  }
4563
5153
  } = _ref5,
4564
- props = _objectWithoutPropertiesLoose(_ref5, _excluded3$2);
5154
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded3$3);
4565
5155
  var {
4566
5156
  getColor
4567
5157
  } = useTheme();
@@ -4646,11 +5236,13 @@ var CountryPickerView = _ref5 => {
4646
5236
  }, fieldStyles, props, {
4647
5237
  value: value,
4648
5238
  onChange: handleChange
4649
- }))), /*#__PURE__*/React.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React.createElement(ArrowDownSvg, {
5239
+ }))), /*#__PURE__*/React.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React.createElement(ChevronIcon$1, {
5240
+ orientation: "down",
4650
5241
  size: IconSizes$4[size],
4651
5242
  color: IconColor,
4652
5243
  style: styles['icon']
4653
- })) : (/*#__PURE__*/React.createElement(ArrowUpSvg, {
5244
+ })) : (/*#__PURE__*/React.createElement(ChevronIcon$1, {
5245
+ orientation: "up",
4654
5246
  size: IconSizes$4[size],
4655
5247
  color: IconColor,
4656
5248
  style: styles['icon']
@@ -4686,7 +5278,7 @@ var useDatePickerState = () => {
4686
5278
  };
4687
5279
  };
4688
5280
 
4689
- var _excluded$x = ["id", "icon", "name", "label", "date", "children", "helperText", "shadow", "size", "variant", "shape", "colorScheme", "styles", "error", "isHovered", "isFocused", "isDisabled", "isReadOnly", "setDate", "setIsFocused", "setIsHovered", "onChange", "onChangeText"];
5281
+ var _excluded$o = ["id", "icon", "name", "label", "date", "children", "helperText", "shadow", "size", "variant", "shape", "colorScheme", "styles", "error", "isHovered", "isFocused", "isDisabled", "isReadOnly", "setDate", "setIsFocused", "setIsHovered", "onChange", "onChangeText"];
4690
5282
  var DatePickerContent = props => /*#__PURE__*/React.createElement(Input, Object.assign({
4691
5283
  type: "date"
4692
5284
  }, props));
@@ -4720,7 +5312,7 @@ var DatePickerView = _ref => {
4720
5312
  onChange,
4721
5313
  onChangeText
4722
5314
  } = _ref,
4723
- props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5315
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
4724
5316
  var isWithLabel = !!(isFocused && label);
4725
5317
  var handleHover = () => setIsHovered(!isHovered);
4726
5318
  var handleFocus = () => setIsFocused(true);
@@ -4808,24 +5400,24 @@ var usePasswordState = props => {
4808
5400
  }, props, textFieldStates);
4809
5401
  };
4810
5402
 
4811
- var _excluded$y = ["visibleIcon", "hiddenIcon"],
4812
- _excluded2$4 = ["isVisible", "setIsVisible"];
5403
+ var _excluded$p = ["visibleIcon", "hiddenIcon"],
5404
+ _excluded2$5 = ["isVisible", "setIsVisible"];
4813
5405
  var PasswordComponent = _ref => {
4814
5406
  var {
4815
- visibleIcon = /*#__PURE__*/React.createElement(OpenEyeSvg, {
5407
+ visibleIcon = /*#__PURE__*/React.createElement(OpenEyeIcon, {
4816
5408
  size: 14
4817
5409
  }),
4818
- hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeSvg, {
5410
+ hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeIcon, {
4819
5411
  size: 14
4820
5412
  })
4821
5413
  } = _ref,
4822
- props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5414
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
4823
5415
  var _usePasswordState = usePasswordState(props),
4824
5416
  {
4825
5417
  isVisible,
4826
5418
  setIsVisible
4827
5419
  } = _usePasswordState,
4828
- passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$4);
5420
+ passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$5);
4829
5421
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, passwordProps, {
4830
5422
  type: isVisible ? 'text' : 'password',
4831
5423
  isClearable: false,
@@ -4873,74 +5465,7 @@ var useComboBoxState = (items, placeholder, searchPlaceholder) => {
4873
5465
  };
4874
5466
  };
4875
5467
 
4876
- var _excluded$z = ["size", "color"];
4877
- var TickSvg = _ref => {
4878
- var {
4879
- size = 16,
4880
- color = '#c0c0c0'
4881
- } = _ref,
4882
- props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
4883
- return /*#__PURE__*/React.createElement(Center, {
4884
- width: size + "px",
4885
- height: size + "px"
4886
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
4887
- width: size + "px",
4888
- height: size + "px",
4889
- viewBox: "0 -0.5 25 25",
4890
- fill: "none",
4891
- xmlns: "http://www.w3.org/2000/svg"
4892
- }, props), /*#__PURE__*/React.createElement("g", {
4893
- id: "SVGRepo_bgCarrier",
4894
- strokeWidth: "0"
4895
- }), /*#__PURE__*/React.createElement("g", {
4896
- id: "SVGRepo_tracerCarrier",
4897
- strokeLinecap: "round",
4898
- strokeLinejoin: "round"
4899
- }), /*#__PURE__*/React.createElement("g", {
4900
- id: "SVGRepo_iconCarrier"
4901
- }, ' ', /*#__PURE__*/React.createElement("path", {
4902
- d: "M5.5 12.5L10.167 17L19.5 8",
4903
- stroke: "#444444",
4904
- strokeWidth: "1.5",
4905
- strokeLinecap: "round",
4906
- strokeLinejoin: "round"
4907
- }), ' ')));
4908
- };
4909
-
4910
- var _excluded$A = ["size", "color"];
4911
- var SearchLoopSvg = _ref => {
4912
- var {
4913
- size = 14,
4914
- color = '#c0c0c0'
4915
- } = _ref,
4916
- props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
4917
- return /*#__PURE__*/React.createElement(Center, {
4918
- width: size + "px",
4919
- height: size + "px"
4920
- }, /*#__PURE__*/React.createElement("svg", Object.assign({
4921
- fill: "#c0c0c0",
4922
- width: size + "px",
4923
- height: size + "px",
4924
- version: "1.1",
4925
- id: "Capa_1",
4926
- xmlns: "http://www.w3.org/2000/svg",
4927
- viewBox: "0 0 488.4 488.4",
4928
- stroke: color
4929
- }, props), /*#__PURE__*/React.createElement("g", {
4930
- id: "SVGRepo_bgCarrier",
4931
- strokeWidth: "9.279599999999999"
4932
- }), /*#__PURE__*/React.createElement("g", {
4933
- id: "SVGRepo_tracerCarrier",
4934
- strokeLinecap: "round",
4935
- strokeLinejoin: "round"
4936
- }), /*#__PURE__*/React.createElement("g", {
4937
- id: "SVGRepo_iconCarrier"
4938
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
4939
- d: "M0,203.25c0,112.1,91.2,203.2,203.2,203.2c51.6,0,98.8-19.4,134.7-51.2l129.5,129.5c2.4,2.4,5.5,3.6,8.7,3.6 s6.3-1.2,8.7-3.6c4.8-4.8,4.8-12.5,0-17.3l-129.6-129.5c31.8-35.9,51.2-83,51.2-134.7c0-112.1-91.2-203.2-203.2-203.2 S0,91.15,0,203.25z M381.9,203.25c0,98.5-80.2,178.7-178.7,178.7s-178.7-80.2-178.7-178.7s80.2-178.7,178.7-178.7 S381.9,104.65,381.9,203.25z"
4940
- }), ' ')))));
4941
- };
4942
-
4943
- var _excluded$B = ["placeholder", "items", "showTick", "onSelect", "searchEnabled", "left", "right", "label", "filteredItems", "setSelectedItem", "selectedItem", "highlightedIndex", "setHighlightedIndex", "searchQuery", "setSearchQuery", "setFilteredItems", "styles", "isDropdownVisible", "setIsDropdownVisible"];
5468
+ var _excluded$q = ["placeholder", "items", "showTick", "onSelect", "searchEnabled", "left", "right", "label", "filteredItems", "setSelectedItem", "selectedItem", "highlightedIndex", "setHighlightedIndex", "searchQuery", "setSearchQuery", "setFilteredItems", "styles", "isDropdownVisible", "setIsDropdownVisible"];
4944
5469
  // Defines the functional component 'ComboBoxView' with destructured props.
4945
5470
  var ComboBoxView = _ref => {
4946
5471
  var {
@@ -4965,7 +5490,7 @@ var ComboBoxView = _ref => {
4965
5490
  setIsDropdownVisible
4966
5491
  // Collects all further props not destructured explicitly.
4967
5492
  } = _ref,
4968
- props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5493
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
4969
5494
  // Sets up an effect to handle clicking outside the dropdown to close it.
4970
5495
  useEffect(() => {
4971
5496
  var handleClickOutside = event => {
@@ -5049,7 +5574,7 @@ var ComboBoxView = _ref => {
5049
5574
  onChange: value => handleSearch(value),
5050
5575
  hint: placeholder,
5051
5576
  isClearable: false,
5052
- leftChild: /*#__PURE__*/React.createElement(SearchLoopSvg, {
5577
+ leftChild: /*#__PURE__*/React.createElement(SearchIcon$1, {
5053
5578
  size: 12
5054
5579
  }),
5055
5580
  styles: {
@@ -5071,10 +5596,12 @@ var ComboBoxView = _ref => {
5071
5596
  backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
5072
5597
  onMouseEnter: () => setHighlightedIndex(index),
5073
5598
  onClick: () => handleSelect(item)
5074
- }, styles == null ? void 0 : styles.item), /*#__PURE__*/React.createElement(Text, null, item.label), /*#__PURE__*/React.createElement(React.Fragment, null, item.icon && item.icon, item.value === selectedItem.value && showTick && !item.icon && /*#__PURE__*/React.createElement(TickSvg, null))))))))))));
5599
+ }, styles == null ? void 0 : styles.item), /*#__PURE__*/React.createElement(Text, null, item.label), /*#__PURE__*/React.createElement(React.Fragment, null, item.icon && item.icon, item.value === selectedItem.value && showTick && !item.icon && /*#__PURE__*/React.createElement(TickIcon$1, {
5600
+ size: 20
5601
+ }))))))))))));
5075
5602
  };
5076
5603
 
5077
- var _excluded$C = ["id", "name", "items", "placeholder", "searchPlaceholder"];
5604
+ var _excluded$r = ["id", "name", "items", "placeholder", "searchPlaceholder"];
5078
5605
  // Defines the ComboBoxComponent functional component with ComboBoxProps
5079
5606
  var ComboBoxComponent = _ref => {
5080
5607
  var {
@@ -5090,7 +5617,7 @@ var ComboBoxComponent = _ref => {
5090
5617
  searchPlaceholder
5091
5618
  // Destructures the rest of the props not explicitly defined
5092
5619
  } = _ref,
5093
- props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5620
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
5094
5621
  // Initializes ComboBox state using custom hook with items and placeholders
5095
5622
  var state = useComboBoxState(items, placeholder, searchPlaceholder);
5096
5623
  return (
@@ -5106,7 +5633,7 @@ var ComboBoxComponent = _ref => {
5106
5633
  // Exports the ComboBoxComponent as ComboBox
5107
5634
  var ComboBox = ComboBoxComponent;
5108
5635
 
5109
- var _excluded$D = ["children", "autoFocus", "initFocus", "onChange"];
5636
+ var _excluded$s = ["children", "autoFocus", "initFocus", "onChange"];
5110
5637
  var FocusContext = /*#__PURE__*/createContext({
5111
5638
  active: false,
5112
5639
  focusNextInput: () => {},
@@ -5122,7 +5649,7 @@ var FormikForm = _ref => {
5122
5649
  initFocus,
5123
5650
  onChange = () => {}
5124
5651
  } = _ref,
5125
- props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5652
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
5126
5653
  var formik = useFormikContext();
5127
5654
  useEffect(() => {
5128
5655
  onChange(formik.values);
@@ -5170,7 +5697,7 @@ var FormikForm = _ref => {
5170
5697
  }, /*#__PURE__*/React.createElement(Form, Object.assign({}, props), children));
5171
5698
  };
5172
5699
 
5173
- var _excluded$E = ["name", "type"];
5700
+ var _excluded$t = ["name", "type"];
5174
5701
  var getInputTypeProps = type => {
5175
5702
  switch (type) {
5176
5703
  case 'email':
@@ -5209,7 +5736,7 @@ var useFormikInput = _ref => {
5209
5736
  name,
5210
5737
  type
5211
5738
  } = _ref,
5212
- props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5739
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
5213
5740
  var focus = useFormFocus();
5214
5741
  var {
5215
5742
  touched,
@@ -5253,13 +5780,13 @@ var useFormikInput = _ref => {
5253
5780
  } : {});
5254
5781
  };
5255
5782
 
5256
- var _excluded$F = ["value"];
5783
+ var _excluded$u = ["value"];
5257
5784
  var CheckboxComponent$1 = props => {
5258
5785
  var _useFormikInput = useFormikInput(props),
5259
5786
  {
5260
5787
  value
5261
5788
  } = _useFormikInput,
5262
- formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$F);
5789
+ formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$u);
5263
5790
  formProps.isChecked = value;
5264
5791
  var checkboxStates = useCheckboxState(props);
5265
5792
  return /*#__PURE__*/React.createElement(CheckboxView, Object.assign({}, checkboxStates, formProps));
@@ -5317,11 +5844,11 @@ var TextAreaComponent$1 = props => {
5317
5844
  */
5318
5845
  var FormikTextArea = TextAreaComponent$1;
5319
5846
 
5320
- var _excluded$G = ["value"];
5847
+ var _excluded$v = ["value"];
5321
5848
  var TextFieldComponent$1 = props => {
5322
5849
  var formProps = useFormikInput(props);
5323
5850
  var _useTextFieldState = useTextFieldState(props),
5324
- textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$G);
5851
+ textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$v);
5325
5852
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, textFieldStates, formProps));
5326
5853
  };
5327
5854
  /**
@@ -5329,25 +5856,25 @@ var TextFieldComponent$1 = props => {
5329
5856
  */
5330
5857
  var FormikTextField = TextFieldComponent$1;
5331
5858
 
5332
- var _excluded$H = ["visibleIcon", "hiddenIcon"],
5333
- _excluded2$5 = ["isVisible", "setIsVisible"];
5859
+ var _excluded$w = ["visibleIcon", "hiddenIcon"],
5860
+ _excluded2$6 = ["isVisible", "setIsVisible"];
5334
5861
  var PasswordComponent$1 = _ref => {
5335
5862
  var {
5336
- visibleIcon = /*#__PURE__*/React.createElement(OpenEyeSvg, {
5863
+ visibleIcon = /*#__PURE__*/React.createElement(OpenEyeIcon, {
5337
5864
  size: 14
5338
5865
  }),
5339
- hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeSvg, {
5866
+ hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeIcon, {
5340
5867
  size: 14
5341
5868
  })
5342
5869
  } = _ref,
5343
- props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5870
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5344
5871
  var formProps = useFormikInput(props);
5345
5872
  var _usePasswordState = usePasswordState(formProps),
5346
5873
  {
5347
5874
  isVisible,
5348
5875
  setIsVisible
5349
5876
  } = _usePasswordState,
5350
- passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$5);
5877
+ passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$6);
5351
5878
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, passwordProps, {
5352
5879
  type: isVisible ? 'text' : 'password',
5353
5880
  isClearable: false,
@@ -5365,14 +5892,14 @@ var PasswordComponent$1 = _ref => {
5365
5892
  */
5366
5893
  var FormikPassword = PasswordComponent$1;
5367
5894
 
5368
- var _excluded$I = ["items", "placeholder", "searchPlaceholder"];
5895
+ var _excluded$x = ["items", "placeholder", "searchPlaceholder"];
5369
5896
  var ComboBoxComponent$1 = _ref => {
5370
5897
  var {
5371
5898
  items,
5372
5899
  placeholder,
5373
5900
  searchPlaceholder
5374
5901
  } = _ref,
5375
- props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5902
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5376
5903
  var formProps = useFormikInput(props);
5377
5904
  var ComboBoxStates = useComboBoxState(items, placeholder, searchPlaceholder);
5378
5905
  // Ensure the onChange function from formProps is being called when an item is selected
@@ -5440,14 +5967,14 @@ var Themes$1 = {
5440
5967
  },
5441
5968
  icon: {
5442
5969
  color: 'color.blue.500',
5443
- name: 'InformationSvg'
5970
+ name: 'InformationIcon'
5444
5971
  },
5445
5972
  content: {
5446
5973
  color: 'color.blue.500'
5447
5974
  },
5448
5975
  close: {
5449
5976
  color: 'color.blue.500',
5450
- name: 'CloseSvg'
5977
+ name: 'CloseIcon'
5451
5978
  }
5452
5979
  },
5453
5980
  success: {
@@ -5457,14 +5984,14 @@ var Themes$1 = {
5457
5984
  },
5458
5985
  icon: {
5459
5986
  color: 'color.green.500',
5460
- name: 'CheckCircleSvg'
5987
+ name: 'CheckCircleIcon'
5461
5988
  },
5462
5989
  content: {
5463
5990
  color: 'color.green.500'
5464
5991
  },
5465
5992
  close: {
5466
5993
  color: 'color.green.500',
5467
- name: 'CloseSvg'
5994
+ name: 'CloseIcon'
5468
5995
  }
5469
5996
  },
5470
5997
  error: {
@@ -5474,14 +6001,14 @@ var Themes$1 = {
5474
6001
  },
5475
6002
  icon: {
5476
6003
  color: 'color.red.500',
5477
- name: 'ErrrorSvg'
6004
+ name: 'ErrrorIcon'
5478
6005
  },
5479
6006
  content: {
5480
6007
  color: 'color.red.500'
5481
6008
  },
5482
6009
  close: {
5483
6010
  color: 'color.red.500',
5484
- name: 'CloseSvg'
6011
+ name: 'CloseIcon'
5485
6012
  }
5486
6013
  },
5487
6014
  warning: {
@@ -5491,14 +6018,14 @@ var Themes$1 = {
5491
6018
  },
5492
6019
  icon: {
5493
6020
  color: 'color.orange.500',
5494
- name: 'ErrrorSvg'
6021
+ name: 'ErrrorIcon'
5495
6022
  },
5496
6023
  content: {
5497
6024
  color: 'color.orange.500'
5498
6025
  },
5499
6026
  close: {
5500
6027
  color: 'color.orange.500',
5501
- name: 'CloseSvg'
6028
+ name: 'CloseIcon'
5502
6029
  }
5503
6030
  }
5504
6031
  };
@@ -5545,19 +6072,19 @@ var MessageView = _ref => {
5545
6072
  error: '#ef4444'
5546
6073
  }[variant];
5547
6074
  var iconComponent = {
5548
- info: /*#__PURE__*/React.createElement(InfoSvg, Object.assign({
6075
+ info: /*#__PURE__*/React.createElement(InfoIcon, Object.assign({
5549
6076
  size: 24,
5550
6077
  color: iconColor
5551
6078
  }, styles == null ? void 0 : styles.icon)),
5552
- success: /*#__PURE__*/React.createElement(SuccessSvg, Object.assign({
6079
+ success: /*#__PURE__*/React.createElement(SuccessIcon, Object.assign({
5553
6080
  size: 24,
5554
6081
  color: iconColor
5555
6082
  }, styles == null ? void 0 : styles.icon)),
5556
- warning: /*#__PURE__*/React.createElement(WarningSvg, Object.assign({
6083
+ warning: /*#__PURE__*/React.createElement(WarningIcon, Object.assign({
5557
6084
  size: 24,
5558
6085
  color: iconColor
5559
6086
  }, styles == null ? void 0 : styles.icon)),
5560
- error: /*#__PURE__*/React.createElement(ErrorSvg, Object.assign({
6087
+ error: /*#__PURE__*/React.createElement(ErrorIcon, Object.assign({
5561
6088
  size: 24,
5562
6089
  color: iconColor
5563
6090
  }, styles == null ? void 0 : styles.icon))
@@ -5598,7 +6125,7 @@ var MessageView = _ref => {
5598
6125
  onClick: () => {
5599
6126
  hide();
5600
6127
  }
5601
- }, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React.createElement(CloseSvg, Object.assign({
6128
+ }, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React.createElement(CloseIcon, Object.assign({
5602
6129
  size: 18,
5603
6130
  color: iconColor
5604
6131
  }, styles == null || (_styles$closingIcon2 = styles.closingIcon) == null ? void 0 : _styles$closingIcon2.icon)))));
@@ -5741,11 +6268,11 @@ var HeaderIconSizes = {
5741
6268
  xl: 28
5742
6269
  };
5743
6270
 
5744
- var _excluded$J = ["children", "blur", "isOpen", "isClosePrevented", "onClose", "position"],
5745
- _excluded2$6 = ["children", "shadow", "isFullScreen", "shape"],
5746
- _excluded3$3 = ["children", "buttonColor", "iconSize", "buttonPosition"],
5747
- _excluded4$2 = ["children"],
5748
- _excluded5 = ["children"];
6271
+ var _excluded$y = ["children", "blur", "isOpen", "isClosePrevented", "onClose", "position"],
6272
+ _excluded2$7 = ["children", "shadow", "isFullScreen", "shape"],
6273
+ _excluded3$4 = ["children", "buttonColor", "iconSize", "buttonPosition"],
6274
+ _excluded4$3 = ["children"],
6275
+ _excluded5$1 = ["children"];
5749
6276
  var ModalOverlay = _ref => {
5750
6277
  var {
5751
6278
  children,
@@ -5755,7 +6282,7 @@ var ModalOverlay = _ref => {
5755
6282
  onClose = () => {},
5756
6283
  position = 'center'
5757
6284
  } = _ref,
5758
- props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
6285
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5759
6286
  var handleClick = () => {
5760
6287
  if (!isClosePrevented) onClose();
5761
6288
  };
@@ -5788,7 +6315,7 @@ var ModalContainer = _ref2 => {
5788
6315
  isFullScreen = false,
5789
6316
  shape = 'rounded'
5790
6317
  } = _ref2,
5791
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2$6);
6318
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$7);
5792
6319
  var defaultShadow = typeof document !== undefined ? {
5793
6320
  boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.3)'
5794
6321
  } : {
@@ -5819,12 +6346,12 @@ var ModalHeader = _ref3 => {
5819
6346
  iconSize = 'md',
5820
6347
  buttonPosition = 'right'
5821
6348
  } = _ref3,
5822
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
6349
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded3$4);
5823
6350
  var onClose = props.onClose ? props.onClose : hideModal;
5824
6351
  var buttonIcon = /*#__PURE__*/React.createElement(Button, {
5825
6352
  onClick: onClose,
5826
6353
  colorScheme: "transparent",
5827
- icon: /*#__PURE__*/React.createElement(CloseSvg, {
6354
+ icon: /*#__PURE__*/React.createElement(CloseIcon, {
5828
6355
  size: HeaderIconSizes[iconSize],
5829
6356
  color: buttonColor
5830
6357
  }),
@@ -5844,7 +6371,7 @@ var ModalBody = _ref4 => {
5844
6371
  var {
5845
6372
  children
5846
6373
  } = _ref4,
5847
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
6374
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4$3);
5848
6375
  var defaultBorder = {
5849
6376
  borderBottomWidth: 2,
5850
6377
  borderTopWidth: 2,
@@ -5860,7 +6387,7 @@ var ModalFooter = _ref5 => {
5860
6387
  var {
5861
6388
  children
5862
6389
  } = _ref5,
5863
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
6390
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
5864
6391
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
5865
6392
  marginTop: "auto",
5866
6393
  alignItems: "center",
@@ -6079,7 +6606,7 @@ var TabsView = props => {
6079
6606
  // Returns a boolean indicating if the given tab is identical to the first tab in 'tabsState'.
6080
6607
  return tab.value === tabsState[0].value;
6081
6608
  };
6082
- return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
6609
+ return /*#__PURE__*/React.createElement(Vertical$1, Object.assign({
6083
6610
  width: "100w",
6084
6611
  height: '100%'
6085
6612
  }, styles == null ? void 0 : styles.container), /*#__PURE__*/React.createElement(Horizontal, Object.assign({
@@ -6144,7 +6671,7 @@ var ToggleShapes = {
6144
6671
  pillShaped: 24
6145
6672
  };
6146
6673
 
6147
- var _excluded$K = ["children", "shape", "colorScheme", "variant", "isHovered", "setIsHovered", "isDisabled", "isToggle", "setIsToggled", "onToggle"];
6674
+ var _excluded$z = ["children", "shape", "colorScheme", "variant", "isHovered", "setIsHovered", "isDisabled", "isToggle", "setIsToggled", "onToggle"];
6148
6675
  var ToggleView = _ref => {
6149
6676
  var {
6150
6677
  children,
@@ -6158,7 +6685,7 @@ var ToggleView = _ref => {
6158
6685
  setIsToggled,
6159
6686
  onToggle
6160
6687
  } = _ref,
6161
- props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
6688
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
6162
6689
  var toggleColor = !isDisabled ? colorScheme : 'theme.disabled';
6163
6690
  var isActive = !!(isToggle || isHovered);
6164
6691
  var ToggleVariants = {
@@ -6200,7 +6727,7 @@ var ToggleView = _ref => {
6200
6727
  }, ToggleVariants[variant], props), children);
6201
6728
  };
6202
6729
 
6203
- var _excluded$L = ["children", "shape", "colorScheme", "variant", "isDisabled", "isToggled", "onToggle"];
6730
+ var _excluded$A = ["children", "shape", "colorScheme", "variant", "isDisabled", "isToggled", "onToggle"];
6204
6731
  // Destructuring properties from ToggleProps to be used within the ToggleComponent.
6205
6732
  var ToggleComponent = _ref => {
6206
6733
  var {
@@ -6213,7 +6740,7 @@ var ToggleComponent = _ref => {
6213
6740
  isToggled = false,
6214
6741
  onToggle
6215
6742
  } = _ref,
6216
- props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
6743
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
6217
6744
  // Initializing toggle state and set state functions using the custom hook useToggleState.
6218
6745
  var {
6219
6746
  isHovered,
@@ -6328,5 +6855,5 @@ var ToggleGroupComponent = _ref => {
6328
6855
  // Expose the ToggleGroupComponent for import into other modules
6329
6856
  var ToggleGroup = ToggleGroupComponent;
6330
6857
 
6331
- export { Alert, AspectRatio, Avatar, Badge, Bottom, Button, Center, Checkbox, ComboBox, CountryPicker, DatePicker, FileImage, FileSVG, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikPassword, FormikSelect, FormikSwitch, FormikTextArea, FormikTextField, Horizontal, Inline, Left, Link, Loader, MessageLayout, MessageView, Modal, Password, Right, Select, Switch, Table, Tabs, Text, TextArea, TextField, Toggle, ToggleGroup, Top, Vertical, View, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
6858
+ export { AddIcon, Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BookmarkIcon, Bottom, Button, CalendarIcon, CameraIcon, Center, CheckIcon, Checkbox, ChevronIcon, ClockIcon, CloseEyeIcon, CloseIcon, CloudIcon, ComboBox, CopyIcon, CountryPicker, DatePicker, DownloadIcon, DustBinIcon, EditIcon, ErrorIcon, ExternalLinkIcon, FileImage, FileSVG, FilterIcon, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikPassword, FormikSelect, FormikSwitch, FormikTextArea, FormikTextField, HeartIcon, HomeIcon, Horizontal, InfoIcon, Inline, Left, Link, Loader, LocationIcon, LockIcon, MenuIcon, MessageLayout, MessageView, MicrophoneIcon, MinusIcon, Modal, MoonIcon, NotificationIcon, OpenEyeIcon, Password, PlusIcon, PrintIcon, ProfileIcon, RefreshIcon, Right, SaveIcon, SearchIcon, Select, SettingsIcon, ShareIcon, SpinnerIcon, StarIcon, SuccessIcon, SunIcon, Switch, Table, Tabs, Text, TextArea, TextField, ThumbDownIcon, ThumbUpIcon, TickIcon, Toggle, ToggleGroup, Top, UnlockIcon, UploadIcon, Vertical, View, WarningIcon, WifiIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
6332
6859
  //# sourceMappingURL=web.esm.js.map