@app-studio/web 0.8.17 → 0.8.18

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 +1177 -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 +1177 -596
  14. package/dist/web.esm.js.map +1 -1
  15. package/dist/web.umd.development.js +1179 -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,1083 @@ 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
+ })));
368
612
  };
369
-
370
- var _excluded$6 = ["size", "color"];
371
- var CloseEyeSvg = _ref => {
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
+ })));
1009
+ };
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
+ })));
1204
+ };
1205
+
1206
+ var Icon = {
1207
+ __proto__: null,
1208
+ ChevronIcon: ChevronIcon,
1209
+ CheckIcon: CheckIcon,
1210
+ CloseIcon: CloseIcon,
1211
+ CloseEyeIcon: CloseEyeIcon,
1212
+ DustBinIcon: DustBinIcon,
1213
+ EditIcon: EditIcon,
1214
+ ExternalLinkIcon: ExternalLinkIcon,
1215
+ MinusIcon: MinusIcon,
1216
+ InfoIcon: InfoIcon,
1217
+ OpenEyeIcon: OpenEyeIcon,
1218
+ PlusIcon: PlusIcon,
1219
+ SpinnerIcon: SpinnerIcon,
1220
+ ProfileIcon: ProfileIcon,
1221
+ ArrowIcon: ArrowIcon,
1222
+ SearchIcon: SearchIcon,
1223
+ SuccessIcon: SuccessIcon,
1224
+ TickIcon: TickIcon,
1225
+ NotificationIcon: NotificationIcon,
1226
+ SettingsIcon: SettingsIcon,
1227
+ CalendarIcon: CalendarIcon,
1228
+ AddIcon: AddIcon,
1229
+ DownloadIcon: DownloadIcon,
1230
+ UploadIcon: UploadIcon,
1231
+ BookmarkIcon: BookmarkIcon,
1232
+ HomeIcon: HomeIcon,
1233
+ MenuIcon: MenuIcon,
1234
+ ShareIcon: ShareIcon,
1235
+ FilterIcon: FilterIcon,
1236
+ RefreshIcon: RefreshIcon,
1237
+ CopyIcon: CopyIcon,
1238
+ SaveIcon: SaveIcon,
1239
+ PrintIcon: PrintIcon,
1240
+ LockIcon: LockIcon,
1241
+ UnlockIcon: UnlockIcon,
1242
+ StarIcon: StarIcon,
1243
+ HeartIcon: HeartIcon,
1244
+ ThumbUpIcon: ThumbUpIcon,
1245
+ ThumbDownIcon: ThumbDownIcon,
1246
+ LocationIcon: LocationIcon,
1247
+ ClockIcon: ClockIcon,
1248
+ CameraIcon: CameraIcon,
1249
+ MicrophoneIcon: MicrophoneIcon,
1250
+ WifiIcon: WifiIcon,
1251
+ BluetoothIcon: BluetoothIcon,
1252
+ BatteryIcon: BatteryIcon,
1253
+ SunIcon: SunIcon,
1254
+ MoonIcon: MoonIcon,
1255
+ ErrorIcon: ErrorIcon,
1256
+ WarningIcon: WarningIcon,
1257
+ CloudIcon: CloudIcon
621
1258
  };
622
1259
 
623
1260
  // Define a constant object 'Themes' exporting various theme styles.
@@ -699,7 +1336,7 @@ var AlertView = _ref => {
699
1336
  flexWrap: "nowrap"
700
1337
  }, styles == null ? void 0 : styles.container), /*#__PURE__*/React.createElement(View, {
701
1338
  alignSelf: 'center'
702
- }, icon ? icon : (/*#__PURE__*/React.createElement(WarningSvg, {
1339
+ }, icon ? icon : (/*#__PURE__*/React.createElement(WarningIcon, {
703
1340
  size: 24,
704
1341
  color: (_styles$icon$color = styles == null ? void 0 : styles.icon.color) != null ? _styles$icon$color : Themes[variant].content.color
705
1342
  }))), /*#__PURE__*/React.createElement(Vertical, {
@@ -733,7 +1370,7 @@ var AlertComponent = _ref => {
733
1370
  // Exporting the AlertComponent as 'Alert' for use in other parts of the application.
734
1371
  var Alert = AlertComponent;
735
1372
 
736
- var _excluded$e = ["ratio", "children"];
1373
+ var _excluded$5 = ["ratio", "children"];
737
1374
  // Declaration of a functional component named AspectRatioView.
738
1375
  var AspectRatioView = _ref => {
739
1376
  var {
@@ -743,7 +1380,7 @@ var AspectRatioView = _ref => {
743
1380
  children
744
1381
  // Spread the rest of the props to inherit additional properties.
745
1382
  } = _ref,
746
- props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
1383
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$5);
747
1384
  return /*#__PURE__*/React.createElement(Center, Object.assign({
748
1385
  width: '100%',
749
1386
  position: "relative",
@@ -759,14 +1396,14 @@ var AspectRatioView = _ref => {
759
1396
  }, children));
760
1397
  };
761
1398
 
762
- var _excluded$f = ["ratio", "children"];
1399
+ var _excluded$6 = ["ratio", "children"];
763
1400
  // Declaration of the AspectRatioComponent functional component with destructured props.
764
1401
  var AspectRatioComponent = _ref => {
765
1402
  var {
766
1403
  ratio,
767
1404
  children
768
1405
  } = _ref,
769
- props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
1406
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$6);
770
1407
  // Beginning of the return statement in the functional component.
771
1408
  return /*#__PURE__*/React.createElement(AspectRatioView, Object.assign({
772
1409
  ratio: ratio
@@ -1036,7 +1673,7 @@ var IconSizes = {
1036
1673
  '6xl': 64
1037
1674
  };
1038
1675
 
1039
- var _excluded$g = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
1676
+ var _excluded$7 = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
1040
1677
  // Component definition for 'LinkView', a functional component with props defined by 'LinkViewProps'.
1041
1678
  var LinkView = _ref => {
1042
1679
  var {
@@ -1059,7 +1696,7 @@ var LinkView = _ref => {
1059
1696
  // Setter function for the hover state, noop function provided by default.
1060
1697
  setIsHovered = () => {}
1061
1698
  } = _ref,
1062
- props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
1699
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$7);
1063
1700
  // Function to handle mouse enter/leave events to toggle hover state.
1064
1701
  var handleHover = () => {
1065
1702
  if (underline === 'hover') setIsHovered(true);
@@ -1075,7 +1712,7 @@ var LinkView = _ref => {
1075
1712
  gap: 3,
1076
1713
  alignItems: "center",
1077
1714
  flexWrap: "nowrap"
1078
- }, children, isExternal && (/*#__PURE__*/React.createElement(ExternalLinkSvg, {
1715
+ }, children, isExternal && (/*#__PURE__*/React.createElement(ExternalLinkIcon, {
1079
1716
  size: IconSizes[iconSize],
1080
1717
  style: styles.icon
1081
1718
  })))));
@@ -1100,9 +1737,9 @@ var ButtonSizes = {
1100
1737
  paddingBottom: 8,
1101
1738
  paddingLeft: 12,
1102
1739
  paddingRight: 12,
1103
- fontWeight: 600,
1104
- fontSize: 'xs',
1105
- lineHeight: 16,
1740
+ fontWeight: 400,
1741
+ fontSize: 11,
1742
+ lineHeight: 14,
1106
1743
  letterSpacing: 1.25
1107
1744
  },
1108
1745
  sm: {
@@ -1111,10 +1748,10 @@ var ButtonSizes = {
1111
1748
  paddingBottom: 10,
1112
1749
  paddingLeft: 16,
1113
1750
  paddingRight: 16,
1114
- fontWeight: 600,
1115
- fontSize: 'sm',
1751
+ fontWeight: 400,
1752
+ fontSize: 12,
1116
1753
  // Establishes style configuration for medium (md) button size.
1117
- lineHeight: 20,
1754
+ lineHeight: 16,
1118
1755
  letterSpacing: 1.25
1119
1756
  },
1120
1757
  md: {
@@ -1124,9 +1761,9 @@ var ButtonSizes = {
1124
1761
  paddingLeft: 18,
1125
1762
  paddingRight: 18,
1126
1763
  // Establishes style configuration for large (lg) button size.
1127
- fontWeight: 600,
1128
- fontSize: 'md',
1129
- lineHeight: 24,
1764
+ fontSize: 14,
1765
+ fontWeight: 400,
1766
+ lineHeight: 18,
1130
1767
  letterSpacing: 1.25
1131
1768
  },
1132
1769
  lg: {
@@ -1136,8 +1773,8 @@ var ButtonSizes = {
1136
1773
  // Establishes style configuration for extra-large (xl) button size.
1137
1774
  paddingLeft: 22,
1138
1775
  paddingRight: 22,
1139
- fontWeight: 600,
1140
- fontSize: 'lg',
1776
+ fontWeight: 400,
1777
+ fontSize: 18,
1141
1778
  lineHeight: 24,
1142
1779
  letterSpacing: 1.25
1143
1780
  },
@@ -1151,10 +1788,10 @@ var ButtonSizes = {
1151
1788
  // Sets the border-radius for a rounded button shape to '4'.
1152
1789
  paddingRight: 26,
1153
1790
  // Sets the border-radius for a pill-shaped button to '24'.
1154
- fontWeight: 600,
1155
- fontSize: 'xl',
1791
+ fontWeight: 400,
1792
+ fontSize: 22,
1156
1793
  // Defines a constant 'IconSizes' as a mapping from 'Size' to corresponding 'CSSProperties' for icons.
1157
- lineHeight: 24,
1794
+ lineHeight: 28,
1158
1795
  // Sets the width, height, and padding for icons of extra-small size.
1159
1796
  letterSpacing: 1.25
1160
1797
  }
@@ -1217,17 +1854,17 @@ var DefaultSpeeds = {
1217
1854
  slow: 300
1218
1855
  };
1219
1856
 
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"];
1857
+ var _excluded$8 = ["size", "speed", "color"],
1858
+ _excluded2$1 = ["size", "speed", "color"],
1859
+ _excluded3$1 = ["size", "speed", "color"],
1860
+ _excluded4$1 = ["size", "children", "textColor", "loaderColor", "type", "speed", "textPosition"];
1224
1861
  var DefaultSpinner = _ref => {
1225
1862
  var {
1226
1863
  size = 'md',
1227
1864
  speed = 'normal',
1228
1865
  color = 'theme.loading'
1229
1866
  } = _ref,
1230
- props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
1867
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
1231
1868
  var theme = useTheme();
1232
1869
  var colorStyle = theme.getColor(color);
1233
1870
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1270,7 +1907,7 @@ var Dotted = _ref2 => {
1270
1907
  speed = 'normal',
1271
1908
  color = 'theme.loading'
1272
1909
  } = _ref2,
1273
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2);
1910
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
1274
1911
  var theme = useTheme();
1275
1912
  var colorStyle = theme.getColor(color);
1276
1913
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1312,7 +1949,7 @@ var Quarter = _ref3 => {
1312
1949
  speed = 'normal',
1313
1950
  color = 'theme.loading'
1314
1951
  } = _ref3,
1315
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
1952
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
1316
1953
  var theme = useTheme();
1317
1954
  var colorStyle = theme.getColor(color);
1318
1955
  var sizeStyle = typeof size === 'number' ? size : DefaultSizes[size];
@@ -1351,7 +1988,7 @@ var LoaderView = _ref4 => {
1351
1988
  speed = 'normal',
1352
1989
  textPosition = 'right'
1353
1990
  } = _ref4,
1354
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
1991
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
1355
1992
  var style = {
1356
1993
  size,
1357
1994
  speed,
@@ -1380,7 +2017,7 @@ React.createElement(LoaderView, Object.assign({}, props)));
1380
2017
  // Exports the LoaderComponent as Loader, making it available for use in other parts of the application.
1381
2018
  var Loader = LoaderComponent;
1382
2019
 
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"];
2020
+ 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
2021
  var contrast = /*#__PURE__*/require('contrast');
1385
2022
  var ButtonView = _ref => {
1386
2023
  var _props$onClick;
@@ -1416,7 +2053,7 @@ var ButtonView = _ref => {
1416
2053
  setIsHovered = () => {}
1417
2054
  // Defines CSS properties for 'outline' variant of the button with conditional styles based on reverse state.
1418
2055
  } = _ref,
1419
- props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
2056
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
1420
2057
  var {
1421
2058
  getColor
1422
2059
  } = useTheme();
@@ -1531,14 +2168,14 @@ var ButtonComponent = props => {
1531
2168
  };
1532
2169
  var Button = ButtonComponent;
1533
2170
 
1534
- var _excluded$j = ["src", "color"],
1535
- _excluded2$1 = ["path"];
2171
+ var _excluded$a = ["src", "color"],
2172
+ _excluded2$2 = ["path"];
1536
2173
  var FileSVG = _ref => {
1537
2174
  var {
1538
2175
  src,
1539
2176
  color
1540
2177
  } = _ref,
1541
- props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2178
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$a);
1542
2179
  var {
1543
2180
  getColor
1544
2181
  } = useTheme();
@@ -1556,7 +2193,7 @@ var FileImage = _ref2 => {
1556
2193
  var {
1557
2194
  path
1558
2195
  } = _ref2,
1559
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2196
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
1560
2197
  return /*#__PURE__*/React.createElement(Image, Object.assign({
1561
2198
  src: path
1562
2199
  }, props));
@@ -1606,7 +2243,7 @@ var useItemState = () => {
1606
2243
  };
1607
2244
  };
1608
2245
 
1609
- var _excluded$k = ["children", "styles"];
2246
+ var _excluded$b = ["children", "styles"];
1610
2247
  var HelperText = _ref => {
1611
2248
  var {
1612
2249
  children,
@@ -1614,7 +2251,7 @@ var HelperText = _ref => {
1614
2251
  helperText: {}
1615
2252
  }
1616
2253
  } = _ref,
1617
- props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2254
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$b);
1618
2255
  return /*#__PURE__*/React.createElement(Text, Object.assign({
1619
2256
  size: "xs",
1620
2257
  marginVertical: 0,
@@ -1623,7 +2260,7 @@ var HelperText = _ref => {
1623
2260
  }, styles['helperText'], props), children);
1624
2261
  };
1625
2262
 
1626
- var _excluded$l = ["children", "helperText", "error", "styles"];
2263
+ var _excluded$c = ["children", "helperText", "error", "styles"];
1627
2264
  var FieldContainer = _ref => {
1628
2265
  var {
1629
2266
  children,
@@ -1631,7 +2268,7 @@ var FieldContainer = _ref => {
1631
2268
  error = false,
1632
2269
  styles
1633
2270
  } = _ref,
1634
- props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2271
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
1635
2272
  return /*#__PURE__*/React.createElement(Vertical, Object.assign({
1636
2273
  gap: 5,
1637
2274
  position: "relative"
@@ -1690,7 +2327,7 @@ var PaddingWithoutLabel = {
1690
2327
  paddingRight: 36
1691
2328
  };
1692
2329
 
1693
- var _excluded$m = ["label", "shadow", "children", "value", "size", "shape", "variant", "error", "isWithLabel", "isFocused", "isHovered", "isDisabled", "isReadOnly", "colorScheme", "styles"];
2330
+ var _excluded$d = ["label", "shadow", "children", "value", "size", "shape", "variant", "error", "isWithLabel", "isFocused", "isHovered", "isDisabled", "isReadOnly", "colorScheme", "styles"];
1694
2331
  var FieldContent = _ref => {
1695
2332
  var {
1696
2333
  shadow,
@@ -1709,7 +2346,7 @@ var FieldContent = _ref => {
1709
2346
  pickerBox: {}
1710
2347
  }
1711
2348
  } = _ref,
1712
- props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2349
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$d);
1713
2350
  var isInteractive = (isHovered || isFocused) && !isDisabled;
1714
2351
  var color = error ? 'error' : isInteractive ? colorScheme : 'midgray';
1715
2352
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
@@ -1730,12 +2367,12 @@ var FieldContent = _ref => {
1730
2367
  }, isWithLabel ? PadddingWithLabel : PaddingWithoutLabel, shadow, Shapes[shape], InputVariants[variant], styles['box'], props), children);
1731
2368
  };
1732
2369
 
1733
- var _excluded$n = ["children"];
2370
+ var _excluded$e = ["children"];
1734
2371
  var FieldIcons = _ref => {
1735
2372
  var {
1736
2373
  children
1737
2374
  } = _ref,
1738
- props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
2375
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$e);
1739
2376
  return /*#__PURE__*/React.createElement(Center, Object.assign({
1740
2377
  gap: 10,
1741
2378
  right: 16,
@@ -1787,7 +2424,7 @@ var HeadingSizes$1 = {
1787
2424
  }
1788
2425
  };
1789
2426
 
1790
- var _excluded$o = ["children", "heading", "isItalic", "isUnderlined", "isStriked", "weight", "size"];
2427
+ var _excluded$f = ["children", "heading", "isItalic", "isUnderlined", "isStriked", "weight", "size"];
1791
2428
  var LabelView = _ref => {
1792
2429
  var {
1793
2430
  children,
@@ -1803,7 +2440,7 @@ var LabelView = _ref => {
1803
2440
  size = 'sm'
1804
2441
  // The fontSize prop for the Element is determined by the 'size' prop passed to LabelView.
1805
2442
  } = _ref,
1806
- props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
2443
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$f);
1807
2444
  // The fontStyle prop toggles between 'italic' and 'normal' based on the 'isItalic' boolean prop.
1808
2445
  var headingStyles = heading ? HeadingSizes$1[heading] : {};
1809
2446
  // fontWeight is derived from the Typography module, ensuring consistent font weighting across the app.
@@ -1835,7 +2472,7 @@ React.createElement(LabelView, Object.assign({}, props))
1835
2472
  var Label = LabelComponent;
1836
2473
  // Export the 'LabelComponent' as 'Label' to be reused throughout the project.
1837
2474
 
1838
- var _excluded$p = ["children", "size", "error", "color", "styles", "helperText"];
2475
+ var _excluded$g = ["children", "size", "error", "color", "styles", "helperText"];
1839
2476
  var FieldLabel = _ref => {
1840
2477
  var {
1841
2478
  children,
@@ -1846,7 +2483,7 @@ var FieldLabel = _ref => {
1846
2483
  label: {}
1847
2484
  }
1848
2485
  } = _ref,
1849
- props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
2486
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$g);
1850
2487
  return /*#__PURE__*/React.createElement(Label, Object.assign({
1851
2488
  top: 6,
1852
2489
  zIndex: 1000,
@@ -1859,12 +2496,12 @@ var FieldLabel = _ref => {
1859
2496
  }, styles['label'], props), children);
1860
2497
  };
1861
2498
 
1862
- var _excluded$q = ["children"];
2499
+ var _excluded$h = ["children"];
1863
2500
  var FieldWrapper = _ref => {
1864
2501
  var {
1865
2502
  children
1866
2503
  } = _ref,
1867
- props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
2504
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$h);
1868
2505
  return /*#__PURE__*/React.createElement(Vertical, Object.assign({
1869
2506
  width: "100%"
1870
2507
  }, props), children);
@@ -1880,10 +2517,10 @@ var IconSizes$2 = {
1880
2517
  xl: 16
1881
2518
  };
1882
2519
 
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"];
2520
+ var _excluded$i = ["isHovered", "setIsHovered", "option", "size", "callback", "style"],
2521
+ _excluded2$3 = ["id", "name", "value", "onChange", "isMulti", "isDisabled", "isReadOnly", "options"],
2522
+ _excluded3$2 = ["option", "size", "removeOption"],
2523
+ _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
2524
  // Defines a component to render individual selection items within a list.
1888
2525
  var Item = _ref => {
1889
2526
  var {
@@ -1894,7 +2531,7 @@ var Item = _ref => {
1894
2531
  callback = () => {},
1895
2532
  style
1896
2533
  } = _ref,
1897
- props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
2534
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$i);
1898
2535
  // Handles the click event on an option by invoking the callback with the selected option's value.
1899
2536
  var handleOptionClick = option => callback(option);
1900
2537
  // Toggles the hover state on the item.
@@ -1959,7 +2596,7 @@ var HiddenSelect = _ref3 => {
1959
2596
  isReadOnly = false,
1960
2597
  options = []
1961
2598
  } = _ref3,
1962
- props = _objectWithoutPropertiesLoose(_ref3, _excluded2$2);
2599
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded2$3);
1963
2600
  var handleChange = event => {
1964
2601
  if (onChange) onChange(event);
1965
2602
  };
@@ -2049,7 +2686,7 @@ var MultiSelect = _ref5 => {
2049
2686
  size = 'md',
2050
2687
  removeOption = () => {}
2051
2688
  } = _ref5,
2052
- props = _objectWithoutPropertiesLoose(_ref5, _excluded3$1);
2689
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded3$2);
2053
2690
  var handleClick = () => removeOption(option);
2054
2691
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
2055
2692
  gap: 10,
@@ -2061,7 +2698,7 @@ var MultiSelect = _ref5 => {
2061
2698
  onClick: event => event.stopPropagation()
2062
2699
  }, props), /*#__PURE__*/React.createElement(Text, {
2063
2700
  size: size
2064
- }, option), /*#__PURE__*/React.createElement(CloseSvg, {
2701
+ }, option), /*#__PURE__*/React.createElement(CloseIcon, {
2065
2702
  role: "close-button",
2066
2703
  color: "inherit",
2067
2704
  size: IconSizes$2[size],
@@ -2105,7 +2742,7 @@ var SelectView = _ref6 => {
2105
2742
  setHighlightedIndex,
2106
2743
  highlightedIndex
2107
2744
  } = _ref6,
2108
- props = _objectWithoutPropertiesLoose(_ref6, _excluded4$1);
2745
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded4$2);
2109
2746
  var isWithLabel = !!(isFocused && label);
2110
2747
  var handleHover = () => setIsHovered(!isHovered);
2111
2748
  var handleFocus = () => setIsFocused(true);
@@ -2175,12 +2812,14 @@ var SelectView = _ref6 => {
2175
2812
  isDisabled: isDisabled,
2176
2813
  placeholder: placeholder,
2177
2814
  removeOption: handleRemoveOption
2178
- })), /*#__PURE__*/React.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(React.Fragment, null, hide ? (/*#__PURE__*/React.createElement(ArrowDownSvg, {
2815
+ })), /*#__PURE__*/React.createElement(FieldIcons, null, !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(React.Fragment, null, hide ? (/*#__PURE__*/React.createElement(ChevronIcon, {
2179
2816
  color: "inherit",
2180
2817
  size: IconSizes$2[size],
2181
- style: styles.icon
2182
- })) : (/*#__PURE__*/React.createElement(ArrowUpSvg, {
2818
+ style: styles.icon,
2819
+ orientation: "down"
2820
+ })) : (/*#__PURE__*/React.createElement(ChevronIcon, {
2183
2821
  color: "inherit",
2822
+ orientation: "up",
2184
2823
  size: IconSizes$2[size],
2185
2824
  style: styles.icon
2186
2825
  })))))), !hide && (/*#__PURE__*/React.createElement(DropDown, {
@@ -2349,7 +2988,7 @@ var SliderPadding = {
2349
2988
  }
2350
2989
  };
2351
2990
 
2352
- var _excluded$s = ["id", "name", "label", "inActiveChild", "activeChild", "labelPosition", "shadow", "size", "colorScheme", "value", "isHovered", "isDisabled", "isReadOnly", "on", "setOn", "onChange", "setValue", "setIsHovered", "helperText", "styles"];
2991
+ var _excluded$j = ["id", "name", "label", "inActiveChild", "activeChild", "labelPosition", "shadow", "size", "colorScheme", "value", "isHovered", "isDisabled", "isReadOnly", "on", "setOn", "onChange", "setValue", "setIsHovered", "helperText", "styles"];
2353
2992
  var SwitchContent = props => /*#__PURE__*/React.createElement(Input, Object.assign({
2354
2993
  type: "checkbox"
2355
2994
  }, props));
@@ -2379,7 +3018,7 @@ var SwitchView = _ref => {
2379
3018
  label: {}
2380
3019
  }
2381
3020
  } = _ref,
2382
- props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
3021
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$j);
2383
3022
  var handleToggle = event => {
2384
3023
  if (!isReadOnly) {
2385
3024
  setValue(!value);
@@ -2469,7 +3108,7 @@ var useTextAreaState = _ref => {
2469
3108
  // Export of the useTextAreaState hook for external usage.
2470
3109
  };
2471
3110
 
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"];
3111
+ 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
3112
  var TextAreaView = _ref => {
2474
3113
  var {
2475
3114
  id,
@@ -2509,7 +3148,7 @@ var TextAreaView = _ref => {
2509
3148
  field: {}
2510
3149
  }
2511
3150
  } = _ref,
2512
- props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
3151
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$k);
2513
3152
  var isWithLabel = !!(isFocused && label);
2514
3153
  var fieldStyles = Object.assign({
2515
3154
  margin: 0,
@@ -2639,7 +3278,7 @@ var useTextFieldState = _ref => {
2639
3278
  };
2640
3279
  };
2641
3280
 
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"];
3281
+ 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
3282
  var TextFieldInput = props => /*#__PURE__*/React.createElement(Input, Object.assign({
2644
3283
  type: "text"
2645
3284
  }, props));
@@ -2682,7 +3321,7 @@ var TextFieldView = _ref => {
2682
3321
  onFocus,
2683
3322
  onBlur = () => {}
2684
3323
  } = _ref,
2685
- props = _objectWithoutPropertiesLoose(_ref, _excluded$u);
3324
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$l);
2686
3325
  var {
2687
3326
  getColor
2688
3327
  } = useTheme();
@@ -2778,7 +3417,7 @@ var TextFieldView = _ref => {
2778
3417
  }, fieldStyles, props, {
2779
3418
  onChange: handleChange,
2780
3419
  value: value
2781
- }))), (rightChild || isClearable && value) && (/*#__PURE__*/React.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(CloseSvg, {
3420
+ }))), (rightChild || isClearable && value) && (/*#__PURE__*/React.createElement(FieldIcons, null, isClearable && value && !isReadOnly && !isDisabled && (/*#__PURE__*/React.createElement(CloseIcon, {
2782
3421
  size: Typography.fontSizes[size],
2783
3422
  color: IconColor,
2784
3423
  onClick: handleClear
@@ -2863,7 +3502,7 @@ var IconSizes$3 = {
2863
3502
  '6xl': 60
2864
3503
  };
2865
3504
 
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"];
3505
+ 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
3506
  var CheckboxView = _ref => {
2868
3507
  var {
2869
3508
  id,
@@ -2891,7 +3530,7 @@ var CheckboxView = _ref => {
2891
3530
  },
2892
3531
  infoText
2893
3532
  } = _ref,
2894
- props = _objectWithoutPropertiesLoose(_ref, _excluded$v);
3533
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$m);
2895
3534
  var handleHover = () => setIsHovered(!isHovered);
2896
3535
  var handleChange = () => {
2897
3536
  if (!isReadOnly && !isDisabled) {
@@ -2938,8 +3577,12 @@ var CheckboxView = _ref => {
2938
3577
  alignItems: "center"
2939
3578
  }, labelPosition === 'left' && label && (/*#__PURE__*/React.createElement(Text, Object.assign({
2940
3579
  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]
3580
+ }, styles == null ? void 0 : styles.label), label)), /*#__PURE__*/React.createElement(Center, Object.assign({}, checkboxStyle.checkbox), isIndeterminate ? (/*#__PURE__*/React.createElement(MinusIcon, {
3581
+ size: IconSizes$3[size],
3582
+ color: "white"
3583
+ })) : (isChecked || isSelected) && (icon != null ? icon : /*#__PURE__*/React.createElement(TickIcon, {
3584
+ size: IconSizes$3[size],
3585
+ color: "white"
2943
3586
  }))), labelPosition === 'right' && label && (/*#__PURE__*/React.createElement(Text, Object.assign({
2944
3587
  size: size
2945
3588
  }, styles == null ? void 0 : styles.label), label))), infoText && (/*#__PURE__*/React.createElement(Text, Object.assign({
@@ -4446,11 +5089,11 @@ var IconSizes$4 = {
4446
5089
  xl: 16
4447
5090
  };
4448
5091
 
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"];
5092
+ var _excluded$n = ["size"],
5093
+ _excluded2$4 = ["size"],
5094
+ _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
5095
  var CountryList = _ref => {
4453
- var props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5096
+ var props = _objectWithoutPropertiesLoose(_ref, _excluded$n);
4454
5097
  return /*#__PURE__*/React.createElement(Element, Object.assign({
4455
5098
  as: "ul"
4456
5099
  }, props));
@@ -4459,7 +5102,7 @@ var CountrySelector = props => (/*#__PURE__*/React.createElement(Input, Object.a
4459
5102
  type: "country"
4460
5103
  }, props)));
4461
5104
  var CountryItem = _ref2 => {
4462
- var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5105
+ var props = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
4463
5106
  return /*#__PURE__*/React.createElement(Element, Object.assign({
4464
5107
  as: "li"
4465
5108
  }, props));
@@ -4483,6 +5126,7 @@ var DropDownItem = _ref3 => {
4483
5126
  margin: 0,
4484
5127
  role: "DropDownItem",
4485
5128
  listStyleType: "none",
5129
+ fontWeight: "normal",
4486
5130
  paddingVertical: 6,
4487
5131
  paddingHorizontal: 12,
4488
5132
  onMouseEnter: handleHover,
@@ -4561,7 +5205,7 @@ var CountryPickerView = _ref5 => {
4561
5205
  box: {}
4562
5206
  }
4563
5207
  } = _ref5,
4564
- props = _objectWithoutPropertiesLoose(_ref5, _excluded3$2);
5208
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded3$3);
4565
5209
  var {
4566
5210
  getColor
4567
5211
  } = useTheme();
@@ -4646,11 +5290,13 @@ var CountryPickerView = _ref5 => {
4646
5290
  }, fieldStyles, props, {
4647
5291
  value: value,
4648
5292
  onChange: handleChange
4649
- }))), /*#__PURE__*/React.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React.createElement(ArrowDownSvg, {
5293
+ }))), /*#__PURE__*/React.createElement(FieldIcons, null, hide ? (/*#__PURE__*/React.createElement(ChevronIcon$1, {
5294
+ orientation: "down",
4650
5295
  size: IconSizes$4[size],
4651
5296
  color: IconColor,
4652
5297
  style: styles['icon']
4653
- })) : (/*#__PURE__*/React.createElement(ArrowUpSvg, {
5298
+ })) : (/*#__PURE__*/React.createElement(ChevronIcon$1, {
5299
+ orientation: "up",
4654
5300
  size: IconSizes$4[size],
4655
5301
  color: IconColor,
4656
5302
  style: styles['icon']
@@ -4686,7 +5332,7 @@ var useDatePickerState = () => {
4686
5332
  };
4687
5333
  };
4688
5334
 
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"];
5335
+ 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
5336
  var DatePickerContent = props => /*#__PURE__*/React.createElement(Input, Object.assign({
4691
5337
  type: "date"
4692
5338
  }, props));
@@ -4720,7 +5366,7 @@ var DatePickerView = _ref => {
4720
5366
  onChange,
4721
5367
  onChangeText
4722
5368
  } = _ref,
4723
- props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5369
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$o);
4724
5370
  var isWithLabel = !!(isFocused && label);
4725
5371
  var handleHover = () => setIsHovered(!isHovered);
4726
5372
  var handleFocus = () => setIsFocused(true);
@@ -4808,24 +5454,24 @@ var usePasswordState = props => {
4808
5454
  }, props, textFieldStates);
4809
5455
  };
4810
5456
 
4811
- var _excluded$y = ["visibleIcon", "hiddenIcon"],
4812
- _excluded2$4 = ["isVisible", "setIsVisible"];
5457
+ var _excluded$p = ["visibleIcon", "hiddenIcon"],
5458
+ _excluded2$5 = ["isVisible", "setIsVisible"];
4813
5459
  var PasswordComponent = _ref => {
4814
5460
  var {
4815
- visibleIcon = /*#__PURE__*/React.createElement(OpenEyeSvg, {
5461
+ visibleIcon = /*#__PURE__*/React.createElement(OpenEyeIcon, {
4816
5462
  size: 14
4817
5463
  }),
4818
- hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeSvg, {
5464
+ hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeIcon, {
4819
5465
  size: 14
4820
5466
  })
4821
5467
  } = _ref,
4822
- props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5468
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$p);
4823
5469
  var _usePasswordState = usePasswordState(props),
4824
5470
  {
4825
5471
  isVisible,
4826
5472
  setIsVisible
4827
5473
  } = _usePasswordState,
4828
- passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$4);
5474
+ passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$5);
4829
5475
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, passwordProps, {
4830
5476
  type: isVisible ? 'text' : 'password',
4831
5477
  isClearable: false,
@@ -4873,74 +5519,7 @@ var useComboBoxState = (items, placeholder, searchPlaceholder) => {
4873
5519
  };
4874
5520
  };
4875
5521
 
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"];
5522
+ var _excluded$q = ["placeholder", "items", "showTick", "onSelect", "searchEnabled", "left", "right", "label", "filteredItems", "setSelectedItem", "selectedItem", "highlightedIndex", "setHighlightedIndex", "searchQuery", "setSearchQuery", "setFilteredItems", "styles", "isDropdownVisible", "setIsDropdownVisible"];
4944
5523
  // Defines the functional component 'ComboBoxView' with destructured props.
4945
5524
  var ComboBoxView = _ref => {
4946
5525
  var {
@@ -4965,7 +5544,7 @@ var ComboBoxView = _ref => {
4965
5544
  setIsDropdownVisible
4966
5545
  // Collects all further props not destructured explicitly.
4967
5546
  } = _ref,
4968
- props = _objectWithoutPropertiesLoose(_ref, _excluded$B);
5547
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$q);
4969
5548
  // Sets up an effect to handle clicking outside the dropdown to close it.
4970
5549
  useEffect(() => {
4971
5550
  var handleClickOutside = event => {
@@ -5049,7 +5628,7 @@ var ComboBoxView = _ref => {
5049
5628
  onChange: value => handleSearch(value),
5050
5629
  hint: placeholder,
5051
5630
  isClearable: false,
5052
- leftChild: /*#__PURE__*/React.createElement(SearchLoopSvg, {
5631
+ leftChild: /*#__PURE__*/React.createElement(SearchIcon$1, {
5053
5632
  size: 12
5054
5633
  }),
5055
5634
  styles: {
@@ -5071,10 +5650,12 @@ var ComboBoxView = _ref => {
5071
5650
  backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
5072
5651
  onMouseEnter: () => setHighlightedIndex(index),
5073
5652
  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))))))))))));
5653
+ }, 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, {
5654
+ size: 20
5655
+ }))))))))))));
5075
5656
  };
5076
5657
 
5077
- var _excluded$C = ["id", "name", "items", "placeholder", "searchPlaceholder"];
5658
+ var _excluded$r = ["id", "name", "items", "placeholder", "searchPlaceholder"];
5078
5659
  // Defines the ComboBoxComponent functional component with ComboBoxProps
5079
5660
  var ComboBoxComponent = _ref => {
5080
5661
  var {
@@ -5090,7 +5671,7 @@ var ComboBoxComponent = _ref => {
5090
5671
  searchPlaceholder
5091
5672
  // Destructures the rest of the props not explicitly defined
5092
5673
  } = _ref,
5093
- props = _objectWithoutPropertiesLoose(_ref, _excluded$C);
5674
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$r);
5094
5675
  // Initializes ComboBox state using custom hook with items and placeholders
5095
5676
  var state = useComboBoxState(items, placeholder, searchPlaceholder);
5096
5677
  return (
@@ -5106,7 +5687,7 @@ var ComboBoxComponent = _ref => {
5106
5687
  // Exports the ComboBoxComponent as ComboBox
5107
5688
  var ComboBox = ComboBoxComponent;
5108
5689
 
5109
- var _excluded$D = ["children", "autoFocus", "initFocus", "onChange"];
5690
+ var _excluded$s = ["children", "autoFocus", "initFocus", "onChange"];
5110
5691
  var FocusContext = /*#__PURE__*/createContext({
5111
5692
  active: false,
5112
5693
  focusNextInput: () => {},
@@ -5122,7 +5703,7 @@ var FormikForm = _ref => {
5122
5703
  initFocus,
5123
5704
  onChange = () => {}
5124
5705
  } = _ref,
5125
- props = _objectWithoutPropertiesLoose(_ref, _excluded$D);
5706
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$s);
5126
5707
  var formik = useFormikContext();
5127
5708
  useEffect(() => {
5128
5709
  onChange(formik.values);
@@ -5170,7 +5751,7 @@ var FormikForm = _ref => {
5170
5751
  }, /*#__PURE__*/React.createElement(Form, Object.assign({}, props), children));
5171
5752
  };
5172
5753
 
5173
- var _excluded$E = ["name", "type"];
5754
+ var _excluded$t = ["name", "type"];
5174
5755
  var getInputTypeProps = type => {
5175
5756
  switch (type) {
5176
5757
  case 'email':
@@ -5209,7 +5790,7 @@ var useFormikInput = _ref => {
5209
5790
  name,
5210
5791
  type
5211
5792
  } = _ref,
5212
- props = _objectWithoutPropertiesLoose(_ref, _excluded$E);
5793
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$t);
5213
5794
  var focus = useFormFocus();
5214
5795
  var {
5215
5796
  touched,
@@ -5253,13 +5834,13 @@ var useFormikInput = _ref => {
5253
5834
  } : {});
5254
5835
  };
5255
5836
 
5256
- var _excluded$F = ["value"];
5837
+ var _excluded$u = ["value"];
5257
5838
  var CheckboxComponent$1 = props => {
5258
5839
  var _useFormikInput = useFormikInput(props),
5259
5840
  {
5260
5841
  value
5261
5842
  } = _useFormikInput,
5262
- formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$F);
5843
+ formProps = _objectWithoutPropertiesLoose(_useFormikInput, _excluded$u);
5263
5844
  formProps.isChecked = value;
5264
5845
  var checkboxStates = useCheckboxState(props);
5265
5846
  return /*#__PURE__*/React.createElement(CheckboxView, Object.assign({}, checkboxStates, formProps));
@@ -5317,11 +5898,11 @@ var TextAreaComponent$1 = props => {
5317
5898
  */
5318
5899
  var FormikTextArea = TextAreaComponent$1;
5319
5900
 
5320
- var _excluded$G = ["value"];
5901
+ var _excluded$v = ["value"];
5321
5902
  var TextFieldComponent$1 = props => {
5322
5903
  var formProps = useFormikInput(props);
5323
5904
  var _useTextFieldState = useTextFieldState(props),
5324
- textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$G);
5905
+ textFieldStates = _objectWithoutPropertiesLoose(_useTextFieldState, _excluded$v);
5325
5906
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, textFieldStates, formProps));
5326
5907
  };
5327
5908
  /**
@@ -5329,25 +5910,25 @@ var TextFieldComponent$1 = props => {
5329
5910
  */
5330
5911
  var FormikTextField = TextFieldComponent$1;
5331
5912
 
5332
- var _excluded$H = ["visibleIcon", "hiddenIcon"],
5333
- _excluded2$5 = ["isVisible", "setIsVisible"];
5913
+ var _excluded$w = ["visibleIcon", "hiddenIcon"],
5914
+ _excluded2$6 = ["isVisible", "setIsVisible"];
5334
5915
  var PasswordComponent$1 = _ref => {
5335
5916
  var {
5336
- visibleIcon = /*#__PURE__*/React.createElement(OpenEyeSvg, {
5917
+ visibleIcon = /*#__PURE__*/React.createElement(OpenEyeIcon, {
5337
5918
  size: 14
5338
5919
  }),
5339
- hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeSvg, {
5920
+ hiddenIcon = /*#__PURE__*/React.createElement(CloseEyeIcon, {
5340
5921
  size: 14
5341
5922
  })
5342
5923
  } = _ref,
5343
- props = _objectWithoutPropertiesLoose(_ref, _excluded$H);
5924
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$w);
5344
5925
  var formProps = useFormikInput(props);
5345
5926
  var _usePasswordState = usePasswordState(formProps),
5346
5927
  {
5347
5928
  isVisible,
5348
5929
  setIsVisible
5349
5930
  } = _usePasswordState,
5350
- passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$5);
5931
+ passwordProps = _objectWithoutPropertiesLoose(_usePasswordState, _excluded2$6);
5351
5932
  return /*#__PURE__*/React.createElement(TextFieldView, Object.assign({}, passwordProps, {
5352
5933
  type: isVisible ? 'text' : 'password',
5353
5934
  isClearable: false,
@@ -5365,14 +5946,14 @@ var PasswordComponent$1 = _ref => {
5365
5946
  */
5366
5947
  var FormikPassword = PasswordComponent$1;
5367
5948
 
5368
- var _excluded$I = ["items", "placeholder", "searchPlaceholder"];
5949
+ var _excluded$x = ["items", "placeholder", "searchPlaceholder"];
5369
5950
  var ComboBoxComponent$1 = _ref => {
5370
5951
  var {
5371
5952
  items,
5372
5953
  placeholder,
5373
5954
  searchPlaceholder
5374
5955
  } = _ref,
5375
- props = _objectWithoutPropertiesLoose(_ref, _excluded$I);
5956
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$x);
5376
5957
  var formProps = useFormikInput(props);
5377
5958
  var ComboBoxStates = useComboBoxState(items, placeholder, searchPlaceholder);
5378
5959
  // Ensure the onChange function from formProps is being called when an item is selected
@@ -5440,14 +6021,14 @@ var Themes$1 = {
5440
6021
  },
5441
6022
  icon: {
5442
6023
  color: 'color.blue.500',
5443
- name: 'InformationSvg'
6024
+ name: 'InformationIcon'
5444
6025
  },
5445
6026
  content: {
5446
6027
  color: 'color.blue.500'
5447
6028
  },
5448
6029
  close: {
5449
6030
  color: 'color.blue.500',
5450
- name: 'CloseSvg'
6031
+ name: 'CloseIcon'
5451
6032
  }
5452
6033
  },
5453
6034
  success: {
@@ -5457,14 +6038,14 @@ var Themes$1 = {
5457
6038
  },
5458
6039
  icon: {
5459
6040
  color: 'color.green.500',
5460
- name: 'CheckCircleSvg'
6041
+ name: 'CheckCircleIcon'
5461
6042
  },
5462
6043
  content: {
5463
6044
  color: 'color.green.500'
5464
6045
  },
5465
6046
  close: {
5466
6047
  color: 'color.green.500',
5467
- name: 'CloseSvg'
6048
+ name: 'CloseIcon'
5468
6049
  }
5469
6050
  },
5470
6051
  error: {
@@ -5474,14 +6055,14 @@ var Themes$1 = {
5474
6055
  },
5475
6056
  icon: {
5476
6057
  color: 'color.red.500',
5477
- name: 'ErrrorSvg'
6058
+ name: 'ErrrorIcon'
5478
6059
  },
5479
6060
  content: {
5480
6061
  color: 'color.red.500'
5481
6062
  },
5482
6063
  close: {
5483
6064
  color: 'color.red.500',
5484
- name: 'CloseSvg'
6065
+ name: 'CloseIcon'
5485
6066
  }
5486
6067
  },
5487
6068
  warning: {
@@ -5491,14 +6072,14 @@ var Themes$1 = {
5491
6072
  },
5492
6073
  icon: {
5493
6074
  color: 'color.orange.500',
5494
- name: 'ErrrorSvg'
6075
+ name: 'ErrrorIcon'
5495
6076
  },
5496
6077
  content: {
5497
6078
  color: 'color.orange.500'
5498
6079
  },
5499
6080
  close: {
5500
6081
  color: 'color.orange.500',
5501
- name: 'CloseSvg'
6082
+ name: 'CloseIcon'
5502
6083
  }
5503
6084
  }
5504
6085
  };
@@ -5545,19 +6126,19 @@ var MessageView = _ref => {
5545
6126
  error: '#ef4444'
5546
6127
  }[variant];
5547
6128
  var iconComponent = {
5548
- info: /*#__PURE__*/React.createElement(InfoSvg, Object.assign({
6129
+ info: /*#__PURE__*/React.createElement(InfoIcon, Object.assign({
5549
6130
  size: 24,
5550
6131
  color: iconColor
5551
6132
  }, styles == null ? void 0 : styles.icon)),
5552
- success: /*#__PURE__*/React.createElement(SuccessSvg, Object.assign({
6133
+ success: /*#__PURE__*/React.createElement(SuccessIcon, Object.assign({
5553
6134
  size: 24,
5554
6135
  color: iconColor
5555
6136
  }, styles == null ? void 0 : styles.icon)),
5556
- warning: /*#__PURE__*/React.createElement(WarningSvg, Object.assign({
6137
+ warning: /*#__PURE__*/React.createElement(WarningIcon, Object.assign({
5557
6138
  size: 24,
5558
6139
  color: iconColor
5559
6140
  }, styles == null ? void 0 : styles.icon)),
5560
- error: /*#__PURE__*/React.createElement(ErrorSvg, Object.assign({
6141
+ error: /*#__PURE__*/React.createElement(ErrorIcon, Object.assign({
5561
6142
  size: 24,
5562
6143
  color: iconColor
5563
6144
  }, styles == null ? void 0 : styles.icon))
@@ -5598,7 +6179,7 @@ var MessageView = _ref => {
5598
6179
  onClick: () => {
5599
6180
  hide();
5600
6181
  }
5601
- }, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React.createElement(CloseSvg, Object.assign({
6182
+ }, styles == null || (_styles$closingIcon = styles.closingIcon) == null ? void 0 : _styles$closingIcon.container), /*#__PURE__*/React.createElement(CloseIcon, Object.assign({
5602
6183
  size: 18,
5603
6184
  color: iconColor
5604
6185
  }, styles == null || (_styles$closingIcon2 = styles.closingIcon) == null ? void 0 : _styles$closingIcon2.icon)))));
@@ -5741,11 +6322,11 @@ var HeaderIconSizes = {
5741
6322
  xl: 28
5742
6323
  };
5743
6324
 
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"];
6325
+ var _excluded$y = ["children", "blur", "isOpen", "isClosePrevented", "onClose", "position"],
6326
+ _excluded2$7 = ["children", "shadow", "isFullScreen", "shape"],
6327
+ _excluded3$4 = ["children", "buttonColor", "iconSize", "buttonPosition"],
6328
+ _excluded4$3 = ["children"],
6329
+ _excluded5$1 = ["children"];
5749
6330
  var ModalOverlay = _ref => {
5750
6331
  var {
5751
6332
  children,
@@ -5755,7 +6336,7 @@ var ModalOverlay = _ref => {
5755
6336
  onClose = () => {},
5756
6337
  position = 'center'
5757
6338
  } = _ref,
5758
- props = _objectWithoutPropertiesLoose(_ref, _excluded$J);
6339
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$y);
5759
6340
  var handleClick = () => {
5760
6341
  if (!isClosePrevented) onClose();
5761
6342
  };
@@ -5788,7 +6369,7 @@ var ModalContainer = _ref2 => {
5788
6369
  isFullScreen = false,
5789
6370
  shape = 'rounded'
5790
6371
  } = _ref2,
5791
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2$6);
6372
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded2$7);
5792
6373
  var defaultShadow = typeof document !== undefined ? {
5793
6374
  boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.3)'
5794
6375
  } : {
@@ -5819,12 +6400,12 @@ var ModalHeader = _ref3 => {
5819
6400
  iconSize = 'md',
5820
6401
  buttonPosition = 'right'
5821
6402
  } = _ref3,
5822
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
6403
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded3$4);
5823
6404
  var onClose = props.onClose ? props.onClose : hideModal;
5824
6405
  var buttonIcon = /*#__PURE__*/React.createElement(Button, {
5825
6406
  onClick: onClose,
5826
6407
  colorScheme: "transparent",
5827
- icon: /*#__PURE__*/React.createElement(CloseSvg, {
6408
+ icon: /*#__PURE__*/React.createElement(CloseIcon, {
5828
6409
  size: HeaderIconSizes[iconSize],
5829
6410
  color: buttonColor
5830
6411
  }),
@@ -5844,7 +6425,7 @@ var ModalBody = _ref4 => {
5844
6425
  var {
5845
6426
  children
5846
6427
  } = _ref4,
5847
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
6428
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4$3);
5848
6429
  var defaultBorder = {
5849
6430
  borderBottomWidth: 2,
5850
6431
  borderTopWidth: 2,
@@ -5860,7 +6441,7 @@ var ModalFooter = _ref5 => {
5860
6441
  var {
5861
6442
  children
5862
6443
  } = _ref5,
5863
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
6444
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
5864
6445
  return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
5865
6446
  marginTop: "auto",
5866
6447
  alignItems: "center",
@@ -6079,7 +6660,7 @@ var TabsView = props => {
6079
6660
  // Returns a boolean indicating if the given tab is identical to the first tab in 'tabsState'.
6080
6661
  return tab.value === tabsState[0].value;
6081
6662
  };
6082
- return /*#__PURE__*/React.createElement(Horizontal, Object.assign({
6663
+ return /*#__PURE__*/React.createElement(Vertical$1, Object.assign({
6083
6664
  width: "100w",
6084
6665
  height: '100%'
6085
6666
  }, styles == null ? void 0 : styles.container), /*#__PURE__*/React.createElement(Horizontal, Object.assign({
@@ -6144,7 +6725,7 @@ var ToggleShapes = {
6144
6725
  pillShaped: 24
6145
6726
  };
6146
6727
 
6147
- var _excluded$K = ["children", "shape", "colorScheme", "variant", "isHovered", "setIsHovered", "isDisabled", "isToggle", "setIsToggled", "onToggle"];
6728
+ var _excluded$z = ["children", "shape", "colorScheme", "variant", "isHovered", "setIsHovered", "isDisabled", "isToggle", "setIsToggled", "onToggle"];
6148
6729
  var ToggleView = _ref => {
6149
6730
  var {
6150
6731
  children,
@@ -6158,7 +6739,7 @@ var ToggleView = _ref => {
6158
6739
  setIsToggled,
6159
6740
  onToggle
6160
6741
  } = _ref,
6161
- props = _objectWithoutPropertiesLoose(_ref, _excluded$K);
6742
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
6162
6743
  var toggleColor = !isDisabled ? colorScheme : 'theme.disabled';
6163
6744
  var isActive = !!(isToggle || isHovered);
6164
6745
  var ToggleVariants = {
@@ -6200,7 +6781,7 @@ var ToggleView = _ref => {
6200
6781
  }, ToggleVariants[variant], props), children);
6201
6782
  };
6202
6783
 
6203
- var _excluded$L = ["children", "shape", "colorScheme", "variant", "isDisabled", "isToggled", "onToggle"];
6784
+ var _excluded$A = ["children", "shape", "colorScheme", "variant", "isDisabled", "isToggled", "onToggle"];
6204
6785
  // Destructuring properties from ToggleProps to be used within the ToggleComponent.
6205
6786
  var ToggleComponent = _ref => {
6206
6787
  var {
@@ -6213,7 +6794,7 @@ var ToggleComponent = _ref => {
6213
6794
  isToggled = false,
6214
6795
  onToggle
6215
6796
  } = _ref,
6216
- props = _objectWithoutPropertiesLoose(_ref, _excluded$L);
6797
+ props = _objectWithoutPropertiesLoose(_ref, _excluded$A);
6217
6798
  // Initializing toggle state and set state functions using the custom hook useToggleState.
6218
6799
  var {
6219
6800
  isHovered,
@@ -6328,5 +6909,5 @@ var ToggleGroupComponent = _ref => {
6328
6909
  // Expose the ToggleGroupComponent for import into other modules
6329
6910
  var ToggleGroup = ToggleGroupComponent;
6330
6911
 
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 };
6912
+ 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, Icon, 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 };
6332
6913
  //# sourceMappingURL=web.esm.js.map