@xola/ui-kit 2.0.0-1 → 2.0.0-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,28 +2,33 @@
2
2
 
3
3
  React component library for the next generation of Xola apps.
4
4
 
5
+ ## Requirements
6
+
7
+ - Node.js v14
8
+ - NPM v7
9
+
5
10
  ## Usage
6
11
 
7
- Install the UI kit.
12
+ Install the UI kit:
8
13
 
9
14
  ```bash
10
15
  $ npm install @xola/ui-kit
11
16
  ```
12
17
 
13
- Install peer dependencies.
18
+ Install peer dependencies:
14
19
 
15
20
  ```bash
16
21
  $ npm install autoprefixer postcss tailwindcss lodash
17
22
  ```
18
23
 
19
- Create PostCSS and Tailwind config files.
24
+ Create PostCSS and Tailwind config files:
20
25
 
21
26
  ```bash
22
27
  $ echo 'module.exports = require("@xola/ui-kit/tailwind.config");' > tailwind.config.js
23
28
  $ echo 'module.exports = require("@xola/ui-kit/postcss.config");' > postcss.config.js
24
29
  ```
25
30
 
26
- Import main CSS files in your project.
31
+ Import main CSS files in your project:
27
32
 
28
33
  ```js
29
34
  import "@xola/ui-kit/index.css";
@@ -32,35 +37,12 @@ import "@xola/ui-kit/build/style.css";
32
37
 
33
38
  UI kit expects you already have a working React dev environment with PostCSS support.
34
39
 
35
- Import and use the components.
40
+ Import and use the components:
36
41
 
37
42
  ```js
38
43
  import { Button } from "@xola/ui-kit";
39
44
  ```
40
45
 
41
- ## Available Components
42
-
43
- - Alert
44
- - Avatar
45
- - Badge
46
- - Breadcrumb
47
- - Button
48
- - ButtonGroup
49
- - FormGroup
50
- - HeaderToolbar
51
- - Input
52
- - Label
53
- - Logo
54
- - Modal
55
- - NotificationCount
56
- - Popover
57
- - Search
58
- - Sidebar
59
- - Spinner
60
- - Switch
61
- - Table
62
- - Tooltip
63
-
64
46
  ## Development
65
47
 
66
48
  ### Installation
@@ -68,7 +50,7 @@ import { Button } from "@xola/ui-kit";
68
50
  Install all required dependencies:
69
51
 
70
52
  ```bash
71
- $ nvm use
53
+ $ nvm use # Project needs Node.js v14 with NPM v7
72
54
  $ npm install
73
55
  ```
74
56
 
@@ -80,8 +62,59 @@ $ npm run dev
80
62
 
81
63
  ### Use the Package Locally
82
64
 
65
+ In order for this to work you will have to set up an NPM workspace. Also, `ui-kit` and `your-project` has to be in the same directory.
66
+
67
+ Start by creating a `package.json` file in your "workspace" directory with the following content:
68
+
69
+ ```json
70
+ {
71
+ "workspaces": ["ui-kit", "your-project"]
72
+ }
73
+ ```
74
+
75
+ ```bash
76
+ $ cd workspace
77
+ $ npm install --legacy-peer-deps
78
+ ```
79
+
80
+ Next, start the build command from `ui-kit`:
81
+
82
+ ```bash
83
+ $ cd ui-kit
84
+ $ npm run build -- --watch
85
+ ```
86
+
87
+ If you encounter some issues, try removing the following directories and running the install command again:
88
+
89
+ ```bash
90
+ $ rm -rf ui-kit/node_modules
91
+ $ rm -rf your-project/node_modules
92
+ $ npm install --legacy-peer-deps
93
+ ```
94
+
95
+ ### Lint & Auto-fix
96
+
97
+ To automatically fix lint issues in this project you have the following commands:
98
+
99
+ ```bash
100
+ npm run lint # Run lint on `src` and output issues
101
+ npm run lint:fix # Run lint and automatically fix any issues. Any that are not fixed are output to screen.
102
+ ```
103
+
104
+ ## Notes
105
+
106
+ To avoid issues with how npm v7 resolves peer dependencies, we enabled `legacy-peer-deps` rule in `.npmrc`.
107
+
108
+ In order to avoid issues in your projects that are using this UI Kit, use the same `.npmrc` file or always run installs with `--legacy-peer-deps` flag.
109
+
110
+ For example:
111
+
112
+ ```bash
113
+ $ npm install --legacy-peer-deps
114
+ ```
115
+
116
+ Or:
117
+
83
118
  ```bash
84
- $ npm pack
85
- $ cd your-project
86
- $ npm install ../ui-kit/xola-ui-kit@{version}.tgz --no-save
119
+ $ npm install some-package --legacy-peer-deps
87
120
  ```
package/build/style.css CHANGED
@@ -1 +1 @@
1
- .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.tippy-box{border:1px transparent}.tippy-box[data-placement^=top]>.tippy-arrow:after{border-top-color:inherit;border-width:8px 8px 0;bottom:-8px;left:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:inherit;border-width:0 8px 8px;top:-8px;left:0}.tippy-box[data-placement^=left]>.tippy-arrow:after{border-left-color:inherit;border-width:8px 0 8px 8px;right:-8px;top:0}.tippy-box[data-placement^=right]>.tippy-arrow:after{border-width:8px 8px 8px 0;left:-8px;top:0;border-right-color:inherit}.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg:first-child:not(:last-child){top:17px}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg:first-child:not(:last-child){bottom:17px}.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg:first-child:not(:last-child){left:12px}.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg:first-child:not(:last-child){right:12px}.tippy-arrow{border-color:inherit}.tippy-arrow:after{content:"";z-index:-1;position:absolute;border-color:transparent;border-style:solid}._main_t5zvb_1{background:#fff;border-width:1px!important;border-style:solid!important}._main_t5zvb_1 .tippy-arrow{fill:#fff}._main_t5zvb_1[data-placement^=top]>.tippy-arrow::before{border-top-color:#fff}._main_t5zvb_1[data-placement^=bottom]>.tippy-arrow::before{border-bottom-color:#fff}._main_t5zvb_1[data-placement^=left]>.tippy-arrow::before{border-left-color:#fff}._main_t5zvb_1[data-placement^=right]>.tippy-arrow::before{border-right-color:#fff}._main_t5zvb_1 .tippy-content{--tw-text-opacity:1;color:rgba(34,35,36,var(--tw-text-opacity))}@-webkit-keyframes _shimmer_qt4e9_7{100%{transform:translateX(100%)}}@keyframes _shimmer_qt4e9_7{100%{transform:translateX(100%)}}._shimmer_qt4e9_7{transform:translateX(-100%);background-image:linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));-webkit-animation:_shimmer_qt4e9_7 3s infinite;animation:_shimmer_qt4e9_7 3s infinite}@media (min-width:768px){.login-container{background-image:url(https://images.unsplash.com/photo-1554629947-334ff61d85dc?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1440&q=900);background-repeat:no-repeat;background-position:center;background-size:cover}}
1
+ ._main_1bcuo_1 .tippy-content{padding:0}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.tippy-box{border:1px transparent}.tippy-box[data-placement^=top]>.tippy-arrow:after{border-top-color:inherit;border-width:8px 8px 0;bottom:-8px;left:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:inherit;border-width:0 8px 8px;top:-8px;left:0}.tippy-box[data-placement^=left]>.tippy-arrow:after{border-left-color:inherit;border-width:8px 0 8px 8px;right:-8px;top:0}.tippy-box[data-placement^=right]>.tippy-arrow:after{border-width:8px 8px 8px 0;left:-8px;top:0;border-right-color:inherit}.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg:first-child:not(:last-child){top:17px}.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg:first-child:not(:last-child){bottom:17px}.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg:first-child:not(:last-child){left:12px}.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg:first-child:not(:last-child){right:12px}.tippy-arrow{border-color:inherit}.tippy-arrow:after{content:"";z-index:-1;position:absolute;border-color:transparent;border-style:solid}._main_1q4dn_1{background:white;border-width:1px!important;border-style:solid!important}._main_1q4dn_1 .tippy-arrow{fill:#fff}._main_1q4dn_1[data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}._main_1q4dn_1[data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}._main_1q4dn_1[data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}._main_1q4dn_1[data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}._main_1q4dn_1 .tippy-content{padding:0;--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}._checkbox_1gb8z_1:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%231352C6' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")!important}@-webkit-keyframes _shimmer_qt4e9_7{to{transform:translate(100%)}}@keyframes _shimmer_qt4e9_7{to{transform:translate(100%)}}._shimmer_qt4e9_7{transform:translate(-100%);background-image:linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));-webkit-animation:_shimmer_qt4e9_7 3s infinite;animation:_shimmer_qt4e9_7 3s infinite}@media (min-width: 768px){.login-container{background-image:url(https://images.unsplash.com/photo-1554629947-334ff61d85dc?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1440&q=900);background-repeat:no-repeat;background-position:center;background-size:cover}}.DayPicker{display:inline-block;font-size:1rem}.DayPicker-wrapper{position:relative;flex-direction:row;padding-bottom:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.DayPicker-Months{display:flex;flex-wrap:wrap;justify-content:center}.DayPicker-Month{display:table;margin:1em 1em 0;border-spacing:0;border-collapse:collapse;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.DayPicker-NavButton{position:absolute;top:1em;right:1.5em;left:auto;display:inline-block;margin-top:2px;width:1.25em;height:1.25em;background-position:center;background-size:50%;background-repeat:no-repeat;color:#8b9898;cursor:pointer}.DayPicker-NavButton:hover{opacity:.8}.DayPicker-NavButton--prev{margin-right:1.5em;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC)}.DayPicker-NavButton--next{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==)}.DayPicker-NavButton--interactionDisabled{display:none}.DayPicker-Caption{display:table-caption;margin-bottom:.5em;padding:0 .5em;text-align:left}.DayPicker-Caption>div{font-weight:500;font-size:1.15em}.DayPicker-Weekdays{display:table-header-group;margin-top:1em}.DayPicker-WeekdaysRow{display:table-row}.DayPicker-Weekday{display:table-cell;padding:.5em;color:#8b9898;text-align:center;font-size:.875em}.DayPicker-Weekday abbr[title]{border-bottom:none;text-decoration:none}.DayPicker-Body{display:table-row-group}.DayPicker-Week{display:table-row}.DayPicker-Day{display:table-cell;padding:.5em;border-radius:50%;vertical-align:middle;text-align:center;cursor:pointer}.DayPicker-WeekNumber{display:table-cell;padding:.5em;min-width:1em;border-right:1px solid #EAECEC;color:#8b9898;vertical-align:middle;text-align:right;font-size:.75em;cursor:pointer}.DayPicker--interactionDisabled .DayPicker-Day{cursor:default}.DayPicker-Footer{padding-top:.5em}.DayPicker-TodayButton{border:none;background-color:transparent;background-image:none;box-shadow:none;color:#4a90e2;font-size:.875em;cursor:pointer}.DayPicker-Day--today{color:#d0021b;font-weight:700}.DayPicker-Day--outside{color:#8b9898;cursor:default}.DayPicker-Day--disabled{color:#dce0e0;cursor:default}.DayPicker-Day--sunday{background-color:#f7f8f8}.DayPicker-Day--sunday:not(.DayPicker-Day--today){color:#dce0e0}.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside){position:relative;background-color:#4a90e2;color:#f0f8ff}.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:#51a0fa}.DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover{background-color:#f0f8ff}.DayPickerInput{display:inline-block}.DayPickerInput-OverlayWrapper{position:relative}.DayPickerInput-Overlay{position:absolute;left:0;z-index:1;background:white;box-shadow:0 2px 5px #00000026}.DayPickerInput-Overlay{margin-top:4px;--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.DayPickerInput-Overlay .DayPicker-wrapper{width:358px}.DayPicker-wrapper{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-wrapper:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.date-picker{line-height:130%;letter-spacing:-.4px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.date-picker:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-NavBar{--tw-text-opacity: 1;color:rgba(80,82,84,var(--tw-text-opacity))}.DayPicker-Month{margin:0 20px 0 0;padding:0;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Month:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Month{border-collapse:inherit;border-spacing:0 16px}.DayPicker-Month .DayPicker-Caption{margin:0;height:40px;padding:0 0 0 16px}.DayPicker-Month .DayPicker-Caption[role=heading] div{position:relative;top:1px;height:40px;font-size:18px;font-weight:600;line-height:40px}.DayPicker-TodayButton{position:absolute;top:0px;right:78px;padding:10px 14px;border-radius:4px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgba(189,192,198,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));font-size:14px;font-weight:600;letter-spacing:-.4px;--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.DayPicker-TodayButton:hover{--tw-border-opacity: 1;border-color:rgba(19,82,198,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(209,225,255,var(--tw-bg-opacity))}.DayPicker-Month .DayPicker-Caption select{margin-right:10px;height:40px;padding-left:8px;padding-right:24px;border-radius:6px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgba(189,192,198,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(80,82,84,var(--tw-text-opacity));background-position:right .2rem center}.DayPicker-Weekday{margin:0;padding:0;font-size:14px;font-weight:600;--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.DayPicker-Day{padding:0 5px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Day:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Day .date{height:40px;width:40px;border-radius:9999px;padding:0;font-size:16px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Day .date:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Day--today .date{border-width:1px;--tw-border-opacity: 1;border-color:rgba(224,227,231,var(--tw-border-opacity));font-weight:400;--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover,.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside),.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover{background-color:transparent;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover:focus,.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):focus,.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) .date,.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) .date:hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(19,82,198,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside) .date:hover{border-width:1px;--tw-border-opacity: 1;border-color:rgba(19,82,198,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(209,225,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.DayPicker .DayPicker-Day:not(.DayPicker-Day--disabled) .date:hover{border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(14,68,168,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.DayPicker-Day--outside .date{cursor:pointer;--tw-text-opacity: 1;color:rgba(138,140,145,var(--tw-text-opacity))}.DayPicker-Day--disabled:not(.DayPicker-Day--today) .date{--tw-text-opacity: 1;color:rgba(224,227,231,var(--tw-text-opacity))}.date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end){border-radius:0;--tw-bg-opacity: 1;background-color:rgba(209,225,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--disabled) .date,.date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--disabled) .date:hover{--tw-bg-opacity: 1;background-color:rgba(209,225,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(34,35,36,var(--tw-text-opacity))}.date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--disabled) .date,.date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--disabled) .date:hover,.date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--disabled) .date,.date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--disabled) .date:hover{--tw-bg-opacity: 1;background-color:rgba(19,82,198,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.date-range-picker .DayPicker-Day--start{border-radius:0;background:linear-gradient(90deg,#ffffff 50%,#d1e1ff 25%)}.date-range-picker .DayPicker-Day--end{border-radius:0;background:linear-gradient(90deg,#d1e1ff 50%,#ffffff 25%)}.has-custom-content .DayPicker-Month{border-spacing:1px 16px}.has-custom-content .DayPicker-Day,.has-custom-content .DayPicker-Day:hover{height:66px;width:50px;border-width:1px;border-color:transparent}.has-custom-content .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):hover .date-value{border-width:1px;--tw-border-opacity: 1;border-color:rgba(19,82,198,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(209,225,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker-Day.DayPicker-Day--selected{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker-Day .date-value{height:40px;width:40px;border-radius:9999px;border-width:1px;border-color:transparent;line-height:38px}.has-custom-content .DayPicker-Day .date-value:hover{height:40px;width:40px;border-radius:9999px;border-width:1px;border-color:transparent;line-height:38px}.has-custom-content .DayPicker-Day>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.has-custom-content .DayPicker-Day .custom-content{height:24px;width:40px}.has-custom-content .DayPicker-Day.DayPicker-Day--selected:hover,.has-custom-content .DayPicker-Day.DayPicker-Day--selected{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker-Day.DayPicker-Day--selected .selected{border-radius:9999px;--tw-bg-opacity: 1;background-color:rgba(19,82,198,var(--tw-bg-opacity));line-height:38px;--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.has-custom-content .DayPicker-Day.DayPicker-Day--selected .custom-content{--tw-text-opacity: 1;color:rgba(138,140,145,var(--tw-text-opacity))}.has-custom-content .DayPicker-Day--today{border-width:1px;border-color:transparent;--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker-Day--today .date-value{border-width:1px;--tw-border-opacity: 1;border-color:rgba(224,227,231,var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.has-custom-content .DayPicker .DayPicker-Day:not(.DayPicker-Day--disabled):hover{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgba(138,140,145,var(--tw-text-opacity))}.has-custom-content .DayPicker-Day .custom-content{--tw-text-opacity: 1;color:rgba(138,140,145,var(--tw-text-opacity))}
@@ -1 +1 @@
1
- var e=Object.defineProperty,t=Object.defineProperties,r=Object.getOwnPropertyDescriptors,n=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable,l=(t,r,n)=>r in t?e(t,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[r]=n,s=(e,t)=>{for(var r in t||(t={}))a.call(t,r)&&l(e,r,t[r]);if(n)for(var r of n(t))o.call(t,r)&&l(e,r,t[r]);return e},i=(e,n)=>t(e,r(n)),c=(e,t)=>{var r={};for(var l in e)a.call(e,l)&&t.indexOf(l)<0&&(r[l]=e[l]);if(null!=e&&n)for(var l of n(e))t.indexOf(l)<0&&o.call(e,l)&&(r[l]=e[l]);return r};import d from"clsx";import m from"prop-types";import h,{cloneElement as p,Fragment as u,forwardRef as g,Children as w,useState as v,useRef as f}from"react";import k from"@tippyjs/react";import{followCursor as E}from"tippy.js";import{Transition as x,Dialog as y,Switch as L}from"@headlessui/react";import{useCombobox as M}from"downshift";import{useHotkeys as b}from"react-hotkeys-hook";import N from"get-user-locale";import{round as C}from"mathjs";import j from"google-libphonenumber";const z={primary:"bg-primary hover:bg-primary-dark disabled:bg-primary border-transparent text-white",secondary:"bg-secondary hover:bg-secondary-dark disabled:bg-secondary border-transparent text-white",success:"bg-success hover:bg-success-dark disabled:bg-success border-transparent text-white",warning:"bg-warning hover:bg-warning-dark disabled:bg-warning border-transparent text-white",danger:"bg-danger hover:bg-danger-dark disabled:bg-danger border-transparent text-white",outline:"bg-white border-secondary-dark hover:border-black disabled:border-secondary-dark text-black",link:"border-transparent hover:underline"},_={small:"px-3 py-1.5 text-sm",medium:"px-4 py-2 text-base",large:"px-5 py-2.5 text-lg"},T="transition-colors border focus:ring disabled:opacity-60 disabled:cursor-default",B=e=>{var t=e,{as:r="button",className:n,color:a="primary",size:o="medium",icon:l,iconPlacement:i="left",children:m}=t,p=c(t,["as","className","color","size","icon","iconPlacement","children"]);return h.createElement(r,s({className:d(n,T,"inline-flex items-center font-semibold rounded-md",z[a],_[o])},p),l&&"left"===i?h.createElement("span",{className:"flex-shrink-0 mr-2"},l):null,m,l&&"right"===i?h.createElement("span",{className:"flex-shrink-0 ml-2"},l):null)};B.propTypes={as:m.oneOfType([m.string,m.elementType]),className:m.string,color:m.oneOf(Object.keys(z)),size:m.oneOf(Object.keys(_)),icon:m.element,iconPlacement:m.oneOf(["left","right"]),children:m.node.isRequired};const H={small:"p-1.5",medium:"p-2",large:"p-2.5"},O={small:"h-3 w-3",medium:"h-4 w-4",large:"h-5 w-5"},V=e=>{var t=e,{className:r,as:n="button",color:a="primary",size:o="medium",children:l}=t,i=c(t,["className","as","color","size","children"]);return h.createElement(n,s({className:d(r,T,"rounded",z[a],H[o])},i),p(l,{className:O[o]}))};V.displayName="Button.Icon",V.propTypes={as:m.oneOfType([m.string,m.elementType]),className:m.string,color:m.oneOf(Object.keys(z)),size:m.oneOf(Object.keys(_)),children:m.node.isRequired},B.Icon=V;const A={primary:"bg-primary-lighter text-primary-dark",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-success-dark",warning:"bg-warning-lighter text-warning-dark",danger:"bg-danger-lighter text-danger-dark",caution:"bg-caution-lighter text-caution-dark"},S={small:"text-sm px-2 py-0.75 leading-p3",large:"text-base px-3 py-1.5 leading-p1"},I=e=>{var t=e,{className:r,color:n="primary",size:a="small",icon:o,children:l}=t,i=c(t,["className","color","size","icon","children"]);return h.createElement("span",s({className:d("badge inline-flex items-center rounded-full text-center whitespace-nowrap",A[n],S[a],r)},i),o?p(o,{className:"mr-1 w-[1em] h-[1em]"}):null,l)};I.propTypes={className:m.string,color:m.oneOf(Object.keys(A)),size:m.oneOf(Object.keys(S)),icon:m.element,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const P=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#CloseIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M10.536 3.465l-7.072 7.07M10.536 10.536L3.464 3.465"})),h.createElement("defs",null,h.createElement("clipPath",{id:"CloseIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),R={primary:"bg-primary-lighter text-black",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-black",warning:"bg-warning-lighter text-black",danger:"bg-danger-lighter text-black",caution:"bg-caution-lighter text-black"},q=e=>{var t=e,{className:r,shouldClose:n=!1,color:a="primary",children:o}=t,l=c(t,["className","shouldClose","color","children"]);return h.createElement("div",s({className:d("flex rounded text-base px-3 py-3",R[a],r)},l),h.createElement("span",{className:"w-full"},o),n&&h.createElement("span",{className:"flex pt-1 cursor-pointer group items-top h-w-screen"},h.createElement(P,{className:"inline group-hover:text-gray-dark"})))};q.propTypes={className:m.string,shouldClose:m.bool,color:m.oneOf(Object.keys(R)),children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const F=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M12.75 4.25l-5.5 5.5-5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),U=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M4.5 1.5L10 7l-5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),D=e=>h.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"192",height:"192",fill:"none",viewBox:"0 0 192 192"},e),h.createElement("path",{fill:"#1B5EA8",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),h.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),h.createElement("path",{fill:"#fff",d:"M25 105.194s6.998-2.181 7.82-2.29c.817-.104 1.742 0 1.742 0s1.033-1.34 1.346-1.241c.298.104 1.537.524 1.747 0 .196-.524 1.028-1.246 1.434-1.35.416-.113.108-1.038.617-1.458.514-.416 3.905-2.18 4.624-3.011.73-.83 3.29-4.673 3.7-4.673.421 0 1.239-.623 1.547-1.142.298-.524 3.078-3.852 3.7-4.573.626-.727 1.957-1.77 1.957-1.77s.103-2.18.416-2.591c.304-.42 1.434-1.766 1.948-2.388.519-.623 2.369-2.606 2.78-2.492.41.103 1.737 0 1.85-.416.107-.42-.21-1.77.514-1.978.714-.207 1.85-.311 1.85-.311s1.639-5.197 2.368-5.503c.72-.322 1.845-.628 1.845-.628s2.158-1.869 2.883-1.77c.724.109 3.083-.203 3.083-.203s2.158-2.393 2.57-3.426c.415-1.043 1.13-1.666 1.751-1.775.617-.1-.313-.613.617-1.241.92-.628 4.732-2.492 5.442-3.224.72-.717 1.86-2.804 1.86-2.804s-.524-2.59.308-3.322c.817-.727 3.9-1.765 5.144-2.393 1.228-.618 4.008-2.591 4.512-3.526.519-.934 1.865-2.496 2.158-2.595.313-.104 2.065-2.398 2.467-2.804.416-.42 3.098-1.463 3.611-1.775.509-.306 2.77-.306 3.284-.415.519-.1.925-.83 2.261-1.038 1.341-.208 5.863.207 6.172.103.313-.103.925-.94 1.639-.618.734.307 1.551 2.28 1.963 2.487.411.213 1.84.633 2.872 1.355 1.023.727 2.472 2.907 3.7 2.803 1.243-.098 1.953 1.77 2.579 2.596.617.836 2.775 3.12 2.672 3.64-.102.524-.724 1.868-.102 2.912.616 1.033 1.336 2.902 1.947 3.317.617.42 1.953 2.601 1.953 3.432 0 .825 1.033 3.11 2.07 3.945 1.013.83 2.462 5.508 3.587 6.967 1.126 1.444 4.219 9.137 5.046 10.284.822 1.137.822.722 1.85 1.038 1.028.302 4.312 2.384 5.251 3.11.92.732 4.204 6.547 4.924 7.59.729 1.043 4.008 6.645 4.634 7.788.617 1.142 1.953 5.409 2.775 5.508.817.103 2.256 4.464 3.073 5.087.832.628 4.126 5.405 4.846 5.924.709.519 3.288 6.754 3.694 7.476.412.731-6.495 4.797-5.575 5 .925.203-3.586 1.765-2.965 1.978.622.203-5.539 2.808-3.073 3.955 2.472 1.138-5.708 7.911-5.708 7.911s-7.437 8.02-6.625 7.911c.822-.103-7.717 9.271-7.101 9.889.617.628-12.642 5.414-11.722 5.933.93.525-15.661 5.934-15.661 5.934l-20.338 3.955-60.044-23.733L25 105.194z"}),h.createElement("path",{fill:"url(#paint0_linear)",d:"M131.43 57.726c-.524.509-1.229 1.755-1.229 2.482 0 .726.299 1.873.509 2.388.196.519.313 2.497.313 2.497s-1.145-.727-1.654-1.355c-.509-.623-.406-1.963-.509-2.492-.108-.52-1.341.529-2.06.623-.362.054-.646-.49-.891-1.033-.245-.544-.45-1.088-.656-1.039-.406.109-1.639.732-2.877 1.874-1.229 1.132-.915 1.553-1.542 1.869-.612.307-.915.514-1.747-.104-.436-.326-.553-.054-.71.218-.137.247-.298.494-.739.296-.455-.202-.21.352.079.9.303.564.655 1.133.342.866-.607-.515-.607 1.142-.21 1.765.416.628 1.135 1.874 1.649 2.907.524 1.043 3.186 6.032 2.369 5.824-.822-.212-1.752-2.492-2.065-3.426-.304-.934-1.85-2.398-2.164-2.398-.293 0-1.845-.109-2.256-.307-.401-.207-3.284-.939-4.933-.83-1.644.104-2.06-1.454-2.877-1.666-.828-.208-3.5-1.039-4.214-1.138-.72-.103 1.639 2.389 2.364 2.596.719.208 1.125.831.102 1.236-1.027.426-2.775-1.137-3.284-1.137-.523 0-1.443 1.454-.822 1.874.607.415 3.181 1.973 3.705 2.393.499.415.098 2.175-.426 1.968-.504-.213-3.396-.213-4.625.109-1.238.311-3.185-1.36-4.106-2.077-.93-.727-1.854-.213-2.27.312-.411.509-1.752 2.491-2.57 3.317-.817.83-3.905.83-4.722 1.459-.832.618-4.116 3.426-5.041 4.573-.93 1.138-3.906 2.072-4.943 2.804-1.028.727-2.57 4.044-3.186 4.569-.617.519-1.85 1.77-2.677 2.803-.817 1.038-2.472 2.077-3.49 3.328-1.032 1.246-1.85 2.388-1.85 2.388l-2.06 2.175-1.747-1.038s-2.354 1.666-3.181 2.086c-.827.411-3.817-.212-4.835-.316-1.038-.104-2.369 1.142-2.06 1.251.313.104.523.722.313 1.038-.216.312-2.369.312-2.369.312l-.519 1.765s-1.953.306-2.78.306c-.817 0-2.045.312-2.564.426-.514.103-1.953-1.256-2.467-1.256-.523 0-1.952-.618-2.564 0-.621.627-1.659 2.289-1.659 2.289s-1.542 0-2.046.104c-.514.104-3.293.934-3.293.934l10.698 60.361c14.902 11.323 33.43 18.032 53.505 18.032 38.178 0 70.753-24.262 83.457-58.353-2.471-4.435-6.225-11.323-6.788-12.252-.827-1.345-4.218-7.991-4.83-8.826-.621-.836-1.439-.104-1.742.207-.152.144-.426.045-.695-.054-.323-.114-.646-.232-.754.054-.21.52-1.434 1.558-1.855 1.138-.401-.41-1.644-3.634-1.541-4.252.107-.623 1.747.301 1.747.301s.519-.301.318-.821c-.21-.519-2.677-1.147-3.098-1.043-.406.104-1.634-2.18-2.461-2.808-.818-.623-2.57-3.001-3.181-3.837-.627-.84-2.785-3.12-3.505-3.64-.709-.518-2.461-2.175-3.597-2.694-1.135-.524-1.238-2.086-1.742-3.54-.514-1.449-.729.425-.622.94.108.514-.929 1.354-.621 1.453.313.099.514 1.147 1.028 1.558.518.41-1.028.934-1.532.825-.524-.099-1.136-1.76-1.444-2.482-.313-.737-1.546-.944-1.135-1.77.416-.835.93-2.29.514-2.803-.411-.524-.612-1.973.098-1.87.729.1 1.233-.42 1.654-.835.411-.415 1.238 1.246 1.546 1.76.299.524 1.948 2.705 1.855 2.186-.108-.52.714-.83.714-.83.823 1.764 7.704 10.6 7.914 11.43.21.826.622-.316.519-1.25-.108-.935.406-.618.509-1.039.107-.42-.509-1.661-2.061-1.765-1.541-.104-2.256-2.6-2.774-3.743-.509-1.142 1.546.94 1.546.94L148.5 81.2s-4.322-7.273-4.625-7.273c-.313 0-1.038.41-1.238.826-.206.41.817 3.219 1.12 3.64.314.41 1.244 1.972.935 2.18-.313.207-1.952-.836-2.784-1.143-.808-.316-1.943 1.039-1.943 1.039s-.314-4.366-.832-4.366c-.509 0-.309-1.874-.201-3.422.103-1.562-1.644-1.562-1.644-1.562s-.309-3.535-.725-4.045c-.411-.529 0-2.912.108-3.96.108-1.034-2.163-4.984-2.677-5.39-.269-.222-.827-.355-1.365-.355-.485 0-.955.104-1.199.356"}),h.createElement("path",{fill:"url(#paint1_linear)",d:"M78.061 68.628s-.514 1.246-1.341 1.864c-.832.628-1.341 2.294-2.158 3.436-.822 1.137-1.845 1.869-2.672 1.449-.823-.42-1.85.207-1.748 1.453.103 1.251.416 3.847-.205 3.536-.626-.312-.103-1.662-1.028-1.039-.93.623-2.785 4.05-3.494 3.743-.724-.311-1.551-2.185-2.06-1.458-.514.727-.72 3.016-1.336 1.973-.612-1.044-1.537-.94-2.976.202-1.444 1.152-2.99 1.884-3.705 2.284-.734.42-2.158 1.563-2.476 2.498-.304.934-.915 1.562-1.434 1.873-.519.307-1.742 1.247-1.742 1.87 0 .627-.73.934-1.557 1.77-.812.825-2.358 1.962-3.176 2.7-.827.726-2.579 2.704-3.401 3.114-.827.415-2.256 1.562-1.439 1.562 0 0 1.439 0 2.261-.628.827-.627 3.191-2.388 3.808-2.6.621-.208 2.055-.312 2.363.42.314.732-.2 1.765-.925 2.279-.714.529-2.265 2.295-2.667 2.398-.416.099-1.546 1.143-1.546 1.143s1.948-.104 2.873-.732c.934-.618 3.406-1.765 3.7-2.601.313-.826 1.032-1.864 1.556-2.695.514-.825 1.326.41 1.228 1.251-.108.826 1.248 1.444 1.948.302.724-1.142 1.752-.613 2.672-.613.925 0 2.892.717 3.401-.11.519-.83 1.742-3.322 2.477-3.747.714-.405 2.349-3.629 2.862-4.88.51-1.241 2.261-4.771 2.682-6.23.412-1.454 1.752-3.214 2.575-3.738.817-.519 2.77-1.35 3.7-1.973.92-.622.4-1.245 1.433-2.18 1.033-.94 1.547-.727 1.547-1.666 0-.93.827-1.973.827-1.973s-1.341-1.246-.524-2.29c.832-1.038 2.056-3.114 2.056-3.114s0-.935-.401-.623c-.416.311-1.958-.104-1.958-.104v1.874z"}),h.createElement("path",{fill:"#fff",d:"M131.63 95.121s3.293 4.979 3.905 6.122c.617 1.152 3.191 5.824 3.397 6.655.2.83.523 1.968 1.752 2.907 1.228.934 2.564 2.383 2.564 2.383s.108-1.449-.103-2.076c-.21-.623-2.77-3.842-3.489-5.083-.724-1.256-7.826-10.393-8.026-10.908zM144.07 114.44s1.14 1.874 1.14 3.115c0 1.251 1.126 3.535 1.645 4.464.514.94 1.331 2.705 1.747 2.913.406.207 1.649.316 2.882 1.661 1.224 1.35 1.846 2.383 2.878 2.705 1.023.306 1.85.623 1.85.623s-1.233-1.662-2.672-4.258c-1.449-2.6-4.219-7.273-4.835-7.688-.627-.42-1.953-1.978-2.266-1.562-.309.41-2.369-1.973-2.369-1.973z"}),h.createElement("path",{fill:"url(#paint2_linear)",d:"M47.317 148.826c1.331 3.016 11.814 7.273 11.726 5.087-.074-1.493.098-6.358.215-9.295.852 1.3 1.561 2.408 1.728 2.749.524 1.043 10.498 15.273 11.422 18.086.93 2.809 21.074 16.203 23.134 18.488.51.563 1.693 1.839 3.2 3.446a88.357 88.357 0 0021.339-3.313c-.451-.41-.921-1.177-1.097-1.795-.205-.732.725-1.038 1.238-1.869.504-.83.407-.83-.303-.736-.724.108-2.99-.723-4.224-.826-1.233-.099-5.559-2.388-6.89-2.804-1.336-.415-2.677-3.738-3.906-4.682-1.238-.93-2.055-1.132-2.574-.929-.519.212-.935-.104-1.747-1.044-.827-.934-.617-1.864-1.135-2.492-.495-.618-.407 1.256-.715 1.459-.303.203-1.233-1.671-1.855-2.393-.607-.717-1.33-2.591-1.747-3.011-.406-.411-.406.825-.514 1.453-.098.618-1.439 1.355-1.953.94-.523-.42-1.027-1.864-1.546-2.393-.25-.257-.274.321-.289.9-.014.588-.01 1.186-.215.865-.416-.628-1.13-1.236-1.238-2.077-.103-.825-.622-3.323-1.028-3.535-.406-.198-.822-1.864-1.233-2.591-.406-.727-.406.519-.406 1.246 0 .722-.93.109-1.146-.312-.195-.415-.616-2.175-1.013-2.491-.42-.312-1.14.83-1.14.83l-.21 3.011s-.92-2.907-1.229-3.426c-.303-.524-1.336-2.497-1.438-1.77-.108.727-.607-.307-1.44-.935-.826-.628-1.453-1.76-1.453-1.453 0 .316.426 3.021-.186 2.699-.621-.311-1.042-2.798-1.757-3.945-.714-1.143-2.877-2.908-2.877-2.908l-.51-1.874s-2.06-.103-2.265-.726c-.206-.623-1.332-.515-1.434.212-.103.722-1.14-.212-1.973-.212-.802 0-1.84-2.591-2.148-3.011-.294-.416-.622-1.143-.72-.628-.097.529-.817.212-1.238-.727-.41-.935.734-2.275.93-2.804.21-.514-.195-1.241-.822-.618-.616.618-1.228 2.181-1.228 2.181l-1.13-1.666-.525.632-1.022-2.185-.93-2.077-.514 2.181-.103.128c-.474-1.35-.886-2.452-1.023-2.625-.406-.514-2.466-6.339-3.19-7.372-.715-1.043-.617-3.011-.617-3.011s-1.238-.732-2.06-.317c-.818.42-1.434-1.35-2.164-1.869-.7-.519-1.63.109-1.63.109v-2.393l-6.17-.628s5.652 28.05 6.988 31.066"}),h.createElement("path",{fill:"url(#paint3_linear)",d:"M26.655 92c-.73.835-3.201 1.048-3.705 1.453-.514.41-1.65 1.667-1.953 2.181-.313.52-1.145.623-1.649 1.038-.514.42-.925 2.393-.925 2.393s-1.331.208-2.78 1.558c-1.439 1.35-2.78 1.77-4.213 2.704a87.075 87.075 0 00-4.248 3.002c4.463 45.527 42.48 81.102 88.707 81.102 2.472 0 4.924-.103 7.346-.301-1.008-1.528-2.006-3.12-2.755-4.445-2.055-3.63-6.377-5.701-7.106-5.919-.714-.202-2.354-3.332-2.878-3.53-.508-.208-2.358-3.219-2.975-4.252-.622-1.039-1.537-1.562-2.477-1.671-.92-.094-5.442-6.122-5.442-6.122s-6.264-6.956-6.885-7.48c-.622-.525-4.008-5.197-4.635-5.924-.616-.727-3.798-3.115-4.517-3.223-.724-.104-3.083-3.743-3.509-4.154-.406-.41-1.938-.41-2.046 0-.107.411-1.135 1.563-1.228 2.087-.103.514-.103 1.869-.827 2.487-.724.613-1.126 2.907-1.126 2.907s-1.34-.934-1.752-1.033c-.42-.104-1.028-3.437-1.13-4.168-.108-.717-.935-2.596-1.449-3.209-.519-.628-2.045-3.333-2.877-3.956-.818-.618-1.44-3.421-1.532-4.677-.108-1.241-2.164-4.88-2.682-5.815-.52-.934-1.033-4.563-1.233-5.191-.211-.623-1.341-2.596-1.953-3.323-.617-.732-3.494-3.946-4.625-4.682-1.13-.722-1.556-2.492-1.747-2.799-.216-.311-.519-2.185-.519-2.185s-.715-1.35-.93-1.973c-.196-.618-.401-10.175-.303-10.492.107-.306-1.331-1.449-1.948-1.661-.626-.208.103-1.142 0-1.657-.108-.519-.827-1.152-.827-1.152S27.364 91.17 26.655 92"}),h.createElement("path",{fill:"#292929",d:"M11.78 96c0 46.136 38.065 84.836 84.225 84.836 45.905 0 84.21-38.952 84.21-84.836 0-46.146-38.305-84.836-84.21-84.836-46.16 0-84.225 38.69-84.225 84.836zM192 96c0 52.583-43.943 96-95.995 96C43.948 192 0 148.583 0 96 0 43.407 43.708 0 96.005 0 148.057 0 192 43.407 192 96z"}),h.createElement("defs",null,h.createElement("linearGradient",{id:"paint0_linear",x1:"117.572",x2:"117.572",y1:"323.149",y2:"57.367",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#626262"})),h.createElement("linearGradient",{id:"paint1_linear",x1:"39.87",x2:"80.42",y1:"85.611",y2:"85.611",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#909191"})),h.createElement("linearGradient",{id:"paint2_linear",x1:"81.096",x2:"81.096",y1:"117.762",y2:"201.184",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#909191"})),h.createElement("linearGradient",{id:"paint3_linear",x1:"-25.794",x2:"208.447",y1:"204.974",y2:"204.974",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#626262"})))),G={small:"h-10 w-10 text-base",medium:"h-12 w-12 text-md",large:"h-15 w-15 text-xl"},W=e=>{var t=e,{className:r,name:n,color:a="bg-primary-lighter",size:o="large"}=t,l=c(t,["className","name","color","size"]);const i=d("inline-flex items-center justify-center rounded-full cursor-default text-black",G[o],a,r);return h.createElement("div",s({title:n,className:i},l),(e=>{let t="N/A";const r="string"==typeof e&&e.match(/\b\w/g);return r&&(t=r[0],r.length>1&&(t+=r[r.length-1])),t.toUpperCase()})(n))};W.propTypes={className:m.string,color:m.string,name:m.string,size:m.oneOf(Object.keys(G))};const K=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("span",s({className:d("px-2 py-1 font-semibold inline-flex items-center justify-center rounded-full bg-red-dark text-white leading-none",r)},n))};K.propTypes={className:m.string};const Z=({children:e,className:t,footer:r,notifications:n,isFixed:a=!0,onLogoClick:o})=>h.createElement("div",{className:d(a?"fixed":"relative","w-16 md:w-24 xl:w-50 h-full p-2 overflow-y-auto bg-black text-white flex flex-col",t)},h.createElement("div",{className:d("p-2 text-center xl:text-left",n?null:"invisible")},h.createElement(K,{className:"text-sm"},n)),h.createElement("div",{className:"mb-10 text-center"},h.createElement(D,{className:d("inline-block w-12 h-12 xl:w-24 xl:h-24",o&&"cursor-pointer hover:opacity-80 transition-opacity"),onClick:o})),h.createElement("div",{className:"flex-grow space-y-2"},e),r);Z.propTypes={children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired,className:m.string,footer:m.element.isRequired,notifications:m.number,isFixed:m.bool,onLogoClick:m.func.isRequired};const Y=e=>{var t=e,{isActive:r=!1,icon:n,children:a}=t,o=c(t,["isActive","icon","children"]);return h.createElement("button",s({type:"button",className:d("transition-colors leading-none flex items-center justify-center xl:justify-start w-full xl:px-6 py-3 rounded",{"bg-primary text-white hover:bg-primary-dark":r,"hover:bg-gray-darker text-gray":!r})},o),h.createElement(n,{className:"w-5 h-5 xl:mr-3"}),h.createElement("span",{className:"hidden px-1 xl:inline"},a),h.createElement(U,{className:"hidden ml-auto w-3 h-3 xl:inline"}))};Y.displayName="Sidebar.Link",Y.propTypes={isActive:m.bool,icon:m.func.isRequired,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},Z.Link=Y;const $=e=>{var t=e,{children:r}=t,n=c(t,["children"]);return h.createElement("div",s({className:"p-2"},n),h.createElement("div",{className:"pb-2 mx-6 border-t border-secondary-darker"}),r)};$.displayName="Sidebar.Footer",$.propTypes={children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},Z.Footer=$;const J=e=>{var t=e,{name:r}=t,n=c(t,["name"]);return h.createElement("button",s({type:"button",className:"flex justify-center items-center py-3 w-full rounded cursor-pointer xl:px-6 hover:bg-gray-darker xl:justify-start"},n),h.createElement(W,{size:"small",name:r}),h.createElement("span",{className:"hidden text-sm xl:inline ml-2 max-w-[50px]"},r),h.createElement(F,{className:"hidden ml-auto xl:inline"}))};J.displayName="Sidebar.Footer.Avatar",J.propTypes={name:m.string.isRequired},Z.Footer.Avatar=J;const X=e=>{var t=e,{icon:r,label:n}=t,a=c(t,["icon","label"]);return h.createElement("button",s({type:"button",className:"flex justify-center items-center py-3 w-full rounded cursor-pointer xl:px-6 hover:bg-gray-darker xl:justify-start"},a),h.createElement(r,{className:"w-5 h-5 xl:ml-2 xl:mr-5"}),h.createElement("span",{className:"hidden xl:inline"},n))};X.displayName="Sidebar.Footer.Button",X.propTypes={icon:m.element.isRequired,label:m.string.isRequired},Z.Footer.Button=X;const Q=e=>{var t=e,{children:r,className:n}=t,a=c(t,["children","className"]);return h.createElement(k,i(s({},a),{className:"text-white xola-tooltip",plugins:[E]}),h.createElement("span",{className:n},r))};Q.propTypes={children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired,className:m.string};var ee="_main_t5zvb_1";const te=e=>{var t=e,{className:r,children:n}=t,a=c(t,["className","children"]);return h.createElement(k,s({interactive:!0,className:d(r,ee,"!border-gray-light !rounded-lg"),plugins:[E]},a),h.createElement("span",null,n))};(te.Content=({className:e,children:t})=>h.createElement("div",{className:d(e,"max-w-lg px-3 py-3")},t)).displayName="Popover.Content",te.propTypes={className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},te.Content.propTypes={className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const re={small:"sm:max-w-md",medium:"sm:max-w-lg",large:"sm:max-w-2xl",xlarge:"sm:max-w-3xl"},ne=({size:e="medium",shouldShow:t=!1,shouldShowClose:r=!0,shouldCloseOnOutsideClick:n=!1,onHide:a,children:o})=>{const l=h.Children.count(o);l<3&&console.warn(`You have an insufficient number of children ${l}, the modal may not behave as expected`);const[c,d,m]=o,p={width:re[e],shouldShowClose:r,Header:c,Body:d,Footer:m},g=n?a:()=>{};return h.createElement(x.Root,{show:t,as:u},h.createElement(y,{static:!0,as:"div",className:"overflow-y-auto fixed inset-0 z-10",open:t,onClose:g},h.createElement("div",{className:"flex justify-center items-end px-4 pt-4 pb-20 min-h-screen text-center sm:block sm:p-0"},h.createElement(x.Child,{as:u,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},h.createElement(y.Overlay,{className:"fixed inset-0 bg-opacity-75 transition-opacity bg-gray-dark"})),h.createElement("span",{className:"hidden sm:inline-block sm:align-middle sm:h-screen"},"​"),h.createElement(x.Child,{as:u,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},h.createElement(ne.Core,i(s({},p),{onClick:a}))))))};ne.propTypes={size:m.oneOf(Object.keys(re)),shouldShow:m.bool,shouldShowClose:m.bool,shouldCloseOnOutsideClick:m.bool,onHide:m.func.isRequired,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const ae=g((({width:e,shouldShowClose:t,onClick:r,Header:n,Body:a,Footer:o},l)=>{const s=d(e,"modal sm:w-full inline-block align-bottom bg-white rounded-lg overflow-hidden shadow-xl transform","transition-all sm:my-8 sm:align-middle");return h.createElement("div",{ref:l,className:s},h.createElement("div",{className:"px-8 pt-5 bg-white"},h.createElement("div",{className:"hidden absolute top-0 right-0 px-8 pt-7 sm:block"},t&&h.createElement("div",{className:"text-xl cursor-pointer text-gray hover:text-gray-darker",onClick:r},"×")),h.createElement("div",{className:"sm:flex sm:items-start"},h.createElement("div",{className:"pt-3 w-full text-center"},n,a))),o)}));ae.displayName="Modal.Core",ae.propTypes={width:m.string.isRequired,shouldShowClose:m.bool.isRequired,onClick:m.func.isRequired,Header:m.element.isRequired,Body:m.element.isRequired,Footer:m.element.isRequired},ne.Core=ae,ne.Header=({children:e})=>h.createElement(y.Title,{as:"h3",className:"text-2xl font-semibold leading-6 text-center text-black modal-header"},e),ne.Header.displayName="Modal.Header",ne.Header.propTypes={children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},ne.Body=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("div",s({className:d(r,"pt-8 pb-2 mt-2 text-left modal-body")},n))},ne.Body.displayName="Modal.Body",ne.Body.propTypes={className:m.string},ne.Footer=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("div",s({className:d(r,"float-right px-8 py-8 modal-footer sm:flex")},n))},ne.Footer.displayName="Modal.Footer",ne.Footer.propTypes={className:m.string};const oe=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("div",{className:"flex flex-col"},h.createElement("div",{className:"overflow-x-auto -my-2"},h.createElement("div",{className:"inline-block py-2 min-w-full align-middle"},h.createElement("div",{className:"overflow-hidden border-b border-gray-lighter sm:rounded-lg"},h.createElement("table",s({className:d(r,"min-w-full divide-y border border-gray-lighter")},n))))))};oe.propTypes={className:m.string},(oe.Head=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("thead",s({className:d("bg-gray-lighter",r)},n))}).displayName="Table.Head",oe.Head.propTypes={className:m.string},(oe.Header=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("th",s({className:d("px-4 py-2 text-left text-base font-bold",r)},n))}).displayName="Table.Header",oe.Header.propTypes={className:m.string},(oe.Body=e=>{var t=e,{className:r,isStriped:n=!1,children:a}=t,o=c(t,["className","isStriped","children"]);return h.createElement("tbody",s({className:d("border-none",r)},o),w.map(a,(e=>e&&p(e,{isStriped:n}))))}).displayName="Table.Body",oe.Body.propTypes={className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired,isStriped:m.bool},(oe.Row=e=>{var t=e,{isStriped:r=!1,className:n}=t,a=c(t,["isStriped","className"]);return h.createElement("tr",s({className:d(r&&"even:bg-gray-lighter",n)},a))}).displayName="Table.Row",oe.Row.propTypes={isStriped:m.bool,className:m.string},(oe.Cell=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("td",s({className:d("px-4 py-2 whitespace-nowrap text-base text-gray-darker",r)},n))}).displayName="Table.Cell",oe.Cell.propTypes={className:m.string};const le={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},se=e=>{var t=e,{size:r,value:n,onChange:a,children:o}=t,l=c(t,["size","value","onChange","children"]);return h.createElement("span",s({className:"inline-flex whitespace-nowrap"},l),w.map(o,((e,t)=>{const o={size:r};return void 0!==n&&(o.isActive=n===t),a&&(o.onClick=()=>a(t)),p(e,o)})))};se.propTypes={size:m.oneOf(Object.keys(le)),value:m.number.isRequired,onChange:m.func.isRequired,children:m.node.isRequired};const ie=e=>{var t=e,{as:r="button",isActive:n,size:a="medium",className:o}=t,l=c(t,["as","isActive","size","className"]);const i=d("border-t border-l border-b last:border-r first:rounded-l-md last:rounded-r-md transition-colors focus:ring disabled:opacity-60 focus:z-10 leading-none",le[a],n?"bg-primary border-primary text-white hover:bg-primary-dark":"border-gray-light hover:bg-gray-lighter text-gray-darker",o);return h.createElement(r,s({className:i},l))};ie.displayName="ButtonGroup.Button",ie.propTypes={as:m.oneOfType([m.string,m.elementType]),isActive:m.bool,size:m.oneOf(Object.keys(le)),className:m.string},se.Button=ie;const ce={small:"w-10 h-10",medium:"w-16 h-16",large:"w-20 h-20"},de=e=>{var t=e,{className:r,size:n="small"}=t,a=c(t,["className","size"]);return h.createElement("img",s({className:d(r,"inline-block rounded object-cover",ce[n])},a))};de.propTypes={className:m.string,src:m.string.isRequired,size:m.string};var me="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var he=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},pe="object"==typeof me&&me&&me.Object===Object&&me,ue="object"==typeof self&&self&&self.Object===Object&&self,ge=pe||ue||Function("return this")(),we=ge,ve=function(){return we.Date.now()},fe=/\s/;var ke=function(e){for(var t=e.length;t--&&fe.test(e.charAt(t)););return t},Ee=/^\s+/;var xe=function(e){return e?e.slice(0,ke(e)+1).replace(Ee,""):e},ye=ge.Symbol,Le=ye,Me=Object.prototype,be=Me.hasOwnProperty,Ne=Me.toString,Ce=Le?Le.toStringTag:void 0;var je=function(e){var t=be.call(e,Ce),r=e[Ce];try{e[Ce]=void 0;var n=!0}catch(o){}var a=Ne.call(e);return n&&(t?e[Ce]=r:delete e[Ce]),a},ze=Object.prototype.toString;var _e=je,Te=function(e){return ze.call(e)},Be=ye?ye.toStringTag:void 0;var He=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Be&&Be in Object(e)?_e(e):Te(e)},Oe=function(e){return null!=e&&"object"==typeof e};var Ve=function(e){return"symbol"==typeof e||Oe(e)&&"[object Symbol]"==He(e)},Ae=xe,Se=he,Ie=Ve,Pe=/^[-+]0x[0-9a-f]+$/i,Re=/^0b[01]+$/i,qe=/^0o[0-7]+$/i,Fe=parseInt;var Ue=he,De=ve,Ge=function(e){if("number"==typeof e)return e;if(Ie(e))return NaN;if(Se(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Se(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Ae(e);var r=Re.test(e);return r||qe.test(e)?Fe(e.slice(2),r?2:8):Pe.test(e)?NaN:+e},We=Math.max,Ke=Math.min;var Ze=function(e,t,r){var n,a,o,l,s,i,c=0,d=!1,m=!1,h=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function p(t){var r=n,o=a;return n=a=void 0,c=t,l=e.apply(o,r)}function u(e){return c=e,s=setTimeout(w,t),d?p(e):l}function g(e){var r=e-i;return void 0===i||r>=t||r<0||m&&e-c>=o}function w(){var e=De();if(g(e))return v(e);s=setTimeout(w,function(e){var r=t-(e-i);return m?Ke(r,o-(e-c)):r}(e))}function v(e){return s=void 0,h&&n?p(e):(n=a=void 0,l)}function f(){var e=De(),r=g(e);if(n=arguments,a=this,i=e,r){if(void 0===s)return u(i);if(m)return clearTimeout(s),s=setTimeout(w,t),p(i)}return void 0===s&&(s=setTimeout(w,t)),l}return t=Ge(t)||0,Ue(r)&&(d=!!r.leading,o=(m="maxWait"in r)?We(Ge(r.maxWait)||0,t):o,h="trailing"in r?!!r.trailing:h),f.cancel=function(){void 0!==s&&clearTimeout(s),c=0,n=i=a=s=void 0},f.flush=function(){return void 0===s?l:v(De())},f};const Ye=navigator.userAgent.includes("Macintosh"),$e=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.217 10.878a4.661 4.661 0 100-9.322 4.661 4.661 0 000 9.322zM9.514 9.514l2.93 2.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Je=e=>{var t=e,{char:r,className:n}=t,a=c(t,["char","className"]);return r=Xe(r),h.createElement("div",s({className:d("inline-flex items-center justify-center h-5 py-1 px-2 bg-gray-lighter text-xs text-gray font-semibold rounded",1===r.length?"w-5":"",n)},a),r)},Xe=e=>{switch(e){case"cmd":return Ye?"⌘":"ctrl";case"option":return Ye?"⌥":"win";case"ctrl":return Ye?"ctrl":"alt";case"up":return"↑";case"down":return"↓";default:return e}};Je.propTypes={char:m.string.isRequired,className:m.string};const Qe=e=>h.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),h.createElement("path",{fill:"currentColor",d:"M14 7a7 7 0 10-7 7v-1.4A5.6 5.6 0 1112.6 7H14z"})),et={primary:"text-primary",secondary:"text-secondary",warning:"text-warning",success:"text-success",danger:"text-danger",caution:"text-caution",current:null},tt={tiny:"w-4 h-4",small:"w-7 h-7",medium:"w-10 h-10",large:"w-14 h-14",current:"w-[1em] h-[1em]"},rt=e=>{var t=e,{className:r,size:n="small",color:a="secondary"}=t,o=c(t,["className","size","color"]);return h.createElement(Qe,s({className:d(r,tt[n],et[a],"animate-spin inline-block")},o))};rt.propTypes={className:m.string,size:m.string,color:m.string};const nt=Ze(((e,t)=>e(t)),500),at=e=>{var t=e,{className:r,items:n=[],defaultValue:a,onChange:o,onSubmit:l,onSelect:i,children:m,isLoading:p=!1}=t,u=c(t,["className","items","defaultValue","onChange","onSubmit","onSelect","children","isLoading"]);const[g,w]=v(!0),[k,E]=v(null!=a?a:""),x=f(),y={value:k},L=k?[y,...n]:[],{isOpen:N,openMenu:C,getMenuProps:j,getInputProps:z,getComboboxProps:_,highlightedIndex:T,getItemProps:B,closeMenu:H}=M({items:L,inputValue:k,onInputValueChange:({inputValue:e})=>{E(e),o&&nt(o,e)},itemToString:()=>k,defaultHighlightedIndex:0,onSelectedItemChange:({selectedItem:e,type:t})=>{"__input_blur__"!==t&&(e===y?(null==l||l(k),x.current.blur()):e&&(null==i||i(e),x.current.blur()),H())}}),O=N&&L.length>0,V=N&&k.length>0&&!p&&L.length<=1;return b(Ye?"cmd+k":"ctrl+k",(e=>{e.preventDefault(),x.current.focus()})),b("esc",(()=>x.current.blur()),{enableOnTags:["INPUT"]}),h.createElement("div",{className:"relative w-full"},h.createElement("div",s({},_({className:"w-full relative rounded-md"})),h.createElement("div",{className:"absolute inset-y-0 top-[-2px] left-0 hidden md:flex items-center pointer-events-none"},h.createElement($e,{className:"w-4 h-4 text-gray-darker"})),h.createElement("input",s({},z(s({type:"text",className:d("block w-full border-none pl-0 md:pl-7 text-base md:text-md text-gray-darker leading-p2 focus:ring-0",r),ref:x,onFocus:()=>{w(!1),C()},onBlur:()=>w(!0)},u)))),h.createElement("div",{className:"hidden absolute inset-y-0 right-0 items-center pr-3 space-x-1 pointer-events-none lg:flex"},g?h.createElement(h.Fragment,null,h.createElement(Je,{char:"cmd"})," ",h.createElement(Je,{char:"K"})):null)),h.createElement("ul",s({},j({className:d("absolute top-10 divide-y divide-gray-light w-full xl:w-2/3 max-h-[75vh] border border-blue-light mt-1 rounded overflow-auto z-50 bg-white",{hidden:!O})})),O?L.map(((e,t)=>h.createElement("li",s({key:e},B({key:t,item:e,index:t})),e===y?h.createElement(h.Fragment,null,h.createElement("div",{className:d("p-2 cursor-pointer",T===t?"bg-blue-light text-white":"")},"Show all results for ",h.createElement("strong",null,k)),p?h.createElement("div",{className:"p-3 text-center"},h.createElement(rt,{size:"small"})):null):null==m?void 0:m(e,T===t)))):null,O&&V?h.createElement("li",{className:"p-2 cursor-not-allowed"},"No results found"):null,O&&L.length<5?h.createElement("li",{className:"flex sticky bottom-0 p-2 space-x-5 text-sm search-footer text-gray-dark pointer-events"},h.createElement("span",{className:"flex items-center"},h.createElement(Je,{char:"up",className:"mr-0.5"}),h.createElement(Je,{char:"down",className:"mr-2"})," to navigate"),h.createElement("span",{className:"flex items-center"},h.createElement(Je,{char:"enter",className:"mr-2"})," to submit"),h.createElement("span",{className:"flex items-center"},h.createElement(Je,{char:"esc",className:"mr-2"})," to close")):null))};at.propTypes={className:m.string,items:m.arrayOf(m.any),itemToString:m.func,defaultValue:m.string,onChange:m.func,onSubmit:m.func,onSelect:m.func,children:m.oneOfType([m.arrayOf(m.node),m.node,m.func]),isLoading:m.bool};const ot=e=>{var t=e,{className:r,classNames:n={},separator:a="/",children:o}=t,l=c(t,["className","classNames","separator","children"]);const i=w.count(o)-1;return h.createElement("div",s({className:d("text-2xl whitespace-nowrap font-semibold",r)},l),w.map(o,((e,t)=>{const r=t>=i;return h.createElement(h.Fragment,null,h.createElement("span",{className:d(n.item,r?"text-black":"text-gray-dark")},e),r?null:h.createElement("span",{className:d(n.separator,"text-gray-dark mx-2")},a))})))};ot.propTypes={className:m.string,classNames:m.object,separator:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node])},(ot.Item=({className:e,onClick:t,children:r})=>h.createElement("div",{className:d(e,"inline",t&&"cursor-pointer hover:underline"),onClick:t},r)).displayName="Breadcrumb.Item",ot.Item.propTypes={className:m.string,onClick:m.func,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const lt=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("div",s({className:d(r,"mb-4")},n))};lt.propTypes={className:m.string};const st={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},it=e=>{var t=e,{size:r="medium",className:n,type:a="text",isError:o}=t,l=c(t,["size","className","type","isError"]);return h.createElement("input",s({type:a,className:d(n,"block w-full placeholder-gray-dark text-gray-darker rounded-md leading-none disabled:bg-gray-lighter",st[r],o?"border-danger focus:ring-danger focus:border-danger":"border-gray-light focus:ring-primary focus:border-primary")},l))};it.propTypes={size:m.oneOf(Object.keys(st)),className:m.string,type:m.string,isError:m.bool};const ct={large:{parent:"h-6 w-11",inner:"h-5 w-5",translate:"translate-x-5"},medium:{parent:"h-5 w-8",inner:"h-4 w-4",translate:"translate-x-3"},small:{parent:"h-3 w-5",inner:"h-2 w-2",translate:"translate-x-2"}},dt=e=>{var t=e,{isChecked:r=!1,size:n="medium"}=t,a=c(t,["isChecked","size"]);return h.createElement(L,s({checked:r,className:d(r?"bg-primary":"bg-gray","switch relative inline-flex flex-shrink-0 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none disabled:opacity-60",ct[n].parent)},a),h.createElement("span",{className:d(r?ct[n].translate:"translate-x-0","switch-inner pointer-events-none inline-block rounded-full bg-white transform ring-0 transition ease-in-out duration-200 shadow",ct[n].inner)}))};dt.propTypes={isChecked:m.bool,size:m.string},(dt.Group=({className:e,children:t})=>h.createElement(L.Group,{as:"div",className:d("inline-flex items-center",e)},t)).displayName="Switch.Group",dt.Group.propTypes={className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},(dt.Label=({direction:e="left",className:t,children:r})=>h.createElement(L.Label,{as:"span",className:d("left"===e?"mr-2":"ml-2",t)},r)).displayName="Switch.Label",dt.Label.propTypes={direction:m.string,className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};var mt=function(e,t){for(var r=-1,n=null==e?0:e.length,a=Array(n);++r<n;)a[r]=t(e[r],r,e);return a},ht=Array.isArray,pt=mt,ut=ht,gt=Ve,wt=ye?ye.prototype:void 0,vt=wt?wt.toString:void 0;var ft=function e(t){if("string"==typeof t)return t;if(ut(t))return pt(t,e)+"";if(gt(t))return vt?vt.call(t):"";var r=t+"";return"0"==r&&1/t==-Infinity?"-0":r};var kt=function(e){return null==e?"":ft(e)},Et=0;var xt=function(e){var t=++Et;return kt(e)+t};const yt=e=>{var t,r=e,{label:n,className:a,classNames:o={}}=r,l=c(r,["label","className","classNames"]);const[m]=v(null!=(t=l.id)?t:xt("checkbox-"));return h.createElement("div",{className:d(a,"flex items-center")},h.createElement("input",i(s({type:"checkbox",className:d(o.checkbox,"w-4 h-4 rounded text-primary border-gray focus:primary disabled:bg-gray-light disabled:text-gray-light disabled:border-none transition-colors")},l),{id:m})),n?h.createElement("label",{htmlFor:m,className:d(o.label,"ml-2 leading-none text-gray-darker")},n):null)};yt.propTypes={label:m.string.isRequired,className:m.string,classNames:m.shape({checkbox:m.string,label:m.string}),onChange:m.func};const Lt=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return h.createElement("label",s({className:d(r,"block text-sm text-black font-bold mb-1")},n))};Lt.propTypes={className:m.string};const Mt=({classNames:e,children:t})=>h.createElement("div",{className:d("header-toolbar flex items-center w-full px-5 pr-3 py-3 xl:px-6 xl:py-5 space-x-2 xl:space-x-6 border-b border-gray-light",e)},t);Mt.propTypes={classNames:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},(Mt.Breadcrumb=({className:e,children:t})=>h.createElement(ot,{className:d("text-xl border-r border-gray-light md:pr-4 xl:pr-6",e)},t)).displayName="HeaderToolbar.Breadcrumb",Mt.Breadcrumb.propTypes={className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},Mt.Breadcrumb.displayName="HeaderToolbar.Search",Mt.Search=e=>h.createElement(at,s({className:"flex-grow pr-1 w-full"},e));const bt=e=>{var t=e,{className:r,value:n,onChange:a,children:o}=t,l=c(t,["className","value","onChange","children"]);const i=w.toArray(o),m=i.filter((e=>e.type===bt.Tab)),u=i.filter((e=>e.type===bt.Panel));return h.createElement(h.Fragment,null,h.createElement("div",s({className:d("bg-gray-lighter overflow-x-auto",r)},l),h.createElement("nav",{className:"flex"},m.map(((e,t)=>p(e,{isActive:t===n,onClick:()=>null==a?void 0:a(t)}))))),u.map(((e,t)=>p(e,{isActive:t===n}))))};bt.propTypes={className:m.string,value:m.number.isRequired,onChange:m.func.isRequired,children:m.node.isRequired};const Nt=e=>{var t=e,{as:r="button",className:n,isActive:a=!1}=t,o=c(t,["as","className","isActive"]);return h.createElement(r,s({className:d(n,"transition-colors cursor-pointer p-4 flex-1 text-center text-lg font-semibold whitespace-nowrap focus-visible:ring",a?"bg-white text-black":"text-gray-dark hover:text-black hover:bg-gray-light")},o))};Nt.displayName="Tabs.Tab",Nt.propTypes={as:m.oneOfType([m.string,m.elementType]),className:m.string,isActive:m.bool},bt.Tab=Nt;const Ct=e=>{var t=e,{isActive:r=!1,className:n}=t,a=c(t,["isActive","className"]);return h.createElement("div",s({className:d(n,r||"hidden")},a))};Ct.displayName="Tabs.Panel",Ct.propTypes={isActive:m.bool,className:m.string},bt.Panel=Ct;var jt="_shimmer_qt4e9_7";const zt=e=>{var t=e,{className:r,style:n,height:a=300,shouldAnimate:o=!0,children:l}=t,i=c(t,["className","style","height","shouldAnimate","children"]);return h.createElement("div",s({className:d(r,"relative flex items-center justify-center bg-gray-lighter overflow-hidden rounded border border-gray-lighter"),style:s({height:a},n)},i),o?h.createElement("div",{className:d(jt,"absolute w-full h-full")}):null,h.createElement("div",{className:"text-gray"},l))};zt.propTypes={className:m.string,style:m.object,height:m.number,shouldAnimate:m.bool,children:m.oneOfType([m.arrayOf(m.node),m.node])};const _t=({isOpen:e=!1,title:t,content:r,onClose:n,classNames:a={}})=>h.createElement(x.Root,{show:e,as:u},h.createElement(y,{static:!0,as:"div",className:"overflow-hidden fixed inset-0",open:e,onClose:n},h.createElement("div",{className:"overflow-hidden absolute inset-0"},h.createElement(x.Child,{as:u,enter:"ease-in-out duration-500",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in-out duration-500",leaveFrom:"opacity-100",leaveTo:"opacity-0"},h.createElement(y.Overlay,{className:"absolute inset-0 bg-opacity-75 transition-opacity bg-gray"})),h.createElement("div",{className:"flex fixed inset-y-0 right-0 pl-10 max-w-full"},h.createElement(x.Child,{as:u,enter:"transform transition ease-in-out duration-500 sm:duration-700",enterFrom:"translate-x-full",enterTo:"translate-x-0",leave:"transform transition ease-in-out duration-500 sm:duration-700",leaveFrom:"translate-x-0",leaveTo:"translate-x-full"},h.createElement("div",{className:"w-screen max-w-md"},h.createElement("div",{className:"flex overflow-y-auto flex-col py-8 h-full bg-white shadow-xl"},h.createElement("div",{className:"px-4 sm:px-6"},h.createElement("div",{className:"flex justify-between items-start"},h.createElement(y.Title,{className:d("text-base font-semibold",a.title)},t),h.createElement("div",{className:d("ml-3 h-7 flex items-center")},h.createElement(B,{size:"small",color:"link",className:"focus:hidden",onClick:n},h.createElement(P,null))))),h.createElement("div",{className:d("mt-3 relative flex-1 px-4 sm:px-6",a.content)},r))))))));_t.propTypes={isOpen:m.bool,title:m.oneOfType([m.arrayOf(m.node),m.node]),content:m.oneOfType([m.arrayOf(m.node),m.node]),onClose:m.func.isRequired,classNames:m.object};const Tt=e=>h.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"150",height:"48",fill:"none",viewBox:"0 0 150 48"},e),h.createElement("path",{fill:"#1B5EA8",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),h.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),h.createElement("path",{fill:"#fff",d:"M36.37 26.71s1.788-.534 1.998-.56c.209-.026.445 0 .445 0s.264-.33.344-.305c.076.025.392.129.446 0 .05-.129.262-.306.366-.331.106-.028.028-.255.158-.358.13-.102.997-.534 1.18-.738.187-.204.84-1.146.946-1.146.107 0 .316-.153.395-.28.076-.129.786-.945.945-1.122.16-.178.5-.434.5-.434s.026-.535.106-.636c.078-.102.366-.432.498-.585.132-.153.605-.64.71-.611.105.025.443 0 .472-.102.028-.103-.054-.434.131-.485.183-.051.473-.077.473-.077s.419-1.274.605-1.35c.184-.078.471-.153.471-.153s.551-.459.736-.434c.185.026.788-.05.788-.05s.551-.587.656-.84c.106-.256.289-.409.448-.436.157-.024-.08-.15.157-.304.235-.154 1.209-.611 1.39-.79.184-.177.475-.688.475-.688s-.134-.636.079-.815c.209-.178.996-.433 1.314-.587.313-.152 1.023-.635 1.152-.865.133-.229.476-.612.551-.636.08-.026.528-.588.63-.688.107-.103.792-.359.923-.435.13-.075.707-.075.839-.102.132-.024.236-.204.577-.255.343-.05 1.498.051 1.576.026.08-.026.237-.23.42-.152.187.075.395.56.5.61.105.052.47.155.734.332.261.179.631.713.945.688.318-.024.499.434.659.637.157.205.709.765.682.892-.026.129-.185.459-.026.714.158.254.341.712.498.814.157.103.498.638.498.842 0 .202.264.762.53.967.258.204.628 1.351.915 1.709.288.354 1.078 2.24 1.29 2.522.21.279.21.177.472.255.262.074 1.1.584 1.34.762.236.18 1.075 1.606 1.258 1.862.187.256 1.024 1.63 1.184 1.91.158.28.499 1.326.709 1.35.209.026.576 1.095.785 1.248.212.154 1.054 1.326 1.237 1.453.182.127.84 1.656.944 1.833.105.18-1.659 1.177-1.424 1.227.236.05-.916.433-.757.485.159.05-1.415.689-.785.97.631.279-1.458 1.94-1.458 1.94s-1.9 1.967-1.692 1.94c.21-.025-1.971 2.274-1.814 2.425.158.154-3.229 1.328-2.994 1.455.237.13-4 1.456-4 1.456l-5.195.97-15.336-5.82L36.37 26.71z"}),h.createElement("path",{fill:"url(#paint0_linear)",d:"M63.554 15.07c-.133.124-.313.43-.313.608s.076.46.13.586c.05.127.08.612.08.612s-.293-.178-.423-.332c-.13-.153-.104-.482-.13-.611-.027-.128-.342.13-.526.152-.093.014-.165-.12-.228-.253-.062-.133-.115-.267-.167-.255-.104.027-.419.18-.735.46-.314.278-.234.38-.394.458-.156.075-.234.126-.446-.025-.111-.08-.141-.014-.181.053-.035.06-.077.121-.19.073-.115-.05-.053.086.02.22.078.139.168.278.088.213-.155-.126-.155.28-.053.433.106.154.29.46.42.713.135.256.815 1.48.606 1.428-.21-.052-.448-.611-.528-.84-.077-.23-.472-.588-.552-.588-.075 0-.471-.027-.576-.075-.103-.051-.84-.23-1.26-.204-.42.025-.527-.357-.735-.409-.212-.05-.894-.254-1.077-.279-.183-.025.42.586.604.637.184.05.288.204.026.303-.262.104-.708-.279-.838-.279-.134 0-.37.357-.21.46.155.102.812.484.946.587.127.101.025.533-.109.482-.129-.052-.867-.052-1.181.027-.316.076-.814-.334-1.049-.51-.237-.178-.474-.052-.58.077-.105.125-.447.611-.656.814-.209.203-.998.203-1.206.357-.213.152-1.052.84-1.288 1.122-.237.279-.997.508-1.262.688-.263.178-.657.992-.814 1.12a6.114 6.114 0 00-.684.688c-.209.254-.631.509-.891.816-.264.305-.473.585-.473.585l-.526.534-.446-.255s-.601.409-.813.512c-.21.1-.975-.052-1.235-.078-.265-.025-.605.28-.526.307.08.026.134.177.08.255-.055.076-.605.076-.605.076l-.132.433s-.5.075-.71.075c-.21 0-.523.077-.655.105-.132.025-.5-.308-.63-.308-.134 0-.5-.152-.655 0-.16.154-.424.561-.424.561s-.394 0-.523.025c-.13.026-.84.23-.84.23l2.732 14.803c3.806 2.777 8.538 4.422 13.666 4.422 9.751 0 18.071-5.95 21.316-14.31-.631-1.088-1.59-2.778-1.734-3.005-.21-.33-1.077-1.96-1.233-2.165-.16-.205-.368-.026-.445.05-.04.036-.11.012-.178-.012-.082-.028-.165-.057-.192.013-.054.127-.367.382-.474.279-.103-.1-.42-.891-.394-1.043.028-.153.446.074.446.074s.133-.074.082-.201c-.054-.128-.684-.282-.792-.256-.103.025-.417-.535-.628-.689-.21-.153-.657-.736-.813-.94-.16-.207-.711-.766-.895-.893-.181-.128-.629-.534-.919-.661-.29-.129-.316-.512-.445-.869-.13-.355-.186.105-.158.23.027.127-.238.333-.16.357.08.025.132.282.263.382.133.101-.262.23-.39.203-.135-.024-.29-.432-.37-.609-.08-.18-.395-.231-.29-.434.107-.205.238-.561.132-.688-.105-.128-.157-.483.025-.458.186.024.315-.103.422-.205.105-.102.316.306.395.432.076.129.498.663.474.536-.028-.128.182-.204.182-.204.21.433 1.968 2.6 2.022 2.804.053.202.158-.078.132-.307-.027-.23.104-.152.13-.255.028-.103-.13-.407-.526-.433-.394-.025-.576-.637-.709-.918-.13-.28.395.23.395.23l-1.234-2.087s-1.103-1.784-1.18-1.784c-.08 0-.266.1-.317.203-.053.1.209.789.286.892.08.1.318.484.239.535-.08.05-.499-.205-.711-.28-.207-.078-.497.254-.497.254s-.08-1.07-.212-1.07c-.13 0-.079-.46-.051-.84.026-.383-.42-.383-.42-.383s-.08-.867-.185-.992c-.105-.13 0-.714.027-.971.028-.253-.552-1.222-.684-1.322-.068-.054-.21-.087-.348-.087-.124 0-.244.026-.307.087z"}),h.createElement("path",{fill:"url(#paint1_linear)",d:"M49.923 17.743s-.131.306-.342.457c-.213.154-.343.563-.552.843-.21.279-.47.458-.682.355-.21-.103-.473.051-.446.357.026.306.106.943-.053.867-.16-.077-.026-.408-.262-.255-.238.153-.712.993-.893.918-.185-.076-.396-.536-.526-.358-.131.179-.184.74-.341.484-.157-.256-.393-.23-.76.05-.37.283-.764.462-.947.56-.187.103-.55.383-.632.613a.85.85 0 01-.366.46c-.133.074-.445.305-.445.457 0 .154-.187.23-.398.434-.207.203-.602.482-.811.663-.211.178-.659.663-.869.764-.211.101-.576.383-.367.383 0 0 .367 0 .577-.154.211-.154.815-.586.973-.638.158-.051.525-.076.603.103.08.18-.05.433-.236.559-.182.13-.579.563-.681.588-.106.024-.395.28-.395.28s.497-.025.734-.18c.238-.15.87-.432.945-.637.08-.203.263-.457.397-.66.131-.203.339.1.314.306-.028.202.319.354.497.074.185-.28.448-.15.683-.15.236 0 .739.175.869-.027.132-.204.445-.815.632-.92.183-.099.6-.89.731-1.196.13-.305.578-1.17.685-1.528.105-.357.448-.788.658-.917.209-.127.707-.33.945-.484.235-.152.102-.305.366-.534.264-.23.395-.179.395-.41 0-.227.211-.483.211-.483s-.342-.305-.133-.561c.212-.255.525-.764.525-.764s0-.23-.103-.153c-.106.076-.5-.026-.5-.026v.46z"}),h.createElement("path",{fill:"#fff",d:"M63.605 24.24s.842 1.222.998 1.502c.157.282.815 1.428.868 1.632.05.204.133.483.447.713.314.23.655.584.655.584s.028-.355-.026-.509c-.054-.153-.708-.942-.891-1.246-.186-.308-2-2.55-2.05-2.675zM66.783 28.978s.291.46.291.764c0 .307.288.867.42 1.095.132.23.34.664.447.715.103.05.42.077.736.407.312.331.471.584.735.663.261.075.472.153.472.153s-.315-.407-.682-1.044c-.37-.638-1.078-1.784-1.235-1.886-.16-.103-.499-.485-.579-.383-.079.1-.605-.484-.605-.484z"}),h.createElement("path",{fill:"url(#paint2_linear)",d:"M42.07 37.411c.34.74 3.018 1.784 2.996 1.248-.02-.366.025-1.56.055-2.28.217.32.398.591.44.675.135.256 2.682 3.745 2.918 4.435.238.69 5.383 3.974 5.91 4.534.13.139.432.451.817.846a23.433 23.433 0 005.45-.813 1.066 1.066 0 01-.28-.44c-.053-.18.185-.255.316-.458.129-.204.104-.204-.078-.181-.185.027-.763-.177-1.078-.203-.315-.024-1.42-.585-1.76-.687-.342-.102-.684-.917-.998-1.149-.316-.227-.525-.277-.657-.227-.133.052-.24-.026-.447-.256-.21-.23-.157-.457-.29-.611-.126-.152-.103.308-.182.357-.078.05-.315-.41-.474-.587-.155-.175-.34-.635-.446-.738-.104-.1-.104.202-.131.356-.025.152-.368.333-.5.23-.133-.102-.262-.456-.394-.586-.064-.063-.07.079-.074.22-.004.145-.002.292-.055.213-.106-.154-.289-.303-.316-.51-.026-.202-.159-.814-.263-.867-.103-.048-.21-.457-.315-.635-.103-.178-.103.127-.103.306 0 .177-.238.026-.293-.077-.05-.102-.157-.533-.259-.61-.107-.077-.29.203-.29.203l-.055.738s-.235-.713-.313-.84c-.078-.129-.342-.612-.368-.434-.027.178-.155-.075-.367-.23-.212-.153-.372-.431-.372-.356 0 .078.11.741-.047.662-.159-.076-.266-.686-.449-.967-.182-.28-.735-.713-.735-.713l-.13-.46s-.526-.025-.579-.178c-.052-.153-.34-.126-.366.052-.026.177-.291-.052-.504-.052-.205 0-.47-.636-.548-.739-.075-.102-.16-.28-.184-.154-.025.13-.209.052-.316-.178-.105-.23.187-.558.237-.688.054-.126-.05-.304-.21-.151-.157.152-.314.535-.314.535l-.288-.409-.134.155-.261-.536-.238-.509-.131.535-.026.031c-.122-.33-.227-.601-.262-.644-.103-.126-.63-1.554-.815-1.808-.182-.255-.157-.738-.157-.738s-.316-.18-.526-.078c-.21.103-.367-.33-.553-.458-.179-.127-.416.027-.416.027v-.587l-1.576-.154s1.443 6.879 1.785 7.618z"}),h.createElement("path",{fill:"url(#paint3_linear)",d:"M36.793 23.475c-.186.205-.817.257-.946.356-.131.101-.421.41-.499.535-.08.128-.292.153-.421.255-.131.103-.236.587-.236.587s-.34.05-.71.382c-.368.33-.71.434-1.077.663-.268.167-.78.513-1.085.736 1.14 11.166 10.85 19.89 22.658 19.89.631 0 1.257-.025 1.876-.073a19.55 19.55 0 01-.704-1.09c-.525-.89-1.628-1.399-1.815-1.452-.182-.05-.6-.817-.735-.866-.13-.05-.602-.79-.76-1.043a.845.845 0 00-.632-.41c-.235-.023-1.39-1.5-1.39-1.5s-1.6-1.707-1.759-1.836c-.159-.128-1.024-1.274-1.184-1.452-.157-.178-.97-.764-1.153-.79-.185-.026-.788-.919-.897-1.02-.103-.1-.495-.1-.522 0-.028.101-.29.384-.314.512-.026.127-.026.459-.211.61-.185.15-.288.713-.288.713s-.342-.229-.447-.253c-.108-.026-.263-.843-.289-1.022-.027-.176-.239-.637-.37-.787-.132-.154-.522-.818-.735-.97-.209-.152-.367-.84-.391-1.148-.028-.304-.553-1.196-.685-1.426-.133-.229-.264-1.119-.315-1.273-.054-.153-.343-.636-.499-.815-.157-.18-.892-.967-1.181-1.148-.289-.177-.398-.611-.446-.686-.055-.077-.133-.536-.133-.536s-.182-.331-.237-.484c-.05-.152-.103-2.496-.078-2.573.028-.075-.34-.356-.497-.408-.16-.05.026-.28 0-.406-.028-.127-.212-.282-.212-.282s-.5.306-.68.51z"}),h.createElement("path",{fill:"#292929",d:"M.503 1.522h3.322l10.851 19.71 10.848-19.71h3.323L16.498 23.97l12.98 23.424h-3.262L14.676 26.646 3.263 47.394H0L12.919 23.97.503 1.522zM89.929 44.653h13.784v2.74H86.919V1.522h3.01v43.131zM138.864 29.567l-9.22-22.145 9.22 22.145zm-9.22-22.145l-9.281 22.145h18.501l-9.22-22.145zm-10.41 24.883l-6.333 15.088h-3.073L129.644 0l19.754 47.393h-3.071l-6.336-15.088h-20.757zM32.994 24.456c0 11.315 9.722 20.806 21.512 20.806 11.725 0 21.51-9.553 21.51-20.806 0-11.317-9.785-20.806-21.51-20.806-11.79 0-21.512 9.489-21.512 20.806zm46.031 0C79.025 37.352 67.801 48 54.506 48c-13.296 0-24.52-10.648-24.52-23.544 0-12.898 11.163-23.544 24.52-23.544 13.295 0 24.52 10.646 24.52 23.544z"}),h.createElement("defs",null,h.createElement("linearGradient",{id:"paint0_linear",x1:"60.015",x2:"60.015",y1:"80.164",y2:"14.981",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#626262"})),h.createElement("linearGradient",{id:"paint1_linear",x1:"40.169",x2:"50.526",y1:"21.908",y2:"21.908",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#909191"})),h.createElement("linearGradient",{id:"paint2_linear",x1:"50.698",x2:"50.698",y1:"29.793",y2:"50.252",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#909191"})),h.createElement("linearGradient",{id:"paint3_linear",x1:"23.397",x2:"83.226",y1:"51.182",y2:"51.182",gradientUnits:"userSpaceOnUse"},h.createElement("stop",{stopColor:"#fff"}),h.createElement("stop",{offset:"1",stopColor:"#626262"}))));const Bt=({defaultValues:e,isLoading:t=!1,isError:r=null,onSubmit:n})=>{const[a,o]=v(s({email:"",password:"",shouldRemember:!1},e)),l=e=>{const{name:t,value:r}=e.target;o(i(s({},a),{[t]:r}))};return h.createElement("div",{className:"login-container h-screen bg-opacity-40 bg-white"},h.createElement("div",{className:"flex flex-col justify-center items-center space-y-8 w-full h-[90%] md:full"},h.createElement("div",{className:"px-9 md:py-10 w-82 py-0 rounded-lg md:bg-white"},h.createElement("div",{className:"md:mb-10 mb-12"},h.createElement(Tt,{className:"md:h-12 md:mb-20 w-auto h-10 mx-auto"})),h.createElement("form",{onSubmit:e=>{e.preventDefault(),n(a)}},h.createElement("fieldset",{className:"space-y-6",disabled:t},h.createElement("div",{className:"-space-y-px bg-white rounded-md"},h.createElement(lt,{className:"md:mb-7"},h.createElement(Lt,null,"Email"),h.createElement(it,{required:!0,name:"email",type:"email",autoComplete:"email",value:a.email,error:!!r,onChange:l})),h.createElement(lt,null,h.createElement(Lt,null,"Password"),h.createElement(it,{required:!0,name:"password",type:"password",autoComplete:"current-password",value:a.password,error:!!r,onChange:l}))),h.createElement(yt,{name:"remember",label:"Remember me",checked:a.shouldRemember,onChange:e=>{const{name:t,checked:r}=e.target;o(i(s({},a),{[t]:r}))}}),r?h.createElement(q,{color:"danger"},r):null,h.createElement(B,{type:"submit",className:"w-full",color:"primary"},t?h.createElement(rt,{size:"current",color:"current",className:"mr-2"}):null,"Login"),h.createElement("div",{className:"mt-5 text-sm text-center"},h.createElement("a",{href:"https://xola.com/resetting/form",className:"text-gray-darker hover:text-black font-semibold underline",target:"_blank",rel:"noreferrer"},"Forgot your password?")))))),h.createElement("footer",null,h.createElement("div",{className:"flex flex-col items-center justify-center w-full px-4 py-1 overflow-hidden sm:px-6 lg:px-8"},h.createElement("div",{className:"px-4 m-5 w-82 opacity-30 hover:opacity-80 md:text-sm text-xs text-center rounded-lg"},h.createElement("a",{href:"https://www.xola.com/team",target:"_blank",className:"md:text-gray",rel:"noreferrer"},"Handcrafted in Houston, Belgrade & Bengaluru",h.createElement("div",{className:"text-center"},"© ",(new Date).getFullYear()," Xola, Inc."))))))};Bt.propTypes={defaultValues:m.shape({email:m.string,password:m.string,shouldRemember:m.bool}),isLoading:m.bool,isError:m.string,onSubmit:m.func};const Ht=N(),Ot=new Set(["JPY","CLP","KRW","LAK","PYG","VND","VUV"]),Vt=e=>Ot.has(e),At=(e,t=Ht,r=0)=>new Intl.NumberFormat(t,{style:"currency",currency:e,maximumFractionDigits:0}).format(r).replace(/\d/g,"").trim(),St=N(),It=e=>{const t=Math.abs(e);return t>=0&&t<=.001},Pt=(e,t=null,r=St,n=2)=>{const a={style:t?"currency":"decimal",minimumFractionDigits:n,maximumFractionDigits:n};return t&&(a.currency=t),new Intl.NumberFormat(r,a).format(e)},Rt=(e,t)=>{let r=Number(t);return Vt(e)?r=C(r):(C(r,3)===C(r,4)&&(r=C(r,3)),r=C(r,2)),r},qt=N(),Ft=({currency:e="USD",locale:t=qt,shouldRemoveTrailingZeroes:r=!0,maximumFractionDigits:n=2,children:a})=>{let o=a;It(o)&&(o=0);let l=Pt(o,e,t,Vt(e)?0:n);return l=r?l.replace(".00",""):l,h.createElement("span",{className:"currency-formatted-amount"},l)};Ft.propTypes={currency:m.string,locale:m.string,shouldRemoveTrailingZeroes:m.bool,maximumFractionDigits:m.number,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},(Ft.Round=({currency:e,children:t})=>{const r=Rt(e,t);return h.createElement("span",{className:"currency-rounded"},r)}).propTypes={currency:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired},(Ft.Split=({currency:e="USD",locale:t=qt,children:r})=>{let n=r;It(n)&&(n=0);const a=Rt(e,n).toString().split("."),o=a[0];let l=a[1]||"0";1===l.length&&(l+="0");const s=Pt(o,e,t,0);return h.createElement("span",{title:n,className:"currency-formatted-split-amount"},h.createElement("span",{className:"amount-int"},s),!Vt(e)&&h.createElement("span",{className:"pl-1 underline amount-decimal"},h.createElement("sup",null,l)))}).propTypes={currency:m.string,locale:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const Ut=j.PhoneNumberFormat,Dt=j.PhoneNumberUtil.getInstance(),Gt=({countryCode:e="US",className:t,children:r})=>{const n=r;try{let r=Dt.parseAndKeepRawInput(n,e);const a=Dt.getRegionCodeForNumber(r);let o;if(a&&a!==e&&(r=Dt.parseAndKeepRawInput(n,a)),a){const t=a===e?Ut.NATIONAL:Ut.INTERNATIONAL;o=Dt.format(r,t)}else o=n;return h.createElement("span",{className:t,"data-region-code":a||"N/A","data-country-code":e,title:n},o)}catch(a){console.debug("Invalid phone number",n,a.message)}return h.createElement("span",{className:t,"data-country-code":e},n)};Gt.propTypes={countryCode:m.string,className:m.string,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const Wt=N(),Kt=({locale:e=Wt,maximumFractionDigits:t=2,children:r})=>{const n=Pt(r,null,e,t);return h.createElement("span",{className:"formatted-number"},n)};Kt.propTypes={locale:m.string,maximumFractionDigits:m.number,children:m.oneOfType([m.arrayOf(m.node),m.node]).isRequired};const Zt=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M12.4 2.356a.455.455 0 00-.457-.456H3.725c-.255 0-.456.2-.456.456v8.214c0 .25.2.451.456.451h8.213-.004c.25 0 .456-.205.456-.456l.01-8.209zM7.85 3.212v6.125M10.912 6.275H4.787",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M3.273 3.725h-.917c-.255 0-.456.2-.456.456v7.757-.004a.45.45 0 00.452.456h7.757-.005a.458.458 0 00.456-.456v-.913",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Yt=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M8.714 2.714L13 7l-4.286 4.286M13 7.003H1",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),$t=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M9.722 7a2.722 2.722 0 11-5.444 0 2.722 2.722 0 015.444 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M9.721 7v1.166a1.555 1.555 0 103.111 0V6.999a5.833 5.833 0 10-2.333 4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Jt=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#ArrowUpRightIcon_svg__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M5.182 2.757h6.06v6.061M11.244 2.76L2.76 11.244"})),h.createElement("defs",null,h.createElement("clipPath",{id:"ArrowUpRightIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Xt=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.679 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59h-.005a.461.461 0 01-.286-.005l-4.351-1.585A.435.435 0 012 9.8V4.347a.424.424 0 01.321-.421l4.56-1.186v-.004a.37.37 0 01.217 0l4.58 1.211zM6.794 5.345v6.513",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M11.885 4.069L6.794 5.34l-4.66-1.272",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Qt=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M5.106 7.819l-1.86.265.265-1.86L8.28 1.45h-.005c.435-.44 1.15-.44 1.59-.005.435.435.435 1.15 0 1.59l-4.76 4.784z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M3.625 4.125H2.12a.749.749 0 00-.75.75v5.25-.005c-.005.41.335.75.745.75h9.75-.005c.41 0 .75-.34.75-.75V4.87c0-.415-.34-.75-.75-.75h-.75M11.125 9h-3.75M11.125 7.125h-2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),er=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.76 2.87H2.24a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.174 2v2.174M9.826 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),tr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M8.518 5.498a.22.22 0 01-.216.217.204.204 0 01-.113-.035l-1.085-.65-1.31.68v-.004a.222.222 0 01-.321-.2V2H8.51l.008 3.498z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M11.555 2.022h-9.11a.434.434 0 00-.434.434v9.11c0 .24.194.434.434.434h9.11c.24 0 .434-.194.434-.434v-9.11a.434.434 0 00-.434-.434z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),rr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.506 7.739v3.712l-.006-.006c0 .628.508 1.136 1.136 1.142h6.723a1.146 1.146 0 001.136-1.148V7.727",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M5.647 2.441a.863.863 0 01-.857.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.629-1.324h-.006a.278.278 0 01.4-.046l.04.04c.308.382.525.834.628 1.319l.023.017zM10.514 2.441a.863.863 0 01-.856.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.628-1.324h-.005a.278.278 0 01.4-.046l.04.04c.308.382.525.834.628 1.319l.022.017zM10.229 6.311H9.087V4.312a.283.283 0 01.28-.291h.57-.005a.282.282 0 01.285.28l.012 2.01zM5.361 6.311H4.219V4.312a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.286.28l.011 2.01z",fill:"currentColor"}),h.createElement("path",{d:"M11.5 9.11c0 .822-.674 1.498-1.499 1.498A1.5 1.5 0 018.502 9.11c0 .823-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5c0 .823-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5V6.882a.566.566 0 01.565-.577h7.852-.005a.564.564 0 01.57.566l.012 2.238z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),nr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.654 3H2.352a.98.98 0 00-.98.98v5.874c0 .54.44.98.98.98h9.302a.98.98 0 00.98-.98V3.98a.98.98 0 00-.98-.979z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{fill:"currentColor",d:"M1.6 4.5h11V6h-11z"})),ar=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M5.663 10.7v.214a1.337 1.337 0 002.674 0V10.7M8.07 3.355v-.536a1.07 1.07 0 10-2.14 0v.536",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M3.828 5.943A2.643 2.643 0 016.472 3.3h1.057a2.643 2.643 0 012.643 2.643v1.632c0 .309.123.606.342.825l.374.373c.219.22.342.516.342.825 0 .61-.494 1.103-1.103 1.103H3.873a1.102 1.102 0 01-1.102-1.103c0-.309.123-.606.342-.825l.374-.373c.218-.22.341-.516.341-.825V5.943v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),or=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#BalloonIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M10.792 5.196c0 2.152-1.744 4.87-3.896 4.87S3 7.348 3 5.196v0a3.896 3.896 0 117.792 0v0zM6.833 10.062s-.55 1.942.548 2.738"})),h.createElement("defs",null,h.createElement("clipPath",{id:"BalloonIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),lr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.753 3h-9.5a1 1 0 00-1 1v6a1 1 0 001 1h9.5a1 1 0 001-1V4a1 1 0 00-1-1zM1.25 5h11.5M11.25 7h-1.5M6.75 7h-4",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),sr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2 4.638l.983.983L5.603 3M2 10.638l.983.983L5.603 9M7.569 4H11.5M7.569 10H11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),ir=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2 2.031l2.494 6.86h.014a.678.678 0 00.623.424h4.764c.265 0 .504-.159.61-.41l1.433-3.981c.159-.345 0-.73-.332-.876a.604.604 0 00-.265-.066H2.776M8.966 11.318h.013c-.173-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.319-.345M5.648 11.318h.013c-.172-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.318-.345",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),cr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.797 4.6h-.005a.194.194 0 01.197.197.203.203 0 01-.405-.005.195.195 0 01.197-.203s0 0 0 0M9.6 7.4h-.005a.194.194 0 01.197.197c0 .107-.09.198-.203.198a.203.203 0 01-.202-.203.195.195 0 01.197-.203",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M10.6 3H1.8a.8.8 0 00-.8.8v4.8a.8.8 0 00.8.8h8.8a.8.8 0 00.8-.8V3.8a.8.8 0 00-.8-.8z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M6.2 4.6a1.6 1.6 0 100 3.2 1.6 1.6 0 000-3.2zM13 5.4v4.8c0 .437-.363.8-.8.8H3.4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),dr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M9 12.5L3.5 7 9 1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),mr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2 7.546l2.727 2.727L12 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),hr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M1.75 9.75l5.5-5.5 5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),pr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M7 6.214a.786.786 0 100 1.572.786.786 0 000-1.572zM7 6.214v-2.75M7.555 7.555l1.41 1.41",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),ur=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.875 12.25a5.375 5.375 0 100-10.75 5.375 5.375 0 000 10.75z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M6.875 4.304v2.571l2.805 2.57",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),gr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M4.429 2.714V1M7 2.714V1M9.571 2.714V1M4.429 13v-1.714M7 13v-1.714M9.571 13v-1.714M11.286 4.429H13M11.286 7H13M11.286 9.571H13M1 4.429h1.714M1 7h1.714M1 9.571h1.714M9.571 2.714H4.43c-.947 0-1.715.768-1.715 1.715V9.57c0 .947.768 1.715 1.715 1.715H9.57c.947 0 1.715-.768 1.715-1.715V4.43c0-.947-.768-1.715-1.715-1.715z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.029 5.4H6.057a.657.657 0 00-.657.657V8.03c0 .363.294.657.657.657H8.03a.657.657 0 00.657-.657V6.057a.657.657 0 00-.657-.657z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),wr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 12.833A5.833 5.833 0 107 1.167a5.833 5.833 0 000 11.666zM4.667 9.333l4.666-4.667M9.333 9.333L4.667 4.666",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),vr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#CompassIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M7 13A6 6 0 107 1a6 6 0 000 12z"}),h.createElement("path",{d:"M5.696 5.696L9.55 4.108v0a.26.26 0 01.341.34L8.304 8.305"}),h.createElement("path",{d:"M8.304 8.304L5.696 5.696 4.108 9.55v0a.26.26 0 00.34.341l3.856-1.588z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"CompassIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),fr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 12A5 5 0 107 2a5 5 0 000 10zM3.465 10.535l7.07-7.07",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),kr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M1.008 6.006v5.863M12 11.136a2.2 2.2 0 00-2.199-2.199H7.053A2.2 2.2 0 004.855 6.74H1v4.397h11zM4.855 8.938h2.748M10.906 1.625V1M11.844 1.625h-1.275a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H9.937M10.906 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Er=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M8.17 7.002L9.917 8.75l-1.75 1.75M5.25 8.75H2.917A1.166 1.166 0 011.75 7.583V2.917c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167V5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M11.083 12.25H6.417a1.166 1.166 0 01-1.167-1.167V6.417c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167v4.666c0 .645-.522 1.167-1.167 1.167zM5.25 8.75h4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),xr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M12 2.98H2a.833.833 0 00-.833.833v6.666c0 .46.373.834.833.834h10c.46 0 .833-.373.833-.834V3.813A.833.833 0 0012 2.979z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M12.645 3.285l-4.524 3.48a1.838 1.838 0 01-2.241 0l-4.525-3.48",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),yr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.215 10.107H7.668l-2.796 2.229h-.009a.23.23 0 01-.3-.033.227.227 0 01-.05-.142v-2.07H2.835A.839.839 0 012 9.248V3.404a.827.827 0 01.826-.843h8.348-.009a.825.825 0 01.835.826V9.23c0 .46-.376.835-.835.835h-.008l.058.042zM4.538 5.103h5.008M4.538 7.607h3.339",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Lr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 .875a6.125 6.125 0 100 12.25A6.125 6.125 0 007 .875v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M5.136 4.736H5.13c.069-.005.133.059.133.128a.14.14 0 01-.133.133c-.075 0-.134-.064-.139-.133a.132.132 0 01.128-.138M8.864 4.736H8.86a.132.132 0 00-.133.134c0 .069.058.133.133.127.07-.005.133-.064.128-.138a.135.135 0 00-.133-.133M3.538 8.864h6.924",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Mr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("rect",{x:2,y:2,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("rect",{x:2,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),br=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7.017 5.218a1.828 1.828 0 100 3.656 1.828 1.828 0 000-3.656v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M12.958 6.875c-.61-.69-3.04-3.227-5.943-3.227-2.909 0-5.337 2.532-5.943 3.222h-.005a.25.25 0 000 .34c.605.689 3.034 3.221 5.938 3.221 2.903 0 5.332-2.533 5.938-3.227h-.006a.268.268 0 000-.345l.021.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Nr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#ExportIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M4.947 12.109H4.94c2.813 1.134 6.017-.232 7.16-3.05A5.5 5.5 0 009.058 1.9a5.514 5.514 0 00-7.173 7.166"}),h.createElement("path",{d:"M8.532 8.186l.002-2.706-2.706.002M8.534 5.48l-5.416 5.416"})),h.createElement("defs",null,h.createElement("clipPath",{id:"ExportIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Cr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#DotCircleIcon_svg__clip0)"},h.createElement("path",{d:"M7 13A6 6 0 107 1a6 6 0 000 12z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),h.createElement("defs",null,h.createElement("clipPath",{id:"DotCircleIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),jr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M4.07 5.92h-.005c.069-.005.133.06.133.131a.14.14 0 01-.133.136c-.075 0-.133-.065-.139-.136a.134.134 0 01.128-.141M9.93 5.92h-.006a.133.133 0 00-.133.137c0 .07.059.135.133.13.07-.005.133-.065.128-.141a.137.137 0 00-.133-.136M3.804 9.046L3.8 9.041c.735 1.799 2.759 2.652 4.527 1.902A3.51 3.51 0 0010.19 9.04",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M7 .893c-.804 0-1.6.162-2.344.476A6.118 6.118 0 002.67 2.724a6.26 6.26 0 00-1.328 2.028 6.362 6.362 0 000 4.784 6.261 6.261 0 001.328 2.027 6.118 6.118 0 001.987 1.355 6.017 6.017 0 004.688 0 6.117 6.117 0 001.987-1.354 6.26 6.26 0 001.328-2.028 6.362 6.362 0 000-4.784 6.26 6.26 0 00-1.328-2.028 6.117 6.117 0 00-1.987-1.355A6.018 6.018 0 007 .893v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),zr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.333 11.667V2.333M2.333 9.368l1.309-.402a3.986 3.986 0 013.262.414 3.988 3.988 0 003.185.44l1.24-.353a.467.467 0 00.338-.45V4.154a.465.465 0 00-.595-.449l-.983.281a3.988 3.988 0 01-3.185-.438 3.986 3.986 0 00-3.262-.415l-1.309.402",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),_r=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.854.729a6.271 6.271 0 100 12.542 6.271 6.271 0 000-12.542v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M3.855 5.773h-.006c.071-.005.137.06.137.13 0 .072-.066.137-.137.137-.076 0-.136-.065-.141-.136a.135.135 0 01.13-.142M9.853 5.773h-.005a.135.135 0 00-.137.136c0 .071.06.137.137.131.07-.005.136-.065.13-.142a.139.139 0 00-.136-.136M4.4 10.817a2.45 2.45 0 114.902-.01",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Tr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M4.7 2.023v3.465a2.3 2.3 0 002.31 2.298 2.317 2.317 0 002.298-2.321V2M7.01 2.028V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Br=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.008 4v5.863M13 9.13a2.2 2.2 0 00-2.198-2.199H8.053a2.2 2.2 0 00-2.198-2.198H2V9.13h11zM5.855 6.931h2.748",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Hr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M5.945 6.988H2.788A.791.791 0 012 6.191v-.788a.78.78 0 01.78-.795h8.662-.008a.778.778 0 01.788.78v.787a.79.79 0 01-.788.787h-3.15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.308 6.988h2.756l-.347 4.78v-.008a.783.783 0 01-.787.724H4.307v0a.785.785 0 01-.787-.733l-.347-4.788H5.93M5.945 4.625V12.5M8.308 12.5V4.625M4.37 3.586c.473.472 2.757 1.032 2.757 1.032s-.56-2.284-1.04-2.757a1.22 1.22 0 00-1.724-.007 1.21 1.21 0 00-.008 1.716l.015.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M9.883 3.586c-.473.472-2.756 1.032-2.756 1.032s.55-2.284 1.031-2.757H8.15a1.21 1.21 0 011.717-.007 1.217 1.217 0 010 1.716l.016.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Or=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M9.65 10.651v1.438l2.875-2.636L9.65 6.818v1.437H6.296v2.396H9.65z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M5.338 9.214H2.22a.724.724 0 01-.719-.72v0-5.27a.718.718 0 01.714-.724h8.625-.005a.718.718 0 01.719.719v3.114",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M11.36 2.716l-4.824 3.86-4.825-3.86",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Vr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M5.825 3.297V2.273a.766.766 0 111.53-.01v1.024",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M7.36 6.368V3.297a.766.766 0 111.53-.01v1.535",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.897 7.136V4.832a.766.766 0 111.53-.01v5.119a2.56 2.56 0 01-2.56 2.56H6.159a2.574 2.574 0 01-2.165-1.194c-.886-1.392-1.976-3.675-1.976-3.675a.61.61 0 01.154-.855.607.607 0 01.742.031l1.356 1.587V3.276a.766.766 0 111.53-.01v3.071",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Ar=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.462 6.353v5.833M11.538 6.353v5.833M8.296 12.185V9.593a1.296 1.296 0 00-2.592 0v2.592M1.167 12.186h11.666M2.509 6.352c-.99-.007-1.636-.988-1.207-1.833l1-1.97c.228-.449.708-.734 1.234-.734h6.928c.526 0 1.005.285 1.234.734l1 1.97c.43.845-.216 1.826-1.206 1.833-.827 0-1.497-.565-1.497-1.262v-.028c0 .713-.67 1.29-1.497 1.29-.827 0-1.497-.577-1.497-1.29 0 .713-.67 1.29-1.497 1.29-.826 0-1.497-.577-1.497-1.29v.028c-.001.697-.672 1.262-1.498 1.262v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Sr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.565 2h-9.13A.435.435 0 002 2.435v9.13c0 .24.195.435.435.435h9.13c.24 0 .435-.195.435-.435v-9.13A.435.435 0 0011.565 2zM2 10.26h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M2 9.665s1.083-2.707 2.436-2.707c1.354 0 2.437 1.625 2.437 1.625l1.63-2.8h-.006a.903.903 0 011.24-.324c.151.086.27.216.352.373L12 9.655",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Ir=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 11.667A4.667 4.667 0 102.333 7v.36",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M.583 5.833l1.75 1.75 1.75-1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Pr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.124 12.022a.479.479 0 01-.477.478H3.478A.48.48 0 013 12.018v0V1.986a.474.474 0 01.473-.487h4.58-.004a.461.461 0 01.339.139l2.584 2.589-.005-.005c.086.086.138.21.138.334l.02 7.465z",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.259 1.558v2.345c0 .262.21.473.478.473h2.345",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M6.906 5.625V5M7.844 5.625H6.569a.839.839 0 00-.844.838.84.84 0 00.525.774l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H5.937M6.906 10v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Rr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M13.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM8.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),qr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.764 9.467L4.731 11.5h-.005a1.919 1.919 0 01-2.711-.005l-.452-.451a1.916 1.916 0 01-.005-2.71L4.49 5.398v-.005a1.909 1.909 0 012.707 0l.447.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M6.312 3.597l2.029-2.031h-.005a1.91 1.91 0 012.706-.008c.75.745 0 0 0 0l.447.447L11.484 2a1.918 1.918 0 010 2.706L8.547 7.638v-.004a1.924 1.924 0 01-2.71 0l-.006-.005-.451-.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"})),Fr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#MagicIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M5.615 6.02l1.426 1.442M1 10.697l6.038-6.111h0a.664.664 0 01.946 0l.473.478v0a.683.683 0 010 .958L2.551 12M3.634 2.355V3.71M4.304 3.032H2.965M6.98 1v1.355M7.65 1.678H6.31M10.996 3.37v2.033M12 4.387H9.992"})),h.createElement("defs",null,h.createElement("clipPath",{id:"MagicIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Ur=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#InfoCircleIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M7.05 1.3a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5v0z"}),h.createElement("path",{d:"M8.357 9.666h-.789a.525.525 0 01-.523-.528v0V5.74a.262.262 0 00-.262-.261H6M6.917 4.175h-.005a.13.13 0 00-.131.13c0 .069.057.131.13.126.069-.005.131-.062.126-.136a.133.133 0 00-.13-.13"})),h.createElement("defs",null,h.createElement("clipPath",{id:"InfoCircleIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Dr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{clipRule:"evenodd",d:"M10.775 6.536v0a.905.905 0 00-.9-.91h-5.85 0c-.497 0-.9.407-.9.91v4.553h0c0 .503.403.911.9.911h5.85v0c.497 0 .9-.408.9-.91V6.535zM4.4 4.138h0C4.4 2.847 5.542 1.8 6.95 1.8S9.5 2.847 9.5 4.138v1.487H4.4V4.138z",stroke:"currentColor",strokeWidth:1.02,strokeLinecap:"round",strokeLinejoin:"round"})),Gr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.11 4.262h3.67M4.276 7.014H9.78M4.276 9.766H9.78M2.44 2.427a.909.909 0 01.91-.927h7.338-.009a.906.906 0 01.918.909v9.174a.92.92 0 01-.918.917H3.331a.922.922 0 01-.918-.927v0l.028-9.146z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Wr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2 4h10M2 7h10M2 10h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Kr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M9.03 3H6.88v0c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02H5M6.53 11v1.5M7.53 1.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Zr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.226 2.773a1.51 1.51 0 00-2.144.015L3.067 8.802l-.734 2.864 2.864-.734 6.015-6.015a1.509 1.509 0 00.014-2.144v0zM8.91 2.96l2.13 2.13M3.068 8.802L5.2 10.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Yr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2 4.638l.983.983L5.603 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("rect",{x:2,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),$r=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.03 3H3.88v0c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02H2M3.53 11v1.5M4.53 1.5V3M9.917 9.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM9.917 5.167v3.5M8.167 6.917h3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Jr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:15,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M6.008 9.972A.972.972 0 106.981 9a.972.972 0 11.972-.972M6.98 6.083v.973M6.98 10.944v.973",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M1.845 8.72a5.28 5.28 0 105.28-5.281H6.72",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.447 1.458l-1.98 1.98 1.98 1.981",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Xr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M8.986 11.573l.006.004a2.705 2.705 0 003.366-.37l.378-.378a.902.902 0 000-1.275l-1.594-1.593a.903.903 0 00-1.276 0v0a.9.9 0 01-1.275 0L6.041 5.41a.902.902 0 010-1.276v0a.9.9 0 000-1.275L4.445 1.264a.903.903 0 00-1.275 0l-.379.378a2.706 2.706 0 00-.37 3.365l.005.006a24.411 24.411 0 006.56 6.56v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Qr=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.214 6.88a.987.987 0 111.396 1.396l-3.312 3.31a.573.573 0 01-.405.167H7.737v-1.156c0-.152.06-.298.168-.406l3.31-3.312v0zM4.295 4.869h4.59M4.295 7.163h2.868M11.879 9.01l-1.4-1.4M11.179 4.869V3.147c0-.633-.514-1.147-1.148-1.147H3.147C2.513 2 2 2.514 2 3.147v7.458c0 .634.513 1.148 1.147 1.148h2.295",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),en=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7.834 9.98a1.557 1.557 0 112.55-1.67.39.39 0 00.64.133l1.215-1.215a.779.779 0 000-1.101L10.993 4.88a1.557 1.557 0 10-1.91-1.907L7.836 1.728a.779.779 0 00-1.101 0L5.607 2.856a.39.39 0 00.06.6A1.557 1.557 0 113.51 5.614a.39.39 0 00-.6-.06L1.777 6.677a.779.779 0 000 1.101l4.404 4.404a.779.779 0 001.101 0L8.5 10.966a.39.39 0 00-.134-.637 1.54 1.54 0 01-.531-.348z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),tn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#PrintIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M5.85 11.34h2.285M5.85 9.627h2.285M3.667 9.348H2.096a1.047 1.047 0 01-1.043-1.044V5.168c0-.579.464-1.043 1.043-1.043h9.913c.574 0 1.038.464 1.038 1.043v3.13h-.005a1.047 1.047 0 01-1.049 1.039h-1.565M3.666 3.573V1h5.002c.135 0 .266.052.365.151l1.257 1.26-.005-.005c.094.094.151.23.151.365v.802"}),h.createElement("path",{d:"M10.45 12.478a.523.523 0 01-.523.522H4.183a.524.524 0 01-.522-.527v0-4.696h6.783l.005 4.701z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"PrintIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),rn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 2v10M12 7H2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),nn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.192 11.344c0 .15-.128.279-.279.279a.283.283 0 01-.184-.073l-1.494-1.282-2.064 1.544v-.005a.285.285 0 01-.334 0l-2.064-1.55-1.494 1.277v-.006a.287.287 0 01-.469-.218V2.063a.552.552 0 01.552-.563h7.25-.005a.551.551 0 01.557.552l.028 9.292zM4.265 4.236h2.736M4.265 6.06h4.56M4.265 7.884h4.56",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),an=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),on=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#PinIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M2.99 5.86v-.1a4.01 4.01 0 118.02 0v.1c0 2.018-2.557 5.058-3.587 6.201a.568.568 0 01-.846 0c-1.03-1.143-3.586-4.183-3.586-6.201v0z"}),h.createElement("path",{d:"M5.833 5.807a1.166 1.166 0 102.334 0v-.022a1.166 1.166 0 10-2.334 0"})),h.createElement("defs",null,h.createElement("clipPath",{id:"PinIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),ln=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M1.682 6.816a.708.708 0 01-.033-1.352l9.55-3.113a.358.358 0 01.45.449l-3.111 9.55a.707.707 0 01-1.352-.033L6.117 7.879 1.682 6.816zM11.562 2.437L6.117 7.879",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),sn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M8.927 1.313L1.813 8.427c-.173.172-.125.5.106.731l2.423 2.423c.231.231.559.279.732.106l7.114-7.114c.172-.172.124-.5-.107-.731L9.659 1.419c-.232-.231-.56-.279-.732-.106zM4.042 6.774l1.482 1.482M5.233 5.588l1.038 1.038M6.555 4.26l1.482 1.482M7.74 3.075l1.192 1.18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),cn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#SettingsIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M7 7.233V1M7 12v-1.833M7 7.233a1.467 1.467 0 100 2.934 1.467 1.467 0 000-2.934zM2.967 6.5V12M2.967 1v2.567M2.967 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0zM11.033 6.5V12M11.033 1v2.567M11.033 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"SettingsIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),dn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M12.984 5.302L10.943 3.34l-.005-.005a2.624 2.624 0 00-1.816-.733H4.94c-.68 0-1.33.262-1.816.733l-2.04 1.962h-.006a.257.257 0 00-.005.366l1.214 1.214-.005-.005c.094.094.246.1.35.016l1.492-1.162v6.018c0 .14.115.256.261.256H9.62h-.005c.141 0 .261-.12.261-.262V5.721l1.492 1.155c.1.084.256.079.35-.02l1.214-1.22h-.005c.1-.105.1-.272-.005-.372l-.005-.005.068.043zM5.473 2.612a1.567 1.567 0 103.135-.01",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),mn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:16,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M11.711 4.083a4.813 4.813 0 00-8.524 3.061v1.314M4.5 10.446a4.812 4.812 0 008.313-3.302V6.27",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M1.438 6.707l1.75 1.75 1.75-1.75M14.563 8.02l-1.75-1.75-1.75 1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),hn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#SquareIcon_svg__clip0)"},h.createElement("path",{d:"M10.333 12H3.667C2.746 12 2 11.254 2 10.333V3.667C2 2.747 2.746 2 3.667 2h6.666C11.253 2 12 2.746 12 3.667v6.666c0 .921-.746 1.667-1.667 1.667z",stroke:"currentColor"})),h.createElement("defs",null,h.createElement("clipPath",{id:"SquareIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),pn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#ShapesIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M11.635 8.902a1.961 1.961 0 11-2.774 2.774 1.961 1.961 0 012.774-2.774M12.398 4.173l-1.69 1.69a.653.653 0 01-.925 0l-1.691-1.69a.654.654 0 010-.924l1.69-1.692a.653.653 0 01.925 0l1.69 1.691a.655.655 0 010 .925v0zM2.519 5.56h2.39a.654.654 0 00.654-.655v-2.39a.654.654 0 00-.654-.654H2.52a.654.654 0 00-.654.654v2.39c0 .361.293.654.654.654v0zM3.129 8.841l-1.449 2.32a.69.69 0 00.584 1.054h2.9a.69.69 0 00.584-1.055l-1.45-2.318A.69.69 0 003.13 8.84v0z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"ShapesIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),un=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#TrashIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M1.828 3.324H12.15M8.095 1.85H5.884v0a.737.737 0 00-.738.737v.738h3.687v-.738 0a.737.737 0 00-.738-.737v0zM5.884 9.591V5.905M8.095 9.591V5.905"}),h.createElement("path",{d:"M10.364 11.495v0a.737.737 0 01-.735.677H4.35v0a.737.737 0 01-.734-.677l-.682-8.17h8.11l-.68 8.17z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"TrashIcon_svg__clip0"},h.createElement("path",{fill:"#fff",transform:"translate(1.091 1.113)",d:"M0 0h11.796v11.796H0z"})))),gn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M10.851 8.4H3.25A.249.249 0 003 8.65v2.203c0 .137.111.248.249.248h7.602a.249.249 0 00.249-.248V8.649a.249.249 0 00-.248-.249z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M11.752 5.7H4.149a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.603A.249.249 0 0012 8.152V5.949a.249.249 0 00-.248-.249z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M10.851 3H3.25A.249.249 0 003 3.25v2.203c0 .137.111.248.249.248h7.602a.249.249 0 00.249-.248V3.249A.249.249 0 0010.852 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),wn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M10.5 7.5L8.746 9.003A5 5 0 007 12.8v.125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M3.5 7.5l1.754 1.503A5 5 0 017 12.8v.125M2.9 9V7M5 7H3M11.1 9V7M9 7h2M6.906 1.625V1M7.844 1.625H6.569a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H5.937M6.906 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),vn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#StarIcon_svg__clip0)"},h.createElement("path",{d:"M7.389 1.239l1.785 3.535 3.434.34a.437.437 0 01.367.283.426.426 0 01-.102.45l-2.83 2.8 1.049 3.807a.427.427 0 01-.144.446.437.437 0 01-.47.053L7 11.231l-3.478 1.724a.438.438 0 01-.608-.255.426.426 0 01-.005-.244l1.048-3.808-2.83-2.803a.429.429 0 01.265-.733l3.434-.34 1.785-3.535A.432.432 0 017.001 1a.438.438 0 01.388.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),h.createElement("defs",null,h.createElement("clipPath",{id:"StarIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),fn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M9.917 12.834a2.917 2.917 0 100-5.834 2.917 2.917 0 000 5.834zM9.917 8.167v3.5M8.167 9.917h3.5M1.167 9.333c0-.578.138-1.148.4-1.658.263-.51.642-.943 1.105-1.262a3.224 3.224 0 013.162-.3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M4.667 5.833a2.333 2.333 0 100-4.666 2.333 2.333 0 000 4.666z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),kn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("rect",{x:2,y:2,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M4 3.333V4l.333.333.167.167",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("rect",{x:2,y:8,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M4 9.333V10l.333.334.167.166M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),En=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#UserIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M4.02 2.591h0a5.371 5.371 0 005.988 1.204"}),h.createElement("path",{d:"M6.805 7.465a3.233 3.233 0 100-6.465 3.233 3.233 0 000 6.465zM11.61 11.649a5.315 5.315 0 00-9.61 0"})),h.createElement("defs",null,h.createElement("clipPath",{id:"UserIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),xn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M2.5 11h9M11.03 4.746l-5.708 5.708v0a.379.379 0 01-.193.104l-2.176.435v0a.38.38 0 01-.446-.446l.435-2.175v0a.383.383 0 01.104-.194L8.755 2.47v0a1.605 1.605 0 012.269 0l.007.007v0a1.606 1.606 0 010 2.27v0z"})),yn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#TicketIcon_svg__clip0)"},h.createElement("path",{d:"M11.693 4.31a1.354 1.354 0 11-1.915-1.915L8.66 1.278a.451.451 0 00-.639 0L1.32 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 011.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L11.693 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),h.createElement("defs",null,h.createElement("clipPath",{id:"TicketIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Ln=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#VeteranIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M2.5 7.642a.6.6 0 01.933-.499L6.667 9.3a.6.6 0 00.666 0l3.234-2.157a.6.6 0 01.933.5V9.93a.6.6 0 01-.267.5l-3.9 2.599a.6.6 0 01-.666 0l-3.9-2.602a.6.6 0 01-.267-.5V7.643zM7.283 1.172L7.9 2.5h1.2a.293.293 0 01.207.513L8.265 4.04l.577 1.325a.314.314 0 01-.448.393L7 4.973l-1.394.785a.314.314 0 01-.448-.393l.577-1.325-1.041-1.026A.293.293 0 014.9 2.5h1.2l.617-1.328a.318.318 0 01.566 0z"})),h.createElement("defs",null,h.createElement("clipPath",{id:"VeteranIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),Mn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M7 4.083H2.917A1.17 1.17 0 001.75 5.25v5.833a1.17 1.17 0 001.167 1.167H8.75a1.17 1.17 0 001.167-1.167V7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M9.625 7A2.614 2.614 0 017 4.375 2.614 2.614 0 019.625 1.75a2.614 2.614 0 012.625 2.625A2.614 2.614 0 019.625 7z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M8.75 4.142h.058c.642 0 1.109.525 1.109 1.108M12.833 7.583l-1.341-1.341",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),bn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M12.25 4.083H1.75a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.25 6.417h3.5M12.056 4.083v7c0 .645-.522 1.167-1.167 1.167H3.111a1.166 1.166 0 01-1.167-1.167v-7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Nn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M2.867 10.153L7.403 2.95v-.006a.667.667 0 011.062-.005L13 10.142l-10.133.011z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M2.868 10.153H1l1.868-2.935h-.006a.71.71 0 01.534-.272l-.006-.005c.208.005.4.101.534.261l.347.694M5.245 6.377l1.25 1.057-.006-.005a.534.534 0 00.72-.032l.342-.347h-.005a.527.527 0 01.752-.006l.342.342a.533.533 0 00.72.027l1.227-1.04",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Cn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("g",{clipPath:"url(#AlertCircleIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.createElement("path",{d:"M12.68 6.857a5.81 5.81 0 01-5.735 5.823H6.94a5.648 5.648 0 01-5.73-5.562c-.005-.026-.005-.052-.005-.073L1.2 7.04a5.812 5.812 0 015.73-5.834V1.2a5.639 5.639 0 015.723 5.557v.068l.026.031zM6.95 7.5V4.357"}),h.createElement("path",{d:"M6.945 9.042v0a.128.128 0 00-.13.124c0 .068.057.125.13.125v0a.136.136 0 00.125-.136l-.005-.005-.005-.005c-.005-.073-.063-.13-.13-.13h-.005"})),h.createElement("defs",null,h.createElement("clipPath",{id:"AlertCircleIcon_svg__clip0"},h.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),jn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M10.22 6.377L9.03 5.185l1.107-1.109 1.187 1.187a.789.789 0 001.108-.021.79.79 0 000-1.093l-1.192-1.191.552-.553a.795.795 0 000-1.113.79.79 0 00-1.113-.005L5.052 6.91v0A2.745 2.745 0 001.33 8.016a2.74 2.74 0 001.108 3.716 2.743 2.743 0 003.71-3.726L7.895 6.26 9.08 7.453c.303.303.8.303 1.108-.006a.79.79 0 00-.005-1.113l.036.043z"})),zn=e=>h.createElement("svg",s({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M4.41 2.591h0a5.372 5.372 0 005.988 1.204"}),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M7.195 7.465a3.233 3.233 0 100-6.465 3.233 3.233 0 000 6.465zM12 11.649a5.315 5.315 0 00-9.61 0"})),_n=e=>h.createElement("svg",s({viewBox:"0 0 20 20",width:20,height:20,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M16.875 4.37488H3.125C1.74429 4.37488 0.625 5.49417 0.625 6.87488V16.8749C0.625 18.2556 1.74429 19.3749 3.125 19.3749H16.875C18.2557 19.3749 19.375 18.2556 19.375 16.8749V6.87488C19.375 5.49417 18.2557 4.37488 16.875 4.37488Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M13.125 3.74988C13.125 2.92108 12.7958 2.12622 12.2097 1.54017C11.6237 0.954118 10.8288 0.624878 10 0.624878C9.1712 0.624878 8.37634 0.954118 7.79029 1.54017C7.20424 2.12622 6.875 2.92108 6.875 3.74988V4.37488H13.125V3.74988Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M5.83334 4.99988V19.1665",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M14.1667 4.99988V19.1665",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Tn=e=>h.createElement("svg",s({viewBox:"0 0 22 22",width:22,height:22,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{d:"M20.5777 10.3387L11.6144 1.37538C11.2492 1.0102 10.6572 1.0102 10.292 1.37538L1.32868 10.3387C0.963504 10.7039 0.963503 11.2959 1.32868 11.6611L10.292 20.6244C10.6572 20.9896 11.2492 20.9896 11.6144 20.6244L20.5777 11.6611C20.9429 11.2959 20.9429 10.7039 20.5777 10.3387Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M10.975 6.34784V11.5937",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M10.9623 14.7636C10.8314 14.7636 10.7285 14.8665 10.7379 14.9974C10.7379 15.119 10.8407 15.2218 10.9716 15.2218C11.0932 15.2125 11.1961 15.1096 11.1867 14.9787C11.1774 14.9693 11.1774 14.9693 11.1774 14.9693C11.168 14.8384 11.0651 14.7356 10.9436 14.7356",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.createElement("path",{d:"M10.976 14.7636H10.9653",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),Bn=e=>h.createElement("svg",s({viewBox:"0 0 20 20",width:20,height:20,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M1.428 14.979l2.022 3.044"}),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M12.608 1.428l7.678 11.565M19.882 12.382l-16.835 5.03-1.216-1.83L13 2.022l6.871 10.35.012.01z"}),h.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M11.809 14.796a2.553 2.553 0 01-.253 3.598 2.566 2.566 0 01-3.61-.253c-.072-.084-.145-.168-.205-.265l-1.059-1.6"}));export{Zt as AddSquareIcon,q as Alert,Cn as AlertCircleIcon,Bn as AnnounceIcon,bn as ArchiveIcon,Ir as ArrowCcwIcon,Yt as ArrowRightIcon,Jt as ArrowUpRightIcon,$t as AtIcon,W as Avatar,I as Badge,or as BalloonIcon,Qt as BankCheckIcon,ar as BellIcon,tr as BookmarkIcon,Xt as BoxIcon,ot as Breadcrumb,_n as BriefcaseIcon,B as Button,se as ButtonGroup,rr as CakeIcon,er as CalendarIcon,nr as CardIcon,lr as CartAltIcon,ir as CartIcon,cr as CashIcon,mr as CheckIcon,yt as Checkbox,sr as ChecklistIcon,F as ChevronDownIcon,dr as ChevronLeftIcon,U as ChevronRightIcon,hr as ChevronUpIcon,gr as ChipIcon,pr as ClockAltIcon,ur as ClockIcon,wr as CloseCircleIcon,P as CloseIcon,yr as CommentIcon,vr as CompassIcon,Er as CopyIcon,Ft as Currency,kr as DepositIcon,fr as DisabledIcon,Tn as DisputesIcon,Cr as DotCircleIcon,_t as Drawer,Qr as EditIcon,Rr as EllipsisIcon,xr as EmailIcon,Mr as EmptyChecklistIcon,Nr as ExportIcon,br as EyeIcon,Lr as FaceNeutralIcon,_r as FaceSadIcon,jr as FaceSmileIcon,zr as FlagIcon,Tr as ForkIcon,lt as FormGroup,Or as ForwardIcon,Hr as GiftIcon,zn as GuestIcon,Br as HandAltIcon,Vr as HandIcon,Mt as HeaderToolbar,Ar as HomeIcon,Sr as ImageIcon,Ur as InfoCircleIcon,it as Input,Pr as InvoiceIcon,Je as Key,jn as KeyIcon,Lt as Label,Nn as LandscapeIcon,an as LineVerticalIcon,qr as LinkIcon,Gr as ListIcon,Dr as LockIcon,Bt as Login,de as Logo,Fr as MagicIcon,Wr as MenuIcon,Yr as MixedChecklistIcon,ne as Modal,$r as MoneyAddIcon,Jr as MoneyBackIcon,Kr as MoneyIcon,K as NotificationCount,Kt as Number,Zr as PenIcon,Gt as Phone,Xr as PhoneIcon,on as PinIcon,rn as PlusIcon,te as Popover,tn as PrintIcon,en as PuzzleIcon,nn as ReceiptIcon,mn as RefreshIcon,sn as RulerIcon,at as Search,Mn as SearchAltIcon,$e as SearchIcon,ln as SendIcon,cn as SettingsIcon,pn as ShapesIcon,dn as ShirtIcon,Z as Sidebar,zt as Skeleton,rt as Spinner,wn as SplitPaymentIcon,hn as SquareIcon,gn as StackIcon,vn as StarIcon,dt as Switch,oe as Table,bt as Tabs,yn as TicketIcon,Q as Tooltip,un as TrashIcon,fn as UserAddIcon,En as UserIcon,Ln as VeteranIcon,kn as WaitlistIcon,xn as WriteIcon,It as almostZero,At as getSymbol,Ye as isOSX,Vt as isZeroDecimal,Pt as numberFormat,Rt as roundNumber};
1
+ var e=Object.defineProperty,t=Object.defineProperties,r=Object.getOwnPropertyDescriptors,n=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable,l=(t,r,n)=>r in t?e(t,r,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[r]=n,s=(e,t)=>{for(var r in t||(t={}))a.call(t,r)&&l(e,r,t[r]);if(n)for(var r of n(t))o.call(t,r)&&l(e,r,t[r]);return e},i=(e,n)=>t(e,r(n)),c=("undefined"!=typeof require&&require,(e,t)=>{var r={};for(var l in e)a.call(e,l)&&t.indexOf(l)<0&&(r[l]=e[l]);if(null!=e&&n)for(var l of n(e))t.indexOf(l)<0&&o.call(e,l)&&(r[l]=e[l]);return r});import d from"clsx";import u from"prop-types";import p,{cloneElement as h,Children as m,forwardRef as f,Fragment as g,useState as v,useRef as y,useEffect as w}from"react";import k from"@tippyjs/react";import{followCursor as E}from"tippy.js";import{Transition as x,Dialog as b,Switch as M}from"@headlessui/react";import{useCombobox as N}from"downshift";import{useHotkeys as C}from"react-hotkeys-hook";import L,{DateUtils as D}from"react-day-picker";import P from"dayjs";import O from"get-user-locale";import{round as j}from"mathjs";import _ from"google-libphonenumber";import T from"react-hot-toast";import B from"lodash";const z={primary:"bg-primary hover:bg-primary-dark disabled:bg-primary border-transparent text-white",secondary:"bg-secondary hover:bg-secondary-dark disabled:bg-secondary border-transparent",success:"bg-success hover:bg-success-dark disabled:bg-success border-transparent text-white",warning:"bg-warning hover:bg-warning-dark disabled:bg-warning border-transparent text-white",danger:"bg-danger hover:bg-danger-dark disabled:bg-danger border-transparent text-white",outline:"bg-white hover:bg-secondary-lighter disabled:bg-secondary-light border-secondary-light hover:border-black disabled:border-transparent disabled:text-gray-dark",link:"border-transparent hover:underline"},F={tiny:"px-2 py-0.5 text-xs leading-xs",small:"px-3.5 py-2 text-sm leading-sm",medium:"px-4.5 py-3 text-base leading-base",large:"px-6 py-4 text-md leading-md"},S="inline-flex rounded transition-colors border focus:ring disabled:opacity-60 disabled:cursor-default",A=e=>{var t=e,{as:r="button",color:n="primary",size:a="medium",icon:o,iconPlacement:l="left",className:i,children:u}=t,h=c(t,["as","color","size","icon","iconPlacement","className","children"]);return p.createElement(r,s({className:d(S,"justify-center items-center font-semibold",z[n],F[a],i)},h),o&&"left"===l?p.createElement("span",{className:"flex-shrink-0 mr-2"},o):null,u,o&&"right"===l?p.createElement("span",{className:"flex-shrink-0 ml-2"},o):null)};A.propTypes={as:u.oneOfType([u.string,u.elementType]),className:u.string,color:u.oneOf(Object.keys(z)),size:u.oneOf(Object.keys(F)),icon:u.element,iconPlacement:u.oneOf(["left","right"]),children:u.node.isRequired};const H=i(s({},F),{small:"h-7.5 w-7.5 px-2 py-2 text-base leading-base",medium:"px-3 py-3 text-base leading-base"}),V=e=>{var t=e,{className:r,as:n="button",color:a="primary",size:o="medium",children:l}=t,i=c(t,["className","as","color","size","children"]);return p.createElement(n,s({className:d(S,z[a],H[o],r)},i),l)};V.displayName="Button.Icon",V.propTypes={as:u.oneOfType([u.string,u.elementType]),className:u.string,color:u.oneOf(Object.keys(z)),size:u.oneOf(Object.keys(F)),children:u.node.isRequired},A.Icon=V;const R={primary:"bg-primary-lighter text-primary-dark",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-success-dark",warning:"bg-warning-lighter text-warning-dark",caution:"bg-caution-lighter text-caution-dark",danger:"bg-danger-lighter text-danger-dark",problem:"bg-warning text-white",critical:"bg-danger text-white"},I={small:"px-2 py-0.75 h-5 text-sm leading-sm",medium:"px-3 py-1.5 h-7.5 text-base leading-base",large:"px-3.5 py-0.75 h-10 text-lg leading-lg"},W={small:"w-3 h-3",medium:"w-4 h-4",large:"w-5 h-5 mr-1.5"},U=e=>{var t=e,{color:r="primary",size:n="small",icon:a,className:o,children:l}=t,i=c(t,["color","size","icon","className","children"]);return p.createElement("span",s({className:d("badge inline-flex items-center rounded-full whitespace-nowrap",R[r],I[n],o)},i),a?h(a,{className:d("mr-1",W[n])}):null,l)};U.propTypes={className:u.string,color:u.oneOf(Object.keys(R)),size:u.oneOf(Object.keys(I)),icon:u.element,children:u.node.isRequired};const q={small:"w-3.5 h-3.5",medium:"w-4.5 h-4.5",large:"w-6 h-6"},Y=e=>{const t=t=>{var r=t,{size:n="small",className:a}=r,o=c(r,["size","className"]);return p.createElement(e,s({className:d(q[n],"inline-block",a)},o))};return t.propTypes={size:u.oneOf(Object.keys(q)),className:u.string},t},K=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M11.201 3.464l-7.07 7.072M11.202 10.536L4.13 3.464"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),G={primary:"bg-primary-lighter text-black border border-primary",secondary:"bg-secondary-light text-gray-darker border border-secondary",success:"bg-success-lighter text-black border border-success",warning:"bg-warning-lighter text-black border border-warning",danger:"bg-danger-lighter text-black border border-danger",caution:"bg-caution-lighter text-black border border-caution"},$={small:"px-1 py-0.75 text-sm",medium:"px-2 py-1 text-base"},J=e=>{var t=e,{color:r="primary",size:n="small",onClose:a,className:o,children:l}=t,i=c(t,["color","size","onClose","className","children"]);return p.createElement("span",s({className:d("tag inline-flex rounded leading-3.5",G[r],$[n],o)},i),l,a?p.createElement(K,{className:"float-right ml-2 cursor-pointer text-block hover:text-gray-darker",onClick:a}):null)};J.propTypes={color:u.oneOf(Object.keys(G)),size:u.oneOf(Object.keys($)),onClose:u.func,className:u.string,children:u.node.isRequired};const Z={primary:"bg-primary",secondary:"bg-secondary",success:"bg-success",warning:"bg-warning",danger:"bg-danger",caution:"bg-caution"},X=e=>{var t=e,{color:r="primary",className:n}=t,a=c(t,["color","className"]);return p.createElement("span",s({className:d("inline-block w-1 h-1 rounded-full text-white",Z[r],n)},a))};X.propTypes={className:u.string,color:u.oneOf(Object.keys(Z))};const Q={primary:"bg-primary-lighter text-black",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-black",warning:"bg-warning-lighter text-black",danger:"bg-danger-lighter text-black",caution:"bg-caution-lighter text-black"},ee=e=>{var t=e,{className:r,color:n="primary",onClose:a,children:o}=t,l=c(t,["className","color","onClose","children"]);return p.createElement("div",s({className:d("ui-alert flex items-start rounded text-base px-3 py-3 leading-4",Q[n],r)},l),p.createElement("span",{className:"ui-alert-body w-full"},o),a?p.createElement("button",{className:"ui-alert-close ml-3 cursor-pointer hover:text-gray-dark"},p.createElement(K,{onClick:a})):null)};ee.propTypes={className:u.string,color:u.oneOf(Object.keys(Q)),onClose:u.func,children:u.node.isRequired};const te=e=>p.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"192",height:"192",fill:"none",viewBox:"0 0 192 192"},e),p.createElement("path",{fill:"#1B5EA8",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),p.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),p.createElement("path",{fill:"#fff",d:"M25 105.194s6.998-2.181 7.82-2.29c.817-.104 1.742 0 1.742 0s1.033-1.34 1.346-1.241c.298.104 1.537.524 1.747 0 .196-.524 1.028-1.246 1.434-1.35.416-.113.108-1.038.617-1.458.514-.416 3.905-2.18 4.624-3.011.73-.83 3.29-4.673 3.7-4.673.421 0 1.239-.623 1.547-1.142.298-.524 3.078-3.852 3.7-4.573.626-.727 1.957-1.77 1.957-1.77s.103-2.18.416-2.591c.304-.42 1.434-1.766 1.948-2.388.519-.623 2.369-2.606 2.78-2.492.41.103 1.737 0 1.85-.416.107-.42-.21-1.77.514-1.978.714-.207 1.85-.311 1.85-.311s1.639-5.197 2.368-5.503c.72-.322 1.845-.628 1.845-.628s2.158-1.869 2.883-1.77c.724.109 3.083-.203 3.083-.203s2.158-2.393 2.57-3.426c.415-1.043 1.13-1.666 1.751-1.775.617-.1-.313-.613.617-1.241.92-.628 4.732-2.492 5.442-3.224.72-.717 1.86-2.804 1.86-2.804s-.524-2.59.308-3.322c.817-.727 3.9-1.765 5.144-2.393 1.228-.618 4.008-2.591 4.512-3.526.519-.934 1.865-2.496 2.158-2.595.313-.104 2.065-2.398 2.467-2.804.416-.42 3.098-1.463 3.611-1.775.509-.306 2.77-.306 3.284-.415.519-.1.925-.83 2.261-1.038 1.341-.208 5.863.207 6.172.103.313-.103.925-.94 1.639-.618.734.307 1.551 2.28 1.963 2.487.411.213 1.84.633 2.872 1.355 1.023.727 2.472 2.907 3.7 2.803 1.243-.098 1.953 1.77 2.579 2.596.617.836 2.775 3.12 2.672 3.64-.102.524-.724 1.868-.102 2.912.616 1.033 1.336 2.902 1.947 3.317.617.42 1.953 2.601 1.953 3.432 0 .825 1.033 3.11 2.07 3.945 1.013.83 2.462 5.508 3.587 6.967 1.126 1.444 4.219 9.137 5.046 10.284.822 1.137.822.722 1.85 1.038 1.028.302 4.312 2.384 5.251 3.11.92.732 4.204 6.547 4.924 7.59.729 1.043 4.008 6.645 4.634 7.788.617 1.142 1.953 5.409 2.775 5.508.817.103 2.256 4.464 3.073 5.087.832.628 4.126 5.405 4.846 5.924.709.519 3.288 6.754 3.694 7.476.412.731-6.495 4.797-5.575 5 .925.203-3.586 1.765-2.965 1.978.622.203-5.539 2.808-3.073 3.955 2.472 1.138-5.708 7.911-5.708 7.911s-7.437 8.02-6.625 7.911c.822-.103-7.717 9.271-7.101 9.889.617.628-12.642 5.414-11.722 5.933.93.525-15.661 5.934-15.661 5.934l-20.338 3.955-60.044-23.733L25 105.194z"}),p.createElement("path",{fill:"url(#paint0_linear)",d:"M131.43 57.726c-.524.509-1.229 1.755-1.229 2.482 0 .726.299 1.873.509 2.388.196.519.313 2.497.313 2.497s-1.145-.727-1.654-1.355c-.509-.623-.406-1.963-.509-2.492-.108-.52-1.341.529-2.06.623-.362.054-.646-.49-.891-1.033-.245-.544-.45-1.088-.656-1.039-.406.109-1.639.732-2.877 1.874-1.229 1.132-.915 1.553-1.542 1.869-.612.307-.915.514-1.747-.104-.436-.326-.553-.054-.71.218-.137.247-.298.494-.739.296-.455-.202-.21.352.079.9.303.564.655 1.133.342.866-.607-.515-.607 1.142-.21 1.765.416.628 1.135 1.874 1.649 2.907.524 1.043 3.186 6.032 2.369 5.824-.822-.212-1.752-2.492-2.065-3.426-.304-.934-1.85-2.398-2.164-2.398-.293 0-1.845-.109-2.256-.307-.401-.207-3.284-.939-4.933-.83-1.644.104-2.06-1.454-2.877-1.666-.828-.208-3.5-1.039-4.214-1.138-.72-.103 1.639 2.389 2.364 2.596.719.208 1.125.831.102 1.236-1.027.426-2.775-1.137-3.284-1.137-.523 0-1.443 1.454-.822 1.874.607.415 3.181 1.973 3.705 2.393.499.415.098 2.175-.426 1.968-.504-.213-3.396-.213-4.625.109-1.238.311-3.185-1.36-4.106-2.077-.93-.727-1.854-.213-2.27.312-.411.509-1.752 2.491-2.57 3.317-.817.83-3.905.83-4.722 1.459-.832.618-4.116 3.426-5.041 4.573-.93 1.138-3.906 2.072-4.943 2.804-1.028.727-2.57 4.044-3.186 4.569-.617.519-1.85 1.77-2.677 2.803-.817 1.038-2.472 2.077-3.49 3.328-1.032 1.246-1.85 2.388-1.85 2.388l-2.06 2.175-1.747-1.038s-2.354 1.666-3.181 2.086c-.827.411-3.817-.212-4.835-.316-1.038-.104-2.369 1.142-2.06 1.251.313.104.523.722.313 1.038-.216.312-2.369.312-2.369.312l-.519 1.765s-1.953.306-2.78.306c-.817 0-2.045.312-2.564.426-.514.103-1.953-1.256-2.467-1.256-.523 0-1.952-.618-2.564 0-.621.627-1.659 2.289-1.659 2.289s-1.542 0-2.046.104c-.514.104-3.293.934-3.293.934l10.698 60.361c14.902 11.323 33.43 18.032 53.505 18.032 38.178 0 70.753-24.262 83.457-58.353-2.471-4.435-6.225-11.323-6.788-12.252-.827-1.345-4.218-7.991-4.83-8.826-.621-.836-1.439-.104-1.742.207-.152.144-.426.045-.695-.054-.323-.114-.646-.232-.754.054-.21.52-1.434 1.558-1.855 1.138-.401-.41-1.644-3.634-1.541-4.252.107-.623 1.747.301 1.747.301s.519-.301.318-.821c-.21-.519-2.677-1.147-3.098-1.043-.406.104-1.634-2.18-2.461-2.808-.818-.623-2.57-3.001-3.181-3.837-.627-.84-2.785-3.12-3.505-3.64-.709-.518-2.461-2.175-3.597-2.694-1.135-.524-1.238-2.086-1.742-3.54-.514-1.449-.729.425-.622.94.108.514-.929 1.354-.621 1.453.313.099.514 1.147 1.028 1.558.518.41-1.028.934-1.532.825-.524-.099-1.136-1.76-1.444-2.482-.313-.737-1.546-.944-1.135-1.77.416-.835.93-2.29.514-2.803-.411-.524-.612-1.973.098-1.87.729.1 1.233-.42 1.654-.835.411-.415 1.238 1.246 1.546 1.76.299.524 1.948 2.705 1.855 2.186-.108-.52.714-.83.714-.83.823 1.764 7.704 10.6 7.914 11.43.21.826.622-.316.519-1.25-.108-.935.406-.618.509-1.039.107-.42-.509-1.661-2.061-1.765-1.541-.104-2.256-2.6-2.774-3.743-.509-1.142 1.546.94 1.546.94L148.5 81.2s-4.322-7.273-4.625-7.273c-.313 0-1.038.41-1.238.826-.206.41.817 3.219 1.12 3.64.314.41 1.244 1.972.935 2.18-.313.207-1.952-.836-2.784-1.143-.808-.316-1.943 1.039-1.943 1.039s-.314-4.366-.832-4.366c-.509 0-.309-1.874-.201-3.422.103-1.562-1.644-1.562-1.644-1.562s-.309-3.535-.725-4.045c-.411-.529 0-2.912.108-3.96.108-1.034-2.163-4.984-2.677-5.39-.269-.222-.827-.355-1.365-.355-.485 0-.955.104-1.199.356"}),p.createElement("path",{fill:"url(#paint1_linear)",d:"M78.061 68.628s-.514 1.246-1.341 1.864c-.832.628-1.341 2.294-2.158 3.436-.822 1.137-1.845 1.869-2.672 1.449-.823-.42-1.85.207-1.748 1.453.103 1.251.416 3.847-.205 3.536-.626-.312-.103-1.662-1.028-1.039-.93.623-2.785 4.05-3.494 3.743-.724-.311-1.551-2.185-2.06-1.458-.514.727-.72 3.016-1.336 1.973-.612-1.044-1.537-.94-2.976.202-1.444 1.152-2.99 1.884-3.705 2.284-.734.42-2.158 1.563-2.476 2.498-.304.934-.915 1.562-1.434 1.873-.519.307-1.742 1.247-1.742 1.87 0 .627-.73.934-1.557 1.77-.812.825-2.358 1.962-3.176 2.7-.827.726-2.579 2.704-3.401 3.114-.827.415-2.256 1.562-1.439 1.562 0 0 1.439 0 2.261-.628.827-.627 3.191-2.388 3.808-2.6.621-.208 2.055-.312 2.363.42.314.732-.2 1.765-.925 2.279-.714.529-2.265 2.295-2.667 2.398-.416.099-1.546 1.143-1.546 1.143s1.948-.104 2.873-.732c.934-.618 3.406-1.765 3.7-2.601.313-.826 1.032-1.864 1.556-2.695.514-.825 1.326.41 1.228 1.251-.108.826 1.248 1.444 1.948.302.724-1.142 1.752-.613 2.672-.613.925 0 2.892.717 3.401-.11.519-.83 1.742-3.322 2.477-3.747.714-.405 2.349-3.629 2.862-4.88.51-1.241 2.261-4.771 2.682-6.23.412-1.454 1.752-3.214 2.575-3.738.817-.519 2.77-1.35 3.7-1.973.92-.622.4-1.245 1.433-2.18 1.033-.94 1.547-.727 1.547-1.666 0-.93.827-1.973.827-1.973s-1.341-1.246-.524-2.29c.832-1.038 2.056-3.114 2.056-3.114s0-.935-.401-.623c-.416.311-1.958-.104-1.958-.104v1.874z"}),p.createElement("path",{fill:"#fff",d:"M131.63 95.121s3.293 4.979 3.905 6.122c.617 1.152 3.191 5.824 3.397 6.655.2.83.523 1.968 1.752 2.907 1.228.934 2.564 2.383 2.564 2.383s.108-1.449-.103-2.076c-.21-.623-2.77-3.842-3.489-5.083-.724-1.256-7.826-10.393-8.026-10.908zM144.07 114.44s1.14 1.874 1.14 3.115c0 1.251 1.126 3.535 1.645 4.464.514.94 1.331 2.705 1.747 2.913.406.207 1.649.316 2.882 1.661 1.224 1.35 1.846 2.383 2.878 2.705 1.023.306 1.85.623 1.85.623s-1.233-1.662-2.672-4.258c-1.449-2.6-4.219-7.273-4.835-7.688-.627-.42-1.953-1.978-2.266-1.562-.309.41-2.369-1.973-2.369-1.973z"}),p.createElement("path",{fill:"url(#paint2_linear)",d:"M47.317 148.826c1.331 3.016 11.814 7.273 11.726 5.087-.074-1.493.098-6.358.215-9.295.852 1.3 1.561 2.408 1.728 2.749.524 1.043 10.498 15.273 11.422 18.086.93 2.809 21.074 16.203 23.134 18.488.51.563 1.693 1.839 3.2 3.446a88.357 88.357 0 0021.339-3.313c-.451-.41-.921-1.177-1.097-1.795-.205-.732.725-1.038 1.238-1.869.504-.83.407-.83-.303-.736-.724.108-2.99-.723-4.224-.826-1.233-.099-5.559-2.388-6.89-2.804-1.336-.415-2.677-3.738-3.906-4.682-1.238-.93-2.055-1.132-2.574-.929-.519.212-.935-.104-1.747-1.044-.827-.934-.617-1.864-1.135-2.492-.495-.618-.407 1.256-.715 1.459-.303.203-1.233-1.671-1.855-2.393-.607-.717-1.33-2.591-1.747-3.011-.406-.411-.406.825-.514 1.453-.098.618-1.439 1.355-1.953.94-.523-.42-1.027-1.864-1.546-2.393-.25-.257-.274.321-.289.9-.014.588-.01 1.186-.215.865-.416-.628-1.13-1.236-1.238-2.077-.103-.825-.622-3.323-1.028-3.535-.406-.198-.822-1.864-1.233-2.591-.406-.727-.406.519-.406 1.246 0 .722-.93.109-1.146-.312-.195-.415-.616-2.175-1.013-2.491-.42-.312-1.14.83-1.14.83l-.21 3.011s-.92-2.907-1.229-3.426c-.303-.524-1.336-2.497-1.438-1.77-.108.727-.607-.307-1.44-.935-.826-.628-1.453-1.76-1.453-1.453 0 .316.426 3.021-.186 2.699-.621-.311-1.042-2.798-1.757-3.945-.714-1.143-2.877-2.908-2.877-2.908l-.51-1.874s-2.06-.103-2.265-.726c-.206-.623-1.332-.515-1.434.212-.103.722-1.14-.212-1.973-.212-.802 0-1.84-2.591-2.148-3.011-.294-.416-.622-1.143-.72-.628-.097.529-.817.212-1.238-.727-.41-.935.734-2.275.93-2.804.21-.514-.195-1.241-.822-.618-.616.618-1.228 2.181-1.228 2.181l-1.13-1.666-.525.632-1.022-2.185-.93-2.077-.514 2.181-.103.128c-.474-1.35-.886-2.452-1.023-2.625-.406-.514-2.466-6.339-3.19-7.372-.715-1.043-.617-3.011-.617-3.011s-1.238-.732-2.06-.317c-.818.42-1.434-1.35-2.164-1.869-.7-.519-1.63.109-1.63.109v-2.393l-6.17-.628s5.652 28.05 6.988 31.066"}),p.createElement("path",{fill:"url(#paint3_linear)",d:"M26.655 92c-.73.835-3.201 1.048-3.705 1.453-.514.41-1.65 1.667-1.953 2.181-.313.52-1.145.623-1.649 1.038-.514.42-.925 2.393-.925 2.393s-1.331.208-2.78 1.558c-1.439 1.35-2.78 1.77-4.213 2.704a87.075 87.075 0 00-4.248 3.002c4.463 45.527 42.48 81.102 88.707 81.102 2.472 0 4.924-.103 7.346-.301-1.008-1.528-2.006-3.12-2.755-4.445-2.055-3.63-6.377-5.701-7.106-5.919-.714-.202-2.354-3.332-2.878-3.53-.508-.208-2.358-3.219-2.975-4.252-.622-1.039-1.537-1.562-2.477-1.671-.92-.094-5.442-6.122-5.442-6.122s-6.264-6.956-6.885-7.48c-.622-.525-4.008-5.197-4.635-5.924-.616-.727-3.798-3.115-4.517-3.223-.724-.104-3.083-3.743-3.509-4.154-.406-.41-1.938-.41-2.046 0-.107.411-1.135 1.563-1.228 2.087-.103.514-.103 1.869-.827 2.487-.724.613-1.126 2.907-1.126 2.907s-1.34-.934-1.752-1.033c-.42-.104-1.028-3.437-1.13-4.168-.108-.717-.935-2.596-1.449-3.209-.519-.628-2.045-3.333-2.877-3.956-.818-.618-1.44-3.421-1.532-4.677-.108-1.241-2.164-4.88-2.682-5.815-.52-.934-1.033-4.563-1.233-5.191-.211-.623-1.341-2.596-1.953-3.323-.617-.732-3.494-3.946-4.625-4.682-1.13-.722-1.556-2.492-1.747-2.799-.216-.311-.519-2.185-.519-2.185s-.715-1.35-.93-1.973c-.196-.618-.401-10.175-.303-10.492.107-.306-1.331-1.449-1.948-1.661-.626-.208.103-1.142 0-1.657-.108-.519-.827-1.152-.827-1.152S27.364 91.17 26.655 92"}),p.createElement("path",{fill:"#292929",d:"M11.78 96c0 46.136 38.065 84.836 84.225 84.836 45.905 0 84.21-38.952 84.21-84.836 0-46.146-38.305-84.836-84.21-84.836-46.16 0-84.225 38.69-84.225 84.836zM192 96c0 52.583-43.943 96-95.995 96C43.948 192 0 148.583 0 96 0 43.407 43.708 0 96.005 0 148.057 0 192 43.407 192 96z"}),p.createElement("defs",null,p.createElement("linearGradient",{id:"paint0_linear",x1:"117.572",x2:"117.572",y1:"323.149",y2:"57.367",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#626262"})),p.createElement("linearGradient",{id:"paint1_linear",x1:"39.87",x2:"80.42",y1:"85.611",y2:"85.611",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#909191"})),p.createElement("linearGradient",{id:"paint2_linear",x1:"81.096",x2:"81.096",y1:"117.762",y2:"201.184",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#909191"})),p.createElement("linearGradient",{id:"paint3_linear",x1:"-25.794",x2:"208.447",y1:"204.974",y2:"204.974",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#626262"})))),re=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("span",s({className:d("px-2 py-1 font-semibold inline-flex items-center justify-center rounded-full bg-danger-dark text-white leading-none",r)},n))};re.propTypes={className:u.string};const ne=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M5.166 1.5l5.5 5.5-5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ae={tiny:"h-7 w-7 text-base",small:"h-10 w-10 text-base",medium:"h-12 w-12 text-md",large:"h-15 w-15 text-xl"},oe=e=>{var t=e,{className:r,name:n,color:a="bg-primary-lighter",size:o="large"}=t,l=c(t,["className","name","color","size"]);const i=d("inline-flex items-center justify-center rounded-full text-black leading-none",ae[o],a,r);return p.createElement("div",s({title:n,className:i},l),(e=>{let t="N/A";const r="string"==typeof e&&e.match(/\b\w/g);return r&&(t=r[0],r.length>1&&(t+=r[r.length-1])),t.toUpperCase()})(n))};oe.propTypes={className:u.string,color:u.string,name:u.string,size:u.oneOf(Object.keys(ae))};const le=e=>{var t=e,{name:r,description:n,image:a,icon:o=p.createElement(ne,null),isResponsive:l=!1}=t,i=c(t,["name","description","image","icon","isResponsive"]);const u=null!=a?a:p.createElement(oe,{size:"tiny",name:r});return p.createElement("button",s({type:"button",className:d("flex justify-center items-center py-3 w-full rounded cursor-pointer hover:bg-gray-darker xl:justify-start",l?"xl:px-4":"px-4")},i),p.createElement("div",{className:"flex-shrink-0"},u),p.createElement("div",{className:d("ml-2 text-left min-w-0",l&&"hidden xl:inline")},p.createElement("div",{className:"truncate"},r),n?p.createElement("div",{className:"text-sm text-gray-dark truncate"},n):null),p.createElement("span",{className:d("ml-auto",l&&"hidden xl:inline")},o))};le.displayName="Sidebar.Account",le.propTypes={name:u.string.isRequired,description:u.string,image:u.element,icon:u.element,isResponsive:u.bool};const se=e=>{var t=e,{icon:r,label:n}=t,a=c(t,["icon","label"]);return p.createElement("button",s({type:"button",className:"flex items-center px-4 py-2 w-full rounded cursor-pointer hover:bg-gray-darker"},a),p.createElement("div",{className:"p-1.5"},p.createElement(r,{className:"w-4 h-4"})),p.createElement("span",{className:"ml-2"},n))};se.displayName="Sidebar.Button",se.propTypes={icon:u.elementType.isRequired,label:u.string.isRequired};const ie=e=>{var t=e,{children:r}=t,n=c(t,["children"]);return p.createElement("div",s({className:"p-3"},n),p.createElement("div",{className:"pb-2 mx-4 border-t border-secondary-darker"}),r)};ie.displayName="Sidebar.Footer",ie.propTypes={children:u.node.isRequired};const ce=e=>{var t=e,{isActive:r=!1,icon:n,children:a}=t,o=c(t,["isActive","icon","children"]);return p.createElement("button",s({type:"button",className:d("transition-colors leading-none flex items-center justify-center xl:justify-start w-full xl:px-6 py-3 rounded",{"bg-primary text-white hover:bg-primary-dark":r,"hover:bg-gray-darker text-gray":!r})},o),p.createElement(n,{className:"w-5 h-5 xl:mr-3"}),p.createElement("span",{className:"hidden px-1 xl:inline"},a),p.createElement(ne,{className:"hidden ml-auto w-3 h-3 xl:inline"}))};ce.displayName="Sidebar.Link",ce.propTypes={isActive:u.bool,icon:u.func.isRequired,children:u.node.isRequired};var de="_main_1bcuo_1";const ue=e=>{var t=e,{children:r,content:n}=t,a=c(t,["children","content"]);return p.createElement(k,s({interactive:!0,trigger:"click",appendTo:document.body,placement:"right",offset:[0,20],arrow:!1,className:d(de,"!rounded-none bg-black bg-opacity-90 backdrop-filter backdrop-blur-sm p-2 w-56"),content:n},a),p.createElement("span",null,r))};ue.displayName="Sidebar.Menu",ue.propTypes={children:u.node.isRequired,content:u.node.isRequired};const pe=({children:e,className:t,footer:r,notifications:n,isFixed:a=!0,onLogoClick:o})=>p.createElement("div",{className:d(a?"fixed":"relative","w-16 md:w-24 xl:w-50 h-full p-2 overflow-y-auto bg-black text-white flex flex-col",t)},p.createElement("div",{className:d("p-2 text-center xl:text-left",n?null:"invisible")},p.createElement(re,{className:"text-sm"},n)),p.createElement("div",{className:"mb-10 text-center"},p.createElement(te,{className:d("inline-block w-12 h-12 xl:w-24 xl:h-24",o&&"cursor-pointer hover:opacity-80 transition-opacity"),onClick:o})),p.createElement("div",{className:"flex-grow space-y-2"},e),r);pe.propTypes={children:u.node.isRequired,className:u.string,footer:u.element.isRequired,notifications:u.number,isFixed:u.bool,onLogoClick:u.func.isRequired},pe.Account=le,pe.Button=se,pe.Footer=ie,pe.Link=ce,pe.Menu=ue;const he=e=>{var t=e,{children:r,className:n,content:a}=t,o=c(t,["children","className","content"]);return p.createElement(k,i(s({content:a},o),{className:"text-white xola-tooltip",plugins:[E]}),p.createElement("span",{className:n},r))};he.propTypes={content:u.string.isRequired,children:u.node.isRequired,className:u.string};var me="_main_1q4dn_1";const fe=e=>{var t=e,{className:r,children:n}=t,a=c(t,["className","children"]);const o=m.toArray(n),l=o.filter((e=>e.type===fe.Content)),i=o.filter((e=>e.type!==fe.Content));return p.createElement(k,s({interactive:!0,content:l,className:d("popover",me,"!border-gray-light !rounded-lg",r),plugins:[E]},a),p.createElement("span",null,i))};fe.propTypes={className:u.string,children:u.node.isRequired};const ge=({className:e,children:t})=>p.createElement("div",{className:d("popover-content",e)},t);ge.displayName="Popover.Content",ge.propTypes={className:u.string,children:u.node.isRequired},fe.Content=ge;const ve=e=>{var t=e,{placement:r="bottom",className:n,children:a}=t,o=c(t,["placement","className","children"]);const l=m.toArray(a),i=l.filter((e=>e.type!==ve.Item)),u=l.length-i.length,h=l.map(((e,t)=>e.type===ve.Item?p.cloneElement(e,{position:t,total:u}):null)),f=p.createElement(fe.Content,{className:"p-0 divide-y divide-solid divide-gray-lighter"},h);return p.createElement(fe,s({content:f,placement:r,className:d("w-40",n)},o),i)};ve.propTypes={placement:u.string,className:u.string,children:u.node.isRequired};const ye=e=>{var t=e,{name:r,isActive:n=!1,position:a,total:o,children:l,className:i,onClickItem:u}=t,h=c(t,["name","isActive","position","total","children","className","onClickItem"]);return p.createElement("div",s({name:r,className:d("flex align-text-top p-4 space-x-2.5 font-semibold leading-4 tracking-tightest cursor-pointer hover:bg-gray-lighter",n?"bg-gray-lighter":null,1===a?"rounded-t-lg":null,a===o?"rounded-b-lg":null,i),onClick:e=>u(e,r)},h),l)};ye.displayName="Popover.Item",ye.propTypes={name:u.string.isRequired,isActive:u.bool,children:u.node.isRequired,className:u.string,onClickItem:u.func.isRequired},ve.Item=ye;const we=(e,t)=>{var r;return null!=(r=m.toArray(e).find((e=>e.type===t)))?r:null},ke={small:"sm:max-w-md",medium:"sm:max-w-lg",large:"sm:max-w-2xl",huge:"sm:max-w-3xl"},Ee=({size:e="medium",isOpen:t=!1,shouldCloseOnOutsideClick:r=!1,onClose:n,children:a,className:o})=>{const l=we(a,Ee.Header),s=we(a,Ee.Body),i=we(a,Ee.Footer);return p.createElement(x.Root,{show:t,as:g},p.createElement(b,{static:!0,as:"div",className:"overflow-y-auto fixed inset-0 z-10",open:t,onClose:()=>{r&&n()}},p.createElement("div",{className:"flex justify-center items-end px-4 pt-4 pb-20 min-h-screen text-center sm:block sm:p-0"},p.createElement(x.Child,{as:g,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},p.createElement(b.Overlay,{className:"fixed inset-0 bg-opacity-75 transition-opacity bg-gray-dark"})),p.createElement("span",{className:"hidden sm:inline-block sm:h-screen sm:align-middle"},"​"),p.createElement(x.Child,{as:g,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},p.createElement(Ee.Core,{className:o,width:ke[e],header:l,body:s,footer:i,onClose:n})))))};Ee.propTypes={size:u.oneOf(Object.keys(ke)),isOpen:u.bool,shouldCloseOnOutsideClick:u.bool,onClose:u.func.isRequired,children:u.node.isRequired};const xe=f((({className:e,width:t,onClose:r,header:n,body:a,footer:o},l)=>{const s=d(e,t,"modal sm:w-full inline-block align-bottom bg-white rounded-lg overflow-hidden shadow-xl transform","transition-all sm:my-8 sm:align-middle");return p.createElement("div",{ref:l,className:s},p.createElement("div",{className:"px-8 pt-5 bg-white"},p.createElement("div",{className:"hidden absolute top-0 right-0 px-8 pt-7 sm:block"},r?p.createElement("div",{className:"text-xl cursor-pointer text-gray hover:text-gray-darker",onClick:r},p.createElement(K,null)):null),p.createElement("div",{className:"sm:flex sm:items-start"},p.createElement("div",{className:"pt-3 w-full text-center"},n,a))),o)}));xe.displayName="Modal.Core",xe.propTypes={width:u.string.isRequired,onClose:u.func.isRequired,header:u.element.isRequired,body:u.element.isRequired,footer:u.element.isRequired},Ee.Core=xe,Ee.Header=({children:e})=>p.createElement(b.Title,{as:"h3",className:"text-2xl font-semibold leading-6 text-center text-black modal-header"},e),Ee.Header.displayName="Modal.Header",Ee.Header.propTypes={children:u.node.isRequired},Ee.Body=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("div",s({className:d(r,"pt-8 pb-2 mt-2 text-left modal-body")},n))},Ee.Body.displayName="Modal.Body",Ee.Body.propTypes={className:u.string},Ee.Footer=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("div",s({className:d(r,"float-right px-8 py-8 modal-footer sm:flex")},n))},Ee.Footer.displayName="Modal.Footer",Ee.Footer.propTypes={className:u.string};const be=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("div",{className:"flex flex-col"},p.createElement("div",{className:"overflow-x-auto -my-2"},p.createElement("div",{className:"inline-block py-2 min-w-full align-middle"},p.createElement("div",{className:"overflow-hidden border-b border-gray-lighter sm:rounded-lg"},p.createElement("table",s({className:d(r,"min-w-full divide-y border border-gray-lighter")},n))))))};be.propTypes={className:u.string},(be.Head=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("thead",s({className:d("bg-gray-lighter",r)},n))}).displayName="Table.Head",be.Head.propTypes={className:u.string},(be.Header=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("th",s({className:d("px-4 py-2 text-left text-base font-bold",r)},n))}).displayName="Table.Header",be.Header.propTypes={className:u.string},(be.Body=e=>{var t=e,{className:r,isStriped:n=!1,children:a}=t,o=c(t,["className","isStriped","children"]);return p.createElement("tbody",s({className:d("border-none",r)},o),m.map(a,(e=>e&&h(e,{isStriped:n}))))}).displayName="Table.Body",be.Body.propTypes={className:u.string,children:u.node.isRequired,isStriped:u.bool},(be.Row=e=>{var t=e,{isStriped:r=!1,className:n}=t,a=c(t,["isStriped","className"]);return p.createElement("tr",s({className:d(r&&"even:bg-gray-lighter",n)},a))}).displayName="Table.Row",be.Row.propTypes={isStriped:u.bool,className:u.string},(be.Cell=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("td",s({className:d("px-4 py-2 whitespace-nowrap text-base text-gray-darker",r)},n))}).displayName="Table.Cell",be.Cell.propTypes={className:u.string};const Me={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},Ne=e=>{var t=e,{size:r,value:n,isCollapsed:a=!1,onChange:o,className:l,children:i}=t,u=c(t,["size","value","isCollapsed","onChange","className","children"]);return p.createElement("span",s({className:d("inline-flex whitespace-nowrap",l)},u),m.map(i,((e,t)=>{const l={size:r};return void 0!==n&&(l.isActive=n===t),a&&n>=0&&n!==t&&(l.shouldShowText=!1),o&&(l.onClick=()=>o(t)),h(e,l)})))};Ne.propTypes={size:u.oneOf(Object.keys(Me)).isRequired,value:u.number.isRequired,isCollapsed:u.bool,onChange:u.func.isRequired,children:u.node.isRequired};const Ce=e=>{var t=e,{as:r="button",isActive:n,shouldShowText:a=!0,size:o="medium",icon:l,iconPlacement:i="left",className:u,children:h}=t,m=c(t,["as","isActive","shouldShowText","size","icon","iconPlacement","className","children"]);const f=d("inline-flex border-t border-l border-b last:border-r first:rounded-l-md last:rounded-r-md transition-colors focus:ring disabled:opacity-60 focus:z-10 leading-none",Me[o],n?"bg-primary border-primary text-white hover:bg-primary-dark":"border-gray-light hover:bg-gray-lighter text-gray-darker",u);return p.createElement(r,s({className:f},m),l&&"left"===i?p.createElement("span",{className:"flex-shrink-0 mr-2"},l):null,a?h:null,l&&"right"===i?p.createElement("span",{className:"flex-shrink-0 ml-2"},l):null)};Ce.displayName="ButtonGroup.Button",Ce.propTypes={as:u.oneOfType([u.string,u.elementType]),isActive:u.bool,shouldShowText:u.bool,size:u.oneOf(Object.keys(Me)),icon:u.element,iconPlacement:u.oneOf(["left","right"]),className:u.string,children:u.node.isRequired},Ne.Button=Ce;const Le={small:"w-10 h-10",medium:"w-16 h-16",large:"w-20 h-20"},De=e=>{var t=e,{className:r,size:n="small"}=t,a=c(t,["className","size"]);return p.createElement("img",s({className:d(r,"inline-block rounded object-cover",Le[n])},a))};De.propTypes={className:u.string,src:u.string.isRequired,size:u.string};var Pe="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var Oe=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},je="object"==typeof Pe&&Pe&&Pe.Object===Object&&Pe,_e="object"==typeof self&&self&&self.Object===Object&&self,Te=je||_e||Function("return this")(),Be=Te,ze=function(){return Be.Date.now()},Fe=/\s/;var Se=function(e){for(var t=e.length;t--&&Fe.test(e.charAt(t)););return t},Ae=/^\s+/;var He=function(e){return e?e.slice(0,Se(e)+1).replace(Ae,""):e},Ve=Te.Symbol,Re=Ve,Ie=Object.prototype,We=Ie.hasOwnProperty,Ue=Ie.toString,qe=Re?Re.toStringTag:void 0;var Ye=function(e){var t=We.call(e,qe),r=e[qe];try{e[qe]=void 0;var n=!0}catch(o){}var a=Ue.call(e);return n&&(t?e[qe]=r:delete e[qe]),a},Ke=Object.prototype.toString;var Ge=Ye,$e=function(e){return Ke.call(e)},Je=Ve?Ve.toStringTag:void 0;var Ze=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Je&&Je in Object(e)?Ge(e):$e(e)},Xe=function(e){return null!=e&&"object"==typeof e};var Qe=function(e){return"symbol"==typeof e||Xe(e)&&"[object Symbol]"==Ze(e)},et=He,tt=Oe,rt=Qe,nt=/^[-+]0x[0-9a-f]+$/i,at=/^0b[01]+$/i,ot=/^0o[0-7]+$/i,lt=parseInt;var st=Oe,it=ze,ct=function(e){if("number"==typeof e)return e;if(rt(e))return NaN;if(tt(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=tt(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=et(e);var r=at.test(e);return r||ot.test(e)?lt(e.slice(2),r?2:8):nt.test(e)?NaN:+e},dt=Math.max,ut=Math.min;var pt=function(e,t,r){var n,a,o,l,s,i,c=0,d=!1,u=!1,p=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function h(t){var r=n,o=a;return n=a=void 0,c=t,l=e.apply(o,r)}function m(e){return c=e,s=setTimeout(g,t),d?h(e):l}function f(e){var r=e-i;return void 0===i||r>=t||r<0||u&&e-c>=o}function g(){var e=it();if(f(e))return v(e);s=setTimeout(g,function(e){var r=t-(e-i);return u?ut(r,o-(e-c)):r}(e))}function v(e){return s=void 0,p&&n?h(e):(n=a=void 0,l)}function y(){var e=it(),r=f(e);if(n=arguments,a=this,i=e,r){if(void 0===s)return m(i);if(u)return clearTimeout(s),s=setTimeout(g,t),h(i)}return void 0===s&&(s=setTimeout(g,t)),l}return t=ct(t)||0,st(r)&&(d=!!r.leading,o=(u="maxWait"in r)?dt(ct(r.maxWait)||0,t):o,p="trailing"in r?!!r.trailing:p),y.cancel=function(){void 0!==s&&clearTimeout(s),c=0,n=i=a=s=void 0},y.flush=function(){return void 0===s?l:v(it())},y};const ht=navigator.userAgent.includes("Macintosh"),mt=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.883 10.878a4.661 4.661 0 100-9.323 4.661 4.661 0 000 9.323zM10.181 9.514l2.93 2.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ft=e=>{var t=e,{char:r,className:n}=t,a=c(t,["char","className"]);return r=gt(r),p.createElement("div",s({className:d("inline-flex items-center justify-center h-5 py-1 px-2 bg-gray-lighter text-xs text-gray font-semibold rounded",1===r.length?"w-5":"",n)},a),r)},gt=e=>{switch(e){case"cmd":return ht?"⌘":"ctrl";case"option":return ht?"⌥":"win";case"ctrl":return ht?"ctrl":"alt";case"up":return"↑";case"down":return"↓";default:return e}};ft.propTypes={char:u.string.isRequired,className:u.string};const vt=e=>p.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),p.createElement("path",{fill:"currentColor",d:"M14 7a7 7 0 10-7 7v-1.4A5.6 5.6 0 1112.6 7H14z"})),yt={primary:"text-primary",secondary:"text-secondary",warning:"text-warning",success:"text-success",danger:"text-danger",caution:"text-caution",current:null},wt={tiny:"w-4 h-4",small:"w-7 h-7",medium:"w-10 h-10",large:"w-14 h-14",current:"w-[1em] h-[1em]"},kt=e=>{var t=e,{className:r,size:n="small",color:a="secondary"}=t,o=c(t,["className","size","color"]);return p.createElement(vt,s({className:d(r,wt[n],yt[a],"animate-spin inline-block")},o))};kt.propTypes={className:u.string,size:u.string,color:u.string};const Et=pt(((e,t)=>e(t)),500),xt=e=>{var t=e,{className:r,items:n=[],defaultValue:a,onChange:o,onSubmit:l,onSelect:i,children:u,isLoading:h=!1}=t,m=c(t,["className","items","defaultValue","onChange","onSubmit","onSelect","children","isLoading"]);const[f,g]=v(!0),[w,k]=v(null!=a?a:""),E=y(),x={value:w},b=w?[x,...n]:[],{isOpen:M,openMenu:L,getMenuProps:D,getInputProps:P,getComboboxProps:O,highlightedIndex:j,getItemProps:_,closeMenu:T}=N({items:b,inputValue:w,onInputValueChange:({inputValue:e})=>{k(e),o&&Et(o,e)},itemToString:()=>w,defaultHighlightedIndex:0,onSelectedItemChange:({selectedItem:e,type:t})=>{"__input_blur__"!==t&&(e===x?(null==l||l(w),E.current.blur()):e&&(null==i||i(e),E.current.blur()),T())}}),B=M&&b.length>0,z=M&&w.length>0&&!h&&b.length<=1;return C(ht?"cmd+k":"ctrl+k",(e=>{e.preventDefault(),E.current.focus()})),C("esc",(()=>E.current.blur()),{enableOnTags:["INPUT"]}),p.createElement("div",{className:"relative w-full"},p.createElement("div",s({},O({className:"w-full relative rounded-md"})),p.createElement("div",{className:"absolute inset-y-0 top-[-2px] left-0 hidden md:flex items-center pointer-events-none"},p.createElement(mt,{className:"w-4 h-4 text-gray-darker"})),p.createElement("input",s({},P(s({type:"text",className:d("block w-full border-none pl-0 md:pl-7 text-base md:text-md text-gray-darker leading-p2 focus:ring-0",r),ref:E,onFocus:()=>{g(!1),L()},onBlur:()=>g(!0)},m)))),p.createElement("div",{className:"hidden absolute inset-y-0 right-0 items-center pr-3 space-x-1 pointer-events-none lg:flex"},f?p.createElement(p.Fragment,null,p.createElement(ft,{char:"cmd"})," ",p.createElement(ft,{char:"K"})):null)),p.createElement("ul",s({},D({className:d("absolute top-10 divide-y divide-gray-light w-full xl:w-2/3 max-h-[75vh] border border-blue-light mt-1 rounded overflow-auto z-50 bg-white",{hidden:!B})})),B?b.map(((e,t)=>p.createElement("li",s({key:e},_({key:t,item:e,index:t})),e===x?p.createElement(p.Fragment,null,p.createElement("div",{className:d("p-2 cursor-pointer",j===t?"bg-blue-light text-white":"")},"Show all results for ",p.createElement("strong",null,w)),h?p.createElement("div",{className:"p-3 text-center"},p.createElement(kt,{size:"small"})):null):null==u?void 0:u(e,j===t)))):null,B&&z?p.createElement("li",{className:"p-2 cursor-not-allowed"},"No results found"):null,B&&b.length<5?p.createElement("li",{className:"flex sticky bottom-0 p-2 space-x-5 text-sm search-footer text-gray-dark pointer-events"},p.createElement("span",{className:"flex items-center"},p.createElement(ft,{char:"up",className:"mr-0.5"}),p.createElement(ft,{char:"down",className:"mr-2"})," to navigate"),p.createElement("span",{className:"flex items-center"},p.createElement(ft,{char:"enter",className:"mr-2"})," to submit"),p.createElement("span",{className:"flex items-center"},p.createElement(ft,{char:"esc",className:"mr-2"})," to close")):null))};xt.propTypes={className:u.string,items:u.arrayOf(u.any),itemToString:u.func,defaultValue:u.string,onChange:u.func,onSubmit:u.func,onSelect:u.func,children:u.oneOfType([u.arrayOf(u.node),u.node,u.func]),isLoading:u.bool};const bt=e=>{var t=e,{className:r,classNames:n={},separator:a="/",children:o}=t,l=c(t,["className","classNames","separator","children"]);const i=m.count(o)-1;return p.createElement("div",s({className:d("text-2xl whitespace-nowrap font-semibold",r)},l),m.map(o,((e,t)=>{const r=t>=i;return p.createElement(p.Fragment,null,p.createElement("span",{className:d(n.item,r?"text-black":"text-gray-dark")},e),r?null:p.createElement("span",{className:d(n.separator,"text-gray-dark mx-2")},a))})))};bt.propTypes={className:u.string,classNames:u.object,separator:u.string,children:u.oneOfType([u.arrayOf(u.node),u.node])},(bt.Item=({className:e,onClick:t,children:r})=>p.createElement("div",{className:d(e,"inline",t&&"cursor-pointer hover:underline"),onClick:t},r)).displayName="Breadcrumb.Item",bt.Item.propTypes={className:u.string,onClick:u.func,children:u.node.isRequired};const Mt=e=>{var t=e,{className:r}=t,n=c(t,["className"]);return p.createElement("div",s({className:d(r,"mb-4")},n))};Mt.propTypes={className:u.string};const Nt={small:"px-3 py-1.5 text-sm leading-sm",medium:"px-3 py-2.5 text-base leading-base",large:"px-5 py-3.5 text-md leading-md"},Ct=e=>{var t=e,{as:r,size:n="medium",isError:a,className:o}=t,l=c(t,["as","size","isError","className"]);return p.createElement(r,s({className:d("w-full placeholder-gray-dark hover:placeholder-gray-darker text-gray-darker disabled:text-gray rounded","disabled:bg-gray-lighter border border-transparent hover:bg-gray-lighter hover:border-black",Nt[n],a?"border-danger focus:ring-0 focus:ring-danger focus:border-danger":"border-gray-light focus:ring-0 focus:ring-primary focus:border-primary",o)},l))};Ct.propTypes={as:u.oneOfType([u.string,u.elementType]),size:u.oneOf(Object.keys(Nt)),className:u.string,isError:u.bool};const Lt=e=>{var t=e,{type:r="text"}=t,n=c(t,["type"]);return p.createElement(Ct,s({as:"input",type:r},n))};Lt.propTypes=i(s({},Ct.propTypes),{type:u.string});const Dt=e=>{var t=e,{rows:r=2}=t,n=c(t,["rows"]);return p.createElement(Ct,s({as:"textarea",rows:r},n))};Dt.propTypes=i(s({},Ct.propTypes),{rows:u.number});const Pt=e=>{var t=e,{isNative:r=!1}=t,n=c(t,["isNative"]);return p.createElement(Ct,s({as:"select"},n))};Pt.propTypes=i(s({},Ct.propTypes),{isNative:u.bool});const Ot={large:{parent:"h-6 w-11",inner:"h-5 w-5",translate:"translate-x-5"},medium:{parent:"h-5 w-8",inner:"h-4 w-4",translate:"translate-x-3"},small:{parent:"h-3 w-5",inner:"h-2 w-2",translate:"translate-x-2"}},jt=e=>{var t=e,{isChecked:r=!1,size:n="medium"}=t,a=c(t,["isChecked","size"]);return p.createElement(M,s({checked:r,className:d(r?"bg-primary":"bg-gray","switch relative inline-flex flex-shrink-0 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none disabled:opacity-60",Ot[n].parent)},a),p.createElement("span",{className:d(r?Ot[n].translate:"translate-x-0","switch-inner pointer-events-none inline-block rounded-full bg-white transform ring-0 transition ease-in-out duration-200 shadow",Ot[n].inner)}))};jt.propTypes={isChecked:u.bool,size:u.string},(jt.Group=({className:e,children:t})=>p.createElement(M.Group,{as:"div",className:d("inline-flex items-center",e)},t)).displayName="Switch.Group",jt.Group.propTypes={className:u.string,children:u.node.isRequired},(jt.Label=({direction:e="left",className:t,children:r})=>p.createElement(M.Label,{as:"span",className:d("cursor-pointer","left"===e?"mr-2":"ml-2",t)},r)).displayName="Switch.Label",jt.Label.propTypes={direction:u.string,className:u.string,children:u.node.isRequired};var _t=function(e,t){for(var r=-1,n=null==e?0:e.length,a=Array(n);++r<n;)a[r]=t(e[r],r,e);return a},Tt=Array.isArray,Bt=_t,zt=Tt,Ft=Qe,St=Ve?Ve.prototype:void 0,At=St?St.toString:void 0;var Ht=function e(t){if("string"==typeof t)return t;if(zt(t))return Bt(t,e)+"";if(Ft(t))return At?At.call(t):"";var r=t+"";return"0"==r&&1/t==-Infinity?"-0":r};var Vt=function(e){return null==e?"":Ht(e)},Rt=0;var It=function(e){var t=++Rt;return Vt(e)+t};var Wt="_checkbox_1gb8z_1";const Ut=e=>{var t,r=e,{label:n,className:a,classNames:o={}}=r,l=c(r,["label","className","classNames"]);const[u]=v(null!=(t=l.id)?t:It("checkbox-"));return p.createElement("div",{className:d(a,"flex items-center")},p.createElement("input",i(s({type:"checkbox",className:d(o.checkbox,Wt,"w-4 h-4 rounded text-white !border-primary disabled:bg-gray-light disabled:text-gray-light disabled:border-none transition-colors")},l),{id:u})),n?p.createElement("label",{htmlFor:u,className:d(o.label,"ml-2 leading-none text-gray-darker")},n):null)};Ut.propTypes={label:u.string.isRequired,className:u.string,classNames:u.shape({checkbox:u.string,label:u.string}),onChange:u.func};const qt=e=>{var t=e,{isDisabled:r=!1,className:n}=t,a=c(t,["isDisabled","className"]);return p.createElement("label",s({className:d(n,"block text-sm font-bold mb-1",r?"text-gray":"text-black")},a))};qt.propTypes={isDisabled:u.bool,className:u.string};const Yt=({classNames:e,children:t})=>p.createElement("div",{className:d("header-toolbar flex items-center w-full px-5 pr-3 py-3 xl:px-6 xl:py-5 space-x-2 xl:space-x-6 border-b border-gray-light",e)},t);Yt.propTypes={classNames:u.string,children:u.node.isRequired},(Yt.Breadcrumb=({className:e,children:t})=>p.createElement(bt,{className:d("text-xl border-r border-gray-light md:pr-4 xl:pr-6",e)},t)).displayName="HeaderToolbar.Breadcrumb",Yt.Breadcrumb.propTypes={className:u.string,children:u.node.isRequired},Yt.Breadcrumb.displayName="HeaderToolbar.Search",Yt.Search=e=>p.createElement(xt,s({className:"flex-grow pr-1 w-full"},e));const Kt=e=>{var t=e,{className:r,value:n,onChange:a,children:o}=t,l=c(t,["className","value","onChange","children"]);const i=m.toArray(o),u=i.filter((e=>e.type===Kt.Tab)),f=i.filter((e=>e.type===Kt.Panel));return p.createElement(p.Fragment,null,p.createElement("div",s({className:d("bg-gray-lighter overflow-x-auto",r)},l),p.createElement("nav",{className:"flex"},u.map(((e,t)=>h(e,{isActive:t===n,onClick:()=>null==a?void 0:a(t)}))))),f.map(((e,t)=>h(e,{isActive:t===n}))))};Kt.propTypes={className:u.string,value:u.number.isRequired,onChange:u.func.isRequired,children:u.node.isRequired};const Gt=e=>{var t=e,{as:r="button",className:n,isActive:a=!1}=t,o=c(t,["as","className","isActive"]);return p.createElement(r,s({className:d(n,"transition-colors cursor-pointer p-4 flex-1 text-center text-lg font-semibold whitespace-nowrap focus-visible:ring",a?"bg-white text-black":"text-gray-dark hover:text-black hover:bg-gray-light")},o))};Gt.displayName="Tabs.Tab",Gt.propTypes={as:u.oneOfType([u.string,u.elementType]),className:u.string,isActive:u.bool},Kt.Tab=Gt;const $t=e=>{var t=e,{isActive:r=!1,className:n}=t,a=c(t,["isActive","className"]);return p.createElement("div",s({className:d(n,r||"hidden")},a))};$t.displayName="Tabs.Panel",$t.propTypes={isActive:u.bool,className:u.string},Kt.Panel=$t;var Jt="_shimmer_qt4e9_7";const Zt=e=>{var t=e,{className:r,style:n,height:a=300,shouldAnimate:o=!0,children:l}=t,i=c(t,["className","style","height","shouldAnimate","children"]);return p.createElement("div",s({className:d(r,"relative flex items-center justify-center bg-gray-lighter overflow-hidden rounded border border-gray-lighter"),style:s({height:a},n)},i),o?p.createElement("div",{className:d(Jt,"absolute w-full h-full")}):null,p.createElement("div",{className:"text-gray"},l))};Zt.propTypes={className:u.string,style:u.object,height:u.number,shouldAnimate:u.bool,children:u.oneOfType([u.arrayOf(u.node),u.node])};const Xt=({isOpen:e=!1,title:t,content:r,onClose:n,classNames:a={}})=>p.createElement(x.Root,{show:e,as:g},p.createElement(b,{static:!0,as:"div",className:"overflow-hidden fixed inset-0",open:e,onClose:n},p.createElement("div",{className:"overflow-hidden absolute inset-0"},p.createElement(x.Child,{as:g,enter:"ease-in-out duration-500",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in-out duration-500",leaveFrom:"opacity-100",leaveTo:"opacity-0"},p.createElement(b.Overlay,{className:"absolute inset-0 bg-opacity-75 transition-opacity bg-gray"})),p.createElement("div",{className:"flex fixed inset-y-0 right-0 pl-10 max-w-full"},p.createElement(x.Child,{as:g,enter:"transform transition ease-in-out duration-500 sm:duration-700",enterFrom:"translate-x-full",enterTo:"translate-x-0",leave:"transform transition ease-in-out duration-500 sm:duration-700",leaveFrom:"translate-x-0",leaveTo:"translate-x-full"},p.createElement("div",{className:"w-screen max-w-md"},p.createElement("div",{className:"flex overflow-y-auto flex-col py-8 h-full bg-white shadow-xl"},p.createElement("div",{className:"px-4 sm:px-6"},p.createElement("div",{className:"flex justify-between items-start"},p.createElement(b.Title,{className:d("text-base font-semibold",a.title)},t),p.createElement("div",{className:d("ml-3 h-7 flex items-center")},p.createElement(A,{size:"small",color:"link",className:"focus:hidden",onClick:n},p.createElement(K,null))))),p.createElement("div",{className:d("mt-3 relative flex-1 px-4 sm:px-6",a.content)},r))))))));Xt.propTypes={isOpen:u.bool,title:u.oneOfType([u.arrayOf(u.node),u.node]),content:u.oneOfType([u.arrayOf(u.node),u.node]),onClose:u.func.isRequired,classNames:u.object};const Qt=e=>p.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"150",height:"48",fill:"none",viewBox:"0 0 150 48"},e),p.createElement("path",{fill:"#1B5EA8",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),p.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),p.createElement("path",{fill:"#fff",d:"M36.37 26.71s1.788-.534 1.998-.56c.209-.026.445 0 .445 0s.264-.33.344-.305c.076.025.392.129.446 0 .05-.129.262-.306.366-.331.106-.028.028-.255.158-.358.13-.102.997-.534 1.18-.738.187-.204.84-1.146.946-1.146.107 0 .316-.153.395-.28.076-.129.786-.945.945-1.122.16-.178.5-.434.5-.434s.026-.535.106-.636c.078-.102.366-.432.498-.585.132-.153.605-.64.71-.611.105.025.443 0 .472-.102.028-.103-.054-.434.131-.485.183-.051.473-.077.473-.077s.419-1.274.605-1.35c.184-.078.471-.153.471-.153s.551-.459.736-.434c.185.026.788-.05.788-.05s.551-.587.656-.84c.106-.256.289-.409.448-.436.157-.024-.08-.15.157-.304.235-.154 1.209-.611 1.39-.79.184-.177.475-.688.475-.688s-.134-.636.079-.815c.209-.178.996-.433 1.314-.587.313-.152 1.023-.635 1.152-.865.133-.229.476-.612.551-.636.08-.026.528-.588.63-.688.107-.103.792-.359.923-.435.13-.075.707-.075.839-.102.132-.024.236-.204.577-.255.343-.05 1.498.051 1.576.026.08-.026.237-.23.42-.152.187.075.395.56.5.61.105.052.47.155.734.332.261.179.631.713.945.688.318-.024.499.434.659.637.157.205.709.765.682.892-.026.129-.185.459-.026.714.158.254.341.712.498.814.157.103.498.638.498.842 0 .202.264.762.53.967.258.204.628 1.351.915 1.709.288.354 1.078 2.24 1.29 2.522.21.279.21.177.472.255.262.074 1.1.584 1.34.762.236.18 1.075 1.606 1.258 1.862.187.256 1.024 1.63 1.184 1.91.158.28.499 1.326.709 1.35.209.026.576 1.095.785 1.248.212.154 1.054 1.326 1.237 1.453.182.127.84 1.656.944 1.833.105.18-1.659 1.177-1.424 1.227.236.05-.916.433-.757.485.159.05-1.415.689-.785.97.631.279-1.458 1.94-1.458 1.94s-1.9 1.967-1.692 1.94c.21-.025-1.971 2.274-1.814 2.425.158.154-3.229 1.328-2.994 1.455.237.13-4 1.456-4 1.456l-5.195.97-15.336-5.82L36.37 26.71z"}),p.createElement("path",{fill:"url(#paint0_linear)",d:"M63.554 15.07c-.133.124-.313.43-.313.608s.076.46.13.586c.05.127.08.612.08.612s-.293-.178-.423-.332c-.13-.153-.104-.482-.13-.611-.027-.128-.342.13-.526.152-.093.014-.165-.12-.228-.253-.062-.133-.115-.267-.167-.255-.104.027-.419.18-.735.46-.314.278-.234.38-.394.458-.156.075-.234.126-.446-.025-.111-.08-.141-.014-.181.053-.035.06-.077.121-.19.073-.115-.05-.053.086.02.22.078.139.168.278.088.213-.155-.126-.155.28-.053.433.106.154.29.46.42.713.135.256.815 1.48.606 1.428-.21-.052-.448-.611-.528-.84-.077-.23-.472-.588-.552-.588-.075 0-.471-.027-.576-.075-.103-.051-.84-.23-1.26-.204-.42.025-.527-.357-.735-.409-.212-.05-.894-.254-1.077-.279-.183-.025.42.586.604.637.184.05.288.204.026.303-.262.104-.708-.279-.838-.279-.134 0-.37.357-.21.46.155.102.812.484.946.587.127.101.025.533-.109.482-.129-.052-.867-.052-1.181.027-.316.076-.814-.334-1.049-.51-.237-.178-.474-.052-.58.077-.105.125-.447.611-.656.814-.209.203-.998.203-1.206.357-.213.152-1.052.84-1.288 1.122-.237.279-.997.508-1.262.688-.263.178-.657.992-.814 1.12a6.114 6.114 0 00-.684.688c-.209.254-.631.509-.891.816-.264.305-.473.585-.473.585l-.526.534-.446-.255s-.601.409-.813.512c-.21.1-.975-.052-1.235-.078-.265-.025-.605.28-.526.307.08.026.134.177.08.255-.055.076-.605.076-.605.076l-.132.433s-.5.075-.71.075c-.21 0-.523.077-.655.105-.132.025-.5-.308-.63-.308-.134 0-.5-.152-.655 0-.16.154-.424.561-.424.561s-.394 0-.523.025c-.13.026-.84.23-.84.23l2.732 14.803c3.806 2.777 8.538 4.422 13.666 4.422 9.751 0 18.071-5.95 21.316-14.31-.631-1.088-1.59-2.778-1.734-3.005-.21-.33-1.077-1.96-1.233-2.165-.16-.205-.368-.026-.445.05-.04.036-.11.012-.178-.012-.082-.028-.165-.057-.192.013-.054.127-.367.382-.474.279-.103-.1-.42-.891-.394-1.043.028-.153.446.074.446.074s.133-.074.082-.201c-.054-.128-.684-.282-.792-.256-.103.025-.417-.535-.628-.689-.21-.153-.657-.736-.813-.94-.16-.207-.711-.766-.895-.893-.181-.128-.629-.534-.919-.661-.29-.129-.316-.512-.445-.869-.13-.355-.186.105-.158.23.027.127-.238.333-.16.357.08.025.132.282.263.382.133.101-.262.23-.39.203-.135-.024-.29-.432-.37-.609-.08-.18-.395-.231-.29-.434.107-.205.238-.561.132-.688-.105-.128-.157-.483.025-.458.186.024.315-.103.422-.205.105-.102.316.306.395.432.076.129.498.663.474.536-.028-.128.182-.204.182-.204.21.433 1.968 2.6 2.022 2.804.053.202.158-.078.132-.307-.027-.23.104-.152.13-.255.028-.103-.13-.407-.526-.433-.394-.025-.576-.637-.709-.918-.13-.28.395.23.395.23l-1.234-2.087s-1.103-1.784-1.18-1.784c-.08 0-.266.1-.317.203-.053.1.209.789.286.892.08.1.318.484.239.535-.08.05-.499-.205-.711-.28-.207-.078-.497.254-.497.254s-.08-1.07-.212-1.07c-.13 0-.079-.46-.051-.84.026-.383-.42-.383-.42-.383s-.08-.867-.185-.992c-.105-.13 0-.714.027-.971.028-.253-.552-1.222-.684-1.322-.068-.054-.21-.087-.348-.087-.124 0-.244.026-.307.087z"}),p.createElement("path",{fill:"url(#paint1_linear)",d:"M49.923 17.743s-.131.306-.342.457c-.213.154-.343.563-.552.843-.21.279-.47.458-.682.355-.21-.103-.473.051-.446.357.026.306.106.943-.053.867-.16-.077-.026-.408-.262-.255-.238.153-.712.993-.893.918-.185-.076-.396-.536-.526-.358-.131.179-.184.74-.341.484-.157-.256-.393-.23-.76.05-.37.283-.764.462-.947.56-.187.103-.55.383-.632.613a.85.85 0 01-.366.46c-.133.074-.445.305-.445.457 0 .154-.187.23-.398.434-.207.203-.602.482-.811.663-.211.178-.659.663-.869.764-.211.101-.576.383-.367.383 0 0 .367 0 .577-.154.211-.154.815-.586.973-.638.158-.051.525-.076.603.103.08.18-.05.433-.236.559-.182.13-.579.563-.681.588-.106.024-.395.28-.395.28s.497-.025.734-.18c.238-.15.87-.432.945-.637.08-.203.263-.457.397-.66.131-.203.339.1.314.306-.028.202.319.354.497.074.185-.28.448-.15.683-.15.236 0 .739.175.869-.027.132-.204.445-.815.632-.92.183-.099.6-.89.731-1.196.13-.305.578-1.17.685-1.528.105-.357.448-.788.658-.917.209-.127.707-.33.945-.484.235-.152.102-.305.366-.534.264-.23.395-.179.395-.41 0-.227.211-.483.211-.483s-.342-.305-.133-.561c.212-.255.525-.764.525-.764s0-.23-.103-.153c-.106.076-.5-.026-.5-.026v.46z"}),p.createElement("path",{fill:"#fff",d:"M63.605 24.24s.842 1.222.998 1.502c.157.282.815 1.428.868 1.632.05.204.133.483.447.713.314.23.655.584.655.584s.028-.355-.026-.509c-.054-.153-.708-.942-.891-1.246-.186-.308-2-2.55-2.05-2.675zM66.783 28.978s.291.46.291.764c0 .307.288.867.42 1.095.132.23.34.664.447.715.103.05.42.077.736.407.312.331.471.584.735.663.261.075.472.153.472.153s-.315-.407-.682-1.044c-.37-.638-1.078-1.784-1.235-1.886-.16-.103-.499-.485-.579-.383-.079.1-.605-.484-.605-.484z"}),p.createElement("path",{fill:"url(#paint2_linear)",d:"M42.07 37.411c.34.74 3.018 1.784 2.996 1.248-.02-.366.025-1.56.055-2.28.217.32.398.591.44.675.135.256 2.682 3.745 2.918 4.435.238.69 5.383 3.974 5.91 4.534.13.139.432.451.817.846a23.433 23.433 0 005.45-.813 1.066 1.066 0 01-.28-.44c-.053-.18.185-.255.316-.458.129-.204.104-.204-.078-.181-.185.027-.763-.177-1.078-.203-.315-.024-1.42-.585-1.76-.687-.342-.102-.684-.917-.998-1.149-.316-.227-.525-.277-.657-.227-.133.052-.24-.026-.447-.256-.21-.23-.157-.457-.29-.611-.126-.152-.103.308-.182.357-.078.05-.315-.41-.474-.587-.155-.175-.34-.635-.446-.738-.104-.1-.104.202-.131.356-.025.152-.368.333-.5.23-.133-.102-.262-.456-.394-.586-.064-.063-.07.079-.074.22-.004.145-.002.292-.055.213-.106-.154-.289-.303-.316-.51-.026-.202-.159-.814-.263-.867-.103-.048-.21-.457-.315-.635-.103-.178-.103.127-.103.306 0 .177-.238.026-.293-.077-.05-.102-.157-.533-.259-.61-.107-.077-.29.203-.29.203l-.055.738s-.235-.713-.313-.84c-.078-.129-.342-.612-.368-.434-.027.178-.155-.075-.367-.23-.212-.153-.372-.431-.372-.356 0 .078.11.741-.047.662-.159-.076-.266-.686-.449-.967-.182-.28-.735-.713-.735-.713l-.13-.46s-.526-.025-.579-.178c-.052-.153-.34-.126-.366.052-.026.177-.291-.052-.504-.052-.205 0-.47-.636-.548-.739-.075-.102-.16-.28-.184-.154-.025.13-.209.052-.316-.178-.105-.23.187-.558.237-.688.054-.126-.05-.304-.21-.151-.157.152-.314.535-.314.535l-.288-.409-.134.155-.261-.536-.238-.509-.131.535-.026.031c-.122-.33-.227-.601-.262-.644-.103-.126-.63-1.554-.815-1.808-.182-.255-.157-.738-.157-.738s-.316-.18-.526-.078c-.21.103-.367-.33-.553-.458-.179-.127-.416.027-.416.027v-.587l-1.576-.154s1.443 6.879 1.785 7.618z"}),p.createElement("path",{fill:"url(#paint3_linear)",d:"M36.793 23.475c-.186.205-.817.257-.946.356-.131.101-.421.41-.499.535-.08.128-.292.153-.421.255-.131.103-.236.587-.236.587s-.34.05-.71.382c-.368.33-.71.434-1.077.663-.268.167-.78.513-1.085.736 1.14 11.166 10.85 19.89 22.658 19.89.631 0 1.257-.025 1.876-.073a19.55 19.55 0 01-.704-1.09c-.525-.89-1.628-1.399-1.815-1.452-.182-.05-.6-.817-.735-.866-.13-.05-.602-.79-.76-1.043a.845.845 0 00-.632-.41c-.235-.023-1.39-1.5-1.39-1.5s-1.6-1.707-1.759-1.836c-.159-.128-1.024-1.274-1.184-1.452-.157-.178-.97-.764-1.153-.79-.185-.026-.788-.919-.897-1.02-.103-.1-.495-.1-.522 0-.028.101-.29.384-.314.512-.026.127-.026.459-.211.61-.185.15-.288.713-.288.713s-.342-.229-.447-.253c-.108-.026-.263-.843-.289-1.022-.027-.176-.239-.637-.37-.787-.132-.154-.522-.818-.735-.97-.209-.152-.367-.84-.391-1.148-.028-.304-.553-1.196-.685-1.426-.133-.229-.264-1.119-.315-1.273-.054-.153-.343-.636-.499-.815-.157-.18-.892-.967-1.181-1.148-.289-.177-.398-.611-.446-.686-.055-.077-.133-.536-.133-.536s-.182-.331-.237-.484c-.05-.152-.103-2.496-.078-2.573.028-.075-.34-.356-.497-.408-.16-.05.026-.28 0-.406-.028-.127-.212-.282-.212-.282s-.5.306-.68.51z"}),p.createElement("path",{fill:"#292929",d:"M.503 1.522h3.322l10.851 19.71 10.848-19.71h3.323L16.498 23.97l12.98 23.424h-3.262L14.676 26.646 3.263 47.394H0L12.919 23.97.503 1.522zM89.929 44.653h13.784v2.74H86.919V1.522h3.01v43.131zM138.864 29.567l-9.22-22.145 9.22 22.145zm-9.22-22.145l-9.281 22.145h18.501l-9.22-22.145zm-10.41 24.883l-6.333 15.088h-3.073L129.644 0l19.754 47.393h-3.071l-6.336-15.088h-20.757zM32.994 24.456c0 11.315 9.722 20.806 21.512 20.806 11.725 0 21.51-9.553 21.51-20.806 0-11.317-9.785-20.806-21.51-20.806-11.79 0-21.512 9.489-21.512 20.806zm46.031 0C79.025 37.352 67.801 48 54.506 48c-13.296 0-24.52-10.648-24.52-23.544 0-12.898 11.163-23.544 24.52-23.544 13.295 0 24.52 10.646 24.52 23.544z"}),p.createElement("defs",null,p.createElement("linearGradient",{id:"paint0_linear",x1:"60.015",x2:"60.015",y1:"80.164",y2:"14.981",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#626262"})),p.createElement("linearGradient",{id:"paint1_linear",x1:"40.169",x2:"50.526",y1:"21.908",y2:"21.908",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#909191"})),p.createElement("linearGradient",{id:"paint2_linear",x1:"50.698",x2:"50.698",y1:"29.793",y2:"50.252",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#909191"})),p.createElement("linearGradient",{id:"paint3_linear",x1:"23.397",x2:"83.226",y1:"51.182",y2:"51.182",gradientUnits:"userSpaceOnUse"},p.createElement("stop",{stopColor:"#fff"}),p.createElement("stop",{offset:"1",stopColor:"#626262"}))));const er=({defaultValues:e,isLoading:t=!1,error:r=null,onSubmit:n})=>{const[a,o]=v(s({email:"",password:"",shouldRemember:!1},e)),l=e=>{const{name:t,value:r}=e.target;o(i(s({},a),{[t]:r}))};return p.createElement("div",{className:"h-screen bg-white bg-opacity-40 login-container"},p.createElement("div",{className:"flex flex-col justify-center items-center space-y-8 w-full h-[90%] md:full"},p.createElement("div",{className:"py-0 px-9 rounded-lg md:py-10 md:bg-white w-82"},p.createElement("div",{className:"mb-12 md:mb-10"},p.createElement(Qt,{className:"mx-auto w-auto h-10 md:mb-20 md:h-12"})),p.createElement("form",{onSubmit:e=>{e.preventDefault(),n(a)}},p.createElement("fieldset",{className:"space-y-6",disabled:t},p.createElement("div",{className:"-space-y-px bg-white rounded-md"},p.createElement(Mt,{className:"md:mb-7"},p.createElement(qt,null,"Email"),p.createElement(Lt,{required:!0,name:"email",type:"email",autoComplete:"email",value:a.email,isError:!!r,onChange:l})),p.createElement(Mt,null,p.createElement(qt,null,"Password"),p.createElement(Lt,{required:!0,name:"password",type:"password",autoComplete:"current-password",value:a.password,isError:!!r,onChange:l}))),p.createElement(Ut,{name:"shouldRemember",label:"Remember me",checked:a.shouldRemember,onChange:e=>{const{name:t,checked:r}=e.target;o(i(s({},a),{[t]:r}))}}),r?p.createElement(ee,{color:"danger"},r):null,p.createElement(A,{type:"submit",className:"w-full",color:"primary"},t?p.createElement(kt,{size:"current",color:"current",className:"mr-2"}):null,"Login"),p.createElement("div",{className:"mt-5 text-sm text-center"},p.createElement("a",{href:"https://xola.com/resetting/form",className:"font-semibold underline hover:text-black text-gray-darker",target:"_blank",rel:"noreferrer"},"Forgot your password?")))))),p.createElement("footer",null,p.createElement("div",{className:"flex overflow-hidden flex-col justify-center items-center py-1 px-4 w-full sm:px-6 lg:px-8"},p.createElement("div",{className:"px-4 m-5 text-xs text-center rounded-lg opacity-30 md:text-sm hover:opacity-80 w-82"},p.createElement("a",{href:"https://www.xola.com/team",target:"_blank",className:"md:text-gray",rel:"noreferrer"},"Handcrafted in Houston, Belgrade & Bengaluru",p.createElement("div",{className:"text-center"},"© ",(new Date).getFullYear()," Xola, Inc."))))))};er.propTypes={defaultValues:u.shape({email:u.string,password:u.string,shouldRemember:u.bool}),isLoading:u.bool,error:u.string,onSubmit:u.func};const tr=({selectedDate:e,day:t,getContent:r})=>{if(r)return p.createElement(rr,{selectedDate:e,day:t,getContent:r});const n=e&&P(e).isSame(t,"day");return p.createElement("div",{className:d("date flex items-center w-full h-full justify-center",n?"text-white selected":null)},t.getDate())};tr.propTypes={selectedDate:u.objectOf(Date),day:u.objectOf(Date),getContent:u.func};const rr=({selectedDate:e,day:t,getContent:r})=>{var n;const a=t.getDate(),o=null!=(n=r(a))?n:"N/A",l=e&&P(e).isSame(t,"day"),s=P().isSame(t,"month");return p.createElement(p.Fragment,null,p.createElement("div",{className:d("date-value mb-1 leading-p1",l?"text-white selected":null)},a),p.createElement("div",{className:d("custom-content text-xs leading-p3",l?"text-white":s?"text-gray-dark":"text-gray-light")},o))};rr.propTypes={selectedDate:u.objectOf(Date),day:u.objectOf(Date),getContent:u.func.isRequired};const nr=P(),ar=({date:e,onChange:t})=>{const r=[...Array.from({length:12}).keys()].map((e=>nr.month(e).format("MMM"))),n=[...Array.from({length:12}).keys()].map((e=>nr.year(2021+e).format("YYYY"))),a=e=>{const{year:r,month:n}=e.target.form;t(new Date(r.value,n.value))};return p.createElement("form",{className:"DayPicker-Caption"},p.createElement("select",{name:"month",value:e.getMonth(),className:"month-selector",onChange:a},r.map(((e,t)=>p.createElement("option",{key:e,value:t},e)))),p.createElement("select",{name:"year",value:e.getFullYear(),className:"year-selector",onChange:a},n.map((e=>p.createElement("option",{key:e,value:e},e)))))};ar.propTypes={date:u.objectOf(Date).isRequired,onChange:u.func.isRequired};const or=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M9.666 12.5L4.166 7l5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),lr=({onPreviousClick:e,onNextClick:t,className:r,showNextButton:n,showPreviousButton:a})=>p.createElement("div",{className:d("absolute z-50 top-1.5 right-1",r)},p.createElement(sr,{isVisible:a,onClick:e},p.createElement(or,null)),p.createElement(sr,{isVisible:n,onClick:t},p.createElement(ne,null)));lr.propTypes={onPreviousClick:u.func,onNextClick:u.func,className:u.string,showNextButton:u.bool,showPreviousButton:u.bool};const sr=({isVisible:e=!0,onClick:t,children:r})=>p.createElement("button",{type:"button",className:d(e?"inline-block":"invisible","rounded-full border border-transparent text-black hover:border-black w-7 h-7 inline-flex items-center justify-center leading-none"),onClick:()=>t()},r);sr.propTypes={isVisible:u.bool,onClick:u.func.isRequired,children:u.element.isRequired};const ir={single:"single",range:"range"},cr=e=>{var t,r,n=e,{variant:a=ir.single,value:o,onChange:l,initialMonth:i=new Date,onMonthChange:u,onTodayButtonClick:h,disabledDays:m=[],shouldShowYearPicker:f=!1,getDayContent:g,modifiers:y={}}=n,k=c(n,["variant","value","onChange","initialMonth","onMonthChange","onTodayButtonClick","disabledDays","shouldShowYearPicker","getDayContent","modifiers"]);const[E,x]=v(i),b=a===ir.range;w((()=>{null==u||u(E)}),[E,u]);const M=e=>{x(e)},N=f?({date:e})=>p.createElement(ar,{date:e,onChange:M}):void 0,C=b?{start:o.from,end:o.to}:null,P=b&&(null==(t=o.from)?void 0:t.getTime())!==(null==(r=o.to)?void 0:r.getTime());return p.createElement(L,s({className:d("date-picker",P?"date-range-picker":null,g?"has-custom-content":null),showOutsideDays:!0,todayButton:"Today",selectedDays:o,onDayClick:e=>{b?o.from&&o.to?l({from:e,to:null}):l(D.addDayToRange(e,o)):l(e)},initialMonth:i,month:E,onMonthChange:M,modifiers:s(s({},y),C),numberOfMonths:b?2:1,disabledDays:m,captionElement:N,renderDay:e=>p.createElement(tr,{selectedDate:o,day:e,getContent:g}),navbarElement:lr,onTodayButtonClick:h},k))};cr.propTypes={variant:u.oneOf(Object.keys(ir)),value:u.objectOf(Date).isRequired,onChange:u.func.isRequired,initialMonth:u.objectOf(Date),onMonthChange:u.func,onTodayButtonClick:u.func,disabledDays:u.array,shouldShowYearPicker:u.bool,getDayContent:u.func,modifiers:u.object};var dr={},ur={},pr={},hr={};Object.defineProperty(hr,"__esModule",{value:!0}),hr.formatDay=vr,hr.formatMonthTitle=yr,hr.formatWeekdayShort=wr,hr.formatWeekdayLong=kr,hr.getFirstDayOfWeek=Er,hr.getMonths=xr;var mr=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],fr=["Su","Mo","Tu","We","Th","Fr","Sa"],gr=["January","February","March","April","May","June","July","August","September","October","November","December"];function vr(e){return e.toDateString()}function yr(e){return gr[e.getMonth()]+" "+e.getFullYear()}function wr(e){return fr[e]}function kr(e){return mr[e]}function Er(){return 0}function xr(){return gr}hr.default={formatDay:vr,formatMonthTitle:yr,formatWeekdayShort:wr,formatWeekdayLong:kr,getFirstDayOfWeek:Er,getMonths:xr};var br={};Object.defineProperty(br,"__esModule",{value:!0}),br.LEFT=37,br.UP=38,br.RIGHT=39,br.DOWN=40,br.ENTER=13,br.SPACE=32,br.ESC=27,br.TAB=9,Object.defineProperty(pr,"__esModule",{value:!0});var Mr=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),Nr=p,Cr=Pr(Nr),Lr=Pr(hr),Dr=br;function Pr(e){return e&&e.__esModule?e:{default:e}}var Or=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.handleKeyUp=r.handleKeyUp.bind(r),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,Nr.Component),Mr(t,[{key:"shouldComponentUpdate",value:function(e){return e.locale!==this.props.locale||e.classNames!==this.props.classNames||e.date.getMonth()!==this.props.date.getMonth()||e.date.getFullYear()!==this.props.date.getFullYear()}},{key:"handleKeyUp",value:function(e){e.keyCode===Dr.ENTER&&this.props.onClick(e)}},{key:"render",value:function(){var e=this.props,t=e.classNames,r=e.date,n=e.months,a=e.locale,o=e.localeUtils,l=e.onClick;return Cr.default.createElement("div",{className:t.caption,role:"heading","aria-live":"polite"},Cr.default.createElement("div",{onClick:l,onKeyUp:this.handleKeyUp},n?n[r.getMonth()]+" "+r.getFullYear():o.formatMonthTitle(r,a)))}}]),t}();Or.defaultProps={localeUtils:Lr.default},pr.default=Or;var jr={},_r={};Object.defineProperty(_r,"__esModule",{value:!0}),_r.default={container:"DayPicker",wrapper:"DayPicker-wrapper",interactionDisabled:"DayPicker--interactionDisabled",months:"DayPicker-Months",month:"DayPicker-Month",navBar:"DayPicker-NavBar",navButtonPrev:"DayPicker-NavButton DayPicker-NavButton--prev",navButtonNext:"DayPicker-NavButton DayPicker-NavButton--next",navButtonInteractionDisabled:"DayPicker-NavButton--interactionDisabled",caption:"DayPicker-Caption",weekdays:"DayPicker-Weekdays",weekdaysRow:"DayPicker-WeekdaysRow",weekday:"DayPicker-Weekday",body:"DayPicker-Body",week:"DayPicker-Week",weekNumber:"DayPicker-WeekNumber",day:"DayPicker-Day",footer:"DayPicker-Footer",todayButton:"DayPicker-TodayButton",today:"today",selected:"selected",disabled:"disabled",outside:"outside"},Object.defineProperty(jr,"__esModule",{value:!0});var Tr=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),Br=p,zr=Ar(Br),Fr=Ar(_r),Sr=br;function Ar(e){return e&&e.__esModule?e:{default:e}}function Hr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vr(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Rr=function(e){function t(){var e,r,n;Hr(this,t);for(var a=arguments.length,o=Array(a),l=0;l<a;l++)o[l]=arguments[l];return r=n=Vr(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(o))),n.handleNextClick=function(){n.props.onNextClick&&n.props.onNextClick()},n.handlePreviousClick=function(){n.props.onPreviousClick&&n.props.onPreviousClick()},n.handleNextKeyDown=function(e){e.keyCode!==Sr.ENTER&&e.keyCode!==Sr.SPACE||(e.preventDefault(),n.handleNextClick())},n.handlePreviousKeyDown=function(e){e.keyCode!==Sr.ENTER&&e.keyCode!==Sr.SPACE||(e.preventDefault(),n.handlePreviousClick())},Vr(n,r)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,Br.Component),Tr(t,[{key:"shouldComponentUpdate",value:function(e){return e.labels!==this.props.labels||e.dir!==this.props.dir||this.props.showPreviousButton!==e.showPreviousButton||this.props.showNextButton!==e.showNextButton}},{key:"render",value:function(){var e=this.props,t=e.classNames,r=e.className,n=e.showPreviousButton,a=e.showNextButton,o=e.labels,l=e.dir,s=void 0,i=void 0,c=void 0,d=void 0,u=void 0,p=void 0;"rtl"===l?(s=this.handleNextClick,i=this.handlePreviousClick,c=this.handleNextKeyDown,d=this.handlePreviousKeyDown,p=n,u=a):(s=this.handlePreviousClick,i=this.handleNextClick,c=this.handlePreviousKeyDown,d=this.handleNextKeyDown,p=a,u=n);var h=u?t.navButtonPrev:t.navButtonPrev+" "+t.navButtonInteractionDisabled,m=p?t.navButtonNext:t.navButtonNext+" "+t.navButtonInteractionDisabled,f=zr.default.createElement("span",{tabIndex:"0",role:"button","aria-label":o.previousMonth,key:"previous",className:h,onKeyDown:u?c:void 0,onClick:u?s:void 0}),g=zr.default.createElement("span",{tabIndex:"0",role:"button","aria-label":o.nextMonth,key:"right",className:m,onKeyDown:p?d:void 0,onClick:p?i:void 0});return zr.default.createElement("div",{className:r||t.navBar},"rtl"===l?[g,f]:[f,g])}}]),t}();Rr.defaultProps={classNames:Fr.default,dir:"ltr",labels:{previousMonth:"Previous Month",nextMonth:"Next Month"},showPreviousButton:!0,showNextButton:!0},jr.default=Rr;var Ir={},Wr={};Object.defineProperty(Wr,"__esModule",{value:!0});var Ur,qr=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),Yr=p,Kr=(Ur=Yr)&&Ur.__esModule?Ur:{default:Ur};function Gr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Jr=function(e){function t(){return Gr(this,t),$r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,Yr.Component),qr(t,[{key:"shouldComponentUpdate",value:function(e){return this.props!==e}},{key:"render",value:function(){for(var e=this.props,t=e.classNames,r=e.firstDayOfWeek,n=e.showWeekNumbers,a=e.weekdaysLong,o=e.weekdaysShort,l=e.locale,s=e.localeUtils,i=e.weekdayElement,c=[],d=0;d<7;d+=1){var u=(d+r)%7,p={key:d,className:t.weekday,weekday:u,weekdaysLong:a,weekdaysShort:o,localeUtils:s,locale:l},h=Kr.default.isValidElement(i)?Kr.default.cloneElement(i,p):Kr.default.createElement(i,p);c.push(h)}return Kr.default.createElement("div",{className:t.weekdays,role:"rowgroup"},Kr.default.createElement("div",{className:t.weekdaysRow,role:"row"},n&&Kr.default.createElement("div",{className:t.weekday}),c))}}]),t}();Wr.default=Jr;var Zr={},Xr={};function Qr(e){return new Date(e.getTime())}function en(e){return e instanceof Date&&!isNaN(e.valueOf())}function tn(e,t){var r=Qr(e);return r.setMonth(e.getMonth()+t),r}function rn(e,t){return!(!e||!t)&&(e.getDate()===t.getDate()&&e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear())}function nn(e,t){return!(!e||!t)&&(e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear())}function an(e,t){return Qr(e).setHours(0,0,0,0)<Qr(t).setHours(0,0,0,0)}function on(e,t){return Qr(e).setHours(0,0,0,0)>Qr(t).setHours(0,0,0,0)}function ln(e){var t=new Date;return t.setHours(0,0,0,0),an(e,t)}function sn(e){var t=new Date((new Date).getTime()+864e5);return t.setHours(0,0,0,0),e>=t}function cn(e,t,r){var n=Qr(e);return n.setHours(0,0,0,0),on(n,t)&&an(n,r)||on(n,r)&&an(n,t)}function dn(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{from:null,to:null},r=t.from,n=t.to;return r?r&&n&&rn(r,n)&&rn(e,r)?(r=null,n=null):n&&an(e,r)?r=e:n&&rn(e,n)?(r=e,n=e):an(n=e,r)&&(n=r,r=e):r=e,{from:r,to:n}}function un(e,t){var r=t.from,n=t.to;return r&&rn(e,r)||n&&rn(e,n)||r&&n&&cn(e,r,n)}function pn(e){var t=Qr(e);return t.setHours(0,0,0),t.setDate(t.getDate()+4-(t.getDay()||7)),Math.ceil(((t-new Date(t.getFullYear(),0,1))/864e5+1)/7)}Object.defineProperty(Xr,"__esModule",{value:!0}),Xr.clone=Qr,Xr.isDate=en,Xr.addMonths=tn,Xr.isSameDay=rn,Xr.isSameMonth=nn,Xr.isDayBefore=an,Xr.isDayAfter=on,Xr.isPastDay=ln,Xr.isFutureDay=sn,Xr.isDayBetween=cn,Xr.addDayToRange=dn,Xr.isDayInRange=un,Xr.getWeekNumber=pn,Xr.default={addDayToRange:dn,addMonths:tn,clone:Qr,getWeekNumber:pn,isDate:en,isDayAfter:on,isDayBefore:an,isDayBetween:cn,isDayInRange:un,isFutureDay:sn,isPastDay:ln,isSameDay:rn,isSameMonth:nn};var hn={};Object.defineProperty(hn,"__esModule",{value:!0});var mn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};hn.cancelEvent=function(e){e.preventDefault(),e.stopPropagation()},hn.getFirstDayOfMonth=yn,hn.getDaysInMonth=wn,hn.getModifiersFromProps=function(e){var t=mn({},e.modifiers);e.selectedDays&&(t[e.classNames.selected]=e.selectedDays);e.disabledDays&&(t[e.classNames.disabled]=e.disabledDays);return t},hn.getFirstDayOfWeekFromProps=function(e){var t=e.firstDayOfWeek,r=e.locale,n=void 0===r?"en":r,a=e.localeUtils,o=void 0===a?{}:a;if(!isNaN(t))return t;if(o.getFirstDayOfWeek)return o.getFirstDayOfWeek(n);return 0},hn.isRangeOfDates=function(e){return!!(e&&e.from&&e.to)},hn.getMonthsDiff=function(e,t){return t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())},hn.getWeekArray=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,gn.getFirstDayOfWeek)(),r=arguments[2],n=wn(e),a=[],o=[],l=[],s=1;s<=n;s+=1)a.push(new Date(e.getFullYear(),e.getMonth(),s,12));a.forEach((function(e){o.length>0&&e.getDay()===t&&(l.push(o),o=[]),o.push(e),a.indexOf(e)===a.length-1&&l.push(o)}));for(var i=l[0],c=7-i.length;c>0;c-=1){var d=(0,fn.clone)(i[0]);d.setDate(i[0].getDate()-1),i.unshift(d)}for(var u=l[l.length-1],p=u.length;p<7;p+=1){var h=(0,fn.clone)(u[u.length-1]);h.setDate(u[u.length-1].getDate()+1),u.push(h)}if(r&&l.length<6)for(var m=void 0,f=l.length;f<6;f+=1){for(var g=(m=l[l.length-1])[m.length-1],v=[],y=0;y<7;y+=1){var w=(0,fn.clone)(g);w.setDate(g.getDate()+y+1),v.push(w)}l.push(v)}return l},hn.startOfMonth=function(e){var t=(0,fn.clone)(e);return t.setDate(1),t.setHours(12,0,0,0),t},hn.getDayNodes=function(e,t){var r=void 0;r=t===vn.default?t.day+"--"+t.outside:""+t.outside;var n=t.day.replace(/ /g,"."),a=r.replace(/ /g,"."),o="."+n+":not(."+a+")";return e.querySelectorAll(o)},hn.nodeListToArray=function(e){return Array.prototype.slice.call(e,0)},hn.hasOwnProp=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};var fn=Xr,gn=hr,vn=function(e){return e&&e.__esModule?e:{default:e}}(_r);function yn(e){return new Date(e.getFullYear(),e.getMonth(),1,12)}function wn(e){var t=yn(e);return t.setMonth(t.getMonth()+1),t.setDate(t.getDate()-1),t.getDate()}Object.defineProperty(Zr,"__esModule",{value:!0});var kn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},En=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),xn=p,bn=Ln(xn),Mn=Xr,Nn=hn,Cn=Ln(_r);function Ln(e){return e&&e.__esModule?e:{default:e}}function Dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pn(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function On(e,t,r){if(e)return function(n){n.persist(),e(t,r,n)}}var jn=function(e){function t(){return Dn(this,t),Pn(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,xn.Component),En(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=Object.keys(this.props),n=Object.keys(e);return r.length!==n.length||r.some((function(r){if("modifiers"===r||"modifiersStyles"===r||"classNames"===r){var n=t.props[r],a=e[r],o=Object.keys(n),l=Object.keys(a);return o.length!==l.length||o.some((function(e){return!(0,Nn.hasOwnProp)(a,e)||n[e]!==a[e]}))}return"day"===r?!(0,Mn.isSameDay)(t.props[r],e[r]):!(0,Nn.hasOwnProp)(e,r)||t.props[r]!==e[r]}))}},{key:"render",value:function(){var e=this.props,t=e.classNames,r=e.modifiersStyles,n=e.day,a=e.tabIndex,o=e.empty,l=e.modifiers,s=e.onMouseEnter,i=e.onMouseLeave,c=e.onMouseUp,d=e.onMouseDown,u=e.onClick,p=e.onKeyDown,h=e.onTouchStart,m=e.onTouchEnd,f=e.onFocus,g=e.ariaLabel,v=e.ariaDisabled,y=e.ariaSelected,w=e.children,k=t.day;t!==Cn.default?k+=" "+Object.keys(l).join(" "):k+=Object.keys(l).map((function(e){return" "+k+"--"+e})).join("");var E=void 0;return r&&Object.keys(l).filter((function(e){return!!r[e]})).forEach((function(e){E=kn({},E,r[e])})),o?bn.default.createElement("div",{"aria-disabled":!0,className:k,style:E}):bn.default.createElement("div",{className:k,tabIndex:a,style:E,role:"gridcell","aria-label":g,"aria-disabled":v,"aria-selected":y,onClick:On(u,n,l),onKeyDown:On(p,n,l),onMouseEnter:On(s,n,l),onMouseLeave:On(i,n,l),onMouseUp:On(c,n,l),onMouseDown:On(d,n,l),onTouchEnd:On(m,n,l),onTouchStart:On(h,n,l),onFocus:On(f,n,l)},w)}}]),t}();jn.defaultProps={tabIndex:-1},jn.defaultProps={modifiers:{},modifiersStyles:{},empty:!1},Zr.default=jn;var _n={};Object.defineProperty(_n,"__esModule",{value:!0}),_n.dayMatchesModifier=zn,_n.getModifiersForDay=Fn;var Tn=Xr,Bn=hn;function zn(e,t){return!!t&&(Array.isArray(t)?t:[t]).some((function(t){return!!t&&(t instanceof Date?(0,Tn.isSameDay)(e,t):(0,Bn.isRangeOfDates)(t)?(0,Tn.isDayInRange)(e,t):t.after&&t.before&&(0,Tn.isDayAfter)(t.before,t.after)?(0,Tn.isDayAfter)(e,t.after)&&(0,Tn.isDayBefore)(e,t.before):t.after&&t.before&&((0,Tn.isDayAfter)(t.after,t.before)||(0,Tn.isSameDay)(t.after,t.before))?(0,Tn.isDayAfter)(e,t.after)||(0,Tn.isDayBefore)(e,t.before):t.after?(0,Tn.isDayAfter)(e,t.after):t.before?(0,Tn.isDayBefore)(e,t.before):t.daysOfWeek?t.daysOfWeek.some((function(t){return e.getDay()===t})):"function"==typeof t&&t(e))}))}function Fn(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(t).reduce((function(r,n){var a=t[n];return zn(e,a)&&r.push(n),r}),[])}_n.default={dayMatchesModifier:zn,getModifiersForDay:Fn},Object.defineProperty(Ir,"__esModule",{value:!0});var Sn=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),An=p,Hn=Kn(An),Vn=Kn(Wr),Rn=Kn(Zr),In=br,Wn=Yn(_n),Un=Yn(hn),qn=Yn(Xr);function Yn(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}function Kn(e){return e&&e.__esModule?e:{default:e}}function Gn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $n(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Jn=function(e){function t(){var e,r,n;Gn(this,t);for(var a=arguments.length,o=Array(a),l=0;l<a;l++)o[l]=arguments[l];return r=n=$n(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(o))),n.renderDay=function(e){var t=n.props.month.getMonth(),r=Un.getModifiersFromProps(n.props),a=Wn.getModifiersForDay(e,r);qn.isSameDay(e,new Date)&&!Object.prototype.hasOwnProperty.call(r,n.props.classNames.today)&&a.push(n.props.classNames.today),e.getMonth()!==t&&a.push(n.props.classNames.outside);var o=e.getMonth()!==t,l=-1;n.props.onDayClick&&!o&&1===e.getDate()&&(l=n.props.tabIndex);var s=""+e.getFullYear()+e.getMonth()+e.getDate(),i={};return a.forEach((function(e){i[e]=!0})),Hn.default.createElement(Rn.default,{key:(o?"outside-":"")+s,classNames:n.props.classNames,day:e,modifiers:i,modifiersStyles:n.props.modifiersStyles,empty:o&&!n.props.showOutsideDays&&!n.props.fixedWeeks,tabIndex:l,ariaLabel:n.props.localeUtils.formatDay(e,n.props.locale),ariaDisabled:o||a.indexOf(n.props.classNames.disabled)>-1,ariaSelected:a.indexOf(n.props.classNames.selected)>-1,onClick:n.props.onDayClick,onFocus:n.props.onDayFocus,onKeyDown:n.props.onDayKeyDown,onMouseEnter:n.props.onDayMouseEnter,onMouseLeave:n.props.onDayMouseLeave,onMouseDown:n.props.onDayMouseDown,onMouseUp:n.props.onDayMouseUp,onTouchEnd:n.props.onDayTouchEnd,onTouchStart:n.props.onDayTouchStart},n.props.renderDay(e,i))},$n(n,r)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,An.Component),Sn(t,[{key:"render",value:function(){var e=this,t=this.props,r=t.classNames,n=t.month,a=t.months,o=t.fixedWeeks,l=t.captionElement,s=t.weekdayElement,i=t.locale,c=t.localeUtils,d=t.weekdaysLong,u=t.weekdaysShort,p=t.firstDayOfWeek,h=t.onCaptionClick,m=t.showWeekNumbers,f=t.showWeekDays,g=t.onWeekClick,v={date:n,classNames:r,months:a,localeUtils:c,locale:i,onClick:h?function(e){return h(n,e)}:void 0},y=Hn.default.isValidElement(l)?Hn.default.cloneElement(l,v):Hn.default.createElement(l,v),w=Un.getWeekArray(n,p,o);return Hn.default.createElement("div",{className:r.month,role:"grid"},y,f&&Hn.default.createElement(Vn.default,{classNames:r,weekdaysShort:u,weekdaysLong:d,firstDayOfWeek:p,showWeekNumbers:m,locale:i,localeUtils:c,weekdayElement:s}),Hn.default.createElement("div",{className:r.body,role:"rowgroup"},w.map((function(t){var a=void 0;return m&&(a=qn.getWeekNumber(t[6])),Hn.default.createElement("div",{key:t[0].getTime(),className:r.week,role:"row"},m&&Hn.default.createElement("div",{className:r.weekNumber,tabIndex:g?0:-1,role:"gridcell",onClick:g?function(e){return g(a,t,e)}:void 0,onKeyUp:g?function(e){return e.keyCode===In.ENTER&&g(a,t,e)}:void 0},e.props.renderWeek(a,t,n)),t.map(e.renderDay))}))))}}]),t}();Ir.default=Jn;var Zn={};Object.defineProperty(Zn,"__esModule",{value:!0});var Xn=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),Qn=p,ea=function(e){return e&&e.__esModule?e:{default:e}}(Qn);function ta(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ra(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var na=function(e){function t(){return ta(this,t),ra(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,Qn.Component),Xn(t,[{key:"shouldComponentUpdate",value:function(e){return this.props!==e}},{key:"render",value:function(){var e=this.props,t=e.weekday,r=e.className,n=e.weekdaysLong,a=e.weekdaysShort,o=e.localeUtils,l=e.locale,s=void 0;s=n?n[t]:o.formatWeekdayLong(t,l);var i=void 0;return i=a?a[t]:o.formatWeekdayShort(t,l),ea.default.createElement("div",{className:r,role:"columnheader"},ea.default.createElement("abbr",{title:s},i))}}]),t}();Zn.default=na,Object.defineProperty(ur,"__esModule",{value:!0}),ur.ModifiersUtils=ur.LocaleUtils=ur.DateUtils=ur.DayPicker=void 0;var aa=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},oa=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),la=p,sa=wa(la),ia=wa(pr),ca=wa(jr),da=wa(Ir),ua=wa(Zn),pa=ya(hn),ha=ya(Xr),ma=ya(hr),fa=ya(_n),ga=wa(_r),va=br;function ya(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}function wa(e){return e&&e.__esModule?e:{default:e}}var ka=ur.DayPicker=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));r.dayPicker=null,r.showNextMonth=function(e){if(r.allowNextMonth()){var t=r.props.pagedNavigation?r.props.numberOfMonths:1,n=ha.addMonths(r.state.currentMonth,t);r.showMonth(n,e)}},r.showPreviousMonth=function(e){if(r.allowPreviousMonth()){var t=r.props.pagedNavigation?r.props.numberOfMonths:1,n=ha.addMonths(r.state.currentMonth,-t);r.showMonth(n,e)}},r.handleKeyDown=function(e){switch(e.persist(),e.keyCode){case va.LEFT:"rtl"===r.props.dir?r.showNextMonth():r.showPreviousMonth(),pa.cancelEvent(e);break;case va.RIGHT:"rtl"===r.props.dir?r.showPreviousMonth():r.showNextMonth(),pa.cancelEvent(e);break;case va.UP:r.showPreviousYear(),pa.cancelEvent(e);break;case va.DOWN:r.showNextYear(),pa.cancelEvent(e)}r.props.onKeyDown&&r.props.onKeyDown(e)},r.handleDayKeyDown=function(e,t,n){switch(n.persist(),n.keyCode){case va.LEFT:pa.cancelEvent(n),"rtl"===r.props.dir?r.focusNextDay(n.target):r.focusPreviousDay(n.target);break;case va.RIGHT:pa.cancelEvent(n),"rtl"===r.props.dir?r.focusPreviousDay(n.target):r.focusNextDay(n.target);break;case va.UP:pa.cancelEvent(n),r.focusPreviousWeek(n.target);break;case va.DOWN:pa.cancelEvent(n),r.focusNextWeek(n.target);break;case va.ENTER:case va.SPACE:pa.cancelEvent(n),r.props.onDayClick&&r.handleDayClick(e,t,n)}r.props.onDayKeyDown&&r.props.onDayKeyDown(e,t,n)},r.handleDayClick=function(e,t,n){n.persist(),t[r.props.classNames.outside]&&r.props.enableOutsideDaysClick&&r.handleOutsideDayClick(e),r.props.onDayClick&&r.props.onDayClick(e,t,n)},r.handleTodayButtonClick=function(e){var t=new Date,n=new Date(t.getFullYear(),t.getMonth());r.showMonth(n),e.target.blur(),r.props.onTodayButtonClick&&(e.persist(),r.props.onTodayButtonClick(new Date(t.getFullYear(),t.getMonth(),t.getDate()),fa.getModifiersForDay(t,r.props.modifiers),e))};var n=r.getCurrentMonthFromProps(e);return r.state={currentMonth:n},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,la.Component),oa(t,[{key:"componentDidUpdate",value:function(e){if(e.month!==this.props.month&&!ha.isSameMonth(e.month,this.props.month)){var t=this.getCurrentMonthFromProps(this.props);this.setState({currentMonth:t})}}},{key:"getCurrentMonthFromProps",value:function(e){var t=pa.startOfMonth(e.month||e.initialMonth||new Date);if(e.pagedNavigation&&e.numberOfMonths>1&&e.fromMonth){var r=pa.startOfMonth(e.fromMonth),n=pa.getMonthsDiff(r,t);t=ha.addMonths(r,Math.floor(n/e.numberOfMonths)*e.numberOfMonths)}else e.toMonth&&e.numberOfMonths>1&&pa.getMonthsDiff(t,e.toMonth)<=0&&(t=ha.addMonths(pa.startOfMonth(e.toMonth),1-this.props.numberOfMonths));return t}},{key:"getNextNavigableMonth",value:function(){return ha.addMonths(this.state.currentMonth,this.props.numberOfMonths)}},{key:"getPreviousNavigableMonth",value:function(){return ha.addMonths(this.state.currentMonth,-1)}},{key:"allowPreviousMonth",value:function(){var e=ha.addMonths(this.state.currentMonth,-1);return this.allowMonth(e)}},{key:"allowNextMonth",value:function(){var e=ha.addMonths(this.state.currentMonth,this.props.numberOfMonths);return this.allowMonth(e)}},{key:"allowMonth",value:function(e){var t=this.props,r=t.fromMonth,n=t.toMonth;return!(!t.canChangeMonth||r&&pa.getMonthsDiff(r,e)<0||n&&pa.getMonthsDiff(n,e)>0)}},{key:"allowYearChange",value:function(){return this.props.canChangeMonth}},{key:"showMonth",value:function(e,t){var r=this;this.allowMonth(e)&&this.setState({currentMonth:pa.startOfMonth(e)},(function(){t&&t(),r.props.onMonthChange&&r.props.onMonthChange(r.state.currentMonth)}))}},{key:"showNextYear",value:function(){if(this.allowYearChange()){var e=ha.addMonths(this.state.currentMonth,12);this.showMonth(e)}}},{key:"showPreviousYear",value:function(){if(this.allowYearChange()){var e=ha.addMonths(this.state.currentMonth,-12);this.showMonth(e)}}},{key:"focus",value:function(){this.wrapper.focus()}},{key:"focusFirstDayOfMonth",value:function(){pa.getDayNodes(this.dayPicker,this.props.classNames)[0].focus()}},{key:"focusLastDayOfMonth",value:function(){var e=pa.getDayNodes(this.dayPicker,this.props.classNames);e[e.length-1].focus()}},{key:"focusPreviousDay",value:function(e){var t=this,r=pa.getDayNodes(this.dayPicker,this.props.classNames),n=pa.nodeListToArray(r).indexOf(e);-1!==n&&(0===n?this.showPreviousMonth((function(){return t.focusLastDayOfMonth()})):r[n-1].focus())}},{key:"focusNextDay",value:function(e){var t=this,r=pa.getDayNodes(this.dayPicker,this.props.classNames),n=pa.nodeListToArray(r).indexOf(e);-1!==n&&(n===r.length-1?this.showNextMonth((function(){return t.focusFirstDayOfMonth()})):r[n+1].focus())}},{key:"focusNextWeek",value:function(e){var t=this,r=pa.getDayNodes(this.dayPicker,this.props.classNames),n=pa.nodeListToArray(r).indexOf(e);n>r.length-8?this.showNextMonth((function(){var e=7-(r.length-n);pa.getDayNodes(t.dayPicker,t.props.classNames)[e].focus()})):r[n+7].focus()}},{key:"focusPreviousWeek",value:function(e){var t=this,r=pa.getDayNodes(this.dayPicker,this.props.classNames),n=pa.nodeListToArray(r).indexOf(e);n<=6?this.showPreviousMonth((function(){var e=pa.getDayNodes(t.dayPicker,t.props.classNames);e[e.length-7+n].focus()})):r[n-7].focus()}},{key:"handleOutsideDayClick",value:function(e){var t=this.state.currentMonth,r=this.props.numberOfMonths,n=pa.getMonthsDiff(t,e);n>0&&n>=r?this.showNextMonth():n<0&&this.showPreviousMonth()}},{key:"renderNavbar",value:function(){var e=this.props,t=e.labels,r=e.locale,n=e.localeUtils,a=e.canChangeMonth,o=e.navbarElement,l=function(e,t){var r={};for(var n in e)t.indexOf(n)>=0||Object.prototype.hasOwnProperty.call(e,n)&&(r[n]=e[n]);return r}(e,["labels","locale","localeUtils","canChangeMonth","navbarElement"]);if(!a)return null;var s={month:this.state.currentMonth,classNames:this.props.classNames,className:this.props.classNames.navBar,nextMonth:this.getNextNavigableMonth(),previousMonth:this.getPreviousNavigableMonth(),showPreviousButton:this.allowPreviousMonth(),showNextButton:this.allowNextMonth(),onNextClick:this.showNextMonth,onPreviousClick:this.showPreviousMonth,dir:l.dir,labels:t,locale:r,localeUtils:n};return sa.default.isValidElement(o)?sa.default.cloneElement(o,s):sa.default.createElement(o,s)}},{key:"renderMonths",value:function(){for(var e=[],t=pa.getFirstDayOfWeekFromProps(this.props),r=0;r<this.props.numberOfMonths;r+=1){var n=ha.addMonths(this.state.currentMonth,r);e.push(sa.default.createElement(da.default,aa({key:r},this.props,{month:n,firstDayOfWeek:t,onDayKeyDown:this.handleDayKeyDown,onDayClick:this.handleDayClick})))}return this.props.reverseMonths&&e.reverse(),e}},{key:"renderFooter",value:function(){return this.props.todayButton?sa.default.createElement("div",{className:this.props.classNames.footer},this.renderTodayButton()):null}},{key:"renderTodayButton",value:function(){return sa.default.createElement("button",{type:"button",tabIndex:0,className:this.props.classNames.todayButton,"aria-label":this.props.todayButton,onClick:this.handleTodayButtonClick},this.props.todayButton)}},{key:"render",value:function(){var e=this,t=this.props.classNames.container;return this.props.onDayClick||(t=t+" "+this.props.classNames.interactionDisabled),this.props.className&&(t=t+" "+this.props.className),sa.default.createElement("div",aa({},this.props.containerProps,{className:t,ref:function(t){return e.dayPicker=t},lang:this.props.locale}),sa.default.createElement("div",{className:this.props.classNames.wrapper,ref:function(t){return e.wrapper=t},tabIndex:this.props.canChangeMonth&&void 0!==this.props.tabIndex?this.props.tabIndex:-1,onKeyDown:this.handleKeyDown,onFocus:this.props.onFocus,onBlur:this.props.onBlur},this.renderNavbar(),sa.default.createElement("div",{className:this.props.classNames.months},this.renderMonths()),this.renderFooter()))}}]),t}();ka.defaultProps={classNames:ga.default,tabIndex:0,numberOfMonths:1,labels:{previousMonth:"Previous Month",nextMonth:"Next Month"},locale:"en",localeUtils:ma,showOutsideDays:!1,enableOutsideDaysClick:!0,fixedWeeks:!1,canChangeMonth:!0,reverseMonths:!1,pagedNavigation:!1,showWeekNumbers:!1,showWeekDays:!0,renderDay:function(e){return e.getDate()},renderWeek:function(e){return e},weekdayElement:sa.default.createElement(ua.default,null),navbarElement:sa.default.createElement(ca.default,{classNames:ga.default}),captionElement:sa.default.createElement(ia.default,{classNames:ga.default})},ka.VERSION="7.4.10",ka.DateUtils=ha,ka.LocaleUtils=ma,ka.ModifiersUtils=fa,ur.DateUtils=ha,ur.LocaleUtils=ma,ur.ModifiersUtils=fa,ur.default=ka,Object.defineProperty(dr,"__esModule",{value:!0}),dr.HIDE_TIMEOUT=void 0;var Ea=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),xa=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};dr.OverlayComponent=Oa,dr.defaultFormat=ja,dr.defaultParse=_a;var ba=Da(p),Ma=Da(ur),Na=Xr,Ca=_n,La=br;function Da(e){return e&&e.__esModule?e:{default:e}}var Pa=dr.HIDE_TIMEOUT=100;function Oa(e){e.input,e.selectedDay,e.month;var t=e.children,r=e.classNames,n=function(e,t){var r={};for(var n in e)t.indexOf(n)>=0||Object.prototype.hasOwnProperty.call(e,n)&&(r[n]=e[n]);return r}(e,["input","selectedDay","month","children","classNames"]);return ba.default.createElement("div",xa({className:r.overlayWrapper},n),ba.default.createElement("div",{className:r.overlay},t))}function ja(e){return(0,Na.isDate)(e)?e.getFullYear()+"-"+(""+(e.getMonth()+1))+"-"+(""+e.getDate()):""}function _a(e){if("string"==typeof e){var t=e.split("-");if(3===t.length){var r=parseInt(t[0],10),n=parseInt(t[1],10)-1,a=parseInt(t[2],10);if(!(isNaN(r)||String(r).length>4||isNaN(n)||isNaN(a)||a<=0||a>31||n<0||n>=12))return new Date(r,n,a,12,0,0,0)}}}var Ta=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return r.input=null,r.daypicker=null,r.clickTimeout=null,r.hideTimeout=null,r.inputBlurTimeout=null,r.inputFocusTimeout=null,r.state=r.getInitialStateFromProps(e),r.state.showOverlay=e.showOverlay,r.hideAfterDayClick=r.hideAfterDayClick.bind(r),r.handleInputClick=r.handleInputClick.bind(r),r.handleInputFocus=r.handleInputFocus.bind(r),r.handleInputBlur=r.handleInputBlur.bind(r),r.handleInputChange=r.handleInputChange.bind(r),r.handleInputKeyDown=r.handleInputKeyDown.bind(r),r.handleInputKeyUp=r.handleInputKeyUp.bind(r),r.handleDayClick=r.handleDayClick.bind(r),r.handleMonthChange=r.handleMonthChange.bind(r),r.handleOverlayFocus=r.handleOverlayFocus.bind(r),r.handleOverlayBlur=r.handleOverlayBlur.bind(r),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,ba.default.Component),Ea(t,[{key:"componentDidUpdate",value:function(e){var t={},r=this.props,n=r.value,a=r.formatDate,o=r.format,l=r.dayPickerProps;n===e.value&&l.locale===e.dayPickerProps.locale&&o===e.format||((0,Na.isDate)(n)?t.value=a(n,o,l.locale):t.value=n);var s=e.dayPickerProps.month;l.month&&l.month!==s&&!(0,Na.isSameMonth)(l.month,s)&&(t.month=l.month),e.dayPickerProps.selectedDays!==l.selectedDays&&(t.selectedDays=l.selectedDays),Object.keys(t).length>0&&this.setState(t)}},{key:"componentWillUnmount",value:function(){clearTimeout(this.clickTimeout),clearTimeout(this.hideTimeout),clearTimeout(this.inputFocusTimeout),clearTimeout(this.inputBlurTimeout),clearTimeout(this.overlayBlurTimeout)}},{key:"getInitialMonthFromProps",value:function(e){var t=e.dayPickerProps,r=e.format,n=void 0;return e.value&&(n=(0,Na.isDate)(e.value)?e.value:e.parseDate(e.value,r,t.locale)),t.initialMonth||t.month||n||new Date}},{key:"getInitialStateFromProps",value:function(e){var t=e.dayPickerProps,r=e.formatDate,n=e.format,a=e.typedValue,o=e.value;return e.value&&(0,Na.isDate)(e.value)&&(o=r(e.value,n,t.locale)),{value:o,typedValue:a,month:this.getInitialMonthFromProps(e),selectedDays:t.selectedDays}}},{key:"getInput",value:function(){return this.input}},{key:"getDayPicker",value:function(){return this.daypicker}},{key:"updateState",value:function(e,t,r){var n=this,a=this.props,o=a.dayPickerProps,l=a.onDayChange;this.setState({month:e,value:t,typedValue:""},(function(){if(r&&r(),l){var t=xa({disabled:o.disabledDays,selected:o.selectedDays},o.modifiers),a=(0,Ca.getModifiersForDay)(e,t).reduce((function(e,t){return xa({},e,function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}({},t,!0))}),{});l(e,a,n)}}))}},{key:"showDayPicker",value:function(){var e=this,t=this.props,r=t.parseDate,n=t.format,a=t.dayPickerProps,o=this.state,l=o.value;if(!o.showOverlay){var s=l?r(l,n,a.locale):this.getInitialMonthFromProps(this.props);this.setState((function(e){return{showOverlay:!0,month:s||e.month}}),(function(){e.props.onDayPickerShow&&e.props.onDayPickerShow()}))}}},{key:"hideDayPicker",value:function(){var e=this;!1!==this.state.showOverlay&&this.setState({showOverlay:!1},(function(){e.props.onDayPickerHide&&e.props.onDayPickerHide()}))}},{key:"hideAfterDayClick",value:function(){var e=this;this.props.hideOnDayClick&&(this.hideTimeout=setTimeout((function(){e.overlayHasFocus=!1,e.hideDayPicker()}),Pa))}},{key:"handleInputClick",value:function(e){this.showDayPicker(),this.props.inputProps.onClick&&(e.persist(),this.props.inputProps.onClick(e))}},{key:"handleInputFocus",value:function(e){var t=this;this.showDayPicker(),this.inputFocusTimeout=setTimeout((function(){t.overlayHasFocus=!1}),2),this.props.inputProps.onFocus&&(e.persist(),this.props.inputProps.onFocus(e))}},{key:"handleInputBlur",value:function(e){var t=this;this.inputBlurTimeout=setTimeout((function(){t.overlayHasFocus||t.hideDayPicker()}),1),this.props.inputProps.onBlur&&(e.persist(),this.props.inputProps.onBlur(e))}},{key:"handleOverlayFocus",value:function(e){e.preventDefault(),this.overlayHasFocus=!0,this.props.keepFocus&&this.input&&"function"==typeof this.input.focus&&this.input.focus()}},{key:"handleOverlayBlur",value:function(){var e=this;this.overlayBlurTimeout=setTimeout((function(){e.overlayHasFocus=!1}),3)}},{key:"handleInputChange",value:function(e){var t=this.props,r=t.dayPickerProps,n=t.format,a=t.inputProps,o=t.onDayChange,l=t.parseDate;a.onChange&&(e.persist(),a.onChange(e));var s=e.target.value;if(""===s.trim())return this.setState({value:s,typedValue:""}),void(o&&o(void 0,{},this));var i=l(s,n,r.locale);if(!i)return this.setState({value:s,typedValue:s}),void(o&&o(void 0,{},this));this.updateState(i,s)}},{key:"handleInputKeyDown",value:function(e){e.keyCode===La.TAB?this.hideDayPicker():this.showDayPicker(),this.props.inputProps.onKeyDown&&(e.persist(),this.props.inputProps.onKeyDown(e))}},{key:"handleInputKeyUp",value:function(e){e.keyCode===La.ESC?this.hideDayPicker():this.showDayPicker(),this.props.inputProps.onKeyUp&&(e.persist(),this.props.inputProps.onKeyUp(e))}},{key:"handleMonthChange",value:function(e){var t=this;this.setState({month:e},(function(){t.props.dayPickerProps&&t.props.dayPickerProps.onMonthChange&&t.props.dayPickerProps.onMonthChange(e)}))}},{key:"handleDayClick",value:function(e,t,r){var n=this,a=this.props,o=a.clickUnselectsDay,l=a.dayPickerProps,s=a.onDayChange,i=a.formatDate,c=a.format;if(l.onDayClick&&l.onDayClick(e,t,r),!(t.disabled||l&&l.classNames&&t[l.classNames.disabled])){if(t.selected&&o){var d=this.state.selectedDays;if(Array.isArray(d)){var u=(d=d.slice(0)).indexOf(e);d.splice(u,1)}else d&&(d=null);return this.setState({value:"",typedValue:"",selectedDays:d},this.hideAfterDayClick),void(s&&s(void 0,t,this))}var p=i(e,c,l.locale);this.setState({value:p,typedValue:"",month:e},(function(){s&&s(e,t,n),n.hideAfterDayClick()}))}}},{key:"renderOverlay",value:function(){var e=this,t=this.props,r=t.classNames,n=t.dayPickerProps,a=t.parseDate,o=t.formatDate,l=t.format,s=this.state,i=s.selectedDays,c=s.value,d=void 0;if(!i&&c){var u=a(c,l,n.locale);u&&(d=u)}else i&&(d=i);var p=void 0;n.todayButton&&(p=function(){return e.updateState(new Date,o(new Date,l,n.locale),e.hideAfterDayClick)});var h=this.props.overlayComponent;return ba.default.createElement(h,{classNames:r,month:this.state.month,selectedDay:d,input:this.input,tabIndex:0,onFocus:this.handleOverlayFocus,onBlur:this.handleOverlayBlur},ba.default.createElement(Ma.default,xa({ref:function(t){return e.daypicker=t},onTodayButtonClick:p},n,{month:this.state.month,selectedDays:d,onDayClick:this.handleDayClick,onMonthChange:this.handleMonthChange})))}},{key:"render",value:function(){var e=this,t=this.props.component,r=this.props.inputProps;return ba.default.createElement("div",{className:this.props.classNames.container,style:this.props.style},ba.default.createElement(t,xa({ref:function(t){return e.input=t},placeholder:this.props.placeholder},r,{value:this.state.value||this.state.typedValue,onChange:this.handleInputChange,onFocus:this.handleInputFocus,onBlur:this.handleInputBlur,onKeyDown:this.handleInputKeyDown,onKeyUp:this.handleInputKeyUp,onClick:r.disabled?void 0:this.handleInputClick})),this.state.showOverlay&&this.renderOverlay())}}]),t}();Ta.defaultProps={dayPickerProps:{},value:"",typedValue:"",placeholder:"YYYY-M-D",format:"L",formatDate:ja,parseDate:_a,showOverlay:!1,hideOnDayClick:!0,clickUnselectsDay:!1,keepFocus:!0,component:"input",inputProps:{},overlayComponent:Oa,classNames:{container:"DayPickerInput",overlayWrapper:"DayPickerInput-OverlayWrapper",overlay:"DayPickerInput-Overlay"}},dr.default=Ta;var Ba=dr;const za=(e,t="YYYY-MM-DD")=>P(e).format(t),Fa=Ba.__esModule?Ba.default:Ba;let Sa=null;const Aa=({inputComponent:e=Ha,selectedDate:t=new Date,range:r,dateFormat:n="ddd, MMM DD, YYYY",shouldShowOverlay:a=!1,handleDayChange:o})=>{const[l,s]=v(t);o||(o=(e,t)=>{console.assert(!t.disabled,"Date is disabled"),console.log("DatePickerInput Day is "+za(e,n)),s(e),setTimeout((()=>{Sa.hideDayPicker()}),500)});return p.createElement(Fa,{ref:e=>Sa=e,inputProps:{date:za(l,n)},component:e,placeholder:P().format(n),showOverlay:a,formatDate:e=>za(e,n),overlayComponent:({month:e,onBlur:t,onFocus:n,selectedDay:a,classNames:l,tabIndex:s})=>p.createElement("div",{className:d(l.overlayWrapper,"z-50"),tabIndex:s,onBlur:t,onFocus:n},p.createElement("div",{className:l.overlay},p.createElement(cr,{selectedDate:a,range:r,startMonth:e,handleDayClick:o}))),onDayChange:o})};Aa.propTypes={inputComponent:u.object,selectedDate:u.any,range:u.number,dateFormat:u.string,shouldShowOverlay:u.bool,handleDayChange:u.func};const Ha=f(((e,t)=>{const r=e,{date:n,value:a}=r,o=c(r,["date","value"]);return p.createElement(Lt,s({readOnly:!0,size:"small",className:"cursor-pointer",value:n},o))}));Ha.propTypes={date:u.oneOfType([Date]).isRequired,value:u.oneOfType([Date]).isRequired};const Va=O(),Ra=new Set(["JPY","CLP","KRW","LAK","PYG","VND","VUV"]),Ia=e=>Ra.has(e),Wa=(e,t=Va,r=0)=>new Intl.NumberFormat(t,{style:"currency",currency:e,maximumFractionDigits:0}).format(r).replace(/\d/g,"").trim(),Ua=O(),qa=e=>{const t=Math.abs(e);return t>=0&&t<=.001},Ya=(e,t=null,r=Ua,n=2)=>{const a={style:t?"currency":"decimal",minimumFractionDigits:n,maximumFractionDigits:n};return t&&(a.currency=t),new Intl.NumberFormat(r,a).format(e)},Ka=(e,t)=>{let r=Number(t);return Ia(e)?r=j(r):(j(r,3)===j(r,4)&&(r=j(r,3)),r=j(r,2)),r},Ga=O(),$a=({currency:e="USD",locale:t=Ga,shouldRemoveTrailingZeroes:r=!0,maximumFractionDigits:n=2,children:a})=>{let o=a;qa(o)&&(o=0);let l=Ya(o,e,t,Ia(e)?0:n);return l=r?l.replace(".00",""):l,p.createElement("span",{className:"currency-formatted-amount"},l)};$a.propTypes={currency:u.string,locale:u.string,shouldRemoveTrailingZeroes:u.bool,maximumFractionDigits:u.number,children:u.node.isRequired},($a.Round=({currency:e,children:t})=>{const r=Ka(e,t);return p.createElement("span",{className:"currency-rounded"},r)}).propTypes={currency:u.string,children:u.node.isRequired},($a.Split=({currency:e="USD",locale:t=Ga,children:r})=>{let n=r;qa(n)&&(n=0);const a=Ka(e,n).toString().split("."),o=a[0];let l=a[1]||"0";1===l.length&&(l+="0");const s=Ya(o,e,t,0);return p.createElement("span",{title:n,className:"currency-formatted-split-amount"},p.createElement("span",{className:"amount-int"},s),!Ia(e)&&p.createElement("span",{className:"pl-1 underline amount-decimal"},p.createElement("sup",null,l)))}).propTypes={currency:u.string,locale:u.string,children:u.node.isRequired};const Ja=_.PhoneNumberFormat,Za=_.PhoneNumberUtil.getInstance(),Xa=({countryCode:e="US",className:t,children:r})=>{const n=r;try{let r=Za.parseAndKeepRawInput(n,e);const a=Za.getRegionCodeForNumber(r);let o;if(a&&a!==e&&(r=Za.parseAndKeepRawInput(n,a)),a){const t=a===e?Ja.NATIONAL:Ja.INTERNATIONAL;o=Za.format(r,t)}else o=n;return p.createElement("span",{className:t,"data-region-code":a||"N/A","data-country-code":e,title:n},o)}catch(a){console.debug("Invalid phone number",n,a.message)}return p.createElement("span",{className:t,"data-country-code":e},n)};Xa.propTypes={countryCode:u.string,className:u.string,children:u.node.isRequired};const Qa=O(),eo=({locale:e=Qa,maximumFractionDigits:t=2,children:r})=>{const n=Ya(r,null,e,t);return p.createElement("span",{className:"formatted-number"},n)};eo.propTypes={locale:u.string,maximumFractionDigits:u.number,children:u.node.isRequired};const to={primary:"bg-primary",secondary:"bg-secondary-dark",success:"bg-success-dark",warning:"bg-warning",danger:"bg-danger",caution:"bg-caution-dark"},ro={small:"px-3 py-2 text-sm leading-3.5 shadow max-w-[200px]",medium:"px-4 py-3 text-base leading-4 shadow-md max-w-[400px]",large:"px-4 py-4 text-lg leading-4.5 shadow-lg max-w-xl"},no={duration:3e3,position:"top-right",reverseOrder:!1},ao={show(e){var t=e,{text:r,size:n="medium",color:a="success",className:o,canClose:l=!0,onClose:i,children:d}=t,u=c(t,["text","size","color","className","canClose","onClose","children"]);l&&!i&&console.warn("If you like to close the alert, please define `onClose`");const p=s(s({},no),u);l||(p.duration=Number.POSITIVE_INFINITY);const h=ao.getStyles(a,n,o,l);console.debug("Toast props",p),T.custom(ao.container.bind(this,r,h,l?i:null),p)},getStyles:(e,t,r)=>d("flex opacity-90 ring-1 ring-black ring-opacity-5 rounded text-white pointer-events-auto",to[e],ro[t],r),container(e,t,r,n){console.debug(`Toasting "${e}" ${n.id}`,n.visible);return p.createElement(x,{appear:!0,as:g,show:n.visible,enter:"transition transform duration-500 ease-out",enterFrom:"-translate-y-full !opacity-0",enterTo:"translate-y-0 !opacity-90",leave:"transition transform duration-500 ease-in",leaveFrom:"!opacity-90",leaveTo:"!opacity-0"},p.createElement("div",{key:n.id,className:t},p.createElement("div",{className:"w-full"},e),r?p.createElement("div",{className:"flex justify-center items-center pl-3 text-white hover:text-black cursor-pointer",onClick:e=>r(e,n)},p.createElement(K,null)):null))},dismiss(e){console.log("Dismissing",null!=e?e:"All!"),T.dismiss(e)}},oo={colors:{transparent:"transparent",current:"currentColor",black:"#222324",white:"#ffffff",gray:{lighter:"#F0F2F4",light:"#E0E3E7",DEFAULT:"#BDC0C6",dark:"#8A8C91",darker:"#505254"},blue:{lighter:"#D1E1FF",light:"#2979D0",DEFAULT:"#1352C6",dark:"#3467C4",darker:"#0E44A8"},green:{lighter:"#E2FFEF",light:"#33E781",DEFAULT:"#27CE70",dark:"#23B965",darker:"#1B8E4E"},red:{lighter:"#FFEAEA",light:"#FFA1A1",DEFAULT:"#FF5A5A",dark:"#E93737",darker:"#E51919"},yellow:{lighter:"#FFFAF0",light:"#FFDB8E",DEFAULT:"#FFC03D",dark:"#EBAA24",darker:"#F0A200"},orange:{lighter:"#FFF1E7",light:"#FFB493",DEFAULT:"#FF9668",dark:"#EC743F",darker:"#ff7336"},primary:{lighter:"#D1E1FF",light:"#2979D0",DEFAULT:"#1352C6",dark:"#3467C4",darker:"#0E44A8"},secondary:{lighter:"#F0F2F4",light:"#E0E3E7",DEFAULT:"#BDC0C6",dark:"#8A8C91",darker:"#505254"},warning:{lighter:"#FFFAF0",light:"#FFDB8E",DEFAULT:"#FFC03D",dark:"#EBAA24",darker:"#F0A200"},success:{lighter:"#E2FFEF",light:"#33E781",DEFAULT:"#27CE70",dark:"#23B965",darker:"#1B8E4E"},danger:{lighter:"#FFEAEA",light:"#FFA1A1",DEFAULT:"#FF5A5A",dark:"#E93737",darker:"#E51919"},caution:{lighter:"#FFF1E7",light:"#FFB493",DEFAULT:"#FF9668",dark:"#EC743F",darker:"#ff7336"}},spacing:{0:"0px",1:"4px",2:"8px",3:"12px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",14:"56px",15:"60px",16:"64px",20:"80px",24:"96px",28:"112px",32:"128px",36:"144px",40:"160px",44:"176px",48:"192px",50:"200px",52:"208px",56:"224px",60:"240px",64:"256px",72:"288px",80:"320px",82:"350px",96:"384px",.25:"1px",.5:"2px",.75:"3px",1.5:"6px",2.5:"10px",3.5:"14px",4.5:"18px",7.5:"30px"},fontSize:{xs:"10px",sm:"12px",base:"14px",md:"16px",lg:"18px",xl:"21px","2xl":"24px","3xl":"38px"},borderRadius:{none:"0px",DEFAULT:"4px",sm:"2px",md:"6px",lg:"8px",xl:"12px","2xl":"16px",full:"9999px"},extend:{fontFamily:{sans:["Inter","ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto",'"Helvetica Neue"',"Arial",'"Noto Sans"',"sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"']},lineHeight:{0:"0px",1:"4px",2:"8px",3:"12px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",.25:"1px",.5:"2px",.75:"3px",1.5:"6px",2.5:"10px",xs:"10px",sm:"12px",3.5:"14px",base:"14px",md:"16px",4.5:"18px",lg:"18px",p1:"130%",p2:"130%",p3:"110%",p4:"100%"},letterSpacing:{tightest:"-.4px"}}},{colors:lo}=oo,so={color:lo.gray.darker,fontSize:oo.fontSize.sm,fontWeight:400,cursor:"pointer",textOverflow:"ellipsis",fontFamily:oo.extend.fontFamily.sans},io={global:{useUTC:!1},chart:{spacingLeft:0},colors:[lo.primary,lo.success,lo.warning,lo.caution,lo.danger,lo.blue.darker,lo.green.darker,lo.red.darker,lo.yellow.darker,lo.orange.darker],xAxis:{title:{style:B.merge({},so,{color:lo.black})},labels:{style:so}},yAxis:{title:{style:B.merge({},so,{color:lo.black})},labels:{style:so}},tooltip:{enabled:!0,backgroundColor:lo.black,borderColor:lo.black,borderRadius:4,borderWidth:1,valueDecimals:2,crosshairs:[!0,!0],shadow:!1,useHTML:!0,style:B.merge({},so,{opacity:.9,color:"#cccccc"})},title:{text:"",style:B.merge({},so,{color:lo.black,fontSize:"18px",fontWeight:600})},plotOptions:{series:{marker:{enabled:!0,states:{hover:{enabled:!0,lineWidth:1,radius:4}}}}},legend:{enabled:!1,itemStyle:so,itemMarginBottom:5,align:"center",layout:"vertical",borderWidth:0},credits:{enabled:!1}},co=B.merge({},io,{chart:{type:"line"},title:{align:"left",margin:20,verticalAlign:"top"},xAxis:{type:"datetime",step:1,minTickInterval:864e5,lineColor:oo.colors.gray.darker,lineWidth:1,gridLineWidth:"1",gridLineColor:"#DEDEDE",gridLineDashStyle:"dot"},yAxis:{lineColor:oo.colors.gray.darker,lineWidth:1,gridLineWidth:"1",gridLineColor:"#DEDEDE",gridLineDashStyle:"dot"},plotOptions:{series:{marker:{enabled:!0,lineWidth:1,radius:3,states:{hover:{enabled:!0,lineWidth:1,radius:4}}}}},legend:{enabled:!1,itemStyle:{fontSize:"14px",color:"#666666",textTransform:"capitalize",fontFamily:oo.extend.fontFamily.sans},itemMarginBottom:5,align:"center",layout:"vertical",borderWidth:0}}),uo=B.merge({},io,{chart:{type:"pie"},tooltip:{pointFormat:"<b>{point.percentage:.1f}%</b>"},plotOptions:{pie:{size:180,center:[80,90],allowPointSelect:!0,cursor:"pointer",dataLabels:{enabled:!1},showInLegend:!0,innerSize:110}},legend:{enabled:!0,maxHeight:120,width:220,navigation:{activeColor:oo.colors.gray.darker,animation:"true",style:oo.extend.fontFamily.sans},padding:5,backgroundColor:oo.colors.white,itemMarginTop:1,itemMarginBottom:3,itemStyle:oo.extend.fontFamily.sans,style:{overflow:"hidden"},align:"left",layout:"horizontal",verticalAlign:"proximate",y:240},credits:{enabled:!1}}),po=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M13.065 2.356a.455.455 0 00-.456-.456H4.391c-.255 0-.456.2-.456.456v8.214c0 .25.2.451.456.451h8.213-.004a.458.458 0 00.456-.456l.01-8.209zM8.515 3.212v6.125M11.578 6.275H5.453",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M3.94 3.725h-.918c-.255 0-.456.2-.456.456v7.757-.004a.45.45 0 00.452.456h7.757-.005c.251 0 .456-.205.456-.456v-.913",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ho=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M2.666 9.904l1.18 1.776M9.187 2l4.479 6.746M13.43 8.39l-9.82 2.934-.709-1.067 6.514-7.912 4.009 6.038.007.006z"}),p.createElement("path",{d:"M8.721 9.798c.54.617.47 1.558-.147 2.098-.625.541-1.566.47-2.106-.147-.042-.05-.084-.098-.12-.154l-.617-.934"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),mo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M12.916 4.083h-10.5a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.916 6.417h3.5M12.722 4.083v7c0 .645-.522 1.167-1.167 1.167H3.777a1.166 1.166 0 01-1.167-1.167v-7"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),fo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7.666 11.667A4.666 4.666 0 103 7v.359"}),p.createElement("path",{d:"M1.25 5.833L3 7.583l1.75-1.75"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),go=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M9.38 2.714L13.666 7 9.38 11.286M13.666 7.003h-12"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),vo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M5.848 2.757h6.06v6.061M11.91 2.76l-8.485 8.484"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),yo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M10.388 7a2.722 2.722 0 11-5.445 0 2.722 2.722 0 015.445 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M10.387 7v1.166a1.555 1.555 0 103.111 0V6.999a5.833 5.833 0 10-2.333 4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),wo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.458 5.196c0 2.152-1.744 4.87-3.896 4.87s-3.896-2.718-3.896-4.87v0a3.896 3.896 0 117.792 0v0zM7.5 10.062s-.551 1.942.547 2.738",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ko=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M5.772 7.819l-1.86.265.265-1.86L8.946 1.45H8.94c.435-.44 1.15-.44 1.59-.005.435.435.435 1.15 0 1.59L5.77 7.819z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.29 4.125H2.787a.749.749 0 00-.75.75v5.25-.005c-.005.41.335.75.745.75h9.75-.005c.41 0 .75-.34.75-.75V4.87c0-.415-.34-.75-.75-.75h-.75M11.79 9H8.04M11.79 7.125H9.54",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Eo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.329 10.7v.214a1.337 1.337 0 002.674-.001V10.7M8.735 3.355v-.536a1.07 1.07 0 10-2.138 0v.536",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.494 5.943A2.643 2.643 0 017.138 3.3h1.057a2.643 2.643 0 012.643 2.643v1.632c0 .309.123.606.342.824l.374.374c.219.22.342.516.342.825 0 .61-.494 1.103-1.103 1.103H4.54a1.102 1.102 0 01-1.102-1.103c0-.309.123-.606.342-.825l.374-.374c.218-.218.341-.515.341-.824V5.943v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),xo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M9.184 5.498a.22.22 0 01-.217.217.204.204 0 01-.112-.035L7.77 5.03l-1.31.68v-.004a.222.222 0 01-.321-.2V2h3.037l.008 3.498z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M12.221 2.022h-9.11a.434.434 0 00-.434.434v9.11c0 .24.194.434.434.434h9.11c.24 0 .434-.194.434-.434v-9.11a.434.434 0 00-.434-.434z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),bo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.345 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59H7.59a.461.461 0 01-.286-.005l-4.351-1.585a.435.435 0 01-.287-.408V4.347a.424.424 0 01.321-.422l4.56-1.185v-.004a.37.37 0 01.217 0l4.58 1.211zM7.46 5.345v6.513",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M12.551 4.069L7.46 5.34 2.8 4.069",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Mo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.676 3.719h-8.02c-.806 0-1.459.653-1.459 1.458v5.833c0 .806.653 1.459 1.459 1.459h8.02c.806 0 1.459-.653 1.459-1.459V5.177c0-.805-.653-1.458-1.459-1.458z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M9.489 3.354a1.823 1.823 0 00-3.646 0v.365H9.49v-.365zM5.235 4.083v8.264M10.097 4.083v8.264",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),No=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M3.172 7.739v3.711l-.006-.005c0 .628.508 1.136 1.136 1.142h6.723a1.146 1.146 0 001.136-1.149V7.727",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M6.313 2.441a.863.863 0 01-.857.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.629-1.325h-.006a.278.278 0 01.44-.005c.308.382.525.833.628 1.319l.023.017zM11.18 2.441a.863.863 0 01-.856.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.628-1.325h-.005a.278.278 0 01.44-.005c.308.382.525.833.628 1.319l.022.017zM10.895 6.31H9.753V4.313a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.285.28l.012 2.01zM6.027 6.31H4.885V4.313a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.286.28l.011 2.01z",fill:"currentColor"}),p.createElement("path",{d:"M12.166 9.11c0 .821-.674 1.498-1.499 1.498A1.5 1.5 0 019.168 9.11c0 .822-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5c0 .822-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5V6.882a.566.566 0 01.565-.577h7.852-.005a.564.564 0 01.57.565l.012 2.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Co=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.227 6.227v-.1h-.78l-.024.016-.81.513-.047.03V7.533l.153-.095.616-.386V9.6H8.227V6.227z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2})))),Lo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Do=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.645 7.104c.002-.587-.512-1.022-1.228-1.022-.705 0-1.275.42-1.285 1.058l-.002.101h.862l.003-.096c.005-.176.167-.314.42-.314.119 0 .21.036.27.09a.29.29 0 01.094.224v.002c0 .097-.04.176-.11.233a.509.509 0 01-.322.098h-.405v.708h.405c.17 0 .297.042.38.105.08.06.121.144.12.243v.001c.001.1-.04.18-.112.24a.513.513 0 01-.326.1c-.278 0-.438-.142-.446-.306l-.005-.094H5.064l.002.102c.013.646.59 1.068 1.342 1.068.763 0 1.36-.426 1.359-1.064a.814.814 0 00-.216-.578.863.863 0 00-.315-.207.758.758 0 00.41-.692zm0 0s0 0 0 0h-.1.1s0 0 0 0zm2.643-.877v-.1h-.78l-.024.016-.81.513-.046.03V7.533l.153-.095.615-.386V9.6H10.288V6.227z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2}),p.createElement("path",{d:"M4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Po=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M6.8 9.455l-.073.145H7.666l.027-.055 1.359-2.7.01-.02v-.698H6.566V6.893h1.53L6.8 9.455z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2}),p.createElement("path",{d:"M4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Oo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("circle",{cx:4.166,cy:3.5,r:1.444,stroke:"currentColor"}),p.createElement("path",{d:"M12.61 3.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.889 0zM12.61 10.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.889 0zM5.61 10.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.888 0z",stroke:"currentColor"})))),jo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.419 3h-9.5a1 1 0 00-1 1v6a1 1 0 001 1h9.5a1 1 0 001-1V4a1 1 0 00-1-1zM1.916 5h11.5M11.916 7h-1.5M7.416 7h-4",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})))),_o=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.32 3H3.018a.98.98 0 00-.98.98v5.874c0 .54.44.98.98.98h9.302a.98.98 0 00.98-.98V3.98A.98.98 0 0012.32 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{fill:"currentColor",d:"M2.266 4.5h11V6h-11z"})))),To=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.666 2.031l2.494 6.86h.014a.678.678 0 00.623.424h4.763c.266 0 .505-.159.61-.41l1.434-3.981c.159-.345 0-.73-.332-.876a.604.604 0 00-.265-.066H3.442M9.632 11.318h.013c-.173-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.319-.345M6.314 11.318h.013c-.172-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.318-.345",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Bo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M3.463 4.6h-.005a.194.194 0 01.197.197.203.203 0 01-.405-.005.195.195 0 01.197-.203s0 0 0 0M10.266 7.4h-.005a.194.194 0 01.197.197c0 .107-.09.198-.203.198a.203.203 0 01-.202-.203.195.195 0 01.197-.203"}),p.createElement("path",{d:"M11.266 3h-8.8a.8.8 0 00-.8.8v4.8a.8.8 0 00.8.8h8.8a.8.8 0 00.8-.8V3.8a.8.8 0 00-.8-.8z"}),p.createElement("path",{d:"M6.866 4.6a1.6 1.6 0 100 3.2 1.6 1.6 0 000-3.2zM13.666 5.4v4.8c0 .437-.363.8-.8.8h-8.8"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),zo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.666 7.545l2.727 2.728L12.666 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Fo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.666 4.638l.983.983L6.269 3M2.666 10.638l.983.983L6.269 9M8.235 4h3.931M8.235 10h3.931",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),So=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M13.416 4.25l-5.5 5.5-5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ao=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.416 9.75l5.5-5.5 5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ho=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M5.095 2.714V1M7.666 2.714V1M10.237 2.714V1M5.095 13v-1.714M7.666 13v-1.714M10.237 13v-1.714M11.952 4.429h1.714M11.952 7h1.714M11.952 9.571h1.714M1.666 4.429H3.38M1.666 7H3.38M1.666 9.571H3.38M10.238 2.714H5.095c-.947 0-1.715.768-1.715 1.715V9.57c0 .947.768 1.715 1.715 1.715h5.143c.946 0 1.714-.768 1.714-1.715V4.43c0-.947-.768-1.715-1.714-1.715z"}),p.createElement("path",{d:"M8.695 5.4H6.723a.657.657 0 00-.657.657V8.03c0 .363.294.657.657.657h1.972a.657.657 0 00.657-.657V6.057a.657.657 0 00-.657-.657z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Vo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.541 12.25a5.375 5.375 0 100-10.75 5.375 5.375 0 000 10.75z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.541 4.304v2.571l2.805 2.57",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ro=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.666 6.214a.786.786 0 100 1.572.786.786 0 000-1.572zM7.666 6.214v-2.75M8.221 7.555l1.41 1.41",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Io=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 12.833a5.833 5.833 0 100-11.666 5.833 5.833 0 000 11.666zM5.333 9.333l4.666-4.667M10 9.333L5.332 4.666",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Wo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.881 10.107H8.334l-2.796 2.229h-.009a.23.23 0 01-.3-.034.227.227 0 01-.05-.141v-2.07H3.5a.839.839 0 01-.835-.844v0-5.843a.827.827 0 01.827-.843h8.347-.009a.825.825 0 01.835.826V9.23c0 .459-.376.835-.835.835h-.008l.058.042zM5.204 5.103h5.008M5.204 7.607h3.339",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Uo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{clipRule:"evenodd",d:"M.666 14l14-14-14 14z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{d:"M.666 0l14 14",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{d:"M.666 9.042h14M.666 5.031h14M.666 7h14",stroke:"#979797",strokeWidth:.036,strokeLinecap:"square"}),p.createElement("path",{d:"M9.708 14V0M5.624 14V0M7.666 14V0",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{clipRule:"evenodd",d:"M10.583 7a2.917 2.917 0 10-5.834 0 2.917 2.917 0 005.834 0z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{clipRule:"evenodd",d:"M7.666 13.416a6.417 6.417 0 110-12.833 6.417 6.417 0 010 12.833z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{clipRule:"evenodd",d:"M12.333 12.541H2.999a.878.878 0 01-.875-.875V2.333c0-.481.394-.875.875-.875h9.334c.481 0 .875.394.875.875v9.333a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{clipRule:"evenodd",d:"M11.458 13.416H3.874A.878.878 0 013 12.541V1.458c0-.481.394-.875.875-.875h7.584c.481 0 .875.394.875.875v11.083a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{clipRule:"evenodd",d:"M13.208 11.666H2.124a.878.878 0 01-.875-.875V3.208c0-.481.394-.875.875-.875h11.084c.481 0 .875.394.875.875v7.583a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),p.createElement("path",{d:"M7.616 12.7a5.75 5.75 0 100-11.5 5.75 5.75 0 000 11.5z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M6.366 5.7l3.695-1.522v0a.25.25 0 01.327.327L8.866 8.2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.866 8.2l-2.5-2.5-1.521 3.695v0a.25.25 0 00.326.326L8.866 8.2z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),qo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M8.836 7.002l1.747 1.749-1.75 1.75M5.916 8.75H3.583a1.166 1.166 0 01-1.167-1.167V2.917c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167V5.25"}),p.createElement("path",{d:"M11.75 12.25H7.082a1.166 1.166 0 01-1.167-1.167V6.417c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167v4.666c0 .645-.522 1.167-1.167 1.167zM5.916 8.75h4.667"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Yo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.916 10.375v2.25h-2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M12.916 12.625L10.391 10.1a1.126 1.126 0 00-1.118-.282l-2.857.763a1.124 1.124 0 01-1.086-.291L2.416 7.373M3.24 5.87a3.75 3.75 0 115.926 2.257",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.666 3.627H6.65a.671.671 0 00-.25 1.294l1.032.412a.671.671 0 01-.25 1.294H6.166M6.916 3.627v-.375M6.916 7.002v-.375",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ko=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M1.674 6.006v5.863M12.666 11.136a2.2 2.2 0 00-2.199-2.198H7.72a2.2 2.2 0 00-2.198-2.199H1.666v4.397h11zM5.521 8.938h2.748M11.572 1.625V1M12.51 1.625h-1.275a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525h-1.278M11.572 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Go=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 12a5 5 0 100-10 5 5 0 000 10zM4.131 10.535l7.07-7.07",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),$o=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M13.253 6.614L8.024 1.386a.545.545 0 00-.771 0L2.024 6.614a.545.545 0 000 .772l5.229 5.228a.546.546 0 00.771 0l5.229-5.228a.545.545 0 000-.772zM7.651 4.286v3.06",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.644 9.196a.127.127 0 00-.131.136c0 .07.06.13.136.13a.134.134 0 00.126-.141l-.006-.005c-.005-.077-.065-.137-.136-.137M7.651 9.195h-.005",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Jo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{d:"M7.666 13a6 6 0 100-12 6 6 0 000 12z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M9.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Zo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M5.745 8.245l1.912 1.915 1.912-1.915M7.666 10V4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Xo=Y((e=>p.createElement("svg",s({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),p.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M10 6L7.184 8.816v0a.26.26 0 01-.368 0L4 6"})))),Qo=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.88 6.88a.987.987 0 111.396 1.395l-3.312 3.31a.573.573 0 01-.405.168H8.403v-1.156c0-.152.06-.298.168-.406l3.31-3.312v0zM4.96 4.868h4.59M4.96 7.163H7.83M12.545 9.01l-1.4-1.4M11.845 4.868v-1.72c0-.635-.514-1.148-1.148-1.148H3.813c-.634 0-1.147.513-1.147 1.147v7.458c0 .634.513 1.147 1.147 1.147h2.295",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),el=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",fill:"currentColor"},p.createElement("path",{d:"M14.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM4.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM9.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),tl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.666 2.98h-10a.833.833 0 00-.833.833v6.666c0 .46.373.834.833.834h10c.46 0 .833-.374.833-.834V3.813a.833.833 0 00-.833-.834z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M13.311 3.285l-4.524 3.48a1.838 1.838 0 01-2.242 0l-4.524-3.48",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),rl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("rect",{x:2.666,y:2,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),nl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M8.5 9.98a1.557 1.557 0 112.55-1.67.39.39 0 00.64.133l1.215-1.215a.779.779 0 000-1.101L11.659 4.88a1.557 1.557 0 10-1.91-1.907L8.502 1.728a.779.779 0 00-1.101 0L6.273 2.856a.39.39 0 00.06.6 1.557 1.557 0 11-2.157 2.158.39.39 0 00-.6-.06L2.443 6.677a.779.779 0 000 1.1l4.404 4.405a.779.779 0 001.101 0l1.216-1.216a.39.39 0 00-.134-.638A1.54 1.54 0 018.5 9.98z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),al=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M5.613 12.108h-.007c2.813 1.135 6.017-.231 7.16-3.05a5.5 5.5 0 00-3.042-7.157A5.514 5.514 0 002.55 9.067"}),p.createElement("path",{d:"M9.198 8.186L9.2 5.48l-2.706.002M9.2 5.48l-5.416 5.416"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ol=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7.683 5.218a1.828 1.828 0 100 3.656 1.828 1.828 0 000-3.656v0z"}),p.createElement("path",{d:"M13.624 6.875c-.61-.69-3.04-3.228-5.943-3.228-2.909 0-5.337 2.533-5.943 3.223h-.005a.25.25 0 000 .34c.605.689 3.034 3.221 5.938 3.221 2.903 0 5.332-2.534 5.938-3.227h-.006a.268.268 0 000-.345l.021.016z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ll=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7.666.875a6.125 6.125 0 100 12.25 6.125 6.125 0 000-12.25v0z"}),p.createElement("path",{d:"M5.802 4.736h-.005c.069-.005.133.059.133.128a.14.14 0 01-.133.133c-.075 0-.134-.064-.139-.133a.132.132 0 01.128-.138M9.53 4.736h-.005a.132.132 0 00-.133.134c0 .069.058.133.133.127.07-.005.133-.064.128-.138a.135.135 0 00-.133-.133M4.204 8.864h6.924"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),sl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7.52.729a6.271 6.271 0 100 12.542A6.271 6.271 0 007.52.73v0z"}),p.createElement("path",{d:"M4.52 5.773h-.005c.071-.005.137.06.137.13 0 .072-.066.137-.137.137-.076 0-.136-.065-.141-.136a.135.135 0 01.13-.142M10.52 5.773h-.006a.135.135 0 00-.137.136c0 .071.06.137.137.131.07-.005.136-.065.13-.142a.138.138 0 00-.136-.136M5.066 10.817a2.45 2.45 0 114.902-.01"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),il=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M4.736 5.92h-.005c.069-.005.133.06.133.131a.14.14 0 01-.133.136c-.075 0-.133-.065-.139-.136a.134.134 0 01.128-.141M10.595 5.92h-.005a.133.133 0 00-.133.137c0 .07.059.135.133.13.07-.005.133-.065.128-.141a.137.137 0 00-.133-.136M4.47 9.046l-.005-.005c.735 1.799 2.76 2.652 4.527 1.902a3.51 3.51 0 001.864-1.902"}),p.createElement("path",{d:"M7.666.893c-.804 0-1.6.162-2.344.476a6.118 6.118 0 00-1.987 1.355 6.26 6.26 0 00-1.328 2.028 6.362 6.362 0 000 4.784 6.261 6.261 0 001.328 2.027 6.118 6.118 0 001.987 1.355 6.017 6.017 0 004.688 0 6.117 6.117 0 001.987-1.354 6.26 6.26 0 001.328-2.028 6.362 6.362 0 000-4.784 6.26 6.26 0 00-1.328-2.028 6.117 6.117 0 00-1.987-1.355A6.019 6.019 0 007.666.893v0z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),cl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M3 11.667V2.333M3 9.368l1.308-.403a3.986 3.986 0 013.262.415 3.988 3.988 0 003.185.44l1.24-.354a.467.467 0 00.338-.448V4.153a.468.468 0 00-.595-.449l-.983.281a3.989 3.989 0 01-3.185-.438 3.986 3.986 0 00-3.262-.415l-1.309.402",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),dl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M5.366 2.023v3.465a2.3 2.3 0 002.31 2.298 2.317 2.317 0 002.298-2.321V2M7.676 2.028V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ul=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M13.333 2.747v-.005a.38.38 0 00-.358-.403c-.01-.005-.02-.005-.025-.005H2.38a.374.374 0 00-.378.377v.02l-.005-.01c.005-.01 4.523 5.154 4.523 5.154v4.979l-.005-.005c0 .207.166.373.378.373a.406.406 0 00.237-.09l1.513-1.261v-.005a.37.37 0 00.13-.293V7.847s4.524-4.736 4.524-5.158l.035.058z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),pl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.611 6.988h-3.15l-.007-.001a.791.791 0 01-.788-.795v-.788a.78.78 0 01.78-.795h8.662-.008a.778.778 0 01.787.78v.787a.79.79 0 01-.787.787H8.95",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.974 6.988h2.756l-.347 4.78v-.008a.783.783 0 01-.787.724H4.973v0a.785.785 0 01-.787-.733l-.347-4.788h2.757M6.611 4.625V12.5M8.974 12.5V4.625M5.036 3.586c.473.472 2.757 1.031 2.757 1.031s-.56-2.283-1.04-2.756a1.22 1.22 0 00-1.724-.008A1.21 1.21 0 005.02 3.57l.015.016zM10.549 3.586c-.473.472-2.756 1.031-2.756 1.031s.55-2.283 1.031-2.756h-.008a1.21 1.21 0 011.717-.008 1.217 1.217 0 010 1.717l.016.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),hl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.491 3.297V2.273a.766.766 0 111.53-.01v1.023",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.027 6.368V3.297a.766.766 0 111.53-.01v1.535",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M9.563 7.136V4.832a.766.766 0 111.53-.01v5.119a2.56 2.56 0 01-2.56 2.559H6.825a2.574 2.574 0 01-2.165-1.193c-.886-1.392-1.976-3.675-1.976-3.675a.61.61 0 01.154-.855.607.607 0 01.742.031l1.356 1.587V3.276a.766.766 0 111.53-.01v3.071",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ml=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{clipRule:"evenodd",d:"M.666 15l14-14-14 14v0z",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M.666 1l14 14",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M.666 10.115h14M.666 6.031h14M.666 7.781h14",stroke:"#979797",strokeWidth:.05,strokeLinecap:"square"}),p.createElement("path",{d:"M9.708 15V1M5.624 15V1M7.666 15V1",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{clipRule:"evenodd",d:"M10.583 8a2.917 2.917 0 10-5.834 0 2.917 2.917 0 005.834 0v0z",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M7.666 14.417a6.417 6.417 0 110-12.834 6.417 6.417 0 010 12.834",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M12.333 13.542H2.999a.878.878 0 01-.875-.875V3.333c0-.48.394-.875.875-.875h9.334c.48 0 .875.394.875.875v9.334a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M11.458 14.417H3.874A.878.878 0 013 13.542V2.458c0-.48.394-.875.875-.875h7.584c.48 0 .875.394.875.875v11.084a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M13.208 12.667H2.124a.878.878 0 01-.875-.875V4.208c0-.48.394-.875.875-.875h11.084c.48 0 .875.394.875.875v7.584a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),p.createElement("path",{d:"M2.85 12.367L12.257 3.3M6.145 11.328c.524.163 1.07.244 1.62.24 2.186.036 4.404-1.501 5.773-3.007a.887.887 0 000-1.188 10.968 10.968 0 00-1.64-1.47M9.052 4.517a5.093 5.093 0 00-1.287-.15c-2.15-.036-4.373 1.468-5.771 3.005a.887.887 0 000 1.188c.425.465.889.893 1.386 1.28M5.766 7.967a2 2 0 012-2M9.769 7.966a2 2 0 01-2 2.001",stroke:"currentColor",strokeWidth:1.015,strokeLinecap:"round",strokeLinejoin:"round"})))),fl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M3.128 6.352v5.834M12.204 6.352v5.834M8.962 12.185V9.593a1.296 1.296 0 00-2.592 0v2.592M1.833 12.186h11.666M3.175 6.352c-.99-.007-1.636-.988-1.207-1.833l1-1.97c.229-.449.708-.734 1.234-.734h6.928c.526 0 1.005.285 1.234.734l1 1.97c.43.845-.216 1.826-1.206 1.833-.827 0-1.497-.565-1.497-1.262v-.028c0 .712-.67 1.29-1.497 1.29-.827 0-1.497-.578-1.497-1.29 0 .712-.67 1.29-1.497 1.29-.826 0-1.496-.578-1.496-1.29v.028c-.002.697-.672 1.262-1.5 1.262v0z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),gl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M12.231 2h-9.13a.435.435 0 00-.435.435v9.13c0 .24.195.435.435.435h9.13c.24 0 .435-.195.435-.435v-9.13A.435.435 0 0012.231 2zM2.666 10.26h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M2.666 9.665s1.083-2.707 2.436-2.707c1.354 0 2.437 1.625 2.437 1.625l1.63-2.8h-.006a.903.903 0 011.24-.324c.152.086.27.216.352.373l1.911 3.823",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),vl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.667 7.068S5.201 9.33 3.93 9.33a2.263 2.263 0 010-4.526c1.272 0 3.738 2.263 3.738 2.263zM7.667 7.068s2.467 2.263 3.736 2.263a2.263 2.263 0 000-4.526c-1.27 0-3.736 2.263-3.736 2.263z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),yl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.716 1.3a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M9.023 9.666h-.789a.525.525 0 01-.523-.528v0V5.74a.262.262 0 00-.262-.261h-.784M7.583 4.175h-.005a.13.13 0 00-.131.13c0 .069.057.131.13.126.069-.005.131-.063.126-.136a.133.133 0 00-.13-.13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),wl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.79 12.022a.479.479 0 01-.477.478H4.144a.48.48 0 01-.478-.482v0V1.986A.474.474 0 014.14 1.5h4.58-.004a.461.461 0 01.339.139l2.584 2.589-.005-.005c.086.086.138.21.138.334l.02 7.465z",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.925 1.558v2.345c0 .262.21.473.478.473h2.345",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.573 5.625V5M8.51 5.625H7.235a.839.839 0 00-.844.838.84.84 0 00.525.774l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H6.603M7.573 10v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),kl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M10.886 7.317L9.695 6.125l1.107-1.109 1.187 1.186a.789.789 0 001.108-.02.79.79 0 000-1.093l-1.192-1.191.552-.553a.795.795 0 000-1.113.79.79 0 00-1.113-.005L5.718 7.85v0a2.745 2.745 0 00-3.721 1.107 2.74 2.74 0 104.823 2.602 2.742 2.742 0 00-.005-2.612L8.561 7.2l1.186 1.192c.303.303.8.303 1.108-.006a.79.79 0 00-.005-1.113l.036.043z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.435 9.297a.98.98 0 100 1.96.98.98 0 000-1.96z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),El=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M3.534 10.153L8.069 2.95v-.006A.667.667 0 019.13 2.94l4.535 7.203-10.132.011z"}),p.createElement("path",{d:"M3.534 10.153H1.666l1.868-2.935h-.006a.71.71 0 01.534-.272l-.006-.005c.208.005.4.101.534.261l.347.694M5.91 6.377l1.25 1.057-.005-.005a.534.534 0 00.72-.032l.342-.347h-.005a.527.527 0 01.752-.006l.342.342a.533.533 0 00.72.027l1.227-1.04"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),xl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.43 9.467L5.397 11.5h-.005a1.92 1.92 0 01-2.711-.005l-.452-.451a1.916 1.916 0 01-.005-2.71l2.932-2.936v-.005a1.909 1.909 0 012.707 0l.447.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M6.978 3.597l2.029-2.031h-.005a1.91 1.91 0 012.706-.008c.75.745 0 0 0 0l.447.447L12.15 2a1.918 1.918 0 010 2.706L9.213 7.638v-.004a1.924 1.924 0 01-2.71 0l-.006-.005-.451-.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"})))),bl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{clipRule:"evenodd",d:"M11.441 6.536v0a.905.905 0 00-.9-.911h-5.85 0c-.497 0-.9.408-.9.91v4.554h0c0 .503.403.911.9.911h5.85v0c.497 0 .9-.408.9-.91V6.535zM5.066 4.138h0c0-1.291 1.142-2.338 2.55-2.338s2.55 1.047 2.55 2.338v1.487h-5.1V4.138z",stroke:"currentColor",strokeWidth:1.02,strokeLinecap:"round",strokeLinejoin:"round"})))),Ml=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.281 6.02l1.426 1.442M1.666 10.697l6.038-6.112h0a.664.664 0 01.946 0l.473.48v0a.683.683 0 010 .957L3.217 12M4.3 2.355v1.354M4.97 3.032H3.63M7.647 1v1.355M8.316 1.677H6.977M11.662 3.37v2.033M12.666 4.387h-2.008",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Nl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.666 4h10M2.666 7h10M2.666 10h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Cl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.666 4.638l.983.983L6.269 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ll=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.696 3h-2.15v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02h-2.15M4.196 11v1.5M5.196 1.5V3M10.583 9.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM10.583 5.167v3.5M8.833 6.917h3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Dl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:15,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.674 9.972A.972.972 0 107.647 9a.972.972 0 11.972-.972M7.647 6.083v.973M7.647 10.944v.973",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M2.51 8.72a5.28 5.28 0 105.281-5.281h-.406",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M9.113 1.458l-1.98 1.98 1.98 1.98",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Pl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M9.696 3h-2.15v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02h-2.15M7.196 11v1.5M8.196 1.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ol=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M4.666 12V2M10.666 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),jl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.892 2.773a1.509 1.509 0 00-2.144.015L3.734 8.802l-.735 2.864 2.864-.735 6.015-6.014a1.509 1.509 0 00.014-2.144v0zM9.577 2.96l2.129 2.13M3.734 8.802l2.132 2.128",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),_l=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M9.652 11.573l.006.004a2.705 2.705 0 003.366-.37l.378-.378a.902.902 0 000-1.275L11.808 7.96a.903.903 0 00-1.276 0v0a.9.9 0 01-1.275 0L6.707 5.41a.902.902 0 010-1.276v0a.9.9 0 000-1.275L5.111 1.264a.903.903 0 00-1.275 0l-.379.378a2.706 2.706 0 00-.37 3.365l.005.006a24.412 24.412 0 006.56 6.56v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Tl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M3.657 5.86v-.1a4.01 4.01 0 118.018 0v.1c0 2.018-2.556 5.058-3.586 6.2a.568.568 0 01-.846 0c-1.03-1.143-3.586-4.182-3.586-6.2v0z"}),p.createElement("path",{d:"M6.5 5.807a1.166 1.166 0 102.333 0v-.022a1.166 1.166 0 10-2.334 0"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Bl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),zl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 2v10M12.666 7h-10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Fl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M6.517 11.34H8.8M6.516 9.627h2.285M4.333 9.348H2.762A1.047 1.047 0 011.72 8.303V5.168c0-.579.464-1.043 1.043-1.043h9.913c.574 0 1.038.464 1.038 1.043v3.13h-.005a1.047 1.047 0 01-1.049 1.039h-1.565M4.332 3.573V1h5.002c.135 0 .266.052.365.151l1.257 1.26-.005-.005c.094.093.151.23.151.365v.802"}),p.createElement("path",{d:"M11.115 12.478a.523.523 0 01-.522.522H4.85a.524.524 0 01-.522-.527v0-4.696h6.783l.005 4.701z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Sl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.796 1.875h-8.26a.87.87 0 00-.87.87v8.26c0 .48.39.87.87.87h8.26c.48 0 .87-.39.87-.87v-8.26a.87.87 0 00-.87-.87z",stroke:"currentColor",strokeWidth:.976,strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M6.623 5.287l.652.652L9.014 4.2M6.623 8.639l.652.652 1.739-1.74",stroke:"currentColor",strokeWidth:.976,strokeLinecap:"round",strokeLinejoin:"round"})))),Al=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.858 11.344c0 .15-.128.279-.279.279a.283.283 0 01-.184-.073l-1.494-1.283-2.064 1.545v-.005a.285.285 0 01-.334 0l-2.064-1.55-1.494 1.277v-.006a.287.287 0 01-.469-.218V2.063a.552.552 0 01.552-.563h7.25-.005a.551.551 0 01.557.552l.028 9.292zM4.931 4.236h2.736M4.931 6.06h4.56M4.931 7.884h4.56",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})))),Hl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.377 4.083a4.813 4.813 0 00-8.523 3.061v1.314M4.166 10.446a4.813 4.813 0 008.313-3.302V6.27",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M1.104 6.707l1.75 1.75 1.75-1.75M14.229 8.02l-1.75-1.75-1.75 1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Vl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M6.777 4.262h3.67M4.942 7.014h5.504M4.942 9.766h5.504M3.107 2.427a.909.909 0 01.908-.927h7.34-.01a.906.906 0 01.918.908v9.175a.92.92 0 01-.918.917H3.997a.922.922 0 01-.918-.927v0l.028-9.146z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Rl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M9.593 1.313L2.479 8.427c-.173.172-.125.5.106.731l2.423 2.423c.231.231.559.279.732.106l7.114-7.114c.172-.172.125-.5-.107-.731l-2.422-2.423c-.232-.231-.56-.279-.732-.106zM4.708 6.774L6.19 8.256M5.9 5.588l1.037 1.038M7.221 4.26l1.482 1.482M8.407 3.075l1.191 1.18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Il=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M7.666 4.083H3.583A1.17 1.17 0 002.416 5.25v5.833a1.17 1.17 0 001.167 1.167h5.833a1.17 1.17 0 001.167-1.167V7"}),p.createElement("path",{d:"M10.291 7a2.614 2.614 0 01-2.625-2.625 2.614 2.614 0 012.625-2.625 2.614 2.614 0 012.625 2.625A2.614 2.614 0 0110.291 7z"}),p.createElement("path",{d:"M9.416 4.142h.058c.642 0 1.109.525 1.109 1.108M13.5 7.583l-1.342-1.341"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Wl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M2.348 6.815a.707.707 0 01-.033-1.35l9.55-3.114a.358.358 0 01.45.448L9.205 12.35a.707.707 0 01-1.352-.033L6.783 7.879 2.348 6.815zM12.228 2.437L6.783 7.879",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ul=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M2.674 4v5.863M13.666 9.13a2.2 2.2 0 00-2.199-2.199H8.72a2.2 2.2 0 00-2.198-2.198H2.666V9.13h11zM6.521 6.931h2.748"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ql=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.666 7.233V1M7.666 12v-1.833M7.666 7.233a1.467 1.467 0 100 2.934 1.467 1.467 0 000-2.934zM3.633 6.5V12M3.633 1v2.567M3.633 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0zM11.7 6.5V12M11.7 1v2.567M11.7 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Yl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M12.3 8.902a1.961 1.961 0 11-2.773 2.774A1.961 1.961 0 0112.3 8.901M13.064 4.172l-1.69 1.691a.653.653 0 01-.926 0l-1.69-1.69a.654.654 0 010-.925l1.69-1.69a.653.653 0 01.925 0l1.69 1.69a.655.655 0 010 .924v0zM3.185 5.56h2.39a.654.654 0 00.654-.655v-2.39a.654.654 0 00-.654-.654h-2.39a.654.654 0 00-.654.654v2.39c0 .361.293.654.654.654v0zM3.795 8.84l-1.449 2.32a.69.69 0 00.585 1.055h2.898a.69.69 0 00.585-1.055l-1.45-2.319a.69.69 0 00-1.169 0v0z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Kl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M7.5 8.044v-6.04M5.409 4.09L7.499 2l2.09 2.09M11.216 7.043v4.324c0 .255-.21.464-.465.464H4.248a.463.463 0 01-.465-.464V7.043",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Gl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M13.65 5.302L11.609 3.34l-.005-.005a2.624 2.624 0 00-1.816-.733H5.607c-.68 0-1.33.262-1.816.733l-2.04 1.962h-.006a.257.257 0 00-.005.366l1.214 1.214-.005-.005c.094.094.246.1.35.016l1.492-1.162v6.018c0 .14.115.256.261.256h5.233-.005c.141 0 .261-.12.261-.262V5.721l1.492 1.155c.1.084.256.079.35-.02l1.214-1.22h-.005c.1-.105.1-.272-.005-.372l-.005-.005.068.043zM6.14 2.612a1.567 1.567 0 103.134-.01"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),$l=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.166 7.5L9.412 9.003A5 5 0 007.666 12.8v.125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.166 7.5L5.92 9.003A5 5 0 017.666 12.8v.125M3.566 9V7M5.666 7h-2M11.766 9V7M9.666 7h2M7.573 1.625V1M8.51 1.625H7.235a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H6.603M7.573 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Jl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{d:"M11 12H4.332c-.921 0-1.667-.746-1.667-1.667V3.667C2.666 2.746 3.412 2 4.333 2h6.666c.92 0 1.667.746 1.667 1.667v6.666c0 .92-.746 1.667-1.667 1.667z",stroke:"currentColor"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Zl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M11.518 8.4H3.915a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.602a.248.248 0 00.249-.248V8.649a.249.249 0 00-.248-.249zM12.418 5.7H4.815a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.603a.249.249 0 00.248-.248V5.949a.249.249 0 00-.248-.249zM11.518 3H3.915a.249.249 0 00-.249.249V5.45c0 .138.111.249.249.249h7.602a.249.249 0 00.249-.249V3.25A.249.249 0 0011.518 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Xl=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{d:"M8.055 1.239L9.84 4.774l3.434.34a.437.437 0 01.367.283.427.427 0 01-.102.45l-2.83 2.8 1.049 3.807a.428.428 0 01-.144.446.438.438 0 01-.47.053L7.666 11.23l-3.478 1.725a.438.438 0 01-.608-.255.426.426 0 01-.005-.244l1.048-3.808-2.83-2.804a.429.429 0 01.265-.732l3.434-.34 1.785-3.535A.432.432 0 017.667 1a.438.438 0 01.388.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Ql=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{d:"M12.36 4.31a1.354 1.354 0 11-1.916-1.915L9.327 1.278a.451.451 0 00-.639 0L1.985 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 111.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L12.36 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),es=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},p.createElement("path",{d:"M2.495 3.324h10.321M8.761 1.85H6.55v0a.737.737 0 00-.738.737v.737H9.5v-.737 0a.737.737 0 00-.738-.737v0zM6.55 9.591V5.905M8.761 9.591V5.905M11.03 11.495v0a.737.737 0 01-.735.677H5.017v0a.737.737 0 01-.735-.677L3.6 3.325h8.11l-.68 8.17z"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(1.757 1.113)",d:"M0 0h11.796v11.796H0z"})))))),ts=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M5.722 3.5L4.166 1.943M4.944 5.055h-.778M7.277 2.722v-.778M8.833 4.277h2.333a2.333 2.333 0 110 4.667H8.833M3.891 6.697L2.516 8.072a2.333 2.333 0 003.3 3.3L7.19 9.996",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),rs=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M10.583 12.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM10.583 8.167v3.5M8.833 9.917h3.5M1.833 9.333c0-.578.138-1.148.4-1.658.263-.51.642-.943 1.105-1.262a3.224 3.224 0 013.162-.3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M5.333 5.833a2.333 2.333 0 100-4.666 2.333 2.333 0 000 4.666z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ns=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M4.685 2.591h0a5.371 5.371 0 005.989 1.204",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.47 7.465A3.233 3.233 0 107.47 1a3.233 3.233 0 000 6.465zM12.276 11.649a5.315 5.315 0 00-9.61 0",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),as=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M3.166 7.642a.6.6 0 01.933-.499L7.333 9.3A.6.6 0 008 9.3l3.234-2.157a.6.6 0 01.933.5V9.93a.6.6 0 01-.267.5l-3.9 2.599a.6.6 0 01-.666 0l-3.9-2.602a.6.6 0 01-.267-.5V7.642zM7.949 1.172L8.566 2.5h1.2a.293.293 0 01.207.513L8.93 4.04l.577 1.324a.314.314 0 01-.448.393l-1.394-.784-1.394.784a.314.314 0 01-.448-.393l.577-1.324L5.36 3.014a.293.293 0 01.206-.514h1.2l.617-1.328a.318.318 0 01.566 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),os=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("g",{clipPath:"url(#prefix__clip0)"},p.createElement("path",{d:"M12.36 4.31a1.354 1.354 0 11-1.916-1.915L9.327 1.278a.451.451 0 00-.639 0L1.985 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 111.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L12.36 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.71 3.84l-.953.953 1.65 2.994-.034.034-2.996-1.648-.951.95 4.38 2.112L9.82 8.22 7.71 3.84z",fill:"currentColor"})),p.createElement("defs",null,p.createElement("clipPath",{id:"prefix__clip0"},p.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ls=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("rect",{x:2.666,y:2,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.666 3.333V4l.333.333.167.167",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M4.666 9.333V10l.333.333.167.167M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ss=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{d:"M13.345 6.857a5.81 5.81 0 01-5.734 5.823h-.005a5.648 5.648 0 01-5.73-5.562c-.005-.026-.005-.052-.005-.073l-.005-.005a5.812 5.812 0 015.73-5.834V1.2a5.639 5.639 0 015.723 5.557v.068l.026.031zM7.616 7.5V4.357",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M7.611 9.042v0a.128.128 0 00-.13.124c0 .068.057.125.13.125v0a.136.136 0 00.125-.136l-.005-.005-.005-.005c-.005-.073-.063-.13-.13-.13H7.59",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),is=Y((e=>p.createElement("svg",s({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),p.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M3.166 11h9M11.697 4.746l-5.709 5.708v0a.379.379 0 01-.193.104l-2.176.435v0a.38.38 0 01-.446-.447l.435-2.174v0a.383.383 0 01.104-.194L9.421 2.47v0a1.605 1.605 0 012.269 0l.007.007v0a1.606 1.606 0 010 2.27v0z"}))));export{po as AddSquareIcon,ee as Alert,ho as AnnounceIcon,mo as ArchiveIcon,fo as ArrowCcwIcon,go as ArrowRightIcon,vo as ArrowTopRightIcon,yo as AtIcon,oe as Avatar,U as Badge,wo as BalloonIcon,ko as BankCheckIcon,io as BaseChartOptions,Eo as BellIcon,xo as BookmarkIcon,bo as BoxIcon,bt as Breadcrumb,Mo as BriefcaseIcon,A as Button,Ne as ButtonGroup,No as CakeIcon,Co as CalendarDayIcon,Lo as CalendarIcon,Do as CalendarMonthIcon,Po as CalendarWeekIcon,Oo as CapacityIcon,jo as CardAltIcon,_o as CardIcon,To as CartIcon,Bo as CashIcon,zo as CheckIcon,Ut as Checkbox,Fo as ChecklistIcon,So as ChevronDownIcon,or as ChevronLeftIcon,ne as ChevronRightIcon,Ao as ChevronUpIcon,Ho as ChipIcon,Vo as ClockAltIcon,Ro as ClockIcon,Io as CloseCircleIcon,K as CloseIcon,Wo as CommentIcon,Uo as CompassIcon,qo as CopyIcon,re as Counter,$a as Currency,cr as DatePicker,Aa as DatePickerInput,Yo as DecreaseIcon,Ko as DepositIcon,Go as DisabledIcon,$o as DisputeIcon,X as Dot,Jo as DotCircleIcon,Xo as DownArrowIcon,Zo as DownloadIcon,Xt as Drawer,Qo as EditIcon,el as EllipsisIcon,tl as EmailIcon,rl as EmptyChecklistIcon,nl as EquipmentIcon,al as ExportIcon,ol as EyeIcon,ll as FaceNeutralIcon,sl as FaceSadIcon,il as FaceSmileIcon,cl as FlagIcon,dl as ForkIcon,Mt as FormGroup,ul as FunnelIcon,pl as GiftIcon,hl as HandIcon,Yt as HeaderToolbar,ml as HiddenIcon,co as HistogramOptions,fl as HomeIcon,gl as ImageIcon,vl as InfinityIcon,yl as InfoCircleIcon,Lt as Input,wl as InvoiceIcon,ft as Key,kl as KeyIcon,qt as Label,El as LandscapeIcon,xl as LinkIcon,bl as LockIcon,er as Login,De as Logo,Ml as MagicIcon,Nl as MenuIcon,Cl as MixedChecklistIcon,Ee as Modal,Ll as MoneyAddIcon,Dl as MoneyBackIcon,Pl as MoneyIcon,eo as Number,Ol as PauseIcon,jl as PenIcon,Xa as Phone,_l as PhoneIcon,uo as PieOptions,Tl as PinIcon,Bl as PipeIcon,zl as PlusIcon,fe as Popover,ve as PopoverList,Fl as PrintIcon,Sl as QuestionnaireIcon,Al as ReceiptIcon,Hl as RefreshIcon,Vl as RosterIcon,Rl as RulerIcon,xt as Search,Il as SearchAltIcon,mt as SearchIcon,Pt as Select,Wl as SendIcon,Ul as ServiceIcon,ql as SettingsIcon,Yl as ShapesIcon,Kl as ShareIcon,Gl as ShirtIcon,pe as Sidebar,Zt as Skeleton,kt as Spinner,$l as SplitPaymentIcon,Jl as SquareIcon,Zl as StackIcon,Xl as StarIcon,jt as Switch,be as Table,Kt as Tabs,J as Tag,Dt as Textarea,Ql as TicketIcon,he as Tooltip,es as TrashIcon,ts as UnlinkIcon,rs as UserAddIcon,ns as UserIcon,as as VeteranIcon,os as VoucherIcon,ls as WaitlistIcon,ss as WarningIcon,is as WriteIcon,qa as almostZero,ao as flash,Wa as getSymbol,ht as isOSX,Ia as isZeroDecimal,Ya as numberFormat,Ka as roundNumber,oo as theme};
@@ -1 +1 @@
1
- var __defProp=Object.defineProperty,__defProps=Object.defineProperties,__getOwnPropDescs=Object.getOwnPropertyDescriptors,__getOwnPropSymbols=Object.getOwnPropertySymbols,__hasOwnProp=Object.prototype.hasOwnProperty,__propIsEnum=Object.prototype.propertyIsEnumerable,__defNormalProp=(e,t,a)=>t in e?__defProp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:a}):e[t]=a,__spreadValues=(e,t)=>{for(var a in t||(t={}))__hasOwnProp.call(t,a)&&__defNormalProp(e,a,t[a]);if(__getOwnPropSymbols)for(var a of __getOwnPropSymbols(t))__propIsEnum.call(t,a)&&__defNormalProp(e,a,t[a]);return e},__spreadProps=(e,t)=>__defProps(e,__getOwnPropDescs(t)),__objRest=(e,t)=>{var a={};for(var r in e)__hasOwnProp.call(e,r)&&t.indexOf(r)<0&&(a[r]=e[r]);if(null!=e&&__getOwnPropSymbols)for(var r of __getOwnPropSymbols(e))t.indexOf(r)<0&&__propIsEnum.call(e,r)&&(a[r]=e[r]);return a};!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("clsx"),require("prop-types"),require("react"),require("@tippyjs/react"),require("tippy.js"),require("@headlessui/react"),require("downshift"),require("react-hotkeys-hook"),require("get-user-locale"),require("mathjs"),require("google-libphonenumber")):"function"==typeof define&&define.amd?define(["exports","clsx","prop-types","react","@tippyjs/react","tippy.js","@headlessui/react","downshift","react-hotkeys-hook","get-user-locale","mathjs","google-libphonenumber"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).XolaUIKit={},e.clsx,e.PropTypes,e.React,e.Tippy,e.tippy_js,e.react,e.downshift,e.reactHotkeysHook,e.getUserLocale,e.mathjs,e.phoneLib)}(this,(function(e,t,a,r,l,n,o,s,d,i,c,u){"use strict";function f(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var m=f(t),p=f(a),h=f(r),g=f(l),w=f(i),v=f(u);const k={primary:"bg-primary hover:bg-primary-dark disabled:bg-primary border-transparent text-white",secondary:"bg-secondary hover:bg-secondary-dark disabled:bg-secondary border-transparent text-white",success:"bg-success hover:bg-success-dark disabled:bg-success border-transparent text-white",warning:"bg-warning hover:bg-warning-dark disabled:bg-warning border-transparent text-white",danger:"bg-danger hover:bg-danger-dark disabled:bg-danger border-transparent text-white",outline:"bg-white border-secondary-dark hover:border-black disabled:border-secondary-dark text-black",link:"border-transparent hover:underline"},E={small:"px-3 py-1.5 text-sm",medium:"px-4 py-2 text-base",large:"px-5 py-2.5 text-lg"},_="transition-colors border focus:ring disabled:opacity-60 disabled:cursor-default",x=e=>{var t=e,{as:a="button",className:r,color:l="primary",size:n="medium",icon:o,iconPlacement:s="left",children:d}=t,i=__objRest(t,["as","className","color","size","icon","iconPlacement","children"]);return h.default.createElement(a,__spreadValues({className:m.default(r,_,"inline-flex items-center font-semibold rounded-md",k[l],E[n])},i),o&&"left"===s?h.default.createElement("span",{className:"flex-shrink-0 mr-2"},o):null,d,o&&"right"===s?h.default.createElement("span",{className:"flex-shrink-0 ml-2"},o):null)};x.propTypes={as:p.default.oneOfType([p.default.string,p.default.elementType]),className:p.default.string,color:p.default.oneOf(Object.keys(k)),size:p.default.oneOf(Object.keys(E)),icon:p.default.element,iconPlacement:p.default.oneOf(["left","right"]),children:p.default.node.isRequired};const y={small:"p-1.5",medium:"p-2",large:"p-2.5"},b={small:"h-3 w-3",medium:"h-4 w-4",large:"h-5 w-5"},L=e=>{var t=e,{className:a,as:l="button",color:n="primary",size:o="medium",children:s}=t,d=__objRest(t,["className","as","color","size","children"]);return h.default.createElement(l,__spreadValues({className:m.default(a,_,"rounded",k[n],y[o])},d),r.cloneElement(s,{className:b[o]}))};L.displayName="Button.Icon",L.propTypes={as:p.default.oneOfType([p.default.string,p.default.elementType]),className:p.default.string,color:p.default.oneOf(Object.keys(k)),size:p.default.oneOf(Object.keys(E)),children:p.default.node.isRequired},x.Icon=L;const M={primary:"bg-primary-lighter text-primary-dark",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-success-dark",warning:"bg-warning-lighter text-warning-dark",danger:"bg-danger-lighter text-danger-dark",caution:"bg-caution-lighter text-caution-dark"},C={small:"text-sm px-2 py-0.75 leading-p3",large:"text-base px-3 py-1.5 leading-p1"},N=e=>{var t=e,{className:a,color:l="primary",size:n="small",icon:o,children:s}=t,d=__objRest(t,["className","color","size","icon","children"]);return h.default.createElement("span",__spreadValues({className:m.default("badge inline-flex items-center rounded-full text-center whitespace-nowrap",M[l],C[n],a)},d),o?r.cloneElement(o,{className:"mr-1 w-[1em] h-[1em]"}):null,s)};N.propTypes={className:p.default.string,color:p.default.oneOf(Object.keys(M)),size:p.default.oneOf(Object.keys(C)),icon:p.default.element,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const j=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#CloseIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M10.536 3.465l-7.072 7.07M10.536 10.536L3.464 3.465"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"CloseIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),V={primary:"bg-primary-lighter text-black",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-black",warning:"bg-warning-lighter text-black",danger:"bg-danger-lighter text-black",caution:"bg-caution-lighter text-black"},z=e=>{var t=e,{className:a,shouldClose:r=!1,color:l="primary",children:n}=t,o=__objRest(t,["className","shouldClose","color","children"]);return h.default.createElement("div",__spreadValues({className:m.default("flex rounded text-base px-3 py-3",V[l],a)},o),h.default.createElement("span",{className:"w-full"},n),r&&h.default.createElement("span",{className:"flex pt-1 cursor-pointer group items-top h-w-screen"},h.default.createElement(j,{className:"inline group-hover:text-gray-dark"})))};z.propTypes={className:p.default.string,shouldClose:p.default.bool,color:p.default.oneOf(Object.keys(V)),children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const I=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M12.75 4.25l-5.5 5.5-5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),T=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M4.5 1.5L10 7l-5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=e=>h.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"192",height:"192",fill:"none",viewBox:"0 0 192 192"},e),h.default.createElement("path",{fill:"#1B5EA8",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),h.default.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),h.default.createElement("path",{fill:"#fff",d:"M25 105.194s6.998-2.181 7.82-2.29c.817-.104 1.742 0 1.742 0s1.033-1.34 1.346-1.241c.298.104 1.537.524 1.747 0 .196-.524 1.028-1.246 1.434-1.35.416-.113.108-1.038.617-1.458.514-.416 3.905-2.18 4.624-3.011.73-.83 3.29-4.673 3.7-4.673.421 0 1.239-.623 1.547-1.142.298-.524 3.078-3.852 3.7-4.573.626-.727 1.957-1.77 1.957-1.77s.103-2.18.416-2.591c.304-.42 1.434-1.766 1.948-2.388.519-.623 2.369-2.606 2.78-2.492.41.103 1.737 0 1.85-.416.107-.42-.21-1.77.514-1.978.714-.207 1.85-.311 1.85-.311s1.639-5.197 2.368-5.503c.72-.322 1.845-.628 1.845-.628s2.158-1.869 2.883-1.77c.724.109 3.083-.203 3.083-.203s2.158-2.393 2.57-3.426c.415-1.043 1.13-1.666 1.751-1.775.617-.1-.313-.613.617-1.241.92-.628 4.732-2.492 5.442-3.224.72-.717 1.86-2.804 1.86-2.804s-.524-2.59.308-3.322c.817-.727 3.9-1.765 5.144-2.393 1.228-.618 4.008-2.591 4.512-3.526.519-.934 1.865-2.496 2.158-2.595.313-.104 2.065-2.398 2.467-2.804.416-.42 3.098-1.463 3.611-1.775.509-.306 2.77-.306 3.284-.415.519-.1.925-.83 2.261-1.038 1.341-.208 5.863.207 6.172.103.313-.103.925-.94 1.639-.618.734.307 1.551 2.28 1.963 2.487.411.213 1.84.633 2.872 1.355 1.023.727 2.472 2.907 3.7 2.803 1.243-.098 1.953 1.77 2.579 2.596.617.836 2.775 3.12 2.672 3.64-.102.524-.724 1.868-.102 2.912.616 1.033 1.336 2.902 1.947 3.317.617.42 1.953 2.601 1.953 3.432 0 .825 1.033 3.11 2.07 3.945 1.013.83 2.462 5.508 3.587 6.967 1.126 1.444 4.219 9.137 5.046 10.284.822 1.137.822.722 1.85 1.038 1.028.302 4.312 2.384 5.251 3.11.92.732 4.204 6.547 4.924 7.59.729 1.043 4.008 6.645 4.634 7.788.617 1.142 1.953 5.409 2.775 5.508.817.103 2.256 4.464 3.073 5.087.832.628 4.126 5.405 4.846 5.924.709.519 3.288 6.754 3.694 7.476.412.731-6.495 4.797-5.575 5 .925.203-3.586 1.765-2.965 1.978.622.203-5.539 2.808-3.073 3.955 2.472 1.138-5.708 7.911-5.708 7.911s-7.437 8.02-6.625 7.911c.822-.103-7.717 9.271-7.101 9.889.617.628-12.642 5.414-11.722 5.933.93.525-15.661 5.934-15.661 5.934l-20.338 3.955-60.044-23.733L25 105.194z"}),h.default.createElement("path",{fill:"url(#paint0_linear)",d:"M131.43 57.726c-.524.509-1.229 1.755-1.229 2.482 0 .726.299 1.873.509 2.388.196.519.313 2.497.313 2.497s-1.145-.727-1.654-1.355c-.509-.623-.406-1.963-.509-2.492-.108-.52-1.341.529-2.06.623-.362.054-.646-.49-.891-1.033-.245-.544-.45-1.088-.656-1.039-.406.109-1.639.732-2.877 1.874-1.229 1.132-.915 1.553-1.542 1.869-.612.307-.915.514-1.747-.104-.436-.326-.553-.054-.71.218-.137.247-.298.494-.739.296-.455-.202-.21.352.079.9.303.564.655 1.133.342.866-.607-.515-.607 1.142-.21 1.765.416.628 1.135 1.874 1.649 2.907.524 1.043 3.186 6.032 2.369 5.824-.822-.212-1.752-2.492-2.065-3.426-.304-.934-1.85-2.398-2.164-2.398-.293 0-1.845-.109-2.256-.307-.401-.207-3.284-.939-4.933-.83-1.644.104-2.06-1.454-2.877-1.666-.828-.208-3.5-1.039-4.214-1.138-.72-.103 1.639 2.389 2.364 2.596.719.208 1.125.831.102 1.236-1.027.426-2.775-1.137-3.284-1.137-.523 0-1.443 1.454-.822 1.874.607.415 3.181 1.973 3.705 2.393.499.415.098 2.175-.426 1.968-.504-.213-3.396-.213-4.625.109-1.238.311-3.185-1.36-4.106-2.077-.93-.727-1.854-.213-2.27.312-.411.509-1.752 2.491-2.57 3.317-.817.83-3.905.83-4.722 1.459-.832.618-4.116 3.426-5.041 4.573-.93 1.138-3.906 2.072-4.943 2.804-1.028.727-2.57 4.044-3.186 4.569-.617.519-1.85 1.77-2.677 2.803-.817 1.038-2.472 2.077-3.49 3.328-1.032 1.246-1.85 2.388-1.85 2.388l-2.06 2.175-1.747-1.038s-2.354 1.666-3.181 2.086c-.827.411-3.817-.212-4.835-.316-1.038-.104-2.369 1.142-2.06 1.251.313.104.523.722.313 1.038-.216.312-2.369.312-2.369.312l-.519 1.765s-1.953.306-2.78.306c-.817 0-2.045.312-2.564.426-.514.103-1.953-1.256-2.467-1.256-.523 0-1.952-.618-2.564 0-.621.627-1.659 2.289-1.659 2.289s-1.542 0-2.046.104c-.514.104-3.293.934-3.293.934l10.698 60.361c14.902 11.323 33.43 18.032 53.505 18.032 38.178 0 70.753-24.262 83.457-58.353-2.471-4.435-6.225-11.323-6.788-12.252-.827-1.345-4.218-7.991-4.83-8.826-.621-.836-1.439-.104-1.742.207-.152.144-.426.045-.695-.054-.323-.114-.646-.232-.754.054-.21.52-1.434 1.558-1.855 1.138-.401-.41-1.644-3.634-1.541-4.252.107-.623 1.747.301 1.747.301s.519-.301.318-.821c-.21-.519-2.677-1.147-3.098-1.043-.406.104-1.634-2.18-2.461-2.808-.818-.623-2.57-3.001-3.181-3.837-.627-.84-2.785-3.12-3.505-3.64-.709-.518-2.461-2.175-3.597-2.694-1.135-.524-1.238-2.086-1.742-3.54-.514-1.449-.729.425-.622.94.108.514-.929 1.354-.621 1.453.313.099.514 1.147 1.028 1.558.518.41-1.028.934-1.532.825-.524-.099-1.136-1.76-1.444-2.482-.313-.737-1.546-.944-1.135-1.77.416-.835.93-2.29.514-2.803-.411-.524-.612-1.973.098-1.87.729.1 1.233-.42 1.654-.835.411-.415 1.238 1.246 1.546 1.76.299.524 1.948 2.705 1.855 2.186-.108-.52.714-.83.714-.83.823 1.764 7.704 10.6 7.914 11.43.21.826.622-.316.519-1.25-.108-.935.406-.618.509-1.039.107-.42-.509-1.661-2.061-1.765-1.541-.104-2.256-2.6-2.774-3.743-.509-1.142 1.546.94 1.546.94L148.5 81.2s-4.322-7.273-4.625-7.273c-.313 0-1.038.41-1.238.826-.206.41.817 3.219 1.12 3.64.314.41 1.244 1.972.935 2.18-.313.207-1.952-.836-2.784-1.143-.808-.316-1.943 1.039-1.943 1.039s-.314-4.366-.832-4.366c-.509 0-.309-1.874-.201-3.422.103-1.562-1.644-1.562-1.644-1.562s-.309-3.535-.725-4.045c-.411-.529 0-2.912.108-3.96.108-1.034-2.163-4.984-2.677-5.39-.269-.222-.827-.355-1.365-.355-.485 0-.955.104-1.199.356"}),h.default.createElement("path",{fill:"url(#paint1_linear)",d:"M78.061 68.628s-.514 1.246-1.341 1.864c-.832.628-1.341 2.294-2.158 3.436-.822 1.137-1.845 1.869-2.672 1.449-.823-.42-1.85.207-1.748 1.453.103 1.251.416 3.847-.205 3.536-.626-.312-.103-1.662-1.028-1.039-.93.623-2.785 4.05-3.494 3.743-.724-.311-1.551-2.185-2.06-1.458-.514.727-.72 3.016-1.336 1.973-.612-1.044-1.537-.94-2.976.202-1.444 1.152-2.99 1.884-3.705 2.284-.734.42-2.158 1.563-2.476 2.498-.304.934-.915 1.562-1.434 1.873-.519.307-1.742 1.247-1.742 1.87 0 .627-.73.934-1.557 1.77-.812.825-2.358 1.962-3.176 2.7-.827.726-2.579 2.704-3.401 3.114-.827.415-2.256 1.562-1.439 1.562 0 0 1.439 0 2.261-.628.827-.627 3.191-2.388 3.808-2.6.621-.208 2.055-.312 2.363.42.314.732-.2 1.765-.925 2.279-.714.529-2.265 2.295-2.667 2.398-.416.099-1.546 1.143-1.546 1.143s1.948-.104 2.873-.732c.934-.618 3.406-1.765 3.7-2.601.313-.826 1.032-1.864 1.556-2.695.514-.825 1.326.41 1.228 1.251-.108.826 1.248 1.444 1.948.302.724-1.142 1.752-.613 2.672-.613.925 0 2.892.717 3.401-.11.519-.83 1.742-3.322 2.477-3.747.714-.405 2.349-3.629 2.862-4.88.51-1.241 2.261-4.771 2.682-6.23.412-1.454 1.752-3.214 2.575-3.738.817-.519 2.77-1.35 3.7-1.973.92-.622.4-1.245 1.433-2.18 1.033-.94 1.547-.727 1.547-1.666 0-.93.827-1.973.827-1.973s-1.341-1.246-.524-2.29c.832-1.038 2.056-3.114 2.056-3.114s0-.935-.401-.623c-.416.311-1.958-.104-1.958-.104v1.874z"}),h.default.createElement("path",{fill:"#fff",d:"M131.63 95.121s3.293 4.979 3.905 6.122c.617 1.152 3.191 5.824 3.397 6.655.2.83.523 1.968 1.752 2.907 1.228.934 2.564 2.383 2.564 2.383s.108-1.449-.103-2.076c-.21-.623-2.77-3.842-3.489-5.083-.724-1.256-7.826-10.393-8.026-10.908zM144.07 114.44s1.14 1.874 1.14 3.115c0 1.251 1.126 3.535 1.645 4.464.514.94 1.331 2.705 1.747 2.913.406.207 1.649.316 2.882 1.661 1.224 1.35 1.846 2.383 2.878 2.705 1.023.306 1.85.623 1.85.623s-1.233-1.662-2.672-4.258c-1.449-2.6-4.219-7.273-4.835-7.688-.627-.42-1.953-1.978-2.266-1.562-.309.41-2.369-1.973-2.369-1.973z"}),h.default.createElement("path",{fill:"url(#paint2_linear)",d:"M47.317 148.826c1.331 3.016 11.814 7.273 11.726 5.087-.074-1.493.098-6.358.215-9.295.852 1.3 1.561 2.408 1.728 2.749.524 1.043 10.498 15.273 11.422 18.086.93 2.809 21.074 16.203 23.134 18.488.51.563 1.693 1.839 3.2 3.446a88.357 88.357 0 0021.339-3.313c-.451-.41-.921-1.177-1.097-1.795-.205-.732.725-1.038 1.238-1.869.504-.83.407-.83-.303-.736-.724.108-2.99-.723-4.224-.826-1.233-.099-5.559-2.388-6.89-2.804-1.336-.415-2.677-3.738-3.906-4.682-1.238-.93-2.055-1.132-2.574-.929-.519.212-.935-.104-1.747-1.044-.827-.934-.617-1.864-1.135-2.492-.495-.618-.407 1.256-.715 1.459-.303.203-1.233-1.671-1.855-2.393-.607-.717-1.33-2.591-1.747-3.011-.406-.411-.406.825-.514 1.453-.098.618-1.439 1.355-1.953.94-.523-.42-1.027-1.864-1.546-2.393-.25-.257-.274.321-.289.9-.014.588-.01 1.186-.215.865-.416-.628-1.13-1.236-1.238-2.077-.103-.825-.622-3.323-1.028-3.535-.406-.198-.822-1.864-1.233-2.591-.406-.727-.406.519-.406 1.246 0 .722-.93.109-1.146-.312-.195-.415-.616-2.175-1.013-2.491-.42-.312-1.14.83-1.14.83l-.21 3.011s-.92-2.907-1.229-3.426c-.303-.524-1.336-2.497-1.438-1.77-.108.727-.607-.307-1.44-.935-.826-.628-1.453-1.76-1.453-1.453 0 .316.426 3.021-.186 2.699-.621-.311-1.042-2.798-1.757-3.945-.714-1.143-2.877-2.908-2.877-2.908l-.51-1.874s-2.06-.103-2.265-.726c-.206-.623-1.332-.515-1.434.212-.103.722-1.14-.212-1.973-.212-.802 0-1.84-2.591-2.148-3.011-.294-.416-.622-1.143-.72-.628-.097.529-.817.212-1.238-.727-.41-.935.734-2.275.93-2.804.21-.514-.195-1.241-.822-.618-.616.618-1.228 2.181-1.228 2.181l-1.13-1.666-.525.632-1.022-2.185-.93-2.077-.514 2.181-.103.128c-.474-1.35-.886-2.452-1.023-2.625-.406-.514-2.466-6.339-3.19-7.372-.715-1.043-.617-3.011-.617-3.011s-1.238-.732-2.06-.317c-.818.42-1.434-1.35-2.164-1.869-.7-.519-1.63.109-1.63.109v-2.393l-6.17-.628s5.652 28.05 6.988 31.066"}),h.default.createElement("path",{fill:"url(#paint3_linear)",d:"M26.655 92c-.73.835-3.201 1.048-3.705 1.453-.514.41-1.65 1.667-1.953 2.181-.313.52-1.145.623-1.649 1.038-.514.42-.925 2.393-.925 2.393s-1.331.208-2.78 1.558c-1.439 1.35-2.78 1.77-4.213 2.704a87.075 87.075 0 00-4.248 3.002c4.463 45.527 42.48 81.102 88.707 81.102 2.472 0 4.924-.103 7.346-.301-1.008-1.528-2.006-3.12-2.755-4.445-2.055-3.63-6.377-5.701-7.106-5.919-.714-.202-2.354-3.332-2.878-3.53-.508-.208-2.358-3.219-2.975-4.252-.622-1.039-1.537-1.562-2.477-1.671-.92-.094-5.442-6.122-5.442-6.122s-6.264-6.956-6.885-7.48c-.622-.525-4.008-5.197-4.635-5.924-.616-.727-3.798-3.115-4.517-3.223-.724-.104-3.083-3.743-3.509-4.154-.406-.41-1.938-.41-2.046 0-.107.411-1.135 1.563-1.228 2.087-.103.514-.103 1.869-.827 2.487-.724.613-1.126 2.907-1.126 2.907s-1.34-.934-1.752-1.033c-.42-.104-1.028-3.437-1.13-4.168-.108-.717-.935-2.596-1.449-3.209-.519-.628-2.045-3.333-2.877-3.956-.818-.618-1.44-3.421-1.532-4.677-.108-1.241-2.164-4.88-2.682-5.815-.52-.934-1.033-4.563-1.233-5.191-.211-.623-1.341-2.596-1.953-3.323-.617-.732-3.494-3.946-4.625-4.682-1.13-.722-1.556-2.492-1.747-2.799-.216-.311-.519-2.185-.519-2.185s-.715-1.35-.93-1.973c-.196-.618-.401-10.175-.303-10.492.107-.306-1.331-1.449-1.948-1.661-.626-.208.103-1.142 0-1.657-.108-.519-.827-1.152-.827-1.152S27.364 91.17 26.655 92"}),h.default.createElement("path",{fill:"#292929",d:"M11.78 96c0 46.136 38.065 84.836 84.225 84.836 45.905 0 84.21-38.952 84.21-84.836 0-46.146-38.305-84.836-84.21-84.836-46.16 0-84.225 38.69-84.225 84.836zM192 96c0 52.583-43.943 96-95.995 96C43.948 192 0 148.583 0 96 0 43.407 43.708 0 96.005 0 148.057 0 192 43.407 192 96z"}),h.default.createElement("defs",null,h.default.createElement("linearGradient",{id:"paint0_linear",x1:"117.572",x2:"117.572",y1:"323.149",y2:"57.367",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#626262"})),h.default.createElement("linearGradient",{id:"paint1_linear",x1:"39.87",x2:"80.42",y1:"85.611",y2:"85.611",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#909191"})),h.default.createElement("linearGradient",{id:"paint2_linear",x1:"81.096",x2:"81.096",y1:"117.762",y2:"201.184",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#909191"})),h.default.createElement("linearGradient",{id:"paint3_linear",x1:"-25.794",x2:"208.447",y1:"204.974",y2:"204.974",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#626262"})))),H={small:"h-10 w-10 text-base",medium:"h-12 w-12 text-md",large:"h-15 w-15 text-xl"},O=e=>{var t=e,{className:a,name:r,color:l="bg-primary-lighter",size:n="large"}=t,o=__objRest(t,["className","name","color","size"]);const s=m.default("inline-flex items-center justify-center rounded-full cursor-default text-black",H[n],l,a);return h.default.createElement("div",__spreadValues({title:r,className:s},o),(e=>{let t="N/A";const a="string"==typeof e&&e.match(/\b\w/g);return a&&(t=a[0],a.length>1&&(t+=a[a.length-1])),t.toUpperCase()})(r))};O.propTypes={className:p.default.string,color:p.default.string,name:p.default.string,size:p.default.oneOf(Object.keys(H))};const R=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("span",__spreadValues({className:m.default("px-2 py-1 font-semibold inline-flex items-center justify-center rounded-full bg-red-dark text-white leading-none",a)},r))};R.propTypes={className:p.default.string};const S=({children:e,className:t,footer:a,notifications:r,isFixed:l=!0,onLogoClick:n})=>h.default.createElement("div",{className:m.default(l?"fixed":"relative","w-16 md:w-24 xl:w-50 h-full p-2 overflow-y-auto bg-black text-white flex flex-col",t)},h.default.createElement("div",{className:m.default("p-2 text-center xl:text-left",r?null:"invisible")},h.default.createElement(R,{className:"text-sm"},r)),h.default.createElement("div",{className:"mb-10 text-center"},h.default.createElement(B,{className:m.default("inline-block w-12 h-12 xl:w-24 xl:h-24",n&&"cursor-pointer hover:opacity-80 transition-opacity"),onClick:n})),h.default.createElement("div",{className:"flex-grow space-y-2"},e),a);S.propTypes={children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired,className:p.default.string,footer:p.default.element.isRequired,notifications:p.default.number,isFixed:p.default.bool,onLogoClick:p.default.func.isRequired};const P=e=>{var t=e,{isActive:a=!1,icon:r,children:l}=t,n=__objRest(t,["isActive","icon","children"]);return h.default.createElement("button",__spreadValues({type:"button",className:m.default("transition-colors leading-none flex items-center justify-center xl:justify-start w-full xl:px-6 py-3 rounded",{"bg-primary text-white hover:bg-primary-dark":a,"hover:bg-gray-darker text-gray":!a})},n),h.default.createElement(r,{className:"w-5 h-5 xl:mr-3"}),h.default.createElement("span",{className:"hidden px-1 xl:inline"},l),h.default.createElement(T,{className:"hidden ml-auto w-3 h-3 xl:inline"}))};P.displayName="Sidebar.Link",P.propTypes={isActive:p.default.bool,icon:p.default.func.isRequired,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},S.Link=P;const A=e=>{var t=e,{children:a}=t,r=__objRest(t,["children"]);return h.default.createElement("div",__spreadValues({className:"p-2"},r),h.default.createElement("div",{className:"pb-2 mx-6 border-t border-secondary-darker"}),a)};A.displayName="Sidebar.Footer",A.propTypes={children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},S.Footer=A;const q=e=>{var t=e,{name:a}=t,r=__objRest(t,["name"]);return h.default.createElement("button",__spreadValues({type:"button",className:"flex justify-center items-center py-3 w-full rounded cursor-pointer xl:px-6 hover:bg-gray-darker xl:justify-start"},r),h.default.createElement(O,{size:"small",name:a}),h.default.createElement("span",{className:"hidden text-sm xl:inline ml-2 max-w-[50px]"},a),h.default.createElement(I,{className:"hidden ml-auto xl:inline"}))};q.displayName="Sidebar.Footer.Avatar",q.propTypes={name:p.default.string.isRequired},S.Footer.Avatar=q;const F=e=>{var t=e,{icon:a,label:r}=t,l=__objRest(t,["icon","label"]);return h.default.createElement("button",__spreadValues({type:"button",className:"flex justify-center items-center py-3 w-full rounded cursor-pointer xl:px-6 hover:bg-gray-darker xl:justify-start"},l),h.default.createElement(a,{className:"w-5 h-5 xl:ml-2 xl:mr-5"}),h.default.createElement("span",{className:"hidden xl:inline"},r))};F.displayName="Sidebar.Footer.Button",F.propTypes={icon:p.default.element.isRequired,label:p.default.string.isRequired},S.Footer.Button=F;const U=e=>{var t=e,{children:a,className:r}=t,l=__objRest(t,["children","className"]);return h.default.createElement(g.default,__spreadProps(__spreadValues({},l),{className:"text-white xola-tooltip",plugins:[n.followCursor]}),h.default.createElement("span",{className:r},a))};U.propTypes={children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired,className:p.default.string};var D="_main_t5zvb_1";const G=e=>{var t=e,{className:a,children:r}=t,l=__objRest(t,["className","children"]);return h.default.createElement(g.default,__spreadValues({interactive:!0,className:m.default(a,D,"!border-gray-light !rounded-lg"),plugins:[n.followCursor]},l),h.default.createElement("span",null,r))};(G.Content=({className:e,children:t})=>h.default.createElement("div",{className:m.default(e,"max-w-lg px-3 py-3")},t)).displayName="Popover.Content",G.propTypes={className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},G.Content.propTypes={className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const W={small:"sm:max-w-md",medium:"sm:max-w-lg",large:"sm:max-w-2xl",xlarge:"sm:max-w-3xl"},K=({size:e="medium",shouldShow:t=!1,shouldShowClose:a=!0,shouldCloseOnOutsideClick:l=!1,onHide:n,children:s})=>{const d=h.default.Children.count(s);d<3&&console.warn(`You have an insufficient number of children ${d}, the modal may not behave as expected`);const[i,c,u]=s,f={width:W[e],shouldShowClose:a,Header:i,Body:c,Footer:u},m=l?n:()=>{};return h.default.createElement(o.Transition.Root,{show:t,as:r.Fragment},h.default.createElement(o.Dialog,{static:!0,as:"div",className:"overflow-y-auto fixed inset-0 z-10",open:t,onClose:m},h.default.createElement("div",{className:"flex justify-center items-end px-4 pt-4 pb-20 min-h-screen text-center sm:block sm:p-0"},h.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},h.default.createElement(o.Dialog.Overlay,{className:"fixed inset-0 bg-opacity-75 transition-opacity bg-gray-dark"})),h.default.createElement("span",{className:"hidden sm:inline-block sm:align-middle sm:h-screen"},"​"),h.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},h.default.createElement(K.Core,__spreadProps(__spreadValues({},f),{onClick:n}))))))};K.propTypes={size:p.default.oneOf(Object.keys(W)),shouldShow:p.default.bool,shouldShowClose:p.default.bool,shouldCloseOnOutsideClick:p.default.bool,onHide:p.default.func.isRequired,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const Z=r.forwardRef((({width:e,shouldShowClose:t,onClick:a,Header:r,Body:l,Footer:n},o)=>{const s=m.default(e,"modal sm:w-full inline-block align-bottom bg-white rounded-lg overflow-hidden shadow-xl transform","transition-all sm:my-8 sm:align-middle");return h.default.createElement("div",{ref:o,className:s},h.default.createElement("div",{className:"px-8 pt-5 bg-white"},h.default.createElement("div",{className:"hidden absolute top-0 right-0 px-8 pt-7 sm:block"},t&&h.default.createElement("div",{className:"text-xl cursor-pointer text-gray hover:text-gray-darker",onClick:a},"×")),h.default.createElement("div",{className:"sm:flex sm:items-start"},h.default.createElement("div",{className:"pt-3 w-full text-center"},r,l))),n)}));Z.displayName="Modal.Core",Z.propTypes={width:p.default.string.isRequired,shouldShowClose:p.default.bool.isRequired,onClick:p.default.func.isRequired,Header:p.default.element.isRequired,Body:p.default.element.isRequired,Footer:p.default.element.isRequired},K.Core=Z,K.Header=({children:e})=>h.default.createElement(o.Dialog.Title,{as:"h3",className:"text-2xl font-semibold leading-6 text-center text-black modal-header"},e),K.Header.displayName="Modal.Header",K.Header.propTypes={children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},K.Body=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("div",__spreadValues({className:m.default(a,"pt-8 pb-2 mt-2 text-left modal-body")},r))},K.Body.displayName="Modal.Body",K.Body.propTypes={className:p.default.string},K.Footer=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("div",__spreadValues({className:m.default(a,"float-right px-8 py-8 modal-footer sm:flex")},r))},K.Footer.displayName="Modal.Footer",K.Footer.propTypes={className:p.default.string};const Y=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("div",{className:"flex flex-col"},h.default.createElement("div",{className:"overflow-x-auto -my-2"},h.default.createElement("div",{className:"inline-block py-2 min-w-full align-middle"},h.default.createElement("div",{className:"overflow-hidden border-b border-gray-lighter sm:rounded-lg"},h.default.createElement("table",__spreadValues({className:m.default(a,"min-w-full divide-y border border-gray-lighter")},r))))))};Y.propTypes={className:p.default.string},(Y.Head=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("thead",__spreadValues({className:m.default("bg-gray-lighter",a)},r))}).displayName="Table.Head",Y.Head.propTypes={className:p.default.string},(Y.Header=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("th",__spreadValues({className:m.default("px-4 py-2 text-left text-base font-bold",a)},r))}).displayName="Table.Header",Y.Header.propTypes={className:p.default.string},(Y.Body=e=>{var t=e,{className:a,isStriped:l=!1,children:n}=t,o=__objRest(t,["className","isStriped","children"]);return h.default.createElement("tbody",__spreadValues({className:m.default("border-none",a)},o),r.Children.map(n,(e=>e&&r.cloneElement(e,{isStriped:l}))))}).displayName="Table.Body",Y.Body.propTypes={className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired,isStriped:p.default.bool},(Y.Row=e=>{var t=e,{isStriped:a=!1,className:r}=t,l=__objRest(t,["isStriped","className"]);return h.default.createElement("tr",__spreadValues({className:m.default(a&&"even:bg-gray-lighter",r)},l))}).displayName="Table.Row",Y.Row.propTypes={isStriped:p.default.bool,className:p.default.string},(Y.Cell=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("td",__spreadValues({className:m.default("px-4 py-2 whitespace-nowrap text-base text-gray-darker",a)},r))}).displayName="Table.Cell",Y.Cell.propTypes={className:p.default.string};const $={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},X=e=>{var t=e,{size:a,value:l,onChange:n,children:o}=t,s=__objRest(t,["size","value","onChange","children"]);return h.default.createElement("span",__spreadValues({className:"inline-flex whitespace-nowrap"},s),r.Children.map(o,((e,t)=>{const o={size:a};return void 0!==l&&(o.isActive=l===t),n&&(o.onClick=()=>n(t)),r.cloneElement(e,o)})))};X.propTypes={size:p.default.oneOf(Object.keys($)),value:p.default.number.isRequired,onChange:p.default.func.isRequired,children:p.default.node.isRequired};const J=e=>{var t=e,{as:a="button",isActive:r,size:l="medium",className:n}=t,o=__objRest(t,["as","isActive","size","className"]);const s=m.default("border-t border-l border-b last:border-r first:rounded-l-md last:rounded-r-md transition-colors focus:ring disabled:opacity-60 focus:z-10 leading-none",$[l],r?"bg-primary border-primary text-white hover:bg-primary-dark":"border-gray-light hover:bg-gray-lighter text-gray-darker",n);return h.default.createElement(a,__spreadValues({className:s},o))};J.displayName="ButtonGroup.Button",J.propTypes={as:p.default.oneOfType([p.default.string,p.default.elementType]),isActive:p.default.bool,size:p.default.oneOf(Object.keys($)),className:p.default.string},X.Button=J;const Q={small:"w-10 h-10",medium:"w-16 h-16",large:"w-20 h-20"},ee=e=>{var t=e,{className:a,size:r="small"}=t,l=__objRest(t,["className","size"]);return h.default.createElement("img",__spreadValues({className:m.default(a,"inline-block rounded object-cover",Q[r])},l))};ee.propTypes={className:p.default.string,src:p.default.string.isRequired,size:p.default.string};var te="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var ae=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},re="object"==typeof te&&te&&te.Object===Object&&te,le="object"==typeof self&&self&&self.Object===Object&&self,ne=re||le||Function("return this")(),oe=ne,se=function(){return oe.Date.now()},de=/\s/;var ie=function(e){for(var t=e.length;t--&&de.test(e.charAt(t)););return t},ce=/^\s+/;var ue=function(e){return e?e.slice(0,ie(e)+1).replace(ce,""):e},fe=ne.Symbol,me=fe,pe=Object.prototype,he=pe.hasOwnProperty,ge=pe.toString,we=me?me.toStringTag:void 0;var ve=function(e){var t=he.call(e,we),a=e[we];try{e[we]=void 0;var r=!0}catch(n){}var l=ge.call(e);return r&&(t?e[we]=a:delete e[we]),l},ke=Object.prototype.toString;var Ee=ve,_e=function(e){return ke.call(e)},xe=fe?fe.toStringTag:void 0;var ye=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":xe&&xe in Object(e)?Ee(e):_e(e)},be=function(e){return null!=e&&"object"==typeof e};var Le=function(e){return"symbol"==typeof e||be(e)&&"[object Symbol]"==ye(e)},Me=ue,Ce=ae,Ne=Le,je=/^[-+]0x[0-9a-f]+$/i,Ve=/^0b[01]+$/i,ze=/^0o[0-7]+$/i,Ie=parseInt;var Te=ae,Be=se,He=function(e){if("number"==typeof e)return e;if(Ne(e))return NaN;if(Ce(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ce(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Me(e);var a=Ve.test(e);return a||ze.test(e)?Ie(e.slice(2),a?2:8):je.test(e)?NaN:+e},Oe=Math.max,Re=Math.min;var Se=function(e,t,a){var r,l,n,o,s,d,i=0,c=!1,u=!1,f=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function m(t){var a=r,n=l;return r=l=void 0,i=t,o=e.apply(n,a)}function p(e){return i=e,s=setTimeout(g,t),c?m(e):o}function h(e){var a=e-d;return void 0===d||a>=t||a<0||u&&e-i>=n}function g(){var e=Be();if(h(e))return w(e);s=setTimeout(g,function(e){var a=t-(e-d);return u?Re(a,n-(e-i)):a}(e))}function w(e){return s=void 0,f&&r?m(e):(r=l=void 0,o)}function v(){var e=Be(),a=h(e);if(r=arguments,l=this,d=e,a){if(void 0===s)return p(d);if(u)return clearTimeout(s),s=setTimeout(g,t),m(d)}return void 0===s&&(s=setTimeout(g,t)),o}return t=He(t)||0,Te(a)&&(c=!!a.leading,n=(u="maxWait"in a)?Oe(He(a.maxWait)||0,t):n,f="trailing"in a?!!a.trailing:f),v.cancel=function(){void 0!==s&&clearTimeout(s),i=0,r=d=l=s=void 0},v.flush=function(){return void 0===s?o:w(Be())},v};const Pe=navigator.userAgent.includes("Macintosh"),Ae=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.217 10.878a4.661 4.661 0 100-9.322 4.661 4.661 0 000 9.322zM9.514 9.514l2.93 2.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),qe=e=>{var t=e,{char:a,className:r}=t,l=__objRest(t,["char","className"]);return a=Fe(a),h.default.createElement("div",__spreadValues({className:m.default("inline-flex items-center justify-center h-5 py-1 px-2 bg-gray-lighter text-xs text-gray font-semibold rounded",1===a.length?"w-5":"",r)},l),a)},Fe=e=>{switch(e){case"cmd":return Pe?"⌘":"ctrl";case"option":return Pe?"⌥":"win";case"ctrl":return Pe?"ctrl":"alt";case"up":return"↑";case"down":return"↓";default:return e}};qe.propTypes={char:p.default.string.isRequired,className:p.default.string};const Ue=e=>h.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),h.default.createElement("path",{fill:"currentColor",d:"M14 7a7 7 0 10-7 7v-1.4A5.6 5.6 0 1112.6 7H14z"})),De={primary:"text-primary",secondary:"text-secondary",warning:"text-warning",success:"text-success",danger:"text-danger",caution:"text-caution",current:null},Ge={tiny:"w-4 h-4",small:"w-7 h-7",medium:"w-10 h-10",large:"w-14 h-14",current:"w-[1em] h-[1em]"},We=e=>{var t=e,{className:a,size:r="small",color:l="secondary"}=t,n=__objRest(t,["className","size","color"]);return h.default.createElement(Ue,__spreadValues({className:m.default(a,Ge[r],De[l],"animate-spin inline-block")},n))};We.propTypes={className:p.default.string,size:p.default.string,color:p.default.string};const Ke=Se(((e,t)=>e(t)),500),Ze=e=>{var t=e,{className:a,items:l=[],defaultValue:n,onChange:o,onSubmit:i,onSelect:c,children:u,isLoading:f=!1}=t,p=__objRest(t,["className","items","defaultValue","onChange","onSubmit","onSelect","children","isLoading"]);const[g,w]=r.useState(!0),[v,k]=r.useState(null!=n?n:""),E=r.useRef(),_={value:v},x=v?[_,...l]:[],{isOpen:y,openMenu:b,getMenuProps:L,getInputProps:M,getComboboxProps:C,highlightedIndex:N,getItemProps:j,closeMenu:V}=s.useCombobox({items:x,inputValue:v,onInputValueChange:({inputValue:e})=>{k(e),o&&Ke(o,e)},itemToString:()=>v,defaultHighlightedIndex:0,onSelectedItemChange:({selectedItem:e,type:t})=>{"__input_blur__"!==t&&(e===_?(null==i||i(v),E.current.blur()):e&&(null==c||c(e),E.current.blur()),V())}}),z=y&&x.length>0,I=y&&v.length>0&&!f&&x.length<=1,T=Pe?"cmd+k":"ctrl+k";return d.useHotkeys(T,(e=>{e.preventDefault(),E.current.focus()})),d.useHotkeys("esc",(()=>E.current.blur()),{enableOnTags:["INPUT"]}),h.default.createElement("div",{className:"relative w-full"},h.default.createElement("div",__spreadValues({},C({className:"w-full relative rounded-md"})),h.default.createElement("div",{className:"absolute inset-y-0 top-[-2px] left-0 hidden md:flex items-center pointer-events-none"},h.default.createElement(Ae,{className:"w-4 h-4 text-gray-darker"})),h.default.createElement("input",__spreadValues({},M(__spreadValues({type:"text",className:m.default("block w-full border-none pl-0 md:pl-7 text-base md:text-md text-gray-darker leading-p2 focus:ring-0",a),ref:E,onFocus:()=>{w(!1),b()},onBlur:()=>w(!0)},p)))),h.default.createElement("div",{className:"hidden absolute inset-y-0 right-0 items-center pr-3 space-x-1 pointer-events-none lg:flex"},g?h.default.createElement(h.default.Fragment,null,h.default.createElement(qe,{char:"cmd"})," ",h.default.createElement(qe,{char:"K"})):null)),h.default.createElement("ul",__spreadValues({},L({className:m.default("absolute top-10 divide-y divide-gray-light w-full xl:w-2/3 max-h-[75vh] border border-blue-light mt-1 rounded overflow-auto z-50 bg-white",{hidden:!z})})),z?x.map(((e,t)=>h.default.createElement("li",__spreadValues({key:e},j({key:t,item:e,index:t})),e===_?h.default.createElement(h.default.Fragment,null,h.default.createElement("div",{className:m.default("p-2 cursor-pointer",N===t?"bg-blue-light text-white":"")},"Show all results for ",h.default.createElement("strong",null,v)),f?h.default.createElement("div",{className:"p-3 text-center"},h.default.createElement(We,{size:"small"})):null):null==u?void 0:u(e,N===t)))):null,z&&I?h.default.createElement("li",{className:"p-2 cursor-not-allowed"},"No results found"):null,z&&x.length<5?h.default.createElement("li",{className:"flex sticky bottom-0 p-2 space-x-5 text-sm search-footer text-gray-dark pointer-events"},h.default.createElement("span",{className:"flex items-center"},h.default.createElement(qe,{char:"up",className:"mr-0.5"}),h.default.createElement(qe,{char:"down",className:"mr-2"})," to navigate"),h.default.createElement("span",{className:"flex items-center"},h.default.createElement(qe,{char:"enter",className:"mr-2"})," to submit"),h.default.createElement("span",{className:"flex items-center"},h.default.createElement(qe,{char:"esc",className:"mr-2"})," to close")):null))};Ze.propTypes={className:p.default.string,items:p.default.arrayOf(p.default.any),itemToString:p.default.func,defaultValue:p.default.string,onChange:p.default.func,onSubmit:p.default.func,onSelect:p.default.func,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node,p.default.func]),isLoading:p.default.bool};const Ye=e=>{var t=e,{className:a,classNames:l={},separator:n="/",children:o}=t,s=__objRest(t,["className","classNames","separator","children"]);const d=r.Children.count(o)-1;return h.default.createElement("div",__spreadValues({className:m.default("text-2xl whitespace-nowrap font-semibold",a)},s),r.Children.map(o,((e,t)=>{const a=t>=d;return h.default.createElement(h.default.Fragment,null,h.default.createElement("span",{className:m.default(l.item,a?"text-black":"text-gray-dark")},e),a?null:h.default.createElement("span",{className:m.default(l.separator,"text-gray-dark mx-2")},n))})))};Ye.propTypes={className:p.default.string,classNames:p.default.object,separator:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node])},(Ye.Item=({className:e,onClick:t,children:a})=>h.default.createElement("div",{className:m.default(e,"inline",t&&"cursor-pointer hover:underline"),onClick:t},a)).displayName="Breadcrumb.Item",Ye.Item.propTypes={className:p.default.string,onClick:p.default.func,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const $e=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("div",__spreadValues({className:m.default(a,"mb-4")},r))};$e.propTypes={className:p.default.string};const Xe={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},Je=e=>{var t=e,{size:a="medium",className:r,type:l="text",isError:n}=t,o=__objRest(t,["size","className","type","isError"]);return h.default.createElement("input",__spreadValues({type:l,className:m.default(r,"block w-full placeholder-gray-dark text-gray-darker rounded-md leading-none disabled:bg-gray-lighter",Xe[a],n?"border-danger focus:ring-danger focus:border-danger":"border-gray-light focus:ring-primary focus:border-primary")},o))};Je.propTypes={size:p.default.oneOf(Object.keys(Xe)),className:p.default.string,type:p.default.string,isError:p.default.bool};const Qe={large:{parent:"h-6 w-11",inner:"h-5 w-5",translate:"translate-x-5"},medium:{parent:"h-5 w-8",inner:"h-4 w-4",translate:"translate-x-3"},small:{parent:"h-3 w-5",inner:"h-2 w-2",translate:"translate-x-2"}},et=e=>{var t=e,{isChecked:a=!1,size:r="medium"}=t,l=__objRest(t,["isChecked","size"]);return h.default.createElement(o.Switch,__spreadValues({checked:a,className:m.default(a?"bg-primary":"bg-gray","switch relative inline-flex flex-shrink-0 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none disabled:opacity-60",Qe[r].parent)},l),h.default.createElement("span",{className:m.default(a?Qe[r].translate:"translate-x-0","switch-inner pointer-events-none inline-block rounded-full bg-white transform ring-0 transition ease-in-out duration-200 shadow",Qe[r].inner)}))};et.propTypes={isChecked:p.default.bool,size:p.default.string},(et.Group=({className:e,children:t})=>h.default.createElement(o.Switch.Group,{as:"div",className:m.default("inline-flex items-center",e)},t)).displayName="Switch.Group",et.Group.propTypes={className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},(et.Label=({direction:e="left",className:t,children:a})=>h.default.createElement(o.Switch.Label,{as:"span",className:m.default("left"===e?"mr-2":"ml-2",t)},a)).displayName="Switch.Label",et.Label.propTypes={direction:p.default.string,className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};var tt=function(e,t){for(var a=-1,r=null==e?0:e.length,l=Array(r);++a<r;)l[a]=t(e[a],a,e);return l},at=Array.isArray,rt=tt,lt=at,nt=Le,ot=fe?fe.prototype:void 0,st=ot?ot.toString:void 0;var dt=function e(t){if("string"==typeof t)return t;if(lt(t))return rt(t,e)+"";if(nt(t))return st?st.call(t):"";var a=t+"";return"0"==a&&1/t==-Infinity?"-0":a};var it=function(e){return null==e?"":dt(e)},ct=0;var ut=function(e){var t=++ct;return it(e)+t};const ft=e=>{var t,a=e,{label:l,className:n,classNames:o={}}=a,s=__objRest(a,["label","className","classNames"]);const[d]=r.useState(null!=(t=s.id)?t:ut("checkbox-"));return h.default.createElement("div",{className:m.default(n,"flex items-center")},h.default.createElement("input",__spreadProps(__spreadValues({type:"checkbox",className:m.default(o.checkbox,"w-4 h-4 rounded text-primary border-gray focus:primary disabled:bg-gray-light disabled:text-gray-light disabled:border-none transition-colors")},s),{id:d})),l?h.default.createElement("label",{htmlFor:d,className:m.default(o.label,"ml-2 leading-none text-gray-darker")},l):null)};ft.propTypes={label:p.default.string.isRequired,className:p.default.string,classNames:p.default.shape({checkbox:p.default.string,label:p.default.string}),onChange:p.default.func};const mt=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return h.default.createElement("label",__spreadValues({className:m.default(a,"block text-sm text-black font-bold mb-1")},r))};mt.propTypes={className:p.default.string};const pt=({classNames:e,children:t})=>h.default.createElement("div",{className:m.default("header-toolbar flex items-center w-full px-5 pr-3 py-3 xl:px-6 xl:py-5 space-x-2 xl:space-x-6 border-b border-gray-light",e)},t);pt.propTypes={classNames:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},(pt.Breadcrumb=({className:e,children:t})=>h.default.createElement(Ye,{className:m.default("text-xl border-r border-gray-light md:pr-4 xl:pr-6",e)},t)).displayName="HeaderToolbar.Breadcrumb",pt.Breadcrumb.propTypes={className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},pt.Breadcrumb.displayName="HeaderToolbar.Search",pt.Search=e=>h.default.createElement(Ze,__spreadValues({className:"flex-grow pr-1 w-full"},e));const ht=e=>{var t=e,{className:a,value:l,onChange:n,children:o}=t,s=__objRest(t,["className","value","onChange","children"]);const d=r.Children.toArray(o),i=d.filter((e=>e.type===ht.Tab)),c=d.filter((e=>e.type===ht.Panel));return h.default.createElement(h.default.Fragment,null,h.default.createElement("div",__spreadValues({className:m.default("bg-gray-lighter overflow-x-auto",a)},s),h.default.createElement("nav",{className:"flex"},i.map(((e,t)=>r.cloneElement(e,{isActive:t===l,onClick:()=>null==n?void 0:n(t)}))))),c.map(((e,t)=>r.cloneElement(e,{isActive:t===l}))))};ht.propTypes={className:p.default.string,value:p.default.number.isRequired,onChange:p.default.func.isRequired,children:p.default.node.isRequired};const gt=e=>{var t=e,{as:a="button",className:r,isActive:l=!1}=t,n=__objRest(t,["as","className","isActive"]);return h.default.createElement(a,__spreadValues({className:m.default(r,"transition-colors cursor-pointer p-4 flex-1 text-center text-lg font-semibold whitespace-nowrap focus-visible:ring",l?"bg-white text-black":"text-gray-dark hover:text-black hover:bg-gray-light")},n))};gt.displayName="Tabs.Tab",gt.propTypes={as:p.default.oneOfType([p.default.string,p.default.elementType]),className:p.default.string,isActive:p.default.bool},ht.Tab=gt;const wt=e=>{var t=e,{isActive:a=!1,className:r}=t,l=__objRest(t,["isActive","className"]);return h.default.createElement("div",__spreadValues({className:m.default(r,a||"hidden")},l))};wt.displayName="Tabs.Panel",wt.propTypes={isActive:p.default.bool,className:p.default.string},ht.Panel=wt;var vt="_shimmer_qt4e9_7";const kt=e=>{var t=e,{className:a,style:r,height:l=300,shouldAnimate:n=!0,children:o}=t,s=__objRest(t,["className","style","height","shouldAnimate","children"]);return h.default.createElement("div",__spreadValues({className:m.default(a,"relative flex items-center justify-center bg-gray-lighter overflow-hidden rounded border border-gray-lighter"),style:__spreadValues({height:l},r)},s),n?h.default.createElement("div",{className:m.default(vt,"absolute w-full h-full")}):null,h.default.createElement("div",{className:"text-gray"},o))};kt.propTypes={className:p.default.string,style:p.default.object,height:p.default.number,shouldAnimate:p.default.bool,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node])};const Et=({isOpen:e=!1,title:t,content:a,onClose:l,classNames:n={}})=>h.default.createElement(o.Transition.Root,{show:e,as:r.Fragment},h.default.createElement(o.Dialog,{static:!0,as:"div",className:"overflow-hidden fixed inset-0",open:e,onClose:l},h.default.createElement("div",{className:"overflow-hidden absolute inset-0"},h.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-in-out duration-500",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in-out duration-500",leaveFrom:"opacity-100",leaveTo:"opacity-0"},h.default.createElement(o.Dialog.Overlay,{className:"absolute inset-0 bg-opacity-75 transition-opacity bg-gray"})),h.default.createElement("div",{className:"flex fixed inset-y-0 right-0 pl-10 max-w-full"},h.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"transform transition ease-in-out duration-500 sm:duration-700",enterFrom:"translate-x-full",enterTo:"translate-x-0",leave:"transform transition ease-in-out duration-500 sm:duration-700",leaveFrom:"translate-x-0",leaveTo:"translate-x-full"},h.default.createElement("div",{className:"w-screen max-w-md"},h.default.createElement("div",{className:"flex overflow-y-auto flex-col py-8 h-full bg-white shadow-xl"},h.default.createElement("div",{className:"px-4 sm:px-6"},h.default.createElement("div",{className:"flex justify-between items-start"},h.default.createElement(o.Dialog.Title,{className:m.default("text-base font-semibold",n.title)},t),h.default.createElement("div",{className:m.default("ml-3 h-7 flex items-center")},h.default.createElement(x,{size:"small",color:"link",className:"focus:hidden",onClick:l},h.default.createElement(j,null))))),h.default.createElement("div",{className:m.default("mt-3 relative flex-1 px-4 sm:px-6",n.content)},a))))))));Et.propTypes={isOpen:p.default.bool,title:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]),content:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]),onClose:p.default.func.isRequired,classNames:p.default.object};const _t=e=>h.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"150",height:"48",fill:"none",viewBox:"0 0 150 48"},e),h.default.createElement("path",{fill:"#1B5EA8",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),h.default.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),h.default.createElement("path",{fill:"#fff",d:"M36.37 26.71s1.788-.534 1.998-.56c.209-.026.445 0 .445 0s.264-.33.344-.305c.076.025.392.129.446 0 .05-.129.262-.306.366-.331.106-.028.028-.255.158-.358.13-.102.997-.534 1.18-.738.187-.204.84-1.146.946-1.146.107 0 .316-.153.395-.28.076-.129.786-.945.945-1.122.16-.178.5-.434.5-.434s.026-.535.106-.636c.078-.102.366-.432.498-.585.132-.153.605-.64.71-.611.105.025.443 0 .472-.102.028-.103-.054-.434.131-.485.183-.051.473-.077.473-.077s.419-1.274.605-1.35c.184-.078.471-.153.471-.153s.551-.459.736-.434c.185.026.788-.05.788-.05s.551-.587.656-.84c.106-.256.289-.409.448-.436.157-.024-.08-.15.157-.304.235-.154 1.209-.611 1.39-.79.184-.177.475-.688.475-.688s-.134-.636.079-.815c.209-.178.996-.433 1.314-.587.313-.152 1.023-.635 1.152-.865.133-.229.476-.612.551-.636.08-.026.528-.588.63-.688.107-.103.792-.359.923-.435.13-.075.707-.075.839-.102.132-.024.236-.204.577-.255.343-.05 1.498.051 1.576.026.08-.026.237-.23.42-.152.187.075.395.56.5.61.105.052.47.155.734.332.261.179.631.713.945.688.318-.024.499.434.659.637.157.205.709.765.682.892-.026.129-.185.459-.026.714.158.254.341.712.498.814.157.103.498.638.498.842 0 .202.264.762.53.967.258.204.628 1.351.915 1.709.288.354 1.078 2.24 1.29 2.522.21.279.21.177.472.255.262.074 1.1.584 1.34.762.236.18 1.075 1.606 1.258 1.862.187.256 1.024 1.63 1.184 1.91.158.28.499 1.326.709 1.35.209.026.576 1.095.785 1.248.212.154 1.054 1.326 1.237 1.453.182.127.84 1.656.944 1.833.105.18-1.659 1.177-1.424 1.227.236.05-.916.433-.757.485.159.05-1.415.689-.785.97.631.279-1.458 1.94-1.458 1.94s-1.9 1.967-1.692 1.94c.21-.025-1.971 2.274-1.814 2.425.158.154-3.229 1.328-2.994 1.455.237.13-4 1.456-4 1.456l-5.195.97-15.336-5.82L36.37 26.71z"}),h.default.createElement("path",{fill:"url(#paint0_linear)",d:"M63.554 15.07c-.133.124-.313.43-.313.608s.076.46.13.586c.05.127.08.612.08.612s-.293-.178-.423-.332c-.13-.153-.104-.482-.13-.611-.027-.128-.342.13-.526.152-.093.014-.165-.12-.228-.253-.062-.133-.115-.267-.167-.255-.104.027-.419.18-.735.46-.314.278-.234.38-.394.458-.156.075-.234.126-.446-.025-.111-.08-.141-.014-.181.053-.035.06-.077.121-.19.073-.115-.05-.053.086.02.22.078.139.168.278.088.213-.155-.126-.155.28-.053.433.106.154.29.46.42.713.135.256.815 1.48.606 1.428-.21-.052-.448-.611-.528-.84-.077-.23-.472-.588-.552-.588-.075 0-.471-.027-.576-.075-.103-.051-.84-.23-1.26-.204-.42.025-.527-.357-.735-.409-.212-.05-.894-.254-1.077-.279-.183-.025.42.586.604.637.184.05.288.204.026.303-.262.104-.708-.279-.838-.279-.134 0-.37.357-.21.46.155.102.812.484.946.587.127.101.025.533-.109.482-.129-.052-.867-.052-1.181.027-.316.076-.814-.334-1.049-.51-.237-.178-.474-.052-.58.077-.105.125-.447.611-.656.814-.209.203-.998.203-1.206.357-.213.152-1.052.84-1.288 1.122-.237.279-.997.508-1.262.688-.263.178-.657.992-.814 1.12a6.114 6.114 0 00-.684.688c-.209.254-.631.509-.891.816-.264.305-.473.585-.473.585l-.526.534-.446-.255s-.601.409-.813.512c-.21.1-.975-.052-1.235-.078-.265-.025-.605.28-.526.307.08.026.134.177.08.255-.055.076-.605.076-.605.076l-.132.433s-.5.075-.71.075c-.21 0-.523.077-.655.105-.132.025-.5-.308-.63-.308-.134 0-.5-.152-.655 0-.16.154-.424.561-.424.561s-.394 0-.523.025c-.13.026-.84.23-.84.23l2.732 14.803c3.806 2.777 8.538 4.422 13.666 4.422 9.751 0 18.071-5.95 21.316-14.31-.631-1.088-1.59-2.778-1.734-3.005-.21-.33-1.077-1.96-1.233-2.165-.16-.205-.368-.026-.445.05-.04.036-.11.012-.178-.012-.082-.028-.165-.057-.192.013-.054.127-.367.382-.474.279-.103-.1-.42-.891-.394-1.043.028-.153.446.074.446.074s.133-.074.082-.201c-.054-.128-.684-.282-.792-.256-.103.025-.417-.535-.628-.689-.21-.153-.657-.736-.813-.94-.16-.207-.711-.766-.895-.893-.181-.128-.629-.534-.919-.661-.29-.129-.316-.512-.445-.869-.13-.355-.186.105-.158.23.027.127-.238.333-.16.357.08.025.132.282.263.382.133.101-.262.23-.39.203-.135-.024-.29-.432-.37-.609-.08-.18-.395-.231-.29-.434.107-.205.238-.561.132-.688-.105-.128-.157-.483.025-.458.186.024.315-.103.422-.205.105-.102.316.306.395.432.076.129.498.663.474.536-.028-.128.182-.204.182-.204.21.433 1.968 2.6 2.022 2.804.053.202.158-.078.132-.307-.027-.23.104-.152.13-.255.028-.103-.13-.407-.526-.433-.394-.025-.576-.637-.709-.918-.13-.28.395.23.395.23l-1.234-2.087s-1.103-1.784-1.18-1.784c-.08 0-.266.1-.317.203-.053.1.209.789.286.892.08.1.318.484.239.535-.08.05-.499-.205-.711-.28-.207-.078-.497.254-.497.254s-.08-1.07-.212-1.07c-.13 0-.079-.46-.051-.84.026-.383-.42-.383-.42-.383s-.08-.867-.185-.992c-.105-.13 0-.714.027-.971.028-.253-.552-1.222-.684-1.322-.068-.054-.21-.087-.348-.087-.124 0-.244.026-.307.087z"}),h.default.createElement("path",{fill:"url(#paint1_linear)",d:"M49.923 17.743s-.131.306-.342.457c-.213.154-.343.563-.552.843-.21.279-.47.458-.682.355-.21-.103-.473.051-.446.357.026.306.106.943-.053.867-.16-.077-.026-.408-.262-.255-.238.153-.712.993-.893.918-.185-.076-.396-.536-.526-.358-.131.179-.184.74-.341.484-.157-.256-.393-.23-.76.05-.37.283-.764.462-.947.56-.187.103-.55.383-.632.613a.85.85 0 01-.366.46c-.133.074-.445.305-.445.457 0 .154-.187.23-.398.434-.207.203-.602.482-.811.663-.211.178-.659.663-.869.764-.211.101-.576.383-.367.383 0 0 .367 0 .577-.154.211-.154.815-.586.973-.638.158-.051.525-.076.603.103.08.18-.05.433-.236.559-.182.13-.579.563-.681.588-.106.024-.395.28-.395.28s.497-.025.734-.18c.238-.15.87-.432.945-.637.08-.203.263-.457.397-.66.131-.203.339.1.314.306-.028.202.319.354.497.074.185-.28.448-.15.683-.15.236 0 .739.175.869-.027.132-.204.445-.815.632-.92.183-.099.6-.89.731-1.196.13-.305.578-1.17.685-1.528.105-.357.448-.788.658-.917.209-.127.707-.33.945-.484.235-.152.102-.305.366-.534.264-.23.395-.179.395-.41 0-.227.211-.483.211-.483s-.342-.305-.133-.561c.212-.255.525-.764.525-.764s0-.23-.103-.153c-.106.076-.5-.026-.5-.026v.46z"}),h.default.createElement("path",{fill:"#fff",d:"M63.605 24.24s.842 1.222.998 1.502c.157.282.815 1.428.868 1.632.05.204.133.483.447.713.314.23.655.584.655.584s.028-.355-.026-.509c-.054-.153-.708-.942-.891-1.246-.186-.308-2-2.55-2.05-2.675zM66.783 28.978s.291.46.291.764c0 .307.288.867.42 1.095.132.23.34.664.447.715.103.05.42.077.736.407.312.331.471.584.735.663.261.075.472.153.472.153s-.315-.407-.682-1.044c-.37-.638-1.078-1.784-1.235-1.886-.16-.103-.499-.485-.579-.383-.079.1-.605-.484-.605-.484z"}),h.default.createElement("path",{fill:"url(#paint2_linear)",d:"M42.07 37.411c.34.74 3.018 1.784 2.996 1.248-.02-.366.025-1.56.055-2.28.217.32.398.591.44.675.135.256 2.682 3.745 2.918 4.435.238.69 5.383 3.974 5.91 4.534.13.139.432.451.817.846a23.433 23.433 0 005.45-.813 1.066 1.066 0 01-.28-.44c-.053-.18.185-.255.316-.458.129-.204.104-.204-.078-.181-.185.027-.763-.177-1.078-.203-.315-.024-1.42-.585-1.76-.687-.342-.102-.684-.917-.998-1.149-.316-.227-.525-.277-.657-.227-.133.052-.24-.026-.447-.256-.21-.23-.157-.457-.29-.611-.126-.152-.103.308-.182.357-.078.05-.315-.41-.474-.587-.155-.175-.34-.635-.446-.738-.104-.1-.104.202-.131.356-.025.152-.368.333-.5.23-.133-.102-.262-.456-.394-.586-.064-.063-.07.079-.074.22-.004.145-.002.292-.055.213-.106-.154-.289-.303-.316-.51-.026-.202-.159-.814-.263-.867-.103-.048-.21-.457-.315-.635-.103-.178-.103.127-.103.306 0 .177-.238.026-.293-.077-.05-.102-.157-.533-.259-.61-.107-.077-.29.203-.29.203l-.055.738s-.235-.713-.313-.84c-.078-.129-.342-.612-.368-.434-.027.178-.155-.075-.367-.23-.212-.153-.372-.431-.372-.356 0 .078.11.741-.047.662-.159-.076-.266-.686-.449-.967-.182-.28-.735-.713-.735-.713l-.13-.46s-.526-.025-.579-.178c-.052-.153-.34-.126-.366.052-.026.177-.291-.052-.504-.052-.205 0-.47-.636-.548-.739-.075-.102-.16-.28-.184-.154-.025.13-.209.052-.316-.178-.105-.23.187-.558.237-.688.054-.126-.05-.304-.21-.151-.157.152-.314.535-.314.535l-.288-.409-.134.155-.261-.536-.238-.509-.131.535-.026.031c-.122-.33-.227-.601-.262-.644-.103-.126-.63-1.554-.815-1.808-.182-.255-.157-.738-.157-.738s-.316-.18-.526-.078c-.21.103-.367-.33-.553-.458-.179-.127-.416.027-.416.027v-.587l-1.576-.154s1.443 6.879 1.785 7.618z"}),h.default.createElement("path",{fill:"url(#paint3_linear)",d:"M36.793 23.475c-.186.205-.817.257-.946.356-.131.101-.421.41-.499.535-.08.128-.292.153-.421.255-.131.103-.236.587-.236.587s-.34.05-.71.382c-.368.33-.71.434-1.077.663-.268.167-.78.513-1.085.736 1.14 11.166 10.85 19.89 22.658 19.89.631 0 1.257-.025 1.876-.073a19.55 19.55 0 01-.704-1.09c-.525-.89-1.628-1.399-1.815-1.452-.182-.05-.6-.817-.735-.866-.13-.05-.602-.79-.76-1.043a.845.845 0 00-.632-.41c-.235-.023-1.39-1.5-1.39-1.5s-1.6-1.707-1.759-1.836c-.159-.128-1.024-1.274-1.184-1.452-.157-.178-.97-.764-1.153-.79-.185-.026-.788-.919-.897-1.02-.103-.1-.495-.1-.522 0-.028.101-.29.384-.314.512-.026.127-.026.459-.211.61-.185.15-.288.713-.288.713s-.342-.229-.447-.253c-.108-.026-.263-.843-.289-1.022-.027-.176-.239-.637-.37-.787-.132-.154-.522-.818-.735-.97-.209-.152-.367-.84-.391-1.148-.028-.304-.553-1.196-.685-1.426-.133-.229-.264-1.119-.315-1.273-.054-.153-.343-.636-.499-.815-.157-.18-.892-.967-1.181-1.148-.289-.177-.398-.611-.446-.686-.055-.077-.133-.536-.133-.536s-.182-.331-.237-.484c-.05-.152-.103-2.496-.078-2.573.028-.075-.34-.356-.497-.408-.16-.05.026-.28 0-.406-.028-.127-.212-.282-.212-.282s-.5.306-.68.51z"}),h.default.createElement("path",{fill:"#292929",d:"M.503 1.522h3.322l10.851 19.71 10.848-19.71h3.323L16.498 23.97l12.98 23.424h-3.262L14.676 26.646 3.263 47.394H0L12.919 23.97.503 1.522zM89.929 44.653h13.784v2.74H86.919V1.522h3.01v43.131zM138.864 29.567l-9.22-22.145 9.22 22.145zm-9.22-22.145l-9.281 22.145h18.501l-9.22-22.145zm-10.41 24.883l-6.333 15.088h-3.073L129.644 0l19.754 47.393h-3.071l-6.336-15.088h-20.757zM32.994 24.456c0 11.315 9.722 20.806 21.512 20.806 11.725 0 21.51-9.553 21.51-20.806 0-11.317-9.785-20.806-21.51-20.806-11.79 0-21.512 9.489-21.512 20.806zm46.031 0C79.025 37.352 67.801 48 54.506 48c-13.296 0-24.52-10.648-24.52-23.544 0-12.898 11.163-23.544 24.52-23.544 13.295 0 24.52 10.646 24.52 23.544z"}),h.default.createElement("defs",null,h.default.createElement("linearGradient",{id:"paint0_linear",x1:"60.015",x2:"60.015",y1:"80.164",y2:"14.981",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#626262"})),h.default.createElement("linearGradient",{id:"paint1_linear",x1:"40.169",x2:"50.526",y1:"21.908",y2:"21.908",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#909191"})),h.default.createElement("linearGradient",{id:"paint2_linear",x1:"50.698",x2:"50.698",y1:"29.793",y2:"50.252",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#909191"})),h.default.createElement("linearGradient",{id:"paint3_linear",x1:"23.397",x2:"83.226",y1:"51.182",y2:"51.182",gradientUnits:"userSpaceOnUse"},h.default.createElement("stop",{stopColor:"#fff"}),h.default.createElement("stop",{offset:"1",stopColor:"#626262"}))));const xt=({defaultValues:e,isLoading:t=!1,isError:a=null,onSubmit:l})=>{const[n,o]=r.useState(__spreadValues({email:"",password:"",shouldRemember:!1},e)),s=e=>{const{name:t,value:a}=e.target;o(__spreadProps(__spreadValues({},n),{[t]:a}))};return h.default.createElement("div",{className:"login-container h-screen bg-opacity-40 bg-white"},h.default.createElement("div",{className:"flex flex-col justify-center items-center space-y-8 w-full h-[90%] md:full"},h.default.createElement("div",{className:"px-9 md:py-10 w-82 py-0 rounded-lg md:bg-white"},h.default.createElement("div",{className:"md:mb-10 mb-12"},h.default.createElement(_t,{className:"md:h-12 md:mb-20 w-auto h-10 mx-auto"})),h.default.createElement("form",{onSubmit:e=>{e.preventDefault(),l(n)}},h.default.createElement("fieldset",{className:"space-y-6",disabled:t},h.default.createElement("div",{className:"-space-y-px bg-white rounded-md"},h.default.createElement($e,{className:"md:mb-7"},h.default.createElement(mt,null,"Email"),h.default.createElement(Je,{required:!0,name:"email",type:"email",autoComplete:"email",value:n.email,error:!!a,onChange:s})),h.default.createElement($e,null,h.default.createElement(mt,null,"Password"),h.default.createElement(Je,{required:!0,name:"password",type:"password",autoComplete:"current-password",value:n.password,error:!!a,onChange:s}))),h.default.createElement(ft,{name:"remember",label:"Remember me",checked:n.shouldRemember,onChange:e=>{const{name:t,checked:a}=e.target;o(__spreadProps(__spreadValues({},n),{[t]:a}))}}),a?h.default.createElement(z,{color:"danger"},a):null,h.default.createElement(x,{type:"submit",className:"w-full",color:"primary"},t?h.default.createElement(We,{size:"current",color:"current",className:"mr-2"}):null,"Login"),h.default.createElement("div",{className:"mt-5 text-sm text-center"},h.default.createElement("a",{href:"https://xola.com/resetting/form",className:"text-gray-darker hover:text-black font-semibold underline",target:"_blank",rel:"noreferrer"},"Forgot your password?")))))),h.default.createElement("footer",null,h.default.createElement("div",{className:"flex flex-col items-center justify-center w-full px-4 py-1 overflow-hidden sm:px-6 lg:px-8"},h.default.createElement("div",{className:"px-4 m-5 w-82 opacity-30 hover:opacity-80 md:text-sm text-xs text-center rounded-lg"},h.default.createElement("a",{href:"https://www.xola.com/team",target:"_blank",className:"md:text-gray",rel:"noreferrer"},"Handcrafted in Houston, Belgrade & Bengaluru",h.default.createElement("div",{className:"text-center"},"© ",(new Date).getFullYear()," Xola, Inc."))))))};xt.propTypes={defaultValues:p.default.shape({email:p.default.string,password:p.default.string,shouldRemember:p.default.bool}),isLoading:p.default.bool,isError:p.default.string,onSubmit:p.default.func};const yt=w.default(),bt=new Set(["JPY","CLP","KRW","LAK","PYG","VND","VUV"]),Lt=e=>bt.has(e),Mt=w.default(),Ct=e=>{const t=Math.abs(e);return t>=0&&t<=.001},Nt=(e,t=null,a=Mt,r=2)=>{const l={style:t?"currency":"decimal",minimumFractionDigits:r,maximumFractionDigits:r};return t&&(l.currency=t),new Intl.NumberFormat(a,l).format(e)},jt=(e,t)=>{let a=Number(t);return Lt(e)?a=c.round(a):(c.round(a,3)===c.round(a,4)&&(a=c.round(a,3)),a=c.round(a,2)),a},Vt=w.default(),zt=({currency:e="USD",locale:t=Vt,shouldRemoveTrailingZeroes:a=!0,maximumFractionDigits:r=2,children:l})=>{let n=l;Ct(n)&&(n=0);let o=Nt(n,e,t,Lt(e)?0:r);return o=a?o.replace(".00",""):o,h.default.createElement("span",{className:"currency-formatted-amount"},o)};zt.propTypes={currency:p.default.string,locale:p.default.string,shouldRemoveTrailingZeroes:p.default.bool,maximumFractionDigits:p.default.number,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},(zt.Round=({currency:e,children:t})=>{const a=jt(e,t);return h.default.createElement("span",{className:"currency-rounded"},a)}).propTypes={currency:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired},(zt.Split=({currency:e="USD",locale:t=Vt,children:a})=>{let r=a;Ct(r)&&(r=0);const l=jt(e,r).toString().split("."),n=l[0];let o=l[1]||"0";1===o.length&&(o+="0");const s=Nt(n,e,t,0);return h.default.createElement("span",{title:r,className:"currency-formatted-split-amount"},h.default.createElement("span",{className:"amount-int"},s),!Lt(e)&&h.default.createElement("span",{className:"pl-1 underline amount-decimal"},h.default.createElement("sup",null,o)))}).propTypes={currency:p.default.string,locale:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const It=v.default.PhoneNumberFormat,Tt=v.default.PhoneNumberUtil.getInstance(),Bt=({countryCode:e="US",className:t,children:a})=>{const r=a;try{let a=Tt.parseAndKeepRawInput(r,e);const l=Tt.getRegionCodeForNumber(a);let n;if(l&&l!==e&&(a=Tt.parseAndKeepRawInput(r,l)),l){const t=l===e?It.NATIONAL:It.INTERNATIONAL;n=Tt.format(a,t)}else n=r;return h.default.createElement("span",{className:t,"data-region-code":l||"N/A","data-country-code":e,title:r},n)}catch(l){console.debug("Invalid phone number",r,l.message)}return h.default.createElement("span",{className:t,"data-country-code":e},r)};Bt.propTypes={countryCode:p.default.string,className:p.default.string,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};const Ht=w.default(),Ot=({locale:e=Ht,maximumFractionDigits:t=2,children:a})=>{const r=Nt(a,null,e,t);return h.default.createElement("span",{className:"formatted-number"},r)};Ot.propTypes={locale:p.default.string,maximumFractionDigits:p.default.number,children:p.default.oneOfType([p.default.arrayOf(p.default.node),p.default.node]).isRequired};e.AddSquareIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M12.4 2.356a.455.455 0 00-.457-.456H3.725c-.255 0-.456.2-.456.456v8.214c0 .25.2.451.456.451h8.213-.004c.25 0 .456-.205.456-.456l.01-8.209zM7.85 3.212v6.125M10.912 6.275H4.787",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M3.273 3.725h-.917c-.255 0-.456.2-.456.456v7.757-.004a.45.45 0 00.452.456h7.757-.005a.458.458 0 00.456-.456v-.913",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Alert=z,e.AlertCircleIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#AlertCircleIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M12.68 6.857a5.81 5.81 0 01-5.735 5.823H6.94a5.648 5.648 0 01-5.73-5.562c-.005-.026-.005-.052-.005-.073L1.2 7.04a5.812 5.812 0 015.73-5.834V1.2a5.639 5.639 0 015.723 5.557v.068l.026.031zM6.95 7.5V4.357"}),h.default.createElement("path",{d:"M6.945 9.042v0a.128.128 0 00-.13.124c0 .068.057.125.13.125v0a.136.136 0 00.125-.136l-.005-.005-.005-.005c-.005-.073-.063-.13-.13-.13h-.005"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"AlertCircleIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.AnnounceIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 20 20",width:20,height:20,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M1.428 14.979l2.022 3.044"}),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M12.608 1.428l7.678 11.565M19.882 12.382l-16.835 5.03-1.216-1.83L13 2.022l6.871 10.35.012.01z"}),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M11.809 14.796a2.553 2.553 0 01-.253 3.598 2.566 2.566 0 01-3.61-.253c-.072-.084-.145-.168-.205-.265l-1.059-1.6"})),e.ArchiveIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M12.25 4.083H1.75a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.25 6.417h3.5M12.056 4.083v7c0 .645-.522 1.167-1.167 1.167H3.111a1.166 1.166 0 01-1.167-1.167v-7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ArrowCcwIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 11.667A4.667 4.667 0 102.333 7v.36",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M.583 5.833l1.75 1.75 1.75-1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ArrowRightIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M8.714 2.714L13 7l-4.286 4.286M13 7.003H1",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),e.ArrowUpRightIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#ArrowUpRightIcon_svg__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M5.182 2.757h6.06v6.061M11.244 2.76L2.76 11.244"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"ArrowUpRightIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.AtIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M9.722 7a2.722 2.722 0 11-5.444 0 2.722 2.722 0 015.444 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M9.721 7v1.166a1.555 1.555 0 103.111 0V6.999a5.833 5.833 0 10-2.333 4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Avatar=O,e.Badge=N,e.BalloonIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#BalloonIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M10.792 5.196c0 2.152-1.744 4.87-3.896 4.87S3 7.348 3 5.196v0a3.896 3.896 0 117.792 0v0zM6.833 10.062s-.55 1.942.548 2.738"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"BalloonIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.BankCheckIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M5.106 7.819l-1.86.265.265-1.86L8.28 1.45h-.005c.435-.44 1.15-.44 1.59-.005.435.435.435 1.15 0 1.59l-4.76 4.784z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M3.625 4.125H2.12a.749.749 0 00-.75.75v5.25-.005c-.005.41.335.75.745.75h9.75-.005c.41 0 .75-.34.75-.75V4.87c0-.415-.34-.75-.75-.75h-.75M11.125 9h-3.75M11.125 7.125h-2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.BellIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M5.663 10.7v.214a1.337 1.337 0 002.674 0V10.7M8.07 3.355v-.536a1.07 1.07 0 10-2.14 0v.536",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M3.828 5.943A2.643 2.643 0 016.472 3.3h1.057a2.643 2.643 0 012.643 2.643v1.632c0 .309.123.606.342.825l.374.373c.219.22.342.516.342.825 0 .61-.494 1.103-1.103 1.103H3.873a1.102 1.102 0 01-1.102-1.103c0-.309.123-.606.342-.825l.374-.373c.218-.22.341-.516.341-.825V5.943v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.BookmarkIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M8.518 5.498a.22.22 0 01-.216.217.204.204 0 01-.113-.035l-1.085-.65-1.31.68v-.004a.222.222 0 01-.321-.2V2H8.51l.008 3.498z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M11.555 2.022h-9.11a.434.434 0 00-.434.434v9.11c0 .24.194.434.434.434h9.11c.24 0 .434-.194.434-.434v-9.11a.434.434 0 00-.434-.434z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.BoxIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.679 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59h-.005a.461.461 0 01-.286-.005l-4.351-1.585A.435.435 0 012 9.8V4.347a.424.424 0 01.321-.421l4.56-1.186v-.004a.37.37 0 01.217 0l4.58 1.211zM6.794 5.345v6.513",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M11.885 4.069L6.794 5.34l-4.66-1.272",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Breadcrumb=Ye,e.BriefcaseIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 20 20",width:20,height:20,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M16.875 4.37488H3.125C1.74429 4.37488 0.625 5.49417 0.625 6.87488V16.8749C0.625 18.2556 1.74429 19.3749 3.125 19.3749H16.875C18.2557 19.3749 19.375 18.2556 19.375 16.8749V6.87488C19.375 5.49417 18.2557 4.37488 16.875 4.37488Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M13.125 3.74988C13.125 2.92108 12.7958 2.12622 12.2097 1.54017C11.6237 0.954118 10.8288 0.624878 10 0.624878C9.1712 0.624878 8.37634 0.954118 7.79029 1.54017C7.20424 2.12622 6.875 2.92108 6.875 3.74988V4.37488H13.125V3.74988Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M5.83334 4.99988V19.1665",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M14.1667 4.99988V19.1665",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Button=x,e.ButtonGroup=X,e.CakeIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.506 7.739v3.712l-.006-.006c0 .628.508 1.136 1.136 1.142h6.723a1.146 1.146 0 001.136-1.148V7.727",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M5.647 2.441a.863.863 0 01-.857.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.629-1.324h-.006a.278.278 0 01.4-.046l.04.04c.308.382.525.834.628 1.319l.023.017zM10.514 2.441a.863.863 0 01-.856.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.628-1.324h-.005a.278.278 0 01.4-.046l.04.04c.308.382.525.834.628 1.319l.022.017zM10.229 6.311H9.087V4.312a.283.283 0 01.28-.291h.57-.005a.282.282 0 01.285.28l.012 2.01zM5.361 6.311H4.219V4.312a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.286.28l.011 2.01z",fill:"currentColor"}),h.default.createElement("path",{d:"M11.5 9.11c0 .822-.674 1.498-1.499 1.498A1.5 1.5 0 018.502 9.11c0 .823-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5c0 .823-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5V6.882a.566.566 0 01.565-.577h7.852-.005a.564.564 0 01.57.566l.012 2.238z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CalendarIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.76 2.87H2.24a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.174 2v2.174M9.826 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CardIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.654 3H2.352a.98.98 0 00-.98.98v5.874c0 .54.44.98.98.98h9.302a.98.98 0 00.98-.98V3.98a.98.98 0 00-.98-.979z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{fill:"currentColor",d:"M1.6 4.5h11V6h-11z"})),e.CartAltIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.753 3h-9.5a1 1 0 00-1 1v6a1 1 0 001 1h9.5a1 1 0 001-1V4a1 1 0 00-1-1zM1.25 5h11.5M11.25 7h-1.5M6.75 7h-4",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),e.CartIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2 2.031l2.494 6.86h.014a.678.678 0 00.623.424h4.764c.265 0 .504-.159.61-.41l1.433-3.981c.159-.345 0-.73-.332-.876a.604.604 0 00-.265-.066H2.776M8.966 11.318h.013c-.173-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.319-.345M5.648 11.318h.013c-.172-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.318-.345",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CashIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.797 4.6h-.005a.194.194 0 01.197.197.203.203 0 01-.405-.005.195.195 0 01.197-.203s0 0 0 0M9.6 7.4h-.005a.194.194 0 01.197.197c0 .107-.09.198-.203.198a.203.203 0 01-.202-.203.195.195 0 01.197-.203",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M10.6 3H1.8a.8.8 0 00-.8.8v4.8a.8.8 0 00.8.8h8.8a.8.8 0 00.8-.8V3.8a.8.8 0 00-.8-.8z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M6.2 4.6a1.6 1.6 0 100 3.2 1.6 1.6 0 000-3.2zM13 5.4v4.8c0 .437-.363.8-.8.8H3.4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CheckIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2 7.546l2.727 2.727L12 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Checkbox=ft,e.ChecklistIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2 4.638l.983.983L5.603 3M2 10.638l.983.983L5.603 9M7.569 4H11.5M7.569 10H11.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ChevronDownIcon=I,e.ChevronLeftIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M9 12.5L3.5 7 9 1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ChevronRightIcon=T,e.ChevronUpIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M1.75 9.75l5.5-5.5 5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ChipIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M4.429 2.714V1M7 2.714V1M9.571 2.714V1M4.429 13v-1.714M7 13v-1.714M9.571 13v-1.714M11.286 4.429H13M11.286 7H13M11.286 9.571H13M1 4.429h1.714M1 7h1.714M1 9.571h1.714M9.571 2.714H4.43c-.947 0-1.715.768-1.715 1.715V9.57c0 .947.768 1.715 1.715 1.715H9.57c.947 0 1.715-.768 1.715-1.715V4.43c0-.947-.768-1.715-1.715-1.715z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.029 5.4H6.057a.657.657 0 00-.657.657V8.03c0 .363.294.657.657.657H8.03a.657.657 0 00.657-.657V6.057a.657.657 0 00-.657-.657z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ClockAltIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M7 6.214a.786.786 0 100 1.572.786.786 0 000-1.572zM7 6.214v-2.75M7.555 7.555l1.41 1.41",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ClockIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.875 12.25a5.375 5.375 0 100-10.75 5.375 5.375 0 000 10.75z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M6.875 4.304v2.571l2.805 2.57",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CloseCircleIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 12.833A5.833 5.833 0 107 1.167a5.833 5.833 0 000 11.666zM4.667 9.333l4.666-4.667M9.333 9.333L4.667 4.666",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CloseIcon=j,e.CommentIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.215 10.107H7.668l-2.796 2.229h-.009a.23.23 0 01-.3-.033.227.227 0 01-.05-.142v-2.07H2.835A.839.839 0 012 9.248V3.404a.827.827 0 01.826-.843h8.348-.009a.825.825 0 01.835.826V9.23c0 .46-.376.835-.835.835h-.008l.058.042zM4.538 5.103h5.008M4.538 7.607h3.339",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.CompassIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#CompassIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M7 13A6 6 0 107 1a6 6 0 000 12z"}),h.default.createElement("path",{d:"M5.696 5.696L9.55 4.108v0a.26.26 0 01.341.34L8.304 8.305"}),h.default.createElement("path",{d:"M8.304 8.304L5.696 5.696 4.108 9.55v0a.26.26 0 00.34.341l3.856-1.588z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"CompassIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.CopyIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M8.17 7.002L9.917 8.75l-1.75 1.75M5.25 8.75H2.917A1.166 1.166 0 011.75 7.583V2.917c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167V5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M11.083 12.25H6.417a1.166 1.166 0 01-1.167-1.167V6.417c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167v4.666c0 .645-.522 1.167-1.167 1.167zM5.25 8.75h4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Currency=zt,e.DepositIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M1.008 6.006v5.863M12 11.136a2.2 2.2 0 00-2.199-2.199H7.053A2.2 2.2 0 004.855 6.74H1v4.397h11zM4.855 8.938h2.748M10.906 1.625V1M11.844 1.625h-1.275a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H9.937M10.906 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.DisabledIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 12A5 5 0 107 2a5 5 0 000 10zM3.465 10.535l7.07-7.07",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.DisputesIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 22 22",width:22,height:22,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M20.5777 10.3387L11.6144 1.37538C11.2492 1.0102 10.6572 1.0102 10.292 1.37538L1.32868 10.3387C0.963504 10.7039 0.963503 11.2959 1.32868 11.6611L10.292 20.6244C10.6572 20.9896 11.2492 20.9896 11.6144 20.6244L20.5777 11.6611C20.9429 11.2959 20.9429 10.7039 20.5777 10.3387Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M10.975 6.34784V11.5937",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M10.9623 14.7636C10.8314 14.7636 10.7285 14.8665 10.7379 14.9974C10.7379 15.119 10.8407 15.2218 10.9716 15.2218C11.0932 15.2125 11.1961 15.1096 11.1867 14.9787C11.1774 14.9693 11.1774 14.9693 11.1774 14.9693C11.168 14.8384 11.0651 14.7356 10.9436 14.7356",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M10.976 14.7636H10.9653",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.DotCircleIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#DotCircleIcon_svg__clip0)"},h.default.createElement("path",{d:"M7 13A6 6 0 107 1a6 6 0 000 12z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"DotCircleIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.Drawer=Et,e.EditIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.214 6.88a.987.987 0 111.396 1.396l-3.312 3.31a.573.573 0 01-.405.167H7.737v-1.156c0-.152.06-.298.168-.406l3.31-3.312v0zM4.295 4.869h4.59M4.295 7.163h2.868M11.879 9.01l-1.4-1.4M11.179 4.869V3.147c0-.633-.514-1.147-1.148-1.147H3.147C2.513 2 2 2.514 2 3.147v7.458c0 .634.513 1.148 1.147 1.148h2.295",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.EllipsisIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M13.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM8.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),e.EmailIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M12 2.98H2a.833.833 0 00-.833.833v6.666c0 .46.373.834.833.834h10c.46 0 .833-.373.833-.834V3.813A.833.833 0 0012 2.979z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M12.645 3.285l-4.524 3.48a1.838 1.838 0 01-2.241 0l-4.525-3.48",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.EmptyChecklistIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("rect",{x:2,y:2,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("rect",{x:2,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ExportIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#ExportIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M4.947 12.109H4.94c2.813 1.134 6.017-.232 7.16-3.05A5.5 5.5 0 009.058 1.9a5.514 5.514 0 00-7.173 7.166"}),h.default.createElement("path",{d:"M8.532 8.186l.002-2.706-2.706.002M8.534 5.48l-5.416 5.416"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"ExportIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.EyeIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7.017 5.218a1.828 1.828 0 100 3.656 1.828 1.828 0 000-3.656v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M12.958 6.875c-.61-.69-3.04-3.227-5.943-3.227-2.909 0-5.337 2.532-5.943 3.222h-.005a.25.25 0 000 .34c.605.689 3.034 3.221 5.938 3.221 2.903 0 5.332-2.533 5.938-3.227h-.006a.268.268 0 000-.345l.021.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.FaceNeutralIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 .875a6.125 6.125 0 100 12.25A6.125 6.125 0 007 .875v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M5.136 4.736H5.13c.069-.005.133.059.133.128a.14.14 0 01-.133.133c-.075 0-.134-.064-.139-.133a.132.132 0 01.128-.138M8.864 4.736H8.86a.132.132 0 00-.133.134c0 .069.058.133.133.127.07-.005.133-.064.128-.138a.135.135 0 00-.133-.133M3.538 8.864h6.924",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.FaceSadIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.854.729a6.271 6.271 0 100 12.542 6.271 6.271 0 000-12.542v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M3.855 5.773h-.006c.071-.005.137.06.137.13 0 .072-.066.137-.137.137-.076 0-.136-.065-.141-.136a.135.135 0 01.13-.142M9.853 5.773h-.005a.135.135 0 00-.137.136c0 .071.06.137.137.131.07-.005.136-.065.13-.142a.139.139 0 00-.136-.136M4.4 10.817a2.45 2.45 0 114.902-.01",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.FaceSmileIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M4.07 5.92h-.005c.069-.005.133.06.133.131a.14.14 0 01-.133.136c-.075 0-.133-.065-.139-.136a.134.134 0 01.128-.141M9.93 5.92h-.006a.133.133 0 00-.133.137c0 .07.059.135.133.13.07-.005.133-.065.128-.141a.137.137 0 00-.133-.136M3.804 9.046L3.8 9.041c.735 1.799 2.759 2.652 4.527 1.902A3.51 3.51 0 0010.19 9.04",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M7 .893c-.804 0-1.6.162-2.344.476A6.118 6.118 0 002.67 2.724a6.26 6.26 0 00-1.328 2.028 6.362 6.362 0 000 4.784 6.261 6.261 0 001.328 2.027 6.118 6.118 0 001.987 1.355 6.017 6.017 0 004.688 0 6.117 6.117 0 001.987-1.354 6.26 6.26 0 001.328-2.028 6.362 6.362 0 000-4.784 6.26 6.26 0 00-1.328-2.028 6.117 6.117 0 00-1.987-1.355A6.018 6.018 0 007 .893v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.FlagIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.333 11.667V2.333M2.333 9.368l1.309-.402a3.986 3.986 0 013.262.414 3.988 3.988 0 003.185.44l1.24-.353a.467.467 0 00.338-.45V4.154a.465.465 0 00-.595-.449l-.983.281a3.988 3.988 0 01-3.185-.438 3.986 3.986 0 00-3.262-.415l-1.309.402",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ForkIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M4.7 2.023v3.465a2.3 2.3 0 002.31 2.298 2.317 2.317 0 002.298-2.321V2M7.01 2.028V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.FormGroup=$e,e.ForwardIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M9.65 10.651v1.438l2.875-2.636L9.65 6.818v1.437H6.296v2.396H9.65z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M5.338 9.214H2.22a.724.724 0 01-.719-.72v0-5.27a.718.718 0 01.714-.724h8.625-.005a.718.718 0 01.719.719v3.114",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M11.36 2.716l-4.824 3.86-4.825-3.86",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.GiftIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M5.945 6.988H2.788A.791.791 0 012 6.191v-.788a.78.78 0 01.78-.795h8.662-.008a.778.778 0 01.788.78v.787a.79.79 0 01-.788.787h-3.15",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.308 6.988h2.756l-.347 4.78v-.008a.783.783 0 01-.787.724H4.307v0a.785.785 0 01-.787-.733l-.347-4.788H5.93M5.945 4.625V12.5M8.308 12.5V4.625M4.37 3.586c.473.472 2.757 1.032 2.757 1.032s-.56-2.284-1.04-2.757a1.22 1.22 0 00-1.724-.007 1.21 1.21 0 00-.008 1.716l.015.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M9.883 3.586c-.473.472-2.756 1.032-2.756 1.032s.55-2.284 1.031-2.757H8.15a1.21 1.21 0 011.717-.007 1.217 1.217 0 010 1.716l.016.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.GuestIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M4.41 2.591h0a5.372 5.372 0 005.988 1.204"}),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M7.195 7.465a3.233 3.233 0 100-6.465 3.233 3.233 0 000 6.465zM12 11.649a5.315 5.315 0 00-9.61 0"})),e.HandAltIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.008 4v5.863M13 9.13a2.2 2.2 0 00-2.198-2.199H8.053a2.2 2.2 0 00-2.198-2.198H2V9.13h11zM5.855 6.931h2.748",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.HandIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M5.825 3.297V2.273a.766.766 0 111.53-.01v1.024",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M7.36 6.368V3.297a.766.766 0 111.53-.01v1.535",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.897 7.136V4.832a.766.766 0 111.53-.01v5.119a2.56 2.56 0 01-2.56 2.56H6.159a2.574 2.574 0 01-2.165-1.194c-.886-1.392-1.976-3.675-1.976-3.675a.61.61 0 01.154-.855.607.607 0 01.742.031l1.356 1.587V3.276a.766.766 0 111.53-.01v3.071",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.HeaderToolbar=pt,e.HomeIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.462 6.353v5.833M11.538 6.353v5.833M8.296 12.185V9.593a1.296 1.296 0 00-2.592 0v2.592M1.167 12.186h11.666M2.509 6.352c-.99-.007-1.636-.988-1.207-1.833l1-1.97c.228-.449.708-.734 1.234-.734h6.928c.526 0 1.005.285 1.234.734l1 1.97c.43.845-.216 1.826-1.206 1.833-.827 0-1.497-.565-1.497-1.262v-.028c0 .713-.67 1.29-1.497 1.29-.827 0-1.497-.577-1.497-1.29 0 .713-.67 1.29-1.497 1.29-.826 0-1.497-.577-1.497-1.29v.028c-.001.697-.672 1.262-1.498 1.262v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ImageIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.565 2h-9.13A.435.435 0 002 2.435v9.13c0 .24.195.435.435.435h9.13c.24 0 .435-.195.435-.435v-9.13A.435.435 0 0011.565 2zM2 10.26h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M2 9.665s1.083-2.707 2.436-2.707c1.354 0 2.437 1.625 2.437 1.625l1.63-2.8h-.006a.903.903 0 011.24-.324c.151.086.27.216.352.373L12 9.655",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.InfoCircleIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#InfoCircleIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M7.05 1.3a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5v0z"}),h.default.createElement("path",{d:"M8.357 9.666h-.789a.525.525 0 01-.523-.528v0V5.74a.262.262 0 00-.262-.261H6M6.917 4.175h-.005a.13.13 0 00-.131.13c0 .069.057.131.13.126.069-.005.131-.062.126-.136a.133.133 0 00-.13-.13"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"InfoCircleIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.Input=Je,e.InvoiceIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.124 12.022a.479.479 0 01-.477.478H3.478A.48.48 0 013 12.018v0V1.986a.474.474 0 01.473-.487h4.58-.004a.461.461 0 01.339.139l2.584 2.589-.005-.005c.086.086.138.21.138.334l.02 7.465z",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.259 1.558v2.345c0 .262.21.473.478.473h2.345",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M6.906 5.625V5M7.844 5.625H6.569a.839.839 0 00-.844.838.84.84 0 00.525.774l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H5.937M6.906 10v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Key=qe,e.KeyIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M10.22 6.377L9.03 5.185l1.107-1.109 1.187 1.187a.789.789 0 001.108-.021.79.79 0 000-1.093l-1.192-1.191.552-.553a.795.795 0 000-1.113.79.79 0 00-1.113-.005L5.052 6.91v0A2.745 2.745 0 001.33 8.016a2.74 2.74 0 001.108 3.716 2.743 2.743 0 003.71-3.726L7.895 6.26 9.08 7.453c.303.303.8.303 1.108-.006a.79.79 0 00-.005-1.113l.036.043z"})),e.Label=mt,e.LandscapeIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2.867 10.153L7.403 2.95v-.006a.667.667 0 011.062-.005L13 10.142l-10.133.011z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M2.868 10.153H1l1.868-2.935h-.006a.71.71 0 01.534-.272l-.006-.005c.208.005.4.101.534.261l.347.694M5.245 6.377l1.25 1.057-.006-.005a.534.534 0 00.72-.032l.342-.347h-.005a.527.527 0 01.752-.006l.342.342a.533.533 0 00.72.027l1.227-1.04",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.LineVerticalIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.LinkIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.764 9.467L4.731 11.5h-.005a1.919 1.919 0 01-2.711-.005l-.452-.451a1.916 1.916 0 01-.005-2.71L4.49 5.398v-.005a1.909 1.909 0 012.707 0l.447.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M6.312 3.597l2.029-2.031h-.005a1.91 1.91 0 012.706-.008c.75.745 0 0 0 0l.447.447L11.484 2a1.918 1.918 0 010 2.706L8.547 7.638v-.004a1.924 1.924 0 01-2.71 0l-.006-.005-.451-.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"})),e.ListIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.11 4.262h3.67M4.276 7.014H9.78M4.276 9.766H9.78M2.44 2.427a.909.909 0 01.91-.927h7.338-.009a.906.906 0 01.918.909v9.174a.92.92 0 01-.918.917H3.331a.922.922 0 01-.918-.927v0l.028-9.146z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.LockIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{clipRule:"evenodd",d:"M10.775 6.536v0a.905.905 0 00-.9-.91h-5.85 0c-.497 0-.9.407-.9.91v4.553h0c0 .503.403.911.9.911h5.85v0c.497 0 .9-.408.9-.91V6.535zM4.4 4.138h0C4.4 2.847 5.542 1.8 6.95 1.8S9.5 2.847 9.5 4.138v1.487H4.4V4.138z",stroke:"currentColor",strokeWidth:1.02,strokeLinecap:"round",strokeLinejoin:"round"})),e.Login=xt,e.Logo=ee,e.MagicIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#MagicIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M5.615 6.02l1.426 1.442M1 10.697l6.038-6.111h0a.664.664 0 01.946 0l.473.478v0a.683.683 0 010 .958L2.551 12M3.634 2.355V3.71M4.304 3.032H2.965M6.98 1v1.355M7.65 1.678H6.31M10.996 3.37v2.033M12 4.387H9.992"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"MagicIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.MenuIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2 4h10M2 7h10M2 10h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.MixedChecklistIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M2 4.638l.983.983L5.603 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("rect",{x:2,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Modal=K,e.MoneyAddIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.03 3H3.88v0c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02H2M3.53 11v1.5M4.53 1.5V3M9.917 9.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM9.917 5.167v3.5M8.167 6.917h3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.MoneyBackIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:15,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M6.008 9.972A.972.972 0 106.981 9a.972.972 0 11.972-.972M6.98 6.083v.973M6.98 10.944v.973",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M1.845 8.72a5.28 5.28 0 105.28-5.281H6.72",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.447 1.458l-1.98 1.98 1.98 1.981",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.MoneyIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M9.03 3H6.88v0c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02H5M6.53 11v1.5M7.53 1.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.NotificationCount=R,e.Number=Ot,e.PenIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.226 2.773a1.51 1.51 0 00-2.144.015L3.067 8.802l-.734 2.864 2.864-.734 6.015-6.015a1.509 1.509 0 00.014-2.144v0zM8.91 2.96l2.13 2.13M3.068 8.802L5.2 10.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Phone=Bt,e.PhoneIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M8.986 11.573l.006.004a2.705 2.705 0 003.366-.37l.378-.378a.902.902 0 000-1.275l-1.594-1.593a.903.903 0 00-1.276 0v0a.9.9 0 01-1.275 0L6.041 5.41a.902.902 0 010-1.276v0a.9.9 0 000-1.275L4.445 1.264a.903.903 0 00-1.275 0l-.379.378a2.706 2.706 0 00-.37 3.365l.005.006a24.411 24.411 0 006.56 6.56v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.PinIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#PinIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M2.99 5.86v-.1a4.01 4.01 0 118.02 0v.1c0 2.018-2.557 5.058-3.587 6.201a.568.568 0 01-.846 0c-1.03-1.143-3.586-4.183-3.586-6.201v0z"}),h.default.createElement("path",{d:"M5.833 5.807a1.166 1.166 0 102.334 0v-.022a1.166 1.166 0 10-2.334 0"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"PinIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.PlusIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 2v10M12 7H2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Popover=G,e.PrintIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#PrintIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M5.85 11.34h2.285M5.85 9.627h2.285M3.667 9.348H2.096a1.047 1.047 0 01-1.043-1.044V5.168c0-.579.464-1.043 1.043-1.043h9.913c.574 0 1.038.464 1.038 1.043v3.13h-.005a1.047 1.047 0 01-1.049 1.039h-1.565M3.666 3.573V1h5.002c.135 0 .266.052.365.151l1.257 1.26-.005-.005c.094.094.151.23.151.365v.802"}),h.default.createElement("path",{d:"M10.45 12.478a.523.523 0 01-.523.522H4.183a.524.524 0 01-.522-.527v0-4.696h6.783l.005 4.701z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"PrintIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.PuzzleIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7.834 9.98a1.557 1.557 0 112.55-1.67.39.39 0 00.64.133l1.215-1.215a.779.779 0 000-1.101L10.993 4.88a1.557 1.557 0 10-1.91-1.907L7.836 1.728a.779.779 0 00-1.101 0L5.607 2.856a.39.39 0 00.06.6A1.557 1.557 0 113.51 5.614a.39.39 0 00-.6-.06L1.777 6.677a.779.779 0 000 1.101l4.404 4.404a.779.779 0 001.101 0L8.5 10.966a.39.39 0 00-.134-.637 1.54 1.54 0 01-.531-.348z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.ReceiptIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.192 11.344c0 .15-.128.279-.279.279a.283.283 0 01-.184-.073l-1.494-1.282-2.064 1.544v-.005a.285.285 0 01-.334 0l-2.064-1.55-1.494 1.277v-.006a.287.287 0 01-.469-.218V2.063a.552.552 0 01.552-.563h7.25-.005a.551.551 0 01.557.552l.028 9.292zM4.265 4.236h2.736M4.265 6.06h4.56M4.265 7.884h4.56",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})),e.RefreshIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:16,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M11.711 4.083a4.813 4.813 0 00-8.524 3.061v1.314M4.5 10.446a4.812 4.812 0 008.313-3.302V6.27",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M1.438 6.707l1.75 1.75 1.75-1.75M14.563 8.02l-1.75-1.75-1.75 1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.RulerIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M8.927 1.313L1.813 8.427c-.173.172-.125.5.106.731l2.423 2.423c.231.231.559.279.732.106l7.114-7.114c.172-.172.124-.5-.107-.731L9.659 1.419c-.232-.231-.56-.279-.732-.106zM4.042 6.774l1.482 1.482M5.233 5.588l1.038 1.038M6.555 4.26l1.482 1.482M7.74 3.075l1.192 1.18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Search=Ze,e.SearchAltIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M7 4.083H2.917A1.17 1.17 0 001.75 5.25v5.833a1.17 1.17 0 001.167 1.167H8.75a1.17 1.17 0 001.167-1.167V7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M9.625 7A2.614 2.614 0 017 4.375 2.614 2.614 0 019.625 1.75a2.614 2.614 0 012.625 2.625A2.614 2.614 0 019.625 7z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M8.75 4.142h.058c.642 0 1.109.525 1.109 1.108M12.833 7.583l-1.341-1.341",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.SearchIcon=Ae,e.SendIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M1.682 6.816a.708.708 0 01-.033-1.352l9.55-3.113a.358.358 0 01.45.449l-3.111 9.55a.707.707 0 01-1.352-.033L6.117 7.879 1.682 6.816zM11.562 2.437L6.117 7.879",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.SettingsIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#SettingsIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M7 7.233V1M7 12v-1.833M7 7.233a1.467 1.467 0 100 2.934 1.467 1.467 0 000-2.934zM2.967 6.5V12M2.967 1v2.567M2.967 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0zM11.033 6.5V12M11.033 1v2.567M11.033 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"SettingsIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.ShapesIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#ShapesIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M11.635 8.902a1.961 1.961 0 11-2.774 2.774 1.961 1.961 0 012.774-2.774M12.398 4.173l-1.69 1.69a.653.653 0 01-.925 0l-1.691-1.69a.654.654 0 010-.924l1.69-1.692a.653.653 0 01.925 0l1.69 1.691a.655.655 0 010 .925v0zM2.519 5.56h2.39a.654.654 0 00.654-.655v-2.39a.654.654 0 00-.654-.654H2.52a.654.654 0 00-.654.654v2.39c0 .361.293.654.654.654v0zM3.129 8.841l-1.449 2.32a.69.69 0 00.584 1.054h2.9a.69.69 0 00.584-1.055l-1.45-2.318A.69.69 0 003.13 8.84v0z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"ShapesIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.ShirtIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M12.984 5.302L10.943 3.34l-.005-.005a2.624 2.624 0 00-1.816-.733H4.94c-.68 0-1.33.262-1.816.733l-2.04 1.962h-.006a.257.257 0 00-.005.366l1.214 1.214-.005-.005c.094.094.246.1.35.016l1.492-1.162v6.018c0 .14.115.256.261.256H9.62h-.005c.141 0 .261-.12.261-.262V5.721l1.492 1.155c.1.084.256.079.35-.02l1.214-1.22h-.005c.1-.105.1-.272-.005-.372l-.005-.005.068.043zM5.473 2.612a1.567 1.567 0 103.135-.01",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.Sidebar=S,e.Skeleton=kt,e.Spinner=We,e.SplitPaymentIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M10.5 7.5L8.746 9.003A5 5 0 007 12.8v.125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M3.5 7.5l1.754 1.503A5 5 0 017 12.8v.125M2.9 9V7M5 7H3M11.1 9V7M9 7h2M6.906 1.625V1M7.844 1.625H6.569a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H5.937M6.906 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.SquareIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#SquareIcon_svg__clip0)"},h.default.createElement("path",{d:"M10.333 12H3.667C2.746 12 2 11.254 2 10.333V3.667C2 2.747 2.746 2 3.667 2h6.666C11.253 2 12 2.746 12 3.667v6.666c0 .921-.746 1.667-1.667 1.667z",stroke:"currentColor"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"SquareIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.StackIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M10.851 8.4H3.25A.249.249 0 003 8.65v2.203c0 .137.111.248.249.248h7.602a.249.249 0 00.249-.248V8.649a.249.249 0 00-.248-.249z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M11.752 5.7H4.149a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.603A.249.249 0 0012 8.152V5.949a.249.249 0 00-.248-.249z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M10.851 3H3.25A.249.249 0 003 3.25v2.203c0 .137.111.248.249.248h7.602a.249.249 0 00.249-.248V3.249A.249.249 0 0010.852 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.StarIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#StarIcon_svg__clip0)"},h.default.createElement("path",{d:"M7.389 1.239l1.785 3.535 3.434.34a.437.437 0 01.367.283.426.426 0 01-.102.45l-2.83 2.8 1.049 3.807a.427.427 0 01-.144.446.437.437 0 01-.47.053L7 11.231l-3.478 1.724a.438.438 0 01-.608-.255.426.426 0 01-.005-.244l1.048-3.808-2.83-2.803a.429.429 0 01.265-.733l3.434-.34 1.785-3.535A.432.432 0 017.001 1a.438.438 0 01.388.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"StarIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.Switch=et,e.Table=Y,e.Tabs=ht,e.TicketIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#TicketIcon_svg__clip0)"},h.default.createElement("path",{d:"M11.693 4.31a1.354 1.354 0 11-1.915-1.915L8.66 1.278a.451.451 0 00-.639 0L1.32 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 011.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L11.693 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"TicketIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.Tooltip=U,e.TrashIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#TrashIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M1.828 3.324H12.15M8.095 1.85H5.884v0a.737.737 0 00-.738.737v.738h3.687v-.738 0a.737.737 0 00-.738-.737v0zM5.884 9.591V5.905M8.095 9.591V5.905"}),h.default.createElement("path",{d:"M10.364 11.495v0a.737.737 0 01-.735.677H4.35v0a.737.737 0 01-.734-.677l-.682-8.17h8.11l-.68 8.17z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"TrashIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",transform:"translate(1.091 1.113)",d:"M0 0h11.796v11.796H0z"})))),e.UserAddIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{d:"M9.917 12.834a2.917 2.917 0 100-5.834 2.917 2.917 0 000 5.834zM9.917 8.167v3.5M8.167 9.917h3.5M1.167 9.333c0-.578.138-1.148.4-1.658.263-.51.642-.943 1.105-1.262a3.224 3.224 0 013.162-.3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M4.667 5.833a2.333 2.333 0 100-4.666 2.333 2.333 0 000 4.666z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.UserIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#UserIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M4.02 2.591h0a5.371 5.371 0 005.988 1.204"}),h.default.createElement("path",{d:"M6.805 7.465a3.233 3.233 0 100-6.465 3.233 3.233 0 000 6.465zM11.61 11.649a5.315 5.315 0 00-9.61 0"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"UserIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.VeteranIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("g",{clipPath:"url(#VeteranIcon_svg__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},h.default.createElement("path",{d:"M2.5 7.642a.6.6 0 01.933-.499L6.667 9.3a.6.6 0 00.666 0l3.234-2.157a.6.6 0 01.933.5V9.93a.6.6 0 01-.267.5l-3.9 2.599a.6.6 0 01-.666 0l-3.9-2.602a.6.6 0 01-.267-.5V7.643zM7.283 1.172L7.9 2.5h1.2a.293.293 0 01.207.513L8.265 4.04l.577 1.325a.314.314 0 01-.448.393L7 4.973l-1.394.785a.314.314 0 01-.448-.393l.577-1.325-1.041-1.026A.293.293 0 014.9 2.5h1.2l.617-1.328a.318.318 0 01.566 0z"})),h.default.createElement("defs",null,h.default.createElement("clipPath",{id:"VeteranIcon_svg__clip0"},h.default.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),e.WaitlistIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("rect",{x:2,y:2,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M4 3.333V4l.333.333.167.167",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("rect",{x:2,y:8,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),h.default.createElement("path",{d:"M4 9.333V10l.333.334.167.166M7.667 4h4M7.667 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),e.WriteIcon=e=>h.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:14,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),h.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M2.5 11h9M11.03 4.746l-5.708 5.708v0a.379.379 0 01-.193.104l-2.176.435v0a.38.38 0 01-.446-.446l.435-2.175v0a.383.383 0 01.104-.194L8.755 2.47v0a1.605 1.605 0 012.269 0l.007.007v0a1.606 1.606 0 010 2.27v0z"})),e.almostZero=Ct,e.getSymbol=(e,t=yt,a=0)=>new Intl.NumberFormat(t,{style:"currency",currency:e,maximumFractionDigits:0}).format(a).replace(/\d/g,"").trim(),e.isOSX=Pe,e.isZeroDecimal=Lt,e.numberFormat=Nt,e.roundNumber=jt,Object.defineProperty(e,"__esModule",{value:!0}),e[Symbol.toStringTag]="Module"}));
1
+ var __defProp=Object.defineProperty,__defProps=Object.defineProperties,__getOwnPropDescs=Object.getOwnPropertyDescriptors,__getOwnPropSymbols=Object.getOwnPropertySymbols,__hasOwnProp=Object.prototype.hasOwnProperty,__propIsEnum=Object.prototype.propertyIsEnumerable,__defNormalProp=(e,t,a)=>t in e?__defProp(e,t,{enumerable:!0,configurable:!0,writable:!0,value:a}):e[t]=a,__spreadValues=(e,t)=>{for(var a in t||(t={}))__hasOwnProp.call(t,a)&&__defNormalProp(e,a,t[a]);if(__getOwnPropSymbols)for(var a of __getOwnPropSymbols(t))__propIsEnum.call(t,a)&&__defNormalProp(e,a,t[a]);return e},__spreadProps=(e,t)=>__defProps(e,__getOwnPropDescs(t)),__require="undefined"!=typeof require?require:e=>{throw new Error('Dynamic require of "'+e+'" is not supported')},__objRest=(e,t)=>{var a={};for(var r in e)__hasOwnProp.call(e,r)&&t.indexOf(r)<0&&(a[r]=e[r]);if(null!=e&&__getOwnPropSymbols)for(var r of __getOwnPropSymbols(e))t.indexOf(r)<0&&__propIsEnum.call(e,r)&&(a[r]=e[r]);return a};!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("clsx"),require("prop-types"),require("react"),require("@tippyjs/react"),require("tippy.js"),require("@headlessui/react"),require("downshift"),require("react-hotkeys-hook"),require("react-day-picker"),require("dayjs"),require("get-user-locale"),require("mathjs"),require("google-libphonenumber"),require("react-hot-toast"),require("lodash")):"function"==typeof define&&define.amd?define(["exports","clsx","prop-types","react","@tippyjs/react","tippy.js","@headlessui/react","downshift","react-hotkeys-hook","react-day-picker","dayjs","get-user-locale","mathjs","google-libphonenumber","react-hot-toast","lodash"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).XolaUIKit={},e.clsx,e.PropTypes,e.React,e.Tippy,e.tippy_js,e.react,e.downshift,e.reactHotkeysHook,e.DayPicker$2,e.dayjs,e.getUserLocale,e.mathjs,e.phoneLib,e.toast,e._)}(this,(function(e,t,a,r,n,l,o,s,i,d,u,c,f,p,h,m){"use strict";function g(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var v=g(t),y=g(a),w=g(r),k=g(n),b=g(d),E=g(u),x=g(c),_=g(p),M=g(h),N=g(m);const C={primary:"bg-primary hover:bg-primary-dark disabled:bg-primary border-transparent text-white",secondary:"bg-secondary hover:bg-secondary-dark disabled:bg-secondary border-transparent",success:"bg-success hover:bg-success-dark disabled:bg-success border-transparent text-white",warning:"bg-warning hover:bg-warning-dark disabled:bg-warning border-transparent text-white",danger:"bg-danger hover:bg-danger-dark disabled:bg-danger border-transparent text-white",outline:"bg-white hover:bg-secondary-lighter disabled:bg-secondary-light border-secondary-light hover:border-black disabled:border-transparent disabled:text-gray-dark",link:"border-transparent hover:underline"},L={tiny:"px-2 py-0.5 text-xs leading-xs",small:"px-3.5 py-2 text-sm leading-sm",medium:"px-4.5 py-3 text-base leading-base",large:"px-6 py-4 text-md leading-md"},D="inline-flex rounded transition-colors border focus:ring disabled:opacity-60 disabled:cursor-default",j=e=>{var t=e,{as:a="button",color:r="primary",size:n="medium",icon:l,iconPlacement:o="left",className:s,children:i}=t,d=__objRest(t,["as","color","size","icon","iconPlacement","className","children"]);return w.default.createElement(a,__spreadValues({className:v.default(D,"justify-center items-center font-semibold",C[r],L[n],s)},d),l&&"left"===o?w.default.createElement("span",{className:"flex-shrink-0 mr-2"},l):null,i,l&&"right"===o?w.default.createElement("span",{className:"flex-shrink-0 ml-2"},l):null)};j.propTypes={as:y.default.oneOfType([y.default.string,y.default.elementType]),className:y.default.string,color:y.default.oneOf(Object.keys(C)),size:y.default.oneOf(Object.keys(L)),icon:y.default.element,iconPlacement:y.default.oneOf(["left","right"]),children:y.default.node.isRequired};const P=__spreadProps(__spreadValues({},L),{small:"h-7.5 w-7.5 px-2 py-2 text-base leading-base",medium:"px-3 py-3 text-base leading-base"}),O=e=>{var t=e,{className:a,as:r="button",color:n="primary",size:l="medium",children:o}=t,s=__objRest(t,["className","as","color","size","children"]);return w.default.createElement(r,__spreadValues({className:v.default(D,C[n],P[l],a)},s),o)};O.displayName="Button.Icon",O.propTypes={as:y.default.oneOfType([y.default.string,y.default.elementType]),className:y.default.string,color:y.default.oneOf(Object.keys(C)),size:y.default.oneOf(Object.keys(L)),children:y.default.node.isRequired},j.Icon=O;const V={primary:"bg-primary-lighter text-primary-dark",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-success-dark",warning:"bg-warning-lighter text-warning-dark",caution:"bg-caution-lighter text-caution-dark",danger:"bg-danger-lighter text-danger-dark",problem:"bg-warning text-white",critical:"bg-danger text-white"},T={small:"px-2 py-0.75 h-5 text-sm leading-sm",medium:"px-3 py-1.5 h-7.5 text-base leading-base",large:"px-3.5 py-0.75 h-10 text-lg leading-lg"},B={small:"w-3 h-3",medium:"w-4 h-4",large:"w-5 h-5 mr-1.5"},z=e=>{var t=e,{color:a="primary",size:n="small",icon:l,className:o,children:s}=t,i=__objRest(t,["color","size","icon","className","children"]);return w.default.createElement("span",__spreadValues({className:v.default("badge inline-flex items-center rounded-full whitespace-nowrap",V[a],T[n],o)},i),l?r.cloneElement(l,{className:v.default("mr-1",B[n])}):null,s)};z.propTypes={className:y.default.string,color:y.default.oneOf(Object.keys(V)),size:y.default.oneOf(Object.keys(T)),icon:y.default.element,children:y.default.node.isRequired};const I={small:"w-3.5 h-3.5",medium:"w-4.5 h-4.5",large:"w-6 h-6"},F=e=>{const t=t=>{var a=t,{size:r="small",className:n}=a,l=__objRest(a,["size","className"]);return w.default.createElement(e,__spreadValues({className:v.default(I[r],"inline-block",n)},l))};return t.propTypes={size:y.default.oneOf(Object.keys(I)),className:y.default.string},t},S=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M11.201 3.464l-7.07 7.072M11.202 10.536L4.13 3.464"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),R={primary:"bg-primary-lighter text-black border border-primary",secondary:"bg-secondary-light text-gray-darker border border-secondary",success:"bg-success-lighter text-black border border-success",warning:"bg-warning-lighter text-black border border-warning",danger:"bg-danger-lighter text-black border border-danger",caution:"bg-caution-lighter text-black border border-caution"},A={small:"px-1 py-0.75 text-sm",medium:"px-2 py-1 text-base"},H=e=>{var t=e,{color:a="primary",size:r="small",onClose:n,className:l,children:o}=t,s=__objRest(t,["color","size","onClose","className","children"]);return w.default.createElement("span",__spreadValues({className:v.default("tag inline-flex rounded leading-3.5",R[a],A[r],l)},s),o,n?w.default.createElement(S,{className:"float-right ml-2 cursor-pointer text-block hover:text-gray-darker",onClick:n}):null)};H.propTypes={color:y.default.oneOf(Object.keys(R)),size:y.default.oneOf(Object.keys(A)),onClose:y.default.func,className:y.default.string,children:y.default.node.isRequired};const W={primary:"bg-primary",secondary:"bg-secondary",success:"bg-success",warning:"bg-warning",danger:"bg-danger",caution:"bg-caution"},U=e=>{var t=e,{color:a="primary",className:r}=t,n=__objRest(t,["color","className"]);return w.default.createElement("span",__spreadValues({className:v.default("inline-block w-1 h-1 rounded-full text-white",W[a],r)},n))};U.propTypes={className:y.default.string,color:y.default.oneOf(Object.keys(W))};const q={primary:"bg-primary-lighter text-black",secondary:"bg-secondary-lighter text-black",success:"bg-success-lighter text-black",warning:"bg-warning-lighter text-black",danger:"bg-danger-lighter text-black",caution:"bg-caution-lighter text-black"},K=e=>{var t=e,{className:a,color:r="primary",onClose:n,children:l}=t,o=__objRest(t,["className","color","onClose","children"]);return w.default.createElement("div",__spreadValues({className:v.default("ui-alert flex items-start rounded text-base px-3 py-3 leading-4",q[r],a)},o),w.default.createElement("span",{className:"ui-alert-body w-full"},l),n?w.default.createElement("button",{className:"ui-alert-close ml-3 cursor-pointer hover:text-gray-dark"},w.default.createElement(S,{onClick:n})):null)};K.propTypes={className:y.default.string,color:y.default.oneOf(Object.keys(q)),onClose:y.default.func,children:y.default.node.isRequired};const Y=e=>w.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"192",height:"192",fill:"none",viewBox:"0 0 192 192"},e),w.default.createElement("path",{fill:"#1B5EA8",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),w.default.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M6.89 97.275c0-49.741 39.906-90.062 89.14-90.062 49.233 0 89.143 40.321 89.143 90.062 0 49.745-39.91 90.066-89.144 90.066-49.233 0-89.138-40.321-89.138-90.067z"}),w.default.createElement("path",{fill:"#fff",d:"M25 105.194s6.998-2.181 7.82-2.29c.817-.104 1.742 0 1.742 0s1.033-1.34 1.346-1.241c.298.104 1.537.524 1.747 0 .196-.524 1.028-1.246 1.434-1.35.416-.113.108-1.038.617-1.458.514-.416 3.905-2.18 4.624-3.011.73-.83 3.29-4.673 3.7-4.673.421 0 1.239-.623 1.547-1.142.298-.524 3.078-3.852 3.7-4.573.626-.727 1.957-1.77 1.957-1.77s.103-2.18.416-2.591c.304-.42 1.434-1.766 1.948-2.388.519-.623 2.369-2.606 2.78-2.492.41.103 1.737 0 1.85-.416.107-.42-.21-1.77.514-1.978.714-.207 1.85-.311 1.85-.311s1.639-5.197 2.368-5.503c.72-.322 1.845-.628 1.845-.628s2.158-1.869 2.883-1.77c.724.109 3.083-.203 3.083-.203s2.158-2.393 2.57-3.426c.415-1.043 1.13-1.666 1.751-1.775.617-.1-.313-.613.617-1.241.92-.628 4.732-2.492 5.442-3.224.72-.717 1.86-2.804 1.86-2.804s-.524-2.59.308-3.322c.817-.727 3.9-1.765 5.144-2.393 1.228-.618 4.008-2.591 4.512-3.526.519-.934 1.865-2.496 2.158-2.595.313-.104 2.065-2.398 2.467-2.804.416-.42 3.098-1.463 3.611-1.775.509-.306 2.77-.306 3.284-.415.519-.1.925-.83 2.261-1.038 1.341-.208 5.863.207 6.172.103.313-.103.925-.94 1.639-.618.734.307 1.551 2.28 1.963 2.487.411.213 1.84.633 2.872 1.355 1.023.727 2.472 2.907 3.7 2.803 1.243-.098 1.953 1.77 2.579 2.596.617.836 2.775 3.12 2.672 3.64-.102.524-.724 1.868-.102 2.912.616 1.033 1.336 2.902 1.947 3.317.617.42 1.953 2.601 1.953 3.432 0 .825 1.033 3.11 2.07 3.945 1.013.83 2.462 5.508 3.587 6.967 1.126 1.444 4.219 9.137 5.046 10.284.822 1.137.822.722 1.85 1.038 1.028.302 4.312 2.384 5.251 3.11.92.732 4.204 6.547 4.924 7.59.729 1.043 4.008 6.645 4.634 7.788.617 1.142 1.953 5.409 2.775 5.508.817.103 2.256 4.464 3.073 5.087.832.628 4.126 5.405 4.846 5.924.709.519 3.288 6.754 3.694 7.476.412.731-6.495 4.797-5.575 5 .925.203-3.586 1.765-2.965 1.978.622.203-5.539 2.808-3.073 3.955 2.472 1.138-5.708 7.911-5.708 7.911s-7.437 8.02-6.625 7.911c.822-.103-7.717 9.271-7.101 9.889.617.628-12.642 5.414-11.722 5.933.93.525-15.661 5.934-15.661 5.934l-20.338 3.955-60.044-23.733L25 105.194z"}),w.default.createElement("path",{fill:"url(#paint0_linear)",d:"M131.43 57.726c-.524.509-1.229 1.755-1.229 2.482 0 .726.299 1.873.509 2.388.196.519.313 2.497.313 2.497s-1.145-.727-1.654-1.355c-.509-.623-.406-1.963-.509-2.492-.108-.52-1.341.529-2.06.623-.362.054-.646-.49-.891-1.033-.245-.544-.45-1.088-.656-1.039-.406.109-1.639.732-2.877 1.874-1.229 1.132-.915 1.553-1.542 1.869-.612.307-.915.514-1.747-.104-.436-.326-.553-.054-.71.218-.137.247-.298.494-.739.296-.455-.202-.21.352.079.9.303.564.655 1.133.342.866-.607-.515-.607 1.142-.21 1.765.416.628 1.135 1.874 1.649 2.907.524 1.043 3.186 6.032 2.369 5.824-.822-.212-1.752-2.492-2.065-3.426-.304-.934-1.85-2.398-2.164-2.398-.293 0-1.845-.109-2.256-.307-.401-.207-3.284-.939-4.933-.83-1.644.104-2.06-1.454-2.877-1.666-.828-.208-3.5-1.039-4.214-1.138-.72-.103 1.639 2.389 2.364 2.596.719.208 1.125.831.102 1.236-1.027.426-2.775-1.137-3.284-1.137-.523 0-1.443 1.454-.822 1.874.607.415 3.181 1.973 3.705 2.393.499.415.098 2.175-.426 1.968-.504-.213-3.396-.213-4.625.109-1.238.311-3.185-1.36-4.106-2.077-.93-.727-1.854-.213-2.27.312-.411.509-1.752 2.491-2.57 3.317-.817.83-3.905.83-4.722 1.459-.832.618-4.116 3.426-5.041 4.573-.93 1.138-3.906 2.072-4.943 2.804-1.028.727-2.57 4.044-3.186 4.569-.617.519-1.85 1.77-2.677 2.803-.817 1.038-2.472 2.077-3.49 3.328-1.032 1.246-1.85 2.388-1.85 2.388l-2.06 2.175-1.747-1.038s-2.354 1.666-3.181 2.086c-.827.411-3.817-.212-4.835-.316-1.038-.104-2.369 1.142-2.06 1.251.313.104.523.722.313 1.038-.216.312-2.369.312-2.369.312l-.519 1.765s-1.953.306-2.78.306c-.817 0-2.045.312-2.564.426-.514.103-1.953-1.256-2.467-1.256-.523 0-1.952-.618-2.564 0-.621.627-1.659 2.289-1.659 2.289s-1.542 0-2.046.104c-.514.104-3.293.934-3.293.934l10.698 60.361c14.902 11.323 33.43 18.032 53.505 18.032 38.178 0 70.753-24.262 83.457-58.353-2.471-4.435-6.225-11.323-6.788-12.252-.827-1.345-4.218-7.991-4.83-8.826-.621-.836-1.439-.104-1.742.207-.152.144-.426.045-.695-.054-.323-.114-.646-.232-.754.054-.21.52-1.434 1.558-1.855 1.138-.401-.41-1.644-3.634-1.541-4.252.107-.623 1.747.301 1.747.301s.519-.301.318-.821c-.21-.519-2.677-1.147-3.098-1.043-.406.104-1.634-2.18-2.461-2.808-.818-.623-2.57-3.001-3.181-3.837-.627-.84-2.785-3.12-3.505-3.64-.709-.518-2.461-2.175-3.597-2.694-1.135-.524-1.238-2.086-1.742-3.54-.514-1.449-.729.425-.622.94.108.514-.929 1.354-.621 1.453.313.099.514 1.147 1.028 1.558.518.41-1.028.934-1.532.825-.524-.099-1.136-1.76-1.444-2.482-.313-.737-1.546-.944-1.135-1.77.416-.835.93-2.29.514-2.803-.411-.524-.612-1.973.098-1.87.729.1 1.233-.42 1.654-.835.411-.415 1.238 1.246 1.546 1.76.299.524 1.948 2.705 1.855 2.186-.108-.52.714-.83.714-.83.823 1.764 7.704 10.6 7.914 11.43.21.826.622-.316.519-1.25-.108-.935.406-.618.509-1.039.107-.42-.509-1.661-2.061-1.765-1.541-.104-2.256-2.6-2.774-3.743-.509-1.142 1.546.94 1.546.94L148.5 81.2s-4.322-7.273-4.625-7.273c-.313 0-1.038.41-1.238.826-.206.41.817 3.219 1.12 3.64.314.41 1.244 1.972.935 2.18-.313.207-1.952-.836-2.784-1.143-.808-.316-1.943 1.039-1.943 1.039s-.314-4.366-.832-4.366c-.509 0-.309-1.874-.201-3.422.103-1.562-1.644-1.562-1.644-1.562s-.309-3.535-.725-4.045c-.411-.529 0-2.912.108-3.96.108-1.034-2.163-4.984-2.677-5.39-.269-.222-.827-.355-1.365-.355-.485 0-.955.104-1.199.356"}),w.default.createElement("path",{fill:"url(#paint1_linear)",d:"M78.061 68.628s-.514 1.246-1.341 1.864c-.832.628-1.341 2.294-2.158 3.436-.822 1.137-1.845 1.869-2.672 1.449-.823-.42-1.85.207-1.748 1.453.103 1.251.416 3.847-.205 3.536-.626-.312-.103-1.662-1.028-1.039-.93.623-2.785 4.05-3.494 3.743-.724-.311-1.551-2.185-2.06-1.458-.514.727-.72 3.016-1.336 1.973-.612-1.044-1.537-.94-2.976.202-1.444 1.152-2.99 1.884-3.705 2.284-.734.42-2.158 1.563-2.476 2.498-.304.934-.915 1.562-1.434 1.873-.519.307-1.742 1.247-1.742 1.87 0 .627-.73.934-1.557 1.77-.812.825-2.358 1.962-3.176 2.7-.827.726-2.579 2.704-3.401 3.114-.827.415-2.256 1.562-1.439 1.562 0 0 1.439 0 2.261-.628.827-.627 3.191-2.388 3.808-2.6.621-.208 2.055-.312 2.363.42.314.732-.2 1.765-.925 2.279-.714.529-2.265 2.295-2.667 2.398-.416.099-1.546 1.143-1.546 1.143s1.948-.104 2.873-.732c.934-.618 3.406-1.765 3.7-2.601.313-.826 1.032-1.864 1.556-2.695.514-.825 1.326.41 1.228 1.251-.108.826 1.248 1.444 1.948.302.724-1.142 1.752-.613 2.672-.613.925 0 2.892.717 3.401-.11.519-.83 1.742-3.322 2.477-3.747.714-.405 2.349-3.629 2.862-4.88.51-1.241 2.261-4.771 2.682-6.23.412-1.454 1.752-3.214 2.575-3.738.817-.519 2.77-1.35 3.7-1.973.92-.622.4-1.245 1.433-2.18 1.033-.94 1.547-.727 1.547-1.666 0-.93.827-1.973.827-1.973s-1.341-1.246-.524-2.29c.832-1.038 2.056-3.114 2.056-3.114s0-.935-.401-.623c-.416.311-1.958-.104-1.958-.104v1.874z"}),w.default.createElement("path",{fill:"#fff",d:"M131.63 95.121s3.293 4.979 3.905 6.122c.617 1.152 3.191 5.824 3.397 6.655.2.83.523 1.968 1.752 2.907 1.228.934 2.564 2.383 2.564 2.383s.108-1.449-.103-2.076c-.21-.623-2.77-3.842-3.489-5.083-.724-1.256-7.826-10.393-8.026-10.908zM144.07 114.44s1.14 1.874 1.14 3.115c0 1.251 1.126 3.535 1.645 4.464.514.94 1.331 2.705 1.747 2.913.406.207 1.649.316 2.882 1.661 1.224 1.35 1.846 2.383 2.878 2.705 1.023.306 1.85.623 1.85.623s-1.233-1.662-2.672-4.258c-1.449-2.6-4.219-7.273-4.835-7.688-.627-.42-1.953-1.978-2.266-1.562-.309.41-2.369-1.973-2.369-1.973z"}),w.default.createElement("path",{fill:"url(#paint2_linear)",d:"M47.317 148.826c1.331 3.016 11.814 7.273 11.726 5.087-.074-1.493.098-6.358.215-9.295.852 1.3 1.561 2.408 1.728 2.749.524 1.043 10.498 15.273 11.422 18.086.93 2.809 21.074 16.203 23.134 18.488.51.563 1.693 1.839 3.2 3.446a88.357 88.357 0 0021.339-3.313c-.451-.41-.921-1.177-1.097-1.795-.205-.732.725-1.038 1.238-1.869.504-.83.407-.83-.303-.736-.724.108-2.99-.723-4.224-.826-1.233-.099-5.559-2.388-6.89-2.804-1.336-.415-2.677-3.738-3.906-4.682-1.238-.93-2.055-1.132-2.574-.929-.519.212-.935-.104-1.747-1.044-.827-.934-.617-1.864-1.135-2.492-.495-.618-.407 1.256-.715 1.459-.303.203-1.233-1.671-1.855-2.393-.607-.717-1.33-2.591-1.747-3.011-.406-.411-.406.825-.514 1.453-.098.618-1.439 1.355-1.953.94-.523-.42-1.027-1.864-1.546-2.393-.25-.257-.274.321-.289.9-.014.588-.01 1.186-.215.865-.416-.628-1.13-1.236-1.238-2.077-.103-.825-.622-3.323-1.028-3.535-.406-.198-.822-1.864-1.233-2.591-.406-.727-.406.519-.406 1.246 0 .722-.93.109-1.146-.312-.195-.415-.616-2.175-1.013-2.491-.42-.312-1.14.83-1.14.83l-.21 3.011s-.92-2.907-1.229-3.426c-.303-.524-1.336-2.497-1.438-1.77-.108.727-.607-.307-1.44-.935-.826-.628-1.453-1.76-1.453-1.453 0 .316.426 3.021-.186 2.699-.621-.311-1.042-2.798-1.757-3.945-.714-1.143-2.877-2.908-2.877-2.908l-.51-1.874s-2.06-.103-2.265-.726c-.206-.623-1.332-.515-1.434.212-.103.722-1.14-.212-1.973-.212-.802 0-1.84-2.591-2.148-3.011-.294-.416-.622-1.143-.72-.628-.097.529-.817.212-1.238-.727-.41-.935.734-2.275.93-2.804.21-.514-.195-1.241-.822-.618-.616.618-1.228 2.181-1.228 2.181l-1.13-1.666-.525.632-1.022-2.185-.93-2.077-.514 2.181-.103.128c-.474-1.35-.886-2.452-1.023-2.625-.406-.514-2.466-6.339-3.19-7.372-.715-1.043-.617-3.011-.617-3.011s-1.238-.732-2.06-.317c-.818.42-1.434-1.35-2.164-1.869-.7-.519-1.63.109-1.63.109v-2.393l-6.17-.628s5.652 28.05 6.988 31.066"}),w.default.createElement("path",{fill:"url(#paint3_linear)",d:"M26.655 92c-.73.835-3.201 1.048-3.705 1.453-.514.41-1.65 1.667-1.953 2.181-.313.52-1.145.623-1.649 1.038-.514.42-.925 2.393-.925 2.393s-1.331.208-2.78 1.558c-1.439 1.35-2.78 1.77-4.213 2.704a87.075 87.075 0 00-4.248 3.002c4.463 45.527 42.48 81.102 88.707 81.102 2.472 0 4.924-.103 7.346-.301-1.008-1.528-2.006-3.12-2.755-4.445-2.055-3.63-6.377-5.701-7.106-5.919-.714-.202-2.354-3.332-2.878-3.53-.508-.208-2.358-3.219-2.975-4.252-.622-1.039-1.537-1.562-2.477-1.671-.92-.094-5.442-6.122-5.442-6.122s-6.264-6.956-6.885-7.48c-.622-.525-4.008-5.197-4.635-5.924-.616-.727-3.798-3.115-4.517-3.223-.724-.104-3.083-3.743-3.509-4.154-.406-.41-1.938-.41-2.046 0-.107.411-1.135 1.563-1.228 2.087-.103.514-.103 1.869-.827 2.487-.724.613-1.126 2.907-1.126 2.907s-1.34-.934-1.752-1.033c-.42-.104-1.028-3.437-1.13-4.168-.108-.717-.935-2.596-1.449-3.209-.519-.628-2.045-3.333-2.877-3.956-.818-.618-1.44-3.421-1.532-4.677-.108-1.241-2.164-4.88-2.682-5.815-.52-.934-1.033-4.563-1.233-5.191-.211-.623-1.341-2.596-1.953-3.323-.617-.732-3.494-3.946-4.625-4.682-1.13-.722-1.556-2.492-1.747-2.799-.216-.311-.519-2.185-.519-2.185s-.715-1.35-.93-1.973c-.196-.618-.401-10.175-.303-10.492.107-.306-1.331-1.449-1.948-1.661-.626-.208.103-1.142 0-1.657-.108-.519-.827-1.152-.827-1.152S27.364 91.17 26.655 92"}),w.default.createElement("path",{fill:"#292929",d:"M11.78 96c0 46.136 38.065 84.836 84.225 84.836 45.905 0 84.21-38.952 84.21-84.836 0-46.146-38.305-84.836-84.21-84.836-46.16 0-84.225 38.69-84.225 84.836zM192 96c0 52.583-43.943 96-95.995 96C43.948 192 0 148.583 0 96 0 43.407 43.708 0 96.005 0 148.057 0 192 43.407 192 96z"}),w.default.createElement("defs",null,w.default.createElement("linearGradient",{id:"paint0_linear",x1:"117.572",x2:"117.572",y1:"323.149",y2:"57.367",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#626262"})),w.default.createElement("linearGradient",{id:"paint1_linear",x1:"39.87",x2:"80.42",y1:"85.611",y2:"85.611",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#909191"})),w.default.createElement("linearGradient",{id:"paint2_linear",x1:"81.096",x2:"81.096",y1:"117.762",y2:"201.184",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#909191"})),w.default.createElement("linearGradient",{id:"paint3_linear",x1:"-25.794",x2:"208.447",y1:"204.974",y2:"204.974",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#626262"})))),G=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("span",__spreadValues({className:v.default("px-2 py-1 font-semibold inline-flex items-center justify-center rounded-full bg-danger-dark text-white leading-none",a)},r))};G.propTypes={className:y.default.string};const $=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M5.166 1.5l5.5 5.5-5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),J={tiny:"h-7 w-7 text-base",small:"h-10 w-10 text-base",medium:"h-12 w-12 text-md",large:"h-15 w-15 text-xl"},Z=e=>{var t=e,{className:a,name:r,color:n="bg-primary-lighter",size:l="large"}=t,o=__objRest(t,["className","name","color","size"]);const s=v.default("inline-flex items-center justify-center rounded-full text-black leading-none",J[l],n,a);return w.default.createElement("div",__spreadValues({title:r,className:s},o),(e=>{let t="N/A";const a="string"==typeof e&&e.match(/\b\w/g);return a&&(t=a[0],a.length>1&&(t+=a[a.length-1])),t.toUpperCase()})(r))};Z.propTypes={className:y.default.string,color:y.default.string,name:y.default.string,size:y.default.oneOf(Object.keys(J))};const X=e=>{var t=e,{name:a,description:r,image:n,icon:l=w.default.createElement($,null),isResponsive:o=!1}=t,s=__objRest(t,["name","description","image","icon","isResponsive"]);const i=null!=n?n:w.default.createElement(Z,{size:"tiny",name:a});return w.default.createElement("button",__spreadValues({type:"button",className:v.default("flex justify-center items-center py-3 w-full rounded cursor-pointer hover:bg-gray-darker xl:justify-start",o?"xl:px-4":"px-4")},s),w.default.createElement("div",{className:"flex-shrink-0"},i),w.default.createElement("div",{className:v.default("ml-2 text-left min-w-0",o&&"hidden xl:inline")},w.default.createElement("div",{className:"truncate"},a),r?w.default.createElement("div",{className:"text-sm text-gray-dark truncate"},r):null),w.default.createElement("span",{className:v.default("ml-auto",o&&"hidden xl:inline")},l))};X.displayName="Sidebar.Account",X.propTypes={name:y.default.string.isRequired,description:y.default.string,image:y.default.element,icon:y.default.element,isResponsive:y.default.bool};const Q=e=>{var t=e,{icon:a,label:r}=t,n=__objRest(t,["icon","label"]);return w.default.createElement("button",__spreadValues({type:"button",className:"flex items-center px-4 py-2 w-full rounded cursor-pointer hover:bg-gray-darker"},n),w.default.createElement("div",{className:"p-1.5"},w.default.createElement(a,{className:"w-4 h-4"})),w.default.createElement("span",{className:"ml-2"},r))};Q.displayName="Sidebar.Button",Q.propTypes={icon:y.default.elementType.isRequired,label:y.default.string.isRequired};const ee=e=>{var t=e,{children:a}=t,r=__objRest(t,["children"]);return w.default.createElement("div",__spreadValues({className:"p-3"},r),w.default.createElement("div",{className:"pb-2 mx-4 border-t border-secondary-darker"}),a)};ee.displayName="Sidebar.Footer",ee.propTypes={children:y.default.node.isRequired};const te=e=>{var t=e,{isActive:a=!1,icon:r,children:n}=t,l=__objRest(t,["isActive","icon","children"]);return w.default.createElement("button",__spreadValues({type:"button",className:v.default("transition-colors leading-none flex items-center justify-center xl:justify-start w-full xl:px-6 py-3 rounded",{"bg-primary text-white hover:bg-primary-dark":a,"hover:bg-gray-darker text-gray":!a})},l),w.default.createElement(r,{className:"w-5 h-5 xl:mr-3"}),w.default.createElement("span",{className:"hidden px-1 xl:inline"},n),w.default.createElement($,{className:"hidden ml-auto w-3 h-3 xl:inline"}))};te.displayName="Sidebar.Link",te.propTypes={isActive:y.default.bool,icon:y.default.func.isRequired,children:y.default.node.isRequired};var ae="_main_1bcuo_1";const re=e=>{var t=e,{children:a,content:r}=t,n=__objRest(t,["children","content"]);return w.default.createElement(k.default,__spreadValues({interactive:!0,trigger:"click",appendTo:document.body,placement:"right",offset:[0,20],arrow:!1,className:v.default(ae,"!rounded-none bg-black bg-opacity-90 backdrop-filter backdrop-blur-sm p-2 w-56"),content:r},n),w.default.createElement("span",null,a))};re.displayName="Sidebar.Menu",re.propTypes={children:y.default.node.isRequired,content:y.default.node.isRequired};const ne=({children:e,className:t,footer:a,notifications:r,isFixed:n=!0,onLogoClick:l})=>w.default.createElement("div",{className:v.default(n?"fixed":"relative","w-16 md:w-24 xl:w-50 h-full p-2 overflow-y-auto bg-black text-white flex flex-col",t)},w.default.createElement("div",{className:v.default("p-2 text-center xl:text-left",r?null:"invisible")},w.default.createElement(G,{className:"text-sm"},r)),w.default.createElement("div",{className:"mb-10 text-center"},w.default.createElement(Y,{className:v.default("inline-block w-12 h-12 xl:w-24 xl:h-24",l&&"cursor-pointer hover:opacity-80 transition-opacity"),onClick:l})),w.default.createElement("div",{className:"flex-grow space-y-2"},e),a);ne.propTypes={children:y.default.node.isRequired,className:y.default.string,footer:y.default.element.isRequired,notifications:y.default.number,isFixed:y.default.bool,onLogoClick:y.default.func.isRequired},ne.Account=X,ne.Button=Q,ne.Footer=ee,ne.Link=te,ne.Menu=re;const le=e=>{var t=e,{children:a,className:r,content:n}=t,o=__objRest(t,["children","className","content"]);return w.default.createElement(k.default,__spreadProps(__spreadValues({content:n},o),{className:"text-white xola-tooltip",plugins:[l.followCursor]}),w.default.createElement("span",{className:r},a))};le.propTypes={content:y.default.string.isRequired,children:y.default.node.isRequired,className:y.default.string};var oe="_main_1q4dn_1";const se=e=>{var t=e,{className:a,children:n}=t,o=__objRest(t,["className","children"]);const s=r.Children.toArray(n),i=s.filter((e=>e.type===se.Content)),d=s.filter((e=>e.type!==se.Content));return w.default.createElement(k.default,__spreadValues({interactive:!0,content:i,className:v.default("popover",oe,"!border-gray-light !rounded-lg",a),plugins:[l.followCursor]},o),w.default.createElement("span",null,d))};se.propTypes={className:y.default.string,children:y.default.node.isRequired};const ie=({className:e,children:t})=>w.default.createElement("div",{className:v.default("popover-content",e)},t);ie.displayName="Popover.Content",ie.propTypes={className:y.default.string,children:y.default.node.isRequired},se.Content=ie;const de=e=>{var t=e,{placement:a="bottom",className:n,children:l}=t,o=__objRest(t,["placement","className","children"]);const s=r.Children.toArray(l),i=s.filter((e=>e.type!==de.Item)),d=s.length-i.length,u=s.map(((e,t)=>e.type===de.Item?w.default.cloneElement(e,{position:t,total:d}):null)),c=w.default.createElement(se.Content,{className:"p-0 divide-y divide-solid divide-gray-lighter"},u);return w.default.createElement(se,__spreadValues({content:c,placement:a,className:v.default("w-40",n)},o),i)};de.propTypes={placement:y.default.string,className:y.default.string,children:y.default.node.isRequired};const ue=e=>{var t=e,{name:a,isActive:r=!1,position:n,total:l,children:o,className:s,onClickItem:i}=t,d=__objRest(t,["name","isActive","position","total","children","className","onClickItem"]);return w.default.createElement("div",__spreadValues({name:a,className:v.default("flex align-text-top p-4 space-x-2.5 font-semibold leading-4 tracking-tightest cursor-pointer hover:bg-gray-lighter",r?"bg-gray-lighter":null,1===n?"rounded-t-lg":null,n===l?"rounded-b-lg":null,s),onClick:e=>i(e,a)},d),o)};ue.displayName="Popover.Item",ue.propTypes={name:y.default.string.isRequired,isActive:y.default.bool,children:y.default.node.isRequired,className:y.default.string,onClickItem:y.default.func.isRequired},de.Item=ue;const ce=(e,t)=>{var a;return null!=(a=r.Children.toArray(e).find((e=>e.type===t)))?a:null},fe={small:"sm:max-w-md",medium:"sm:max-w-lg",large:"sm:max-w-2xl",huge:"sm:max-w-3xl"},pe=({size:e="medium",isOpen:t=!1,shouldCloseOnOutsideClick:a=!1,onClose:n,children:l,className:s})=>{const i=ce(l,pe.Header),d=ce(l,pe.Body),u=ce(l,pe.Footer);return w.default.createElement(o.Transition.Root,{show:t,as:r.Fragment},w.default.createElement(o.Dialog,{static:!0,as:"div",className:"overflow-y-auto fixed inset-0 z-10",open:t,onClose:()=>{a&&n()}},w.default.createElement("div",{className:"flex justify-center items-end px-4 pt-4 pb-20 min-h-screen text-center sm:block sm:p-0"},w.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},w.default.createElement(o.Dialog.Overlay,{className:"fixed inset-0 bg-opacity-75 transition-opacity bg-gray-dark"})),w.default.createElement("span",{className:"hidden sm:inline-block sm:h-screen sm:align-middle"},"​"),w.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},w.default.createElement(pe.Core,{className:s,width:fe[e],header:i,body:d,footer:u,onClose:n})))))};pe.propTypes={size:y.default.oneOf(Object.keys(fe)),isOpen:y.default.bool,shouldCloseOnOutsideClick:y.default.bool,onClose:y.default.func.isRequired,children:y.default.node.isRequired};const he=r.forwardRef((({className:e,width:t,onClose:a,header:r,body:n,footer:l},o)=>{const s=v.default(e,t,"modal sm:w-full inline-block align-bottom bg-white rounded-lg overflow-hidden shadow-xl transform","transition-all sm:my-8 sm:align-middle");return w.default.createElement("div",{ref:o,className:s},w.default.createElement("div",{className:"px-8 pt-5 bg-white"},w.default.createElement("div",{className:"hidden absolute top-0 right-0 px-8 pt-7 sm:block"},a?w.default.createElement("div",{className:"text-xl cursor-pointer text-gray hover:text-gray-darker",onClick:a},w.default.createElement(S,null)):null),w.default.createElement("div",{className:"sm:flex sm:items-start"},w.default.createElement("div",{className:"pt-3 w-full text-center"},r,n))),l)}));he.displayName="Modal.Core",he.propTypes={width:y.default.string.isRequired,onClose:y.default.func.isRequired,header:y.default.element.isRequired,body:y.default.element.isRequired,footer:y.default.element.isRequired},pe.Core=he,pe.Header=({children:e})=>w.default.createElement(o.Dialog.Title,{as:"h3",className:"text-2xl font-semibold leading-6 text-center text-black modal-header"},e),pe.Header.displayName="Modal.Header",pe.Header.propTypes={children:y.default.node.isRequired},pe.Body=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("div",__spreadValues({className:v.default(a,"pt-8 pb-2 mt-2 text-left modal-body")},r))},pe.Body.displayName="Modal.Body",pe.Body.propTypes={className:y.default.string},pe.Footer=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("div",__spreadValues({className:v.default(a,"float-right px-8 py-8 modal-footer sm:flex")},r))},pe.Footer.displayName="Modal.Footer",pe.Footer.propTypes={className:y.default.string};const me=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("div",{className:"flex flex-col"},w.default.createElement("div",{className:"overflow-x-auto -my-2"},w.default.createElement("div",{className:"inline-block py-2 min-w-full align-middle"},w.default.createElement("div",{className:"overflow-hidden border-b border-gray-lighter sm:rounded-lg"},w.default.createElement("table",__spreadValues({className:v.default(a,"min-w-full divide-y border border-gray-lighter")},r))))))};me.propTypes={className:y.default.string},(me.Head=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("thead",__spreadValues({className:v.default("bg-gray-lighter",a)},r))}).displayName="Table.Head",me.Head.propTypes={className:y.default.string},(me.Header=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("th",__spreadValues({className:v.default("px-4 py-2 text-left text-base font-bold",a)},r))}).displayName="Table.Header",me.Header.propTypes={className:y.default.string},(me.Body=e=>{var t=e,{className:a,isStriped:n=!1,children:l}=t,o=__objRest(t,["className","isStriped","children"]);return w.default.createElement("tbody",__spreadValues({className:v.default("border-none",a)},o),r.Children.map(l,(e=>e&&r.cloneElement(e,{isStriped:n}))))}).displayName="Table.Body",me.Body.propTypes={className:y.default.string,children:y.default.node.isRequired,isStriped:y.default.bool},(me.Row=e=>{var t=e,{isStriped:a=!1,className:r}=t,n=__objRest(t,["isStriped","className"]);return w.default.createElement("tr",__spreadValues({className:v.default(a&&"even:bg-gray-lighter",r)},n))}).displayName="Table.Row",me.Row.propTypes={isStriped:y.default.bool,className:y.default.string},(me.Cell=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("td",__spreadValues({className:v.default("px-4 py-2 whitespace-nowrap text-base text-gray-darker",a)},r))}).displayName="Table.Cell",me.Cell.propTypes={className:y.default.string};const ge={small:"px-2 py-1.5 text-sm",medium:"py-3 px-2.5 text-base",large:"px-4 py-3.5 text-lg"},ve=e=>{var t=e,{size:a,value:n,isCollapsed:l=!1,onChange:o,className:s,children:i}=t,d=__objRest(t,["size","value","isCollapsed","onChange","className","children"]);return w.default.createElement("span",__spreadValues({className:v.default("inline-flex whitespace-nowrap",s)},d),r.Children.map(i,((e,t)=>{const s={size:a};return void 0!==n&&(s.isActive=n===t),l&&n>=0&&n!==t&&(s.shouldShowText=!1),o&&(s.onClick=()=>o(t)),r.cloneElement(e,s)})))};ve.propTypes={size:y.default.oneOf(Object.keys(ge)).isRequired,value:y.default.number.isRequired,isCollapsed:y.default.bool,onChange:y.default.func.isRequired,children:y.default.node.isRequired};const ye=e=>{var t=e,{as:a="button",isActive:r,shouldShowText:n=!0,size:l="medium",icon:o,iconPlacement:s="left",className:i,children:d}=t,u=__objRest(t,["as","isActive","shouldShowText","size","icon","iconPlacement","className","children"]);const c=v.default("inline-flex border-t border-l border-b last:border-r first:rounded-l-md last:rounded-r-md transition-colors focus:ring disabled:opacity-60 focus:z-10 leading-none",ge[l],r?"bg-primary border-primary text-white hover:bg-primary-dark":"border-gray-light hover:bg-gray-lighter text-gray-darker",i);return w.default.createElement(a,__spreadValues({className:c},u),o&&"left"===s?w.default.createElement("span",{className:"flex-shrink-0 mr-2"},o):null,n?d:null,o&&"right"===s?w.default.createElement("span",{className:"flex-shrink-0 ml-2"},o):null)};ye.displayName="ButtonGroup.Button",ye.propTypes={as:y.default.oneOfType([y.default.string,y.default.elementType]),isActive:y.default.bool,shouldShowText:y.default.bool,size:y.default.oneOf(Object.keys(ge)),icon:y.default.element,iconPlacement:y.default.oneOf(["left","right"]),className:y.default.string,children:y.default.node.isRequired},ve.Button=ye;const we={small:"w-10 h-10",medium:"w-16 h-16",large:"w-20 h-20"},ke=e=>{var t=e,{className:a,size:r="small"}=t,n=__objRest(t,["className","size"]);return w.default.createElement("img",__spreadValues({className:v.default(a,"inline-block rounded object-cover",we[r])},n))};ke.propTypes={className:y.default.string,src:y.default.string.isRequired,size:y.default.string};var be="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};var Ee=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},xe="object"==typeof be&&be&&be.Object===Object&&be,_e="object"==typeof self&&self&&self.Object===Object&&self,Me=xe||_e||Function("return this")(),Ne=Me,Ce=function(){return Ne.Date.now()},Le=/\s/;var De=function(e){for(var t=e.length;t--&&Le.test(e.charAt(t)););return t},je=/^\s+/;var Pe=function(e){return e?e.slice(0,De(e)+1).replace(je,""):e},Oe=Me.Symbol,Ve=Oe,Te=Object.prototype,Be=Te.hasOwnProperty,ze=Te.toString,Ie=Ve?Ve.toStringTag:void 0;var Fe=function(e){var t=Be.call(e,Ie),a=e[Ie];try{e[Ie]=void 0;var r=!0}catch(l){}var n=ze.call(e);return r&&(t?e[Ie]=a:delete e[Ie]),n},Se=Object.prototype.toString;var Re=Fe,Ae=function(e){return Se.call(e)},He=Oe?Oe.toStringTag:void 0;var We=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":He&&He in Object(e)?Re(e):Ae(e)},Ue=function(e){return null!=e&&"object"==typeof e};var qe=function(e){return"symbol"==typeof e||Ue(e)&&"[object Symbol]"==We(e)},Ke=Pe,Ye=Ee,Ge=qe,$e=/^[-+]0x[0-9a-f]+$/i,Je=/^0b[01]+$/i,Ze=/^0o[0-7]+$/i,Xe=parseInt;var Qe=Ee,et=Ce,tt=function(e){if("number"==typeof e)return e;if(Ge(e))return NaN;if(Ye(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ye(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Ke(e);var a=Je.test(e);return a||Ze.test(e)?Xe(e.slice(2),a?2:8):$e.test(e)?NaN:+e},at=Math.max,rt=Math.min;var nt=function(e,t,a){var r,n,l,o,s,i,d=0,u=!1,c=!1,f=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function p(t){var a=r,l=n;return r=n=void 0,d=t,o=e.apply(l,a)}function h(e){return d=e,s=setTimeout(g,t),u?p(e):o}function m(e){var a=e-i;return void 0===i||a>=t||a<0||c&&e-d>=l}function g(){var e=et();if(m(e))return v(e);s=setTimeout(g,function(e){var a=t-(e-i);return c?rt(a,l-(e-d)):a}(e))}function v(e){return s=void 0,f&&r?p(e):(r=n=void 0,o)}function y(){var e=et(),a=m(e);if(r=arguments,n=this,i=e,a){if(void 0===s)return h(i);if(c)return clearTimeout(s),s=setTimeout(g,t),p(i)}return void 0===s&&(s=setTimeout(g,t)),o}return t=tt(t)||0,Qe(a)&&(u=!!a.leading,l=(c="maxWait"in a)?at(tt(a.maxWait)||0,t):l,f="trailing"in a?!!a.trailing:f),y.cancel=function(){void 0!==s&&clearTimeout(s),d=0,r=i=n=s=void 0},y.flush=function(){return void 0===s?o:v(et())},y};const lt=navigator.userAgent.includes("Macintosh"),ot=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.883 10.878a4.661 4.661 0 100-9.323 4.661 4.661 0 000 9.323zM10.181 9.514l2.93 2.93",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),st=e=>{var t=e,{char:a,className:r}=t,n=__objRest(t,["char","className"]);return a=it(a),w.default.createElement("div",__spreadValues({className:v.default("inline-flex items-center justify-center h-5 py-1 px-2 bg-gray-lighter text-xs text-gray font-semibold rounded",1===a.length?"w-5":"",r)},n),a)},it=e=>{switch(e){case"cmd":return lt?"⌘":"ctrl";case"option":return lt?"⌥":"win";case"ctrl":return lt?"ctrl":"alt";case"up":return"↑";case"down":return"↓";default:return e}};st.propTypes={char:y.default.string.isRequired,className:y.default.string};const dt=e=>w.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),w.default.createElement("path",{fill:"currentColor",d:"M14 7a7 7 0 10-7 7v-1.4A5.6 5.6 0 1112.6 7H14z"})),ut={primary:"text-primary",secondary:"text-secondary",warning:"text-warning",success:"text-success",danger:"text-danger",caution:"text-caution",current:null},ct={tiny:"w-4 h-4",small:"w-7 h-7",medium:"w-10 h-10",large:"w-14 h-14",current:"w-[1em] h-[1em]"},ft=e=>{var t=e,{className:a,size:r="small",color:n="secondary"}=t,l=__objRest(t,["className","size","color"]);return w.default.createElement(dt,__spreadValues({className:v.default(a,ct[r],ut[n],"animate-spin inline-block")},l))};ft.propTypes={className:y.default.string,size:y.default.string,color:y.default.string};const pt=nt(((e,t)=>e(t)),500),ht=e=>{var t=e,{className:a,items:n=[],defaultValue:l,onChange:o,onSubmit:d,onSelect:u,children:c,isLoading:f=!1}=t,p=__objRest(t,["className","items","defaultValue","onChange","onSubmit","onSelect","children","isLoading"]);const[h,m]=r.useState(!0),[g,y]=r.useState(null!=l?l:""),k=r.useRef(),b={value:g},E=g?[b,...n]:[],{isOpen:x,openMenu:_,getMenuProps:M,getInputProps:N,getComboboxProps:C,highlightedIndex:L,getItemProps:D,closeMenu:j}=s.useCombobox({items:E,inputValue:g,onInputValueChange:({inputValue:e})=>{y(e),o&&pt(o,e)},itemToString:()=>g,defaultHighlightedIndex:0,onSelectedItemChange:({selectedItem:e,type:t})=>{"__input_blur__"!==t&&(e===b?(null==d||d(g),k.current.blur()):e&&(null==u||u(e),k.current.blur()),j())}}),P=x&&E.length>0,O=x&&g.length>0&&!f&&E.length<=1,V=lt?"cmd+k":"ctrl+k";return i.useHotkeys(V,(e=>{e.preventDefault(),k.current.focus()})),i.useHotkeys("esc",(()=>k.current.blur()),{enableOnTags:["INPUT"]}),w.default.createElement("div",{className:"relative w-full"},w.default.createElement("div",__spreadValues({},C({className:"w-full relative rounded-md"})),w.default.createElement("div",{className:"absolute inset-y-0 top-[-2px] left-0 hidden md:flex items-center pointer-events-none"},w.default.createElement(ot,{className:"w-4 h-4 text-gray-darker"})),w.default.createElement("input",__spreadValues({},N(__spreadValues({type:"text",className:v.default("block w-full border-none pl-0 md:pl-7 text-base md:text-md text-gray-darker leading-p2 focus:ring-0",a),ref:k,onFocus:()=>{m(!1),_()},onBlur:()=>m(!0)},p)))),w.default.createElement("div",{className:"hidden absolute inset-y-0 right-0 items-center pr-3 space-x-1 pointer-events-none lg:flex"},h?w.default.createElement(w.default.Fragment,null,w.default.createElement(st,{char:"cmd"})," ",w.default.createElement(st,{char:"K"})):null)),w.default.createElement("ul",__spreadValues({},M({className:v.default("absolute top-10 divide-y divide-gray-light w-full xl:w-2/3 max-h-[75vh] border border-blue-light mt-1 rounded overflow-auto z-50 bg-white",{hidden:!P})})),P?E.map(((e,t)=>w.default.createElement("li",__spreadValues({key:e},D({key:t,item:e,index:t})),e===b?w.default.createElement(w.default.Fragment,null,w.default.createElement("div",{className:v.default("p-2 cursor-pointer",L===t?"bg-blue-light text-white":"")},"Show all results for ",w.default.createElement("strong",null,g)),f?w.default.createElement("div",{className:"p-3 text-center"},w.default.createElement(ft,{size:"small"})):null):null==c?void 0:c(e,L===t)))):null,P&&O?w.default.createElement("li",{className:"p-2 cursor-not-allowed"},"No results found"):null,P&&E.length<5?w.default.createElement("li",{className:"flex sticky bottom-0 p-2 space-x-5 text-sm search-footer text-gray-dark pointer-events"},w.default.createElement("span",{className:"flex items-center"},w.default.createElement(st,{char:"up",className:"mr-0.5"}),w.default.createElement(st,{char:"down",className:"mr-2"})," to navigate"),w.default.createElement("span",{className:"flex items-center"},w.default.createElement(st,{char:"enter",className:"mr-2"})," to submit"),w.default.createElement("span",{className:"flex items-center"},w.default.createElement(st,{char:"esc",className:"mr-2"})," to close")):null))};ht.propTypes={className:y.default.string,items:y.default.arrayOf(y.default.any),itemToString:y.default.func,defaultValue:y.default.string,onChange:y.default.func,onSubmit:y.default.func,onSelect:y.default.func,children:y.default.oneOfType([y.default.arrayOf(y.default.node),y.default.node,y.default.func]),isLoading:y.default.bool};const mt=e=>{var t=e,{className:a,classNames:n={},separator:l="/",children:o}=t,s=__objRest(t,["className","classNames","separator","children"]);const i=r.Children.count(o)-1;return w.default.createElement("div",__spreadValues({className:v.default("text-2xl whitespace-nowrap font-semibold",a)},s),r.Children.map(o,((e,t)=>{const a=t>=i;return w.default.createElement(w.default.Fragment,null,w.default.createElement("span",{className:v.default(n.item,a?"text-black":"text-gray-dark")},e),a?null:w.default.createElement("span",{className:v.default(n.separator,"text-gray-dark mx-2")},l))})))};mt.propTypes={className:y.default.string,classNames:y.default.object,separator:y.default.string,children:y.default.oneOfType([y.default.arrayOf(y.default.node),y.default.node])},(mt.Item=({className:e,onClick:t,children:a})=>w.default.createElement("div",{className:v.default(e,"inline",t&&"cursor-pointer hover:underline"),onClick:t},a)).displayName="Breadcrumb.Item",mt.Item.propTypes={className:y.default.string,onClick:y.default.func,children:y.default.node.isRequired};const gt=e=>{var t=e,{className:a}=t,r=__objRest(t,["className"]);return w.default.createElement("div",__spreadValues({className:v.default(a,"mb-4")},r))};gt.propTypes={className:y.default.string};const vt={small:"px-3 py-1.5 text-sm leading-sm",medium:"px-3 py-2.5 text-base leading-base",large:"px-5 py-3.5 text-md leading-md"},yt=e=>{var t=e,{as:a,size:r="medium",isError:n,className:l}=t,o=__objRest(t,["as","size","isError","className"]);return w.default.createElement(a,__spreadValues({className:v.default("w-full placeholder-gray-dark hover:placeholder-gray-darker text-gray-darker disabled:text-gray rounded","disabled:bg-gray-lighter border border-transparent hover:bg-gray-lighter hover:border-black",vt[r],n?"border-danger focus:ring-0 focus:ring-danger focus:border-danger":"border-gray-light focus:ring-0 focus:ring-primary focus:border-primary",l)},o))};yt.propTypes={as:y.default.oneOfType([y.default.string,y.default.elementType]),size:y.default.oneOf(Object.keys(vt)),className:y.default.string,isError:y.default.bool};const wt=e=>{var t=e,{type:a="text"}=t,r=__objRest(t,["type"]);return w.default.createElement(yt,__spreadValues({as:"input",type:a},r))};wt.propTypes=__spreadProps(__spreadValues({},yt.propTypes),{type:y.default.string});const kt=e=>{var t=e,{rows:a=2}=t,r=__objRest(t,["rows"]);return w.default.createElement(yt,__spreadValues({as:"textarea",rows:a},r))};kt.propTypes=__spreadProps(__spreadValues({},yt.propTypes),{rows:y.default.number});const bt=e=>{var t=e,{isNative:a=!1}=t,r=__objRest(t,["isNative"]);return w.default.createElement(yt,__spreadValues({as:"select"},r))};bt.propTypes=__spreadProps(__spreadValues({},yt.propTypes),{isNative:y.default.bool});const Et={large:{parent:"h-6 w-11",inner:"h-5 w-5",translate:"translate-x-5"},medium:{parent:"h-5 w-8",inner:"h-4 w-4",translate:"translate-x-3"},small:{parent:"h-3 w-5",inner:"h-2 w-2",translate:"translate-x-2"}},xt=e=>{var t=e,{isChecked:a=!1,size:r="medium"}=t,n=__objRest(t,["isChecked","size"]);return w.default.createElement(o.Switch,__spreadValues({checked:a,className:v.default(a?"bg-primary":"bg-gray","switch relative inline-flex flex-shrink-0 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none disabled:opacity-60",Et[r].parent)},n),w.default.createElement("span",{className:v.default(a?Et[r].translate:"translate-x-0","switch-inner pointer-events-none inline-block rounded-full bg-white transform ring-0 transition ease-in-out duration-200 shadow",Et[r].inner)}))};xt.propTypes={isChecked:y.default.bool,size:y.default.string},(xt.Group=({className:e,children:t})=>w.default.createElement(o.Switch.Group,{as:"div",className:v.default("inline-flex items-center",e)},t)).displayName="Switch.Group",xt.Group.propTypes={className:y.default.string,children:y.default.node.isRequired},(xt.Label=({direction:e="left",className:t,children:a})=>w.default.createElement(o.Switch.Label,{as:"span",className:v.default("cursor-pointer","left"===e?"mr-2":"ml-2",t)},a)).displayName="Switch.Label",xt.Label.propTypes={direction:y.default.string,className:y.default.string,children:y.default.node.isRequired};var _t=function(e,t){for(var a=-1,r=null==e?0:e.length,n=Array(r);++a<r;)n[a]=t(e[a],a,e);return n},Mt=Array.isArray,Nt=_t,Ct=Mt,Lt=qe,Dt=Oe?Oe.prototype:void 0,jt=Dt?Dt.toString:void 0;var Pt=function e(t){if("string"==typeof t)return t;if(Ct(t))return Nt(t,e)+"";if(Lt(t))return jt?jt.call(t):"";var a=t+"";return"0"==a&&1/t==-Infinity?"-0":a};var Ot=function(e){return null==e?"":Pt(e)},Vt=0;var Tt=function(e){var t=++Vt;return Ot(e)+t};var Bt="_checkbox_1gb8z_1";const zt=e=>{var t,a=e,{label:n,className:l,classNames:o={}}=a,s=__objRest(a,["label","className","classNames"]);const[i]=r.useState(null!=(t=s.id)?t:Tt("checkbox-"));return w.default.createElement("div",{className:v.default(l,"flex items-center")},w.default.createElement("input",__spreadProps(__spreadValues({type:"checkbox",className:v.default(o.checkbox,Bt,"w-4 h-4 rounded text-white !border-primary disabled:bg-gray-light disabled:text-gray-light disabled:border-none transition-colors")},s),{id:i})),n?w.default.createElement("label",{htmlFor:i,className:v.default(o.label,"ml-2 leading-none text-gray-darker")},n):null)};zt.propTypes={label:y.default.string.isRequired,className:y.default.string,classNames:y.default.shape({checkbox:y.default.string,label:y.default.string}),onChange:y.default.func};const It=e=>{var t=e,{isDisabled:a=!1,className:r}=t,n=__objRest(t,["isDisabled","className"]);return w.default.createElement("label",__spreadValues({className:v.default(r,"block text-sm font-bold mb-1",a?"text-gray":"text-black")},n))};It.propTypes={isDisabled:y.default.bool,className:y.default.string};const Ft=({classNames:e,children:t})=>w.default.createElement("div",{className:v.default("header-toolbar flex items-center w-full px-5 pr-3 py-3 xl:px-6 xl:py-5 space-x-2 xl:space-x-6 border-b border-gray-light",e)},t);Ft.propTypes={classNames:y.default.string,children:y.default.node.isRequired},(Ft.Breadcrumb=({className:e,children:t})=>w.default.createElement(mt,{className:v.default("text-xl border-r border-gray-light md:pr-4 xl:pr-6",e)},t)).displayName="HeaderToolbar.Breadcrumb",Ft.Breadcrumb.propTypes={className:y.default.string,children:y.default.node.isRequired},Ft.Breadcrumb.displayName="HeaderToolbar.Search",Ft.Search=e=>w.default.createElement(ht,__spreadValues({className:"flex-grow pr-1 w-full"},e));const St=e=>{var t=e,{className:a,value:n,onChange:l,children:o}=t,s=__objRest(t,["className","value","onChange","children"]);const i=r.Children.toArray(o),d=i.filter((e=>e.type===St.Tab)),u=i.filter((e=>e.type===St.Panel));return w.default.createElement(w.default.Fragment,null,w.default.createElement("div",__spreadValues({className:v.default("bg-gray-lighter overflow-x-auto",a)},s),w.default.createElement("nav",{className:"flex"},d.map(((e,t)=>r.cloneElement(e,{isActive:t===n,onClick:()=>null==l?void 0:l(t)}))))),u.map(((e,t)=>r.cloneElement(e,{isActive:t===n}))))};St.propTypes={className:y.default.string,value:y.default.number.isRequired,onChange:y.default.func.isRequired,children:y.default.node.isRequired};const Rt=e=>{var t=e,{as:a="button",className:r,isActive:n=!1}=t,l=__objRest(t,["as","className","isActive"]);return w.default.createElement(a,__spreadValues({className:v.default(r,"transition-colors cursor-pointer p-4 flex-1 text-center text-lg font-semibold whitespace-nowrap focus-visible:ring",n?"bg-white text-black":"text-gray-dark hover:text-black hover:bg-gray-light")},l))};Rt.displayName="Tabs.Tab",Rt.propTypes={as:y.default.oneOfType([y.default.string,y.default.elementType]),className:y.default.string,isActive:y.default.bool},St.Tab=Rt;const At=e=>{var t=e,{isActive:a=!1,className:r}=t,n=__objRest(t,["isActive","className"]);return w.default.createElement("div",__spreadValues({className:v.default(r,a||"hidden")},n))};At.displayName="Tabs.Panel",At.propTypes={isActive:y.default.bool,className:y.default.string},St.Panel=At;var Ht="_shimmer_qt4e9_7";const Wt=e=>{var t=e,{className:a,style:r,height:n=300,shouldAnimate:l=!0,children:o}=t,s=__objRest(t,["className","style","height","shouldAnimate","children"]);return w.default.createElement("div",__spreadValues({className:v.default(a,"relative flex items-center justify-center bg-gray-lighter overflow-hidden rounded border border-gray-lighter"),style:__spreadValues({height:n},r)},s),l?w.default.createElement("div",{className:v.default(Ht,"absolute w-full h-full")}):null,w.default.createElement("div",{className:"text-gray"},o))};Wt.propTypes={className:y.default.string,style:y.default.object,height:y.default.number,shouldAnimate:y.default.bool,children:y.default.oneOfType([y.default.arrayOf(y.default.node),y.default.node])};const Ut=({isOpen:e=!1,title:t,content:a,onClose:n,classNames:l={}})=>w.default.createElement(o.Transition.Root,{show:e,as:r.Fragment},w.default.createElement(o.Dialog,{static:!0,as:"div",className:"overflow-hidden fixed inset-0",open:e,onClose:n},w.default.createElement("div",{className:"overflow-hidden absolute inset-0"},w.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"ease-in-out duration-500",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in-out duration-500",leaveFrom:"opacity-100",leaveTo:"opacity-0"},w.default.createElement(o.Dialog.Overlay,{className:"absolute inset-0 bg-opacity-75 transition-opacity bg-gray"})),w.default.createElement("div",{className:"flex fixed inset-y-0 right-0 pl-10 max-w-full"},w.default.createElement(o.Transition.Child,{as:r.Fragment,enter:"transform transition ease-in-out duration-500 sm:duration-700",enterFrom:"translate-x-full",enterTo:"translate-x-0",leave:"transform transition ease-in-out duration-500 sm:duration-700",leaveFrom:"translate-x-0",leaveTo:"translate-x-full"},w.default.createElement("div",{className:"w-screen max-w-md"},w.default.createElement("div",{className:"flex overflow-y-auto flex-col py-8 h-full bg-white shadow-xl"},w.default.createElement("div",{className:"px-4 sm:px-6"},w.default.createElement("div",{className:"flex justify-between items-start"},w.default.createElement(o.Dialog.Title,{className:v.default("text-base font-semibold",l.title)},t),w.default.createElement("div",{className:v.default("ml-3 h-7 flex items-center")},w.default.createElement(j,{size:"small",color:"link",className:"focus:hidden",onClick:n},w.default.createElement(S,null))))),w.default.createElement("div",{className:v.default("mt-3 relative flex-1 px-4 sm:px-6",l.content)},a))))))));Ut.propTypes={isOpen:y.default.bool,title:y.default.oneOfType([y.default.arrayOf(y.default.node),y.default.node]),content:y.default.oneOfType([y.default.arrayOf(y.default.node),y.default.node]),onClose:y.default.func.isRequired,classNames:y.default.object};const qt=e=>w.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"150",height:"48",fill:"none",viewBox:"0 0 150 48"},e),w.default.createElement("path",{fill:"#1B5EA8",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),w.default.createElement("path",{stroke:"#1B5EA8",strokeWidth:"1.25",d:"M31.745 24.769c0-12.2 10.193-22.088 22.768-22.088 12.575 0 22.768 9.889 22.768 22.088 0 12.2-10.193 22.088-22.768 22.088-12.575 0-22.768-9.888-22.768-22.088z"}),w.default.createElement("path",{fill:"#fff",d:"M36.37 26.71s1.788-.534 1.998-.56c.209-.026.445 0 .445 0s.264-.33.344-.305c.076.025.392.129.446 0 .05-.129.262-.306.366-.331.106-.028.028-.255.158-.358.13-.102.997-.534 1.18-.738.187-.204.84-1.146.946-1.146.107 0 .316-.153.395-.28.076-.129.786-.945.945-1.122.16-.178.5-.434.5-.434s.026-.535.106-.636c.078-.102.366-.432.498-.585.132-.153.605-.64.71-.611.105.025.443 0 .472-.102.028-.103-.054-.434.131-.485.183-.051.473-.077.473-.077s.419-1.274.605-1.35c.184-.078.471-.153.471-.153s.551-.459.736-.434c.185.026.788-.05.788-.05s.551-.587.656-.84c.106-.256.289-.409.448-.436.157-.024-.08-.15.157-.304.235-.154 1.209-.611 1.39-.79.184-.177.475-.688.475-.688s-.134-.636.079-.815c.209-.178.996-.433 1.314-.587.313-.152 1.023-.635 1.152-.865.133-.229.476-.612.551-.636.08-.026.528-.588.63-.688.107-.103.792-.359.923-.435.13-.075.707-.075.839-.102.132-.024.236-.204.577-.255.343-.05 1.498.051 1.576.026.08-.026.237-.23.42-.152.187.075.395.56.5.61.105.052.47.155.734.332.261.179.631.713.945.688.318-.024.499.434.659.637.157.205.709.765.682.892-.026.129-.185.459-.026.714.158.254.341.712.498.814.157.103.498.638.498.842 0 .202.264.762.53.967.258.204.628 1.351.915 1.709.288.354 1.078 2.24 1.29 2.522.21.279.21.177.472.255.262.074 1.1.584 1.34.762.236.18 1.075 1.606 1.258 1.862.187.256 1.024 1.63 1.184 1.91.158.28.499 1.326.709 1.35.209.026.576 1.095.785 1.248.212.154 1.054 1.326 1.237 1.453.182.127.84 1.656.944 1.833.105.18-1.659 1.177-1.424 1.227.236.05-.916.433-.757.485.159.05-1.415.689-.785.97.631.279-1.458 1.94-1.458 1.94s-1.9 1.967-1.692 1.94c.21-.025-1.971 2.274-1.814 2.425.158.154-3.229 1.328-2.994 1.455.237.13-4 1.456-4 1.456l-5.195.97-15.336-5.82L36.37 26.71z"}),w.default.createElement("path",{fill:"url(#paint0_linear)",d:"M63.554 15.07c-.133.124-.313.43-.313.608s.076.46.13.586c.05.127.08.612.08.612s-.293-.178-.423-.332c-.13-.153-.104-.482-.13-.611-.027-.128-.342.13-.526.152-.093.014-.165-.12-.228-.253-.062-.133-.115-.267-.167-.255-.104.027-.419.18-.735.46-.314.278-.234.38-.394.458-.156.075-.234.126-.446-.025-.111-.08-.141-.014-.181.053-.035.06-.077.121-.19.073-.115-.05-.053.086.02.22.078.139.168.278.088.213-.155-.126-.155.28-.053.433.106.154.29.46.42.713.135.256.815 1.48.606 1.428-.21-.052-.448-.611-.528-.84-.077-.23-.472-.588-.552-.588-.075 0-.471-.027-.576-.075-.103-.051-.84-.23-1.26-.204-.42.025-.527-.357-.735-.409-.212-.05-.894-.254-1.077-.279-.183-.025.42.586.604.637.184.05.288.204.026.303-.262.104-.708-.279-.838-.279-.134 0-.37.357-.21.46.155.102.812.484.946.587.127.101.025.533-.109.482-.129-.052-.867-.052-1.181.027-.316.076-.814-.334-1.049-.51-.237-.178-.474-.052-.58.077-.105.125-.447.611-.656.814-.209.203-.998.203-1.206.357-.213.152-1.052.84-1.288 1.122-.237.279-.997.508-1.262.688-.263.178-.657.992-.814 1.12a6.114 6.114 0 00-.684.688c-.209.254-.631.509-.891.816-.264.305-.473.585-.473.585l-.526.534-.446-.255s-.601.409-.813.512c-.21.1-.975-.052-1.235-.078-.265-.025-.605.28-.526.307.08.026.134.177.08.255-.055.076-.605.076-.605.076l-.132.433s-.5.075-.71.075c-.21 0-.523.077-.655.105-.132.025-.5-.308-.63-.308-.134 0-.5-.152-.655 0-.16.154-.424.561-.424.561s-.394 0-.523.025c-.13.026-.84.23-.84.23l2.732 14.803c3.806 2.777 8.538 4.422 13.666 4.422 9.751 0 18.071-5.95 21.316-14.31-.631-1.088-1.59-2.778-1.734-3.005-.21-.33-1.077-1.96-1.233-2.165-.16-.205-.368-.026-.445.05-.04.036-.11.012-.178-.012-.082-.028-.165-.057-.192.013-.054.127-.367.382-.474.279-.103-.1-.42-.891-.394-1.043.028-.153.446.074.446.074s.133-.074.082-.201c-.054-.128-.684-.282-.792-.256-.103.025-.417-.535-.628-.689-.21-.153-.657-.736-.813-.94-.16-.207-.711-.766-.895-.893-.181-.128-.629-.534-.919-.661-.29-.129-.316-.512-.445-.869-.13-.355-.186.105-.158.23.027.127-.238.333-.16.357.08.025.132.282.263.382.133.101-.262.23-.39.203-.135-.024-.29-.432-.37-.609-.08-.18-.395-.231-.29-.434.107-.205.238-.561.132-.688-.105-.128-.157-.483.025-.458.186.024.315-.103.422-.205.105-.102.316.306.395.432.076.129.498.663.474.536-.028-.128.182-.204.182-.204.21.433 1.968 2.6 2.022 2.804.053.202.158-.078.132-.307-.027-.23.104-.152.13-.255.028-.103-.13-.407-.526-.433-.394-.025-.576-.637-.709-.918-.13-.28.395.23.395.23l-1.234-2.087s-1.103-1.784-1.18-1.784c-.08 0-.266.1-.317.203-.053.1.209.789.286.892.08.1.318.484.239.535-.08.05-.499-.205-.711-.28-.207-.078-.497.254-.497.254s-.08-1.07-.212-1.07c-.13 0-.079-.46-.051-.84.026-.383-.42-.383-.42-.383s-.08-.867-.185-.992c-.105-.13 0-.714.027-.971.028-.253-.552-1.222-.684-1.322-.068-.054-.21-.087-.348-.087-.124 0-.244.026-.307.087z"}),w.default.createElement("path",{fill:"url(#paint1_linear)",d:"M49.923 17.743s-.131.306-.342.457c-.213.154-.343.563-.552.843-.21.279-.47.458-.682.355-.21-.103-.473.051-.446.357.026.306.106.943-.053.867-.16-.077-.026-.408-.262-.255-.238.153-.712.993-.893.918-.185-.076-.396-.536-.526-.358-.131.179-.184.74-.341.484-.157-.256-.393-.23-.76.05-.37.283-.764.462-.947.56-.187.103-.55.383-.632.613a.85.85 0 01-.366.46c-.133.074-.445.305-.445.457 0 .154-.187.23-.398.434-.207.203-.602.482-.811.663-.211.178-.659.663-.869.764-.211.101-.576.383-.367.383 0 0 .367 0 .577-.154.211-.154.815-.586.973-.638.158-.051.525-.076.603.103.08.18-.05.433-.236.559-.182.13-.579.563-.681.588-.106.024-.395.28-.395.28s.497-.025.734-.18c.238-.15.87-.432.945-.637.08-.203.263-.457.397-.66.131-.203.339.1.314.306-.028.202.319.354.497.074.185-.28.448-.15.683-.15.236 0 .739.175.869-.027.132-.204.445-.815.632-.92.183-.099.6-.89.731-1.196.13-.305.578-1.17.685-1.528.105-.357.448-.788.658-.917.209-.127.707-.33.945-.484.235-.152.102-.305.366-.534.264-.23.395-.179.395-.41 0-.227.211-.483.211-.483s-.342-.305-.133-.561c.212-.255.525-.764.525-.764s0-.23-.103-.153c-.106.076-.5-.026-.5-.026v.46z"}),w.default.createElement("path",{fill:"#fff",d:"M63.605 24.24s.842 1.222.998 1.502c.157.282.815 1.428.868 1.632.05.204.133.483.447.713.314.23.655.584.655.584s.028-.355-.026-.509c-.054-.153-.708-.942-.891-1.246-.186-.308-2-2.55-2.05-2.675zM66.783 28.978s.291.46.291.764c0 .307.288.867.42 1.095.132.23.34.664.447.715.103.05.42.077.736.407.312.331.471.584.735.663.261.075.472.153.472.153s-.315-.407-.682-1.044c-.37-.638-1.078-1.784-1.235-1.886-.16-.103-.499-.485-.579-.383-.079.1-.605-.484-.605-.484z"}),w.default.createElement("path",{fill:"url(#paint2_linear)",d:"M42.07 37.411c.34.74 3.018 1.784 2.996 1.248-.02-.366.025-1.56.055-2.28.217.32.398.591.44.675.135.256 2.682 3.745 2.918 4.435.238.69 5.383 3.974 5.91 4.534.13.139.432.451.817.846a23.433 23.433 0 005.45-.813 1.066 1.066 0 01-.28-.44c-.053-.18.185-.255.316-.458.129-.204.104-.204-.078-.181-.185.027-.763-.177-1.078-.203-.315-.024-1.42-.585-1.76-.687-.342-.102-.684-.917-.998-1.149-.316-.227-.525-.277-.657-.227-.133.052-.24-.026-.447-.256-.21-.23-.157-.457-.29-.611-.126-.152-.103.308-.182.357-.078.05-.315-.41-.474-.587-.155-.175-.34-.635-.446-.738-.104-.1-.104.202-.131.356-.025.152-.368.333-.5.23-.133-.102-.262-.456-.394-.586-.064-.063-.07.079-.074.22-.004.145-.002.292-.055.213-.106-.154-.289-.303-.316-.51-.026-.202-.159-.814-.263-.867-.103-.048-.21-.457-.315-.635-.103-.178-.103.127-.103.306 0 .177-.238.026-.293-.077-.05-.102-.157-.533-.259-.61-.107-.077-.29.203-.29.203l-.055.738s-.235-.713-.313-.84c-.078-.129-.342-.612-.368-.434-.027.178-.155-.075-.367-.23-.212-.153-.372-.431-.372-.356 0 .078.11.741-.047.662-.159-.076-.266-.686-.449-.967-.182-.28-.735-.713-.735-.713l-.13-.46s-.526-.025-.579-.178c-.052-.153-.34-.126-.366.052-.026.177-.291-.052-.504-.052-.205 0-.47-.636-.548-.739-.075-.102-.16-.28-.184-.154-.025.13-.209.052-.316-.178-.105-.23.187-.558.237-.688.054-.126-.05-.304-.21-.151-.157.152-.314.535-.314.535l-.288-.409-.134.155-.261-.536-.238-.509-.131.535-.026.031c-.122-.33-.227-.601-.262-.644-.103-.126-.63-1.554-.815-1.808-.182-.255-.157-.738-.157-.738s-.316-.18-.526-.078c-.21.103-.367-.33-.553-.458-.179-.127-.416.027-.416.027v-.587l-1.576-.154s1.443 6.879 1.785 7.618z"}),w.default.createElement("path",{fill:"url(#paint3_linear)",d:"M36.793 23.475c-.186.205-.817.257-.946.356-.131.101-.421.41-.499.535-.08.128-.292.153-.421.255-.131.103-.236.587-.236.587s-.34.05-.71.382c-.368.33-.71.434-1.077.663-.268.167-.78.513-1.085.736 1.14 11.166 10.85 19.89 22.658 19.89.631 0 1.257-.025 1.876-.073a19.55 19.55 0 01-.704-1.09c-.525-.89-1.628-1.399-1.815-1.452-.182-.05-.6-.817-.735-.866-.13-.05-.602-.79-.76-1.043a.845.845 0 00-.632-.41c-.235-.023-1.39-1.5-1.39-1.5s-1.6-1.707-1.759-1.836c-.159-.128-1.024-1.274-1.184-1.452-.157-.178-.97-.764-1.153-.79-.185-.026-.788-.919-.897-1.02-.103-.1-.495-.1-.522 0-.028.101-.29.384-.314.512-.026.127-.026.459-.211.61-.185.15-.288.713-.288.713s-.342-.229-.447-.253c-.108-.026-.263-.843-.289-1.022-.027-.176-.239-.637-.37-.787-.132-.154-.522-.818-.735-.97-.209-.152-.367-.84-.391-1.148-.028-.304-.553-1.196-.685-1.426-.133-.229-.264-1.119-.315-1.273-.054-.153-.343-.636-.499-.815-.157-.18-.892-.967-1.181-1.148-.289-.177-.398-.611-.446-.686-.055-.077-.133-.536-.133-.536s-.182-.331-.237-.484c-.05-.152-.103-2.496-.078-2.573.028-.075-.34-.356-.497-.408-.16-.05.026-.28 0-.406-.028-.127-.212-.282-.212-.282s-.5.306-.68.51z"}),w.default.createElement("path",{fill:"#292929",d:"M.503 1.522h3.322l10.851 19.71 10.848-19.71h3.323L16.498 23.97l12.98 23.424h-3.262L14.676 26.646 3.263 47.394H0L12.919 23.97.503 1.522zM89.929 44.653h13.784v2.74H86.919V1.522h3.01v43.131zM138.864 29.567l-9.22-22.145 9.22 22.145zm-9.22-22.145l-9.281 22.145h18.501l-9.22-22.145zm-10.41 24.883l-6.333 15.088h-3.073L129.644 0l19.754 47.393h-3.071l-6.336-15.088h-20.757zM32.994 24.456c0 11.315 9.722 20.806 21.512 20.806 11.725 0 21.51-9.553 21.51-20.806 0-11.317-9.785-20.806-21.51-20.806-11.79 0-21.512 9.489-21.512 20.806zm46.031 0C79.025 37.352 67.801 48 54.506 48c-13.296 0-24.52-10.648-24.52-23.544 0-12.898 11.163-23.544 24.52-23.544 13.295 0 24.52 10.646 24.52 23.544z"}),w.default.createElement("defs",null,w.default.createElement("linearGradient",{id:"paint0_linear",x1:"60.015",x2:"60.015",y1:"80.164",y2:"14.981",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#626262"})),w.default.createElement("linearGradient",{id:"paint1_linear",x1:"40.169",x2:"50.526",y1:"21.908",y2:"21.908",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#909191"})),w.default.createElement("linearGradient",{id:"paint2_linear",x1:"50.698",x2:"50.698",y1:"29.793",y2:"50.252",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#909191"})),w.default.createElement("linearGradient",{id:"paint3_linear",x1:"23.397",x2:"83.226",y1:"51.182",y2:"51.182",gradientUnits:"userSpaceOnUse"},w.default.createElement("stop",{stopColor:"#fff"}),w.default.createElement("stop",{offset:"1",stopColor:"#626262"}))));const Kt=({defaultValues:e,isLoading:t=!1,error:a=null,onSubmit:n})=>{const[l,o]=r.useState(__spreadValues({email:"",password:"",shouldRemember:!1},e)),s=e=>{const{name:t,value:a}=e.target;o(__spreadProps(__spreadValues({},l),{[t]:a}))};return w.default.createElement("div",{className:"h-screen bg-white bg-opacity-40 login-container"},w.default.createElement("div",{className:"flex flex-col justify-center items-center space-y-8 w-full h-[90%] md:full"},w.default.createElement("div",{className:"py-0 px-9 rounded-lg md:py-10 md:bg-white w-82"},w.default.createElement("div",{className:"mb-12 md:mb-10"},w.default.createElement(qt,{className:"mx-auto w-auto h-10 md:mb-20 md:h-12"})),w.default.createElement("form",{onSubmit:e=>{e.preventDefault(),n(l)}},w.default.createElement("fieldset",{className:"space-y-6",disabled:t},w.default.createElement("div",{className:"-space-y-px bg-white rounded-md"},w.default.createElement(gt,{className:"md:mb-7"},w.default.createElement(It,null,"Email"),w.default.createElement(wt,{required:!0,name:"email",type:"email",autoComplete:"email",value:l.email,isError:!!a,onChange:s})),w.default.createElement(gt,null,w.default.createElement(It,null,"Password"),w.default.createElement(wt,{required:!0,name:"password",type:"password",autoComplete:"current-password",value:l.password,isError:!!a,onChange:s}))),w.default.createElement(zt,{name:"shouldRemember",label:"Remember me",checked:l.shouldRemember,onChange:e=>{const{name:t,checked:a}=e.target;o(__spreadProps(__spreadValues({},l),{[t]:a}))}}),a?w.default.createElement(K,{color:"danger"},a):null,w.default.createElement(j,{type:"submit",className:"w-full",color:"primary"},t?w.default.createElement(ft,{size:"current",color:"current",className:"mr-2"}):null,"Login"),w.default.createElement("div",{className:"mt-5 text-sm text-center"},w.default.createElement("a",{href:"https://xola.com/resetting/form",className:"font-semibold underline hover:text-black text-gray-darker",target:"_blank",rel:"noreferrer"},"Forgot your password?")))))),w.default.createElement("footer",null,w.default.createElement("div",{className:"flex overflow-hidden flex-col justify-center items-center py-1 px-4 w-full sm:px-6 lg:px-8"},w.default.createElement("div",{className:"px-4 m-5 text-xs text-center rounded-lg opacity-30 md:text-sm hover:opacity-80 w-82"},w.default.createElement("a",{href:"https://www.xola.com/team",target:"_blank",className:"md:text-gray",rel:"noreferrer"},"Handcrafted in Houston, Belgrade & Bengaluru",w.default.createElement("div",{className:"text-center"},"© ",(new Date).getFullYear()," Xola, Inc."))))))};Kt.propTypes={defaultValues:y.default.shape({email:y.default.string,password:y.default.string,shouldRemember:y.default.bool}),isLoading:y.default.bool,error:y.default.string,onSubmit:y.default.func};const Yt=({selectedDate:e,day:t,getContent:a})=>{if(a)return w.default.createElement(Gt,{selectedDate:e,day:t,getContent:a});const r=e&&E.default(e).isSame(t,"day");return w.default.createElement("div",{className:v.default("date flex items-center w-full h-full justify-center",r?"text-white selected":null)},t.getDate())};Yt.propTypes={selectedDate:y.default.objectOf(Date),day:y.default.objectOf(Date),getContent:y.default.func};const Gt=({selectedDate:e,day:t,getContent:a})=>{var r;const n=t.getDate(),l=null!=(r=a(n))?r:"N/A",o=e&&E.default(e).isSame(t,"day"),s=E.default().isSame(t,"month");return w.default.createElement(w.default.Fragment,null,w.default.createElement("div",{className:v.default("date-value mb-1 leading-p1",o?"text-white selected":null)},n),w.default.createElement("div",{className:v.default("custom-content text-xs leading-p3",o?"text-white":s?"text-gray-dark":"text-gray-light")},l))};Gt.propTypes={selectedDate:y.default.objectOf(Date),day:y.default.objectOf(Date),getContent:y.default.func.isRequired};const $t=E.default(),Jt=({date:e,onChange:t})=>{const a=[...Array.from({length:12}).keys()].map((e=>$t.month(e).format("MMM"))),r=[...Array.from({length:12}).keys()].map((e=>$t.year(2021+e).format("YYYY"))),n=e=>{const{year:a,month:r}=e.target.form;t(new Date(a.value,r.value))};return w.default.createElement("form",{className:"DayPicker-Caption"},w.default.createElement("select",{name:"month",value:e.getMonth(),className:"month-selector",onChange:n},a.map(((e,t)=>w.default.createElement("option",{key:e,value:t},e)))),w.default.createElement("select",{name:"year",value:e.getFullYear(),className:"year-selector",onChange:n},r.map((e=>w.default.createElement("option",{key:e,value:e},e)))))};Jt.propTypes={date:y.default.objectOf(Date).isRequired,onChange:y.default.func.isRequired};const Zt=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M9.666 12.5L4.166 7l5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Xt=({onPreviousClick:e,onNextClick:t,className:a,showNextButton:r,showPreviousButton:n})=>w.default.createElement("div",{className:v.default("absolute z-50 top-1.5 right-1",a)},w.default.createElement(Qt,{isVisible:n,onClick:e},w.default.createElement(Zt,null)),w.default.createElement(Qt,{isVisible:r,onClick:t},w.default.createElement($,null)));Xt.propTypes={onPreviousClick:y.default.func,onNextClick:y.default.func,className:y.default.string,showNextButton:y.default.bool,showPreviousButton:y.default.bool};const Qt=({isVisible:e=!0,onClick:t,children:a})=>w.default.createElement("button",{type:"button",className:v.default(e?"inline-block":"invisible","rounded-full border border-transparent text-black hover:border-black w-7 h-7 inline-flex items-center justify-center leading-none"),onClick:()=>t()},a);Qt.propTypes={isVisible:y.default.bool,onClick:y.default.func.isRequired,children:y.default.element.isRequired};const ea={single:"single",range:"range"},ta=e=>{var t,a,n=e,{variant:l=ea.single,value:o,onChange:s,initialMonth:i=new Date,onMonthChange:u,onTodayButtonClick:c,disabledDays:f=[],shouldShowYearPicker:p=!1,getDayContent:h,modifiers:m={}}=n,g=__objRest(n,["variant","value","onChange","initialMonth","onMonthChange","onTodayButtonClick","disabledDays","shouldShowYearPicker","getDayContent","modifiers"]);const[y,k]=r.useState(i),E=l===ea.range;r.useEffect((()=>{null==u||u(y)}),[y,u]);const x=e=>{k(e)},_=p?({date:e})=>w.default.createElement(Jt,{date:e,onChange:x}):void 0,M=E?{start:o.from,end:o.to}:null,N=E&&(null==(t=o.from)?void 0:t.getTime())!==(null==(a=o.to)?void 0:a.getTime());return w.default.createElement(b.default,__spreadValues({className:v.default("date-picker",N?"date-range-picker":null,h?"has-custom-content":null),showOutsideDays:!0,todayButton:"Today",selectedDays:o,onDayClick:e=>{E?o.from&&o.to?s({from:e,to:null}):s(d.DateUtils.addDayToRange(e,o)):s(e)},initialMonth:i,month:y,onMonthChange:x,modifiers:__spreadValues(__spreadValues({},m),M),numberOfMonths:E?2:1,disabledDays:f,captionElement:_,renderDay:e=>w.default.createElement(Yt,{selectedDate:o,day:e,getContent:h}),navbarElement:Xt,onTodayButtonClick:c},g))};ta.propTypes={variant:y.default.oneOf(Object.keys(ea)),value:y.default.objectOf(Date).isRequired,onChange:y.default.func.isRequired,initialMonth:y.default.objectOf(Date),onMonthChange:y.default.func,onTodayButtonClick:y.default.func,disabledDays:y.default.array,shouldShowYearPicker:y.default.bool,getDayContent:y.default.func,modifiers:y.default.object};var aa={},ra={},na={},la={};Object.defineProperty(la,"__esModule",{value:!0}),la.formatDay=da,la.formatMonthTitle=ua,la.formatWeekdayShort=ca,la.formatWeekdayLong=fa,la.getFirstDayOfWeek=pa,la.getMonths=ha;var oa=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],sa=["Su","Mo","Tu","We","Th","Fr","Sa"],ia=["January","February","March","April","May","June","July","August","September","October","November","December"];function da(e){return e.toDateString()}function ua(e){return ia[e.getMonth()]+" "+e.getFullYear()}function ca(e){return sa[e]}function fa(e){return oa[e]}function pa(){return 0}function ha(){return ia}la.default={formatDay:da,formatMonthTitle:ua,formatWeekdayShort:ca,formatWeekdayLong:fa,getFirstDayOfWeek:pa,getMonths:ha};var ma={};Object.defineProperty(ma,"__esModule",{value:!0}),ma.LEFT=37,ma.UP=38,ma.RIGHT=39,ma.DOWN=40,ma.ENTER=13,ma.SPACE=32,ma.ESC=27,ma.TAB=9,Object.defineProperty(na,"__esModule",{value:!0});var ga=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),va=w.default,ya=ba(va),wa=ba(la),ka=ma;function ba(e){return e&&e.__esModule?e:{default:e}}var Ea=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var a=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return a.handleKeyUp=a.handleKeyUp.bind(a),a}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),ga(t,[{key:"shouldComponentUpdate",value:function(e){return e.locale!==this.props.locale||e.classNames!==this.props.classNames||e.date.getMonth()!==this.props.date.getMonth()||e.date.getFullYear()!==this.props.date.getFullYear()}},{key:"handleKeyUp",value:function(e){e.keyCode===ka.ENTER&&this.props.onClick(e)}},{key:"render",value:function(){var e=this.props,t=e.classNames,a=e.date,r=e.months,n=e.locale,l=e.localeUtils,o=e.onClick;return ya.default.createElement("div",{className:t.caption,role:"heading","aria-live":"polite"},ya.default.createElement("div",{onClick:o,onKeyUp:this.handleKeyUp},r?r[a.getMonth()]+" "+a.getFullYear():l.formatMonthTitle(a,n)))}}]),t}(va.Component);Ea.defaultProps={localeUtils:wa.default},na.default=Ea;var xa={},_a={};Object.defineProperty(_a,"__esModule",{value:!0}),_a.default={container:"DayPicker",wrapper:"DayPicker-wrapper",interactionDisabled:"DayPicker--interactionDisabled",months:"DayPicker-Months",month:"DayPicker-Month",navBar:"DayPicker-NavBar",navButtonPrev:"DayPicker-NavButton DayPicker-NavButton--prev",navButtonNext:"DayPicker-NavButton DayPicker-NavButton--next",navButtonInteractionDisabled:"DayPicker-NavButton--interactionDisabled",caption:"DayPicker-Caption",weekdays:"DayPicker-Weekdays",weekdaysRow:"DayPicker-WeekdaysRow",weekday:"DayPicker-Weekday",body:"DayPicker-Body",week:"DayPicker-Week",weekNumber:"DayPicker-WeekNumber",day:"DayPicker-Day",footer:"DayPicker-Footer",todayButton:"DayPicker-TodayButton",today:"today",selected:"selected",disabled:"disabled",outside:"outside"},Object.defineProperty(xa,"__esModule",{value:!0});var Ma=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),Na=w.default,Ca=ja(Na),La=ja(_a),Da=ma;function ja(e){return e&&e.__esModule?e:{default:e}}function Pa(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oa(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Va=function(e){function t(){var e,a,r;Pa(this,t);for(var n=arguments.length,l=Array(n),o=0;o<n;o++)l[o]=arguments[o];return a=r=Oa(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),r.handleNextClick=function(){r.props.onNextClick&&r.props.onNextClick()},r.handlePreviousClick=function(){r.props.onPreviousClick&&r.props.onPreviousClick()},r.handleNextKeyDown=function(e){e.keyCode!==Da.ENTER&&e.keyCode!==Da.SPACE||(e.preventDefault(),r.handleNextClick())},r.handlePreviousKeyDown=function(e){e.keyCode!==Da.ENTER&&e.keyCode!==Da.SPACE||(e.preventDefault(),r.handlePreviousClick())},Oa(r,a)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),Ma(t,[{key:"shouldComponentUpdate",value:function(e){return e.labels!==this.props.labels||e.dir!==this.props.dir||this.props.showPreviousButton!==e.showPreviousButton||this.props.showNextButton!==e.showNextButton}},{key:"render",value:function(){var e=this.props,t=e.classNames,a=e.className,r=e.showPreviousButton,n=e.showNextButton,l=e.labels,o=e.dir,s=void 0,i=void 0,d=void 0,u=void 0,c=void 0,f=void 0;"rtl"===o?(s=this.handleNextClick,i=this.handlePreviousClick,d=this.handleNextKeyDown,u=this.handlePreviousKeyDown,f=r,c=n):(s=this.handlePreviousClick,i=this.handleNextClick,d=this.handlePreviousKeyDown,u=this.handleNextKeyDown,f=n,c=r);var p=c?t.navButtonPrev:t.navButtonPrev+" "+t.navButtonInteractionDisabled,h=f?t.navButtonNext:t.navButtonNext+" "+t.navButtonInteractionDisabled,m=Ca.default.createElement("span",{tabIndex:"0",role:"button","aria-label":l.previousMonth,key:"previous",className:p,onKeyDown:c?d:void 0,onClick:c?s:void 0}),g=Ca.default.createElement("span",{tabIndex:"0",role:"button","aria-label":l.nextMonth,key:"right",className:h,onKeyDown:f?u:void 0,onClick:f?i:void 0});return Ca.default.createElement("div",{className:a||t.navBar},"rtl"===o?[g,m]:[m,g])}}]),t}(Na.Component);Va.defaultProps={classNames:La.default,dir:"ltr",labels:{previousMonth:"Previous Month",nextMonth:"Next Month"},showPreviousButton:!0,showNextButton:!0},xa.default=Va;var Ta={},Ba={};Object.defineProperty(Ba,"__esModule",{value:!0});var za,Ia=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),Fa=w.default,Sa=(za=Fa)&&za.__esModule?za:{default:za};function Ra(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Aa(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Ha=function(e){function t(){return Ra(this,t),Aa(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),Ia(t,[{key:"shouldComponentUpdate",value:function(e){return this.props!==e}},{key:"render",value:function(){for(var e=this.props,t=e.classNames,a=e.firstDayOfWeek,r=e.showWeekNumbers,n=e.weekdaysLong,l=e.weekdaysShort,o=e.locale,s=e.localeUtils,i=e.weekdayElement,d=[],u=0;u<7;u+=1){var c=(u+a)%7,f={key:u,className:t.weekday,weekday:c,weekdaysLong:n,weekdaysShort:l,localeUtils:s,locale:o},p=Sa.default.isValidElement(i)?Sa.default.cloneElement(i,f):Sa.default.createElement(i,f);d.push(p)}return Sa.default.createElement("div",{className:t.weekdays,role:"rowgroup"},Sa.default.createElement("div",{className:t.weekdaysRow,role:"row"},r&&Sa.default.createElement("div",{className:t.weekday}),d))}}]),t}(Fa.Component);Ba.default=Ha;var Wa={},Ua={};function qa(e){return new Date(e.getTime())}function Ka(e){return e instanceof Date&&!isNaN(e.valueOf())}function Ya(e,t){var a=qa(e);return a.setMonth(e.getMonth()+t),a}function Ga(e,t){return!(!e||!t)&&(e.getDate()===t.getDate()&&e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear())}function $a(e,t){return!(!e||!t)&&(e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear())}function Ja(e,t){return qa(e).setHours(0,0,0,0)<qa(t).setHours(0,0,0,0)}function Za(e,t){return qa(e).setHours(0,0,0,0)>qa(t).setHours(0,0,0,0)}function Xa(e){var t=new Date;return t.setHours(0,0,0,0),Ja(e,t)}function Qa(e){var t=new Date((new Date).getTime()+864e5);return t.setHours(0,0,0,0),e>=t}function er(e,t,a){var r=qa(e);return r.setHours(0,0,0,0),Za(r,t)&&Ja(r,a)||Za(r,a)&&Ja(r,t)}function tr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{from:null,to:null},a=t.from,r=t.to;return a?a&&r&&Ga(a,r)&&Ga(e,a)?(a=null,r=null):r&&Ja(e,a)?a=e:r&&Ga(e,r)?(a=e,r=e):Ja(r=e,a)&&(r=a,a=e):a=e,{from:a,to:r}}function ar(e,t){var a=t.from,r=t.to;return a&&Ga(e,a)||r&&Ga(e,r)||a&&r&&er(e,a,r)}function rr(e){var t=qa(e);return t.setHours(0,0,0),t.setDate(t.getDate()+4-(t.getDay()||7)),Math.ceil(((t-new Date(t.getFullYear(),0,1))/864e5+1)/7)}Object.defineProperty(Ua,"__esModule",{value:!0}),Ua.clone=qa,Ua.isDate=Ka,Ua.addMonths=Ya,Ua.isSameDay=Ga,Ua.isSameMonth=$a,Ua.isDayBefore=Ja,Ua.isDayAfter=Za,Ua.isPastDay=Xa,Ua.isFutureDay=Qa,Ua.isDayBetween=er,Ua.addDayToRange=tr,Ua.isDayInRange=ar,Ua.getWeekNumber=rr,Ua.default={addDayToRange:tr,addMonths:Ya,clone:qa,getWeekNumber:rr,isDate:Ka,isDayAfter:Za,isDayBefore:Ja,isDayBetween:er,isDayInRange:ar,isFutureDay:Qa,isPastDay:Xa,isSameDay:Ga,isSameMonth:$a};var nr={};Object.defineProperty(nr,"__esModule",{value:!0});var lr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r])}return e};nr.cancelEvent=function(e){e.preventDefault(),e.stopPropagation()},nr.getFirstDayOfMonth=dr,nr.getDaysInMonth=ur,nr.getModifiersFromProps=function(e){var t=lr({},e.modifiers);e.selectedDays&&(t[e.classNames.selected]=e.selectedDays);e.disabledDays&&(t[e.classNames.disabled]=e.disabledDays);return t},nr.getFirstDayOfWeekFromProps=function(e){var t=e.firstDayOfWeek,a=e.locale,r=void 0===a?"en":a,n=e.localeUtils,l=void 0===n?{}:n;if(!isNaN(t))return t;if(l.getFirstDayOfWeek)return l.getFirstDayOfWeek(r);return 0},nr.isRangeOfDates=function(e){return!!(e&&e.from&&e.to)},nr.getMonthsDiff=function(e,t){return t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())},nr.getWeekArray=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,sr.getFirstDayOfWeek)(),a=arguments[2],r=ur(e),n=[],l=[],o=[],s=1;s<=r;s+=1)n.push(new Date(e.getFullYear(),e.getMonth(),s,12));n.forEach((function(e){l.length>0&&e.getDay()===t&&(o.push(l),l=[]),l.push(e),n.indexOf(e)===n.length-1&&o.push(l)}));for(var i=o[0],d=7-i.length;d>0;d-=1){var u=(0,or.clone)(i[0]);u.setDate(i[0].getDate()-1),i.unshift(u)}for(var c=o[o.length-1],f=c.length;f<7;f+=1){var p=(0,or.clone)(c[c.length-1]);p.setDate(c[c.length-1].getDate()+1),c.push(p)}if(a&&o.length<6)for(var h=void 0,m=o.length;m<6;m+=1){for(var g=(h=o[o.length-1])[h.length-1],v=[],y=0;y<7;y+=1){var w=(0,or.clone)(g);w.setDate(g.getDate()+y+1),v.push(w)}o.push(v)}return o},nr.startOfMonth=function(e){var t=(0,or.clone)(e);return t.setDate(1),t.setHours(12,0,0,0),t},nr.getDayNodes=function(e,t){var a=void 0;a=t===ir.default?t.day+"--"+t.outside:""+t.outside;var r=t.day.replace(/ /g,"."),n=a.replace(/ /g,"."),l="."+r+":not(."+n+")";return e.querySelectorAll(l)},nr.nodeListToArray=function(e){return Array.prototype.slice.call(e,0)},nr.hasOwnProp=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};var or=Ua,sr=la,ir=function(e){return e&&e.__esModule?e:{default:e}}(_a);function dr(e){return new Date(e.getFullYear(),e.getMonth(),1,12)}function ur(e){var t=dr(e);return t.setMonth(t.getMonth()+1),t.setDate(t.getDate()-1),t.getDate()}Object.defineProperty(Wa,"__esModule",{value:!0});var cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r])}return e},fr=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),pr=w.default,hr=yr(pr),mr=Ua,gr=nr,vr=yr(_a);function yr(e){return e&&e.__esModule?e:{default:e}}function wr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kr(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function br(e,t,a){if(e)return function(r){r.persist(),e(t,a,r)}}var Er=function(e){function t(){return wr(this,t),kr(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),fr(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,a=Object.keys(this.props),r=Object.keys(e);return a.length!==r.length||a.some((function(a){if("modifiers"===a||"modifiersStyles"===a||"classNames"===a){var r=t.props[a],n=e[a],l=Object.keys(r),o=Object.keys(n);return l.length!==o.length||l.some((function(e){return!(0,gr.hasOwnProp)(n,e)||r[e]!==n[e]}))}return"day"===a?!(0,mr.isSameDay)(t.props[a],e[a]):!(0,gr.hasOwnProp)(e,a)||t.props[a]!==e[a]}))}},{key:"render",value:function(){var e=this.props,t=e.classNames,a=e.modifiersStyles,r=e.day,n=e.tabIndex,l=e.empty,o=e.modifiers,s=e.onMouseEnter,i=e.onMouseLeave,d=e.onMouseUp,u=e.onMouseDown,c=e.onClick,f=e.onKeyDown,p=e.onTouchStart,h=e.onTouchEnd,m=e.onFocus,g=e.ariaLabel,v=e.ariaDisabled,y=e.ariaSelected,w=e.children,k=t.day;t!==vr.default?k+=" "+Object.keys(o).join(" "):k+=Object.keys(o).map((function(e){return" "+k+"--"+e})).join("");var b=void 0;return a&&Object.keys(o).filter((function(e){return!!a[e]})).forEach((function(e){b=cr({},b,a[e])})),l?hr.default.createElement("div",{"aria-disabled":!0,className:k,style:b}):hr.default.createElement("div",{className:k,tabIndex:n,style:b,role:"gridcell","aria-label":g,"aria-disabled":v,"aria-selected":y,onClick:br(c,r,o),onKeyDown:br(f,r,o),onMouseEnter:br(s,r,o),onMouseLeave:br(i,r,o),onMouseUp:br(d,r,o),onMouseDown:br(u,r,o),onTouchEnd:br(h,r,o),onTouchStart:br(p,r,o),onFocus:br(m,r,o)},w)}}]),t}(pr.Component);Er.defaultProps={tabIndex:-1},Er.defaultProps={modifiers:{},modifiersStyles:{},empty:!1},Wa.default=Er;var xr={};Object.defineProperty(xr,"__esModule",{value:!0}),xr.dayMatchesModifier=Nr,xr.getModifiersForDay=Cr;var _r=Ua,Mr=nr;function Nr(e,t){return!!t&&(Array.isArray(t)?t:[t]).some((function(t){return!!t&&(t instanceof Date?(0,_r.isSameDay)(e,t):(0,Mr.isRangeOfDates)(t)?(0,_r.isDayInRange)(e,t):t.after&&t.before&&(0,_r.isDayAfter)(t.before,t.after)?(0,_r.isDayAfter)(e,t.after)&&(0,_r.isDayBefore)(e,t.before):t.after&&t.before&&((0,_r.isDayAfter)(t.after,t.before)||(0,_r.isSameDay)(t.after,t.before))?(0,_r.isDayAfter)(e,t.after)||(0,_r.isDayBefore)(e,t.before):t.after?(0,_r.isDayAfter)(e,t.after):t.before?(0,_r.isDayBefore)(e,t.before):t.daysOfWeek?t.daysOfWeek.some((function(t){return e.getDay()===t})):"function"==typeof t&&t(e))}))}function Cr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(t).reduce((function(a,r){var n=t[r];return Nr(e,n)&&a.push(r),a}),[])}xr.default={dayMatchesModifier:Nr,getModifiersForDay:Cr},Object.defineProperty(Ta,"__esModule",{value:!0});var Lr=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),Dr=w.default,jr=Fr(Dr),Pr=Fr(Ba),Or=Fr(Wa),Vr=ma,Tr=Ir(xr),Br=Ir(nr),zr=Ir(Ua);function Ir(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(t[a]=e[a]);return t.default=e,t}function Fr(e){return e&&e.__esModule?e:{default:e}}function Sr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Rr(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Ar=function(e){function t(){var e,a,r;Sr(this,t);for(var n=arguments.length,l=Array(n),o=0;o<n;o++)l[o]=arguments[o];return a=r=Rr(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),r.renderDay=function(e){var t=r.props.month.getMonth(),a=Br.getModifiersFromProps(r.props),n=Tr.getModifiersForDay(e,a);zr.isSameDay(e,new Date)&&!Object.prototype.hasOwnProperty.call(a,r.props.classNames.today)&&n.push(r.props.classNames.today),e.getMonth()!==t&&n.push(r.props.classNames.outside);var l=e.getMonth()!==t,o=-1;r.props.onDayClick&&!l&&1===e.getDate()&&(o=r.props.tabIndex);var s=""+e.getFullYear()+e.getMonth()+e.getDate(),i={};return n.forEach((function(e){i[e]=!0})),jr.default.createElement(Or.default,{key:(l?"outside-":"")+s,classNames:r.props.classNames,day:e,modifiers:i,modifiersStyles:r.props.modifiersStyles,empty:l&&!r.props.showOutsideDays&&!r.props.fixedWeeks,tabIndex:o,ariaLabel:r.props.localeUtils.formatDay(e,r.props.locale),ariaDisabled:l||n.indexOf(r.props.classNames.disabled)>-1,ariaSelected:n.indexOf(r.props.classNames.selected)>-1,onClick:r.props.onDayClick,onFocus:r.props.onDayFocus,onKeyDown:r.props.onDayKeyDown,onMouseEnter:r.props.onDayMouseEnter,onMouseLeave:r.props.onDayMouseLeave,onMouseDown:r.props.onDayMouseDown,onMouseUp:r.props.onDayMouseUp,onTouchEnd:r.props.onDayTouchEnd,onTouchStart:r.props.onDayTouchStart},r.props.renderDay(e,i))},Rr(r,a)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),Lr(t,[{key:"render",value:function(){var e=this,t=this.props,a=t.classNames,r=t.month,n=t.months,l=t.fixedWeeks,o=t.captionElement,s=t.weekdayElement,i=t.locale,d=t.localeUtils,u=t.weekdaysLong,c=t.weekdaysShort,f=t.firstDayOfWeek,p=t.onCaptionClick,h=t.showWeekNumbers,m=t.showWeekDays,g=t.onWeekClick,v={date:r,classNames:a,months:n,localeUtils:d,locale:i,onClick:p?function(e){return p(r,e)}:void 0},y=jr.default.isValidElement(o)?jr.default.cloneElement(o,v):jr.default.createElement(o,v),w=Br.getWeekArray(r,f,l);return jr.default.createElement("div",{className:a.month,role:"grid"},y,m&&jr.default.createElement(Pr.default,{classNames:a,weekdaysShort:c,weekdaysLong:u,firstDayOfWeek:f,showWeekNumbers:h,locale:i,localeUtils:d,weekdayElement:s}),jr.default.createElement("div",{className:a.body,role:"rowgroup"},w.map((function(t){var n=void 0;return h&&(n=zr.getWeekNumber(t[6])),jr.default.createElement("div",{key:t[0].getTime(),className:a.week,role:"row"},h&&jr.default.createElement("div",{className:a.weekNumber,tabIndex:g?0:-1,role:"gridcell",onClick:g?function(e){return g(n,t,e)}:void 0,onKeyUp:g?function(e){return e.keyCode===Vr.ENTER&&g(n,t,e)}:void 0},e.props.renderWeek(n,t,r)),t.map(e.renderDay))}))))}}]),t}(Dr.Component);Ta.default=Ar;var Hr={};Object.defineProperty(Hr,"__esModule",{value:!0});var Wr=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),Ur=w.default,qr=function(e){return e&&e.__esModule?e:{default:e}}(Ur);function Kr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Yr(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var Gr=function(e){function t(){return Kr(this,t),Yr(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),Wr(t,[{key:"shouldComponentUpdate",value:function(e){return this.props!==e}},{key:"render",value:function(){var e=this.props,t=e.weekday,a=e.className,r=e.weekdaysLong,n=e.weekdaysShort,l=e.localeUtils,o=e.locale,s=void 0;s=r?r[t]:l.formatWeekdayLong(t,o);var i=void 0;return i=n?n[t]:l.formatWeekdayShort(t,o),qr.default.createElement("div",{className:a,role:"columnheader"},qr.default.createElement("abbr",{title:s},i))}}]),t}(Ur.Component);Hr.default=Gr,Object.defineProperty(ra,"__esModule",{value:!0}),ra.ModifiersUtils=ra.LocaleUtils=ra.DateUtils=ra.DayPicker=void 0;var $r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r])}return e},Jr=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),Zr=w.default,Xr=cn(Zr),Qr=cn(na),en=cn(xa),tn=cn(Ta),an=cn(Hr),rn=un(nr),nn=un(Ua),ln=un(la),on=un(xr),sn=cn(_a),dn=ma;function un(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(t[a]=e[a]);return t.default=e,t}function cn(e){return e&&e.__esModule?e:{default:e}}var fn=ra.DayPicker=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var a=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));a.dayPicker=null,a.showNextMonth=function(e){if(a.allowNextMonth()){var t=a.props.pagedNavigation?a.props.numberOfMonths:1,r=nn.addMonths(a.state.currentMonth,t);a.showMonth(r,e)}},a.showPreviousMonth=function(e){if(a.allowPreviousMonth()){var t=a.props.pagedNavigation?a.props.numberOfMonths:1,r=nn.addMonths(a.state.currentMonth,-t);a.showMonth(r,e)}},a.handleKeyDown=function(e){switch(e.persist(),e.keyCode){case dn.LEFT:"rtl"===a.props.dir?a.showNextMonth():a.showPreviousMonth(),rn.cancelEvent(e);break;case dn.RIGHT:"rtl"===a.props.dir?a.showPreviousMonth():a.showNextMonth(),rn.cancelEvent(e);break;case dn.UP:a.showPreviousYear(),rn.cancelEvent(e);break;case dn.DOWN:a.showNextYear(),rn.cancelEvent(e)}a.props.onKeyDown&&a.props.onKeyDown(e)},a.handleDayKeyDown=function(e,t,r){switch(r.persist(),r.keyCode){case dn.LEFT:rn.cancelEvent(r),"rtl"===a.props.dir?a.focusNextDay(r.target):a.focusPreviousDay(r.target);break;case dn.RIGHT:rn.cancelEvent(r),"rtl"===a.props.dir?a.focusPreviousDay(r.target):a.focusNextDay(r.target);break;case dn.UP:rn.cancelEvent(r),a.focusPreviousWeek(r.target);break;case dn.DOWN:rn.cancelEvent(r),a.focusNextWeek(r.target);break;case dn.ENTER:case dn.SPACE:rn.cancelEvent(r),a.props.onDayClick&&a.handleDayClick(e,t,r)}a.props.onDayKeyDown&&a.props.onDayKeyDown(e,t,r)},a.handleDayClick=function(e,t,r){r.persist(),t[a.props.classNames.outside]&&a.props.enableOutsideDaysClick&&a.handleOutsideDayClick(e),a.props.onDayClick&&a.props.onDayClick(e,t,r)},a.handleTodayButtonClick=function(e){var t=new Date,r=new Date(t.getFullYear(),t.getMonth());a.showMonth(r),e.target.blur(),a.props.onTodayButtonClick&&(e.persist(),a.props.onTodayButtonClick(new Date(t.getFullYear(),t.getMonth(),t.getDate()),on.getModifiersForDay(t,a.props.modifiers),e))};var r=a.getCurrentMonthFromProps(e);return a.state={currentMonth:r},a}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),Jr(t,[{key:"componentDidUpdate",value:function(e){if(e.month!==this.props.month&&!nn.isSameMonth(e.month,this.props.month)){var t=this.getCurrentMonthFromProps(this.props);this.setState({currentMonth:t})}}},{key:"getCurrentMonthFromProps",value:function(e){var t=rn.startOfMonth(e.month||e.initialMonth||new Date);if(e.pagedNavigation&&e.numberOfMonths>1&&e.fromMonth){var a=rn.startOfMonth(e.fromMonth),r=rn.getMonthsDiff(a,t);t=nn.addMonths(a,Math.floor(r/e.numberOfMonths)*e.numberOfMonths)}else e.toMonth&&e.numberOfMonths>1&&rn.getMonthsDiff(t,e.toMonth)<=0&&(t=nn.addMonths(rn.startOfMonth(e.toMonth),1-this.props.numberOfMonths));return t}},{key:"getNextNavigableMonth",value:function(){return nn.addMonths(this.state.currentMonth,this.props.numberOfMonths)}},{key:"getPreviousNavigableMonth",value:function(){return nn.addMonths(this.state.currentMonth,-1)}},{key:"allowPreviousMonth",value:function(){var e=nn.addMonths(this.state.currentMonth,-1);return this.allowMonth(e)}},{key:"allowNextMonth",value:function(){var e=nn.addMonths(this.state.currentMonth,this.props.numberOfMonths);return this.allowMonth(e)}},{key:"allowMonth",value:function(e){var t=this.props,a=t.fromMonth,r=t.toMonth;return!(!t.canChangeMonth||a&&rn.getMonthsDiff(a,e)<0||r&&rn.getMonthsDiff(r,e)>0)}},{key:"allowYearChange",value:function(){return this.props.canChangeMonth}},{key:"showMonth",value:function(e,t){var a=this;this.allowMonth(e)&&this.setState({currentMonth:rn.startOfMonth(e)},(function(){t&&t(),a.props.onMonthChange&&a.props.onMonthChange(a.state.currentMonth)}))}},{key:"showNextYear",value:function(){if(this.allowYearChange()){var e=nn.addMonths(this.state.currentMonth,12);this.showMonth(e)}}},{key:"showPreviousYear",value:function(){if(this.allowYearChange()){var e=nn.addMonths(this.state.currentMonth,-12);this.showMonth(e)}}},{key:"focus",value:function(){this.wrapper.focus()}},{key:"focusFirstDayOfMonth",value:function(){rn.getDayNodes(this.dayPicker,this.props.classNames)[0].focus()}},{key:"focusLastDayOfMonth",value:function(){var e=rn.getDayNodes(this.dayPicker,this.props.classNames);e[e.length-1].focus()}},{key:"focusPreviousDay",value:function(e){var t=this,a=rn.getDayNodes(this.dayPicker,this.props.classNames),r=rn.nodeListToArray(a).indexOf(e);-1!==r&&(0===r?this.showPreviousMonth((function(){return t.focusLastDayOfMonth()})):a[r-1].focus())}},{key:"focusNextDay",value:function(e){var t=this,a=rn.getDayNodes(this.dayPicker,this.props.classNames),r=rn.nodeListToArray(a).indexOf(e);-1!==r&&(r===a.length-1?this.showNextMonth((function(){return t.focusFirstDayOfMonth()})):a[r+1].focus())}},{key:"focusNextWeek",value:function(e){var t=this,a=rn.getDayNodes(this.dayPicker,this.props.classNames),r=rn.nodeListToArray(a).indexOf(e);r>a.length-8?this.showNextMonth((function(){var e=7-(a.length-r);rn.getDayNodes(t.dayPicker,t.props.classNames)[e].focus()})):a[r+7].focus()}},{key:"focusPreviousWeek",value:function(e){var t=this,a=rn.getDayNodes(this.dayPicker,this.props.classNames),r=rn.nodeListToArray(a).indexOf(e);r<=6?this.showPreviousMonth((function(){var e=rn.getDayNodes(t.dayPicker,t.props.classNames);e[e.length-7+r].focus()})):a[r-7].focus()}},{key:"handleOutsideDayClick",value:function(e){var t=this.state.currentMonth,a=this.props.numberOfMonths,r=rn.getMonthsDiff(t,e);r>0&&r>=a?this.showNextMonth():r<0&&this.showPreviousMonth()}},{key:"renderNavbar",value:function(){var e=this.props,t=e.labels,a=e.locale,r=e.localeUtils,n=e.canChangeMonth,l=e.navbarElement,o=function(e,t){var a={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(a[r]=e[r]);return a}(e,["labels","locale","localeUtils","canChangeMonth","navbarElement"]);if(!n)return null;var s={month:this.state.currentMonth,classNames:this.props.classNames,className:this.props.classNames.navBar,nextMonth:this.getNextNavigableMonth(),previousMonth:this.getPreviousNavigableMonth(),showPreviousButton:this.allowPreviousMonth(),showNextButton:this.allowNextMonth(),onNextClick:this.showNextMonth,onPreviousClick:this.showPreviousMonth,dir:o.dir,labels:t,locale:a,localeUtils:r};return Xr.default.isValidElement(l)?Xr.default.cloneElement(l,s):Xr.default.createElement(l,s)}},{key:"renderMonths",value:function(){for(var e=[],t=rn.getFirstDayOfWeekFromProps(this.props),a=0;a<this.props.numberOfMonths;a+=1){var r=nn.addMonths(this.state.currentMonth,a);e.push(Xr.default.createElement(tn.default,$r({key:a},this.props,{month:r,firstDayOfWeek:t,onDayKeyDown:this.handleDayKeyDown,onDayClick:this.handleDayClick})))}return this.props.reverseMonths&&e.reverse(),e}},{key:"renderFooter",value:function(){return this.props.todayButton?Xr.default.createElement("div",{className:this.props.classNames.footer},this.renderTodayButton()):null}},{key:"renderTodayButton",value:function(){return Xr.default.createElement("button",{type:"button",tabIndex:0,className:this.props.classNames.todayButton,"aria-label":this.props.todayButton,onClick:this.handleTodayButtonClick},this.props.todayButton)}},{key:"render",value:function(){var e=this,t=this.props.classNames.container;return this.props.onDayClick||(t=t+" "+this.props.classNames.interactionDisabled),this.props.className&&(t=t+" "+this.props.className),Xr.default.createElement("div",$r({},this.props.containerProps,{className:t,ref:function(t){return e.dayPicker=t},lang:this.props.locale}),Xr.default.createElement("div",{className:this.props.classNames.wrapper,ref:function(t){return e.wrapper=t},tabIndex:this.props.canChangeMonth&&void 0!==this.props.tabIndex?this.props.tabIndex:-1,onKeyDown:this.handleKeyDown,onFocus:this.props.onFocus,onBlur:this.props.onBlur},this.renderNavbar(),Xr.default.createElement("div",{className:this.props.classNames.months},this.renderMonths()),this.renderFooter()))}}]),t}(Zr.Component);fn.defaultProps={classNames:sn.default,tabIndex:0,numberOfMonths:1,labels:{previousMonth:"Previous Month",nextMonth:"Next Month"},locale:"en",localeUtils:ln,showOutsideDays:!1,enableOutsideDaysClick:!0,fixedWeeks:!1,canChangeMonth:!0,reverseMonths:!1,pagedNavigation:!1,showWeekNumbers:!1,showWeekDays:!0,renderDay:function(e){return e.getDate()},renderWeek:function(e){return e},weekdayElement:Xr.default.createElement(an.default,null),navbarElement:Xr.default.createElement(en.default,{classNames:sn.default}),captionElement:Xr.default.createElement(Qr.default,{classNames:sn.default})},fn.VERSION="7.4.10",fn.DateUtils=nn,fn.LocaleUtils=ln,fn.ModifiersUtils=on,ra.DateUtils=nn,ra.LocaleUtils=ln,ra.ModifiersUtils=on,ra.default=fn,Object.defineProperty(aa,"__esModule",{value:!0}),aa.HIDE_TIMEOUT=void 0;var pn=function(){function e(e,t){for(var a=0;a<t.length;a++){var r=t[a];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,a,r){return a&&e(t.prototype,a),r&&e(t,r),t}}(),hn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r])}return e};aa.OverlayComponent=En,aa.defaultFormat=xn,aa.defaultParse=_n;var mn=kn(w.default),gn=kn(ra),vn=Ua,yn=xr,wn=ma;function kn(e){return e&&e.__esModule?e:{default:e}}var bn=aa.HIDE_TIMEOUT=100;function En(e){e.input,e.selectedDay,e.month;var t=e.children,a=e.classNames,r=function(e,t){var a={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(a[r]=e[r]);return a}(e,["input","selectedDay","month","children","classNames"]);return mn.default.createElement("div",hn({className:a.overlayWrapper},r),mn.default.createElement("div",{className:a.overlay},t))}function xn(e){return(0,vn.isDate)(e)?e.getFullYear()+"-"+(""+(e.getMonth()+1))+"-"+(""+e.getDate()):""}function _n(e){if("string"==typeof e){var t=e.split("-");if(3===t.length){var a=parseInt(t[0],10),r=parseInt(t[1],10)-1,n=parseInt(t[2],10);if(!(isNaN(a)||String(a).length>4||isNaN(r)||isNaN(n)||n<=0||n>31||r<0||r>=12))return new Date(a,r,n,12,0,0,0)}}}var Mn=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var a=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return a.input=null,a.daypicker=null,a.clickTimeout=null,a.hideTimeout=null,a.inputBlurTimeout=null,a.inputFocusTimeout=null,a.state=a.getInitialStateFromProps(e),a.state.showOverlay=e.showOverlay,a.hideAfterDayClick=a.hideAfterDayClick.bind(a),a.handleInputClick=a.handleInputClick.bind(a),a.handleInputFocus=a.handleInputFocus.bind(a),a.handleInputBlur=a.handleInputBlur.bind(a),a.handleInputChange=a.handleInputChange.bind(a),a.handleInputKeyDown=a.handleInputKeyDown.bind(a),a.handleInputKeyUp=a.handleInputKeyUp.bind(a),a.handleDayClick=a.handleDayClick.bind(a),a.handleMonthChange=a.handleMonthChange.bind(a),a.handleOverlayFocus=a.handleOverlayFocus.bind(a),a.handleOverlayBlur=a.handleOverlayBlur.bind(a),a}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),pn(t,[{key:"componentDidUpdate",value:function(e){var t={},a=this.props,r=a.value,n=a.formatDate,l=a.format,o=a.dayPickerProps;r===e.value&&o.locale===e.dayPickerProps.locale&&l===e.format||((0,vn.isDate)(r)?t.value=n(r,l,o.locale):t.value=r);var s=e.dayPickerProps.month;o.month&&o.month!==s&&!(0,vn.isSameMonth)(o.month,s)&&(t.month=o.month),e.dayPickerProps.selectedDays!==o.selectedDays&&(t.selectedDays=o.selectedDays),Object.keys(t).length>0&&this.setState(t)}},{key:"componentWillUnmount",value:function(){clearTimeout(this.clickTimeout),clearTimeout(this.hideTimeout),clearTimeout(this.inputFocusTimeout),clearTimeout(this.inputBlurTimeout),clearTimeout(this.overlayBlurTimeout)}},{key:"getInitialMonthFromProps",value:function(e){var t=e.dayPickerProps,a=e.format,r=void 0;return e.value&&(r=(0,vn.isDate)(e.value)?e.value:e.parseDate(e.value,a,t.locale)),t.initialMonth||t.month||r||new Date}},{key:"getInitialStateFromProps",value:function(e){var t=e.dayPickerProps,a=e.formatDate,r=e.format,n=e.typedValue,l=e.value;return e.value&&(0,vn.isDate)(e.value)&&(l=a(e.value,r,t.locale)),{value:l,typedValue:n,month:this.getInitialMonthFromProps(e),selectedDays:t.selectedDays}}},{key:"getInput",value:function(){return this.input}},{key:"getDayPicker",value:function(){return this.daypicker}},{key:"updateState",value:function(e,t,a){var r=this,n=this.props,l=n.dayPickerProps,o=n.onDayChange;this.setState({month:e,value:t,typedValue:""},(function(){if(a&&a(),o){var t=hn({disabled:l.disabledDays,selected:l.selectedDays},l.modifiers),n=(0,yn.getModifiersForDay)(e,t).reduce((function(e,t){return hn({},e,function(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}({},t,!0))}),{});o(e,n,r)}}))}},{key:"showDayPicker",value:function(){var e=this,t=this.props,a=t.parseDate,r=t.format,n=t.dayPickerProps,l=this.state,o=l.value;if(!l.showOverlay){var s=o?a(o,r,n.locale):this.getInitialMonthFromProps(this.props);this.setState((function(e){return{showOverlay:!0,month:s||e.month}}),(function(){e.props.onDayPickerShow&&e.props.onDayPickerShow()}))}}},{key:"hideDayPicker",value:function(){var e=this;!1!==this.state.showOverlay&&this.setState({showOverlay:!1},(function(){e.props.onDayPickerHide&&e.props.onDayPickerHide()}))}},{key:"hideAfterDayClick",value:function(){var e=this;this.props.hideOnDayClick&&(this.hideTimeout=setTimeout((function(){e.overlayHasFocus=!1,e.hideDayPicker()}),bn))}},{key:"handleInputClick",value:function(e){this.showDayPicker(),this.props.inputProps.onClick&&(e.persist(),this.props.inputProps.onClick(e))}},{key:"handleInputFocus",value:function(e){var t=this;this.showDayPicker(),this.inputFocusTimeout=setTimeout((function(){t.overlayHasFocus=!1}),2),this.props.inputProps.onFocus&&(e.persist(),this.props.inputProps.onFocus(e))}},{key:"handleInputBlur",value:function(e){var t=this;this.inputBlurTimeout=setTimeout((function(){t.overlayHasFocus||t.hideDayPicker()}),1),this.props.inputProps.onBlur&&(e.persist(),this.props.inputProps.onBlur(e))}},{key:"handleOverlayFocus",value:function(e){e.preventDefault(),this.overlayHasFocus=!0,this.props.keepFocus&&this.input&&"function"==typeof this.input.focus&&this.input.focus()}},{key:"handleOverlayBlur",value:function(){var e=this;this.overlayBlurTimeout=setTimeout((function(){e.overlayHasFocus=!1}),3)}},{key:"handleInputChange",value:function(e){var t=this.props,a=t.dayPickerProps,r=t.format,n=t.inputProps,l=t.onDayChange,o=t.parseDate;n.onChange&&(e.persist(),n.onChange(e));var s=e.target.value;if(""===s.trim())return this.setState({value:s,typedValue:""}),void(l&&l(void 0,{},this));var i=o(s,r,a.locale);if(!i)return this.setState({value:s,typedValue:s}),void(l&&l(void 0,{},this));this.updateState(i,s)}},{key:"handleInputKeyDown",value:function(e){e.keyCode===wn.TAB?this.hideDayPicker():this.showDayPicker(),this.props.inputProps.onKeyDown&&(e.persist(),this.props.inputProps.onKeyDown(e))}},{key:"handleInputKeyUp",value:function(e){e.keyCode===wn.ESC?this.hideDayPicker():this.showDayPicker(),this.props.inputProps.onKeyUp&&(e.persist(),this.props.inputProps.onKeyUp(e))}},{key:"handleMonthChange",value:function(e){var t=this;this.setState({month:e},(function(){t.props.dayPickerProps&&t.props.dayPickerProps.onMonthChange&&t.props.dayPickerProps.onMonthChange(e)}))}},{key:"handleDayClick",value:function(e,t,a){var r=this,n=this.props,l=n.clickUnselectsDay,o=n.dayPickerProps,s=n.onDayChange,i=n.formatDate,d=n.format;if(o.onDayClick&&o.onDayClick(e,t,a),!(t.disabled||o&&o.classNames&&t[o.classNames.disabled])){if(t.selected&&l){var u=this.state.selectedDays;if(Array.isArray(u)){var c=(u=u.slice(0)).indexOf(e);u.splice(c,1)}else u&&(u=null);return this.setState({value:"",typedValue:"",selectedDays:u},this.hideAfterDayClick),void(s&&s(void 0,t,this))}var f=i(e,d,o.locale);this.setState({value:f,typedValue:"",month:e},(function(){s&&s(e,t,r),r.hideAfterDayClick()}))}}},{key:"renderOverlay",value:function(){var e=this,t=this.props,a=t.classNames,r=t.dayPickerProps,n=t.parseDate,l=t.formatDate,o=t.format,s=this.state,i=s.selectedDays,d=s.value,u=void 0;if(!i&&d){var c=n(d,o,r.locale);c&&(u=c)}else i&&(u=i);var f=void 0;r.todayButton&&(f=function(){return e.updateState(new Date,l(new Date,o,r.locale),e.hideAfterDayClick)});var p=this.props.overlayComponent;return mn.default.createElement(p,{classNames:a,month:this.state.month,selectedDay:u,input:this.input,tabIndex:0,onFocus:this.handleOverlayFocus,onBlur:this.handleOverlayBlur},mn.default.createElement(gn.default,hn({ref:function(t){return e.daypicker=t},onTodayButtonClick:f},r,{month:this.state.month,selectedDays:u,onDayClick:this.handleDayClick,onMonthChange:this.handleMonthChange})))}},{key:"render",value:function(){var e=this,t=this.props.component,a=this.props.inputProps;return mn.default.createElement("div",{className:this.props.classNames.container,style:this.props.style},mn.default.createElement(t,hn({ref:function(t){return e.input=t},placeholder:this.props.placeholder},a,{value:this.state.value||this.state.typedValue,onChange:this.handleInputChange,onFocus:this.handleInputFocus,onBlur:this.handleInputBlur,onKeyDown:this.handleInputKeyDown,onKeyUp:this.handleInputKeyUp,onClick:a.disabled?void 0:this.handleInputClick})),this.state.showOverlay&&this.renderOverlay())}}]),t}(mn.default.Component);Mn.defaultProps={dayPickerProps:{},value:"",typedValue:"",placeholder:"YYYY-M-D",format:"L",formatDate:xn,parseDate:_n,showOverlay:!1,hideOnDayClick:!0,clickUnselectsDay:!1,keepFocus:!0,component:"input",inputProps:{},overlayComponent:En,classNames:{container:"DayPickerInput",overlayWrapper:"DayPickerInput-OverlayWrapper",overlay:"DayPickerInput-Overlay"}},aa.default=Mn;var Nn=aa;const Cn=(e,t="YYYY-MM-DD")=>E.default(e).format(t),Ln=Nn.__esModule?Nn.default:Nn;let Dn=null;const jn=({inputComponent:e=Pn,selectedDate:t=new Date,range:a,dateFormat:n="ddd, MMM DD, YYYY",shouldShowOverlay:l=!1,handleDayChange:o})=>{const[s,i]=r.useState(t);o||(o=(e,t)=>{console.assert(!t.disabled,"Date is disabled"),console.log("DatePickerInput Day is "+Cn(e,n)),i(e),setTimeout((()=>{Dn.hideDayPicker()}),500)});return w.default.createElement(Ln,{ref:e=>Dn=e,inputProps:{date:Cn(s,n)},component:e,placeholder:E.default().format(n),showOverlay:l,formatDate:e=>Cn(e,n),overlayComponent:({month:e,onBlur:t,onFocus:r,selectedDay:n,classNames:l,tabIndex:s})=>w.default.createElement("div",{className:v.default(l.overlayWrapper,"z-50"),tabIndex:s,onBlur:t,onFocus:r},w.default.createElement("div",{className:l.overlay},w.default.createElement(ta,{selectedDate:n,range:a,startMonth:e,handleDayClick:o}))),onDayChange:o})};jn.propTypes={inputComponent:y.default.object,selectedDate:y.default.any,range:y.default.number,dateFormat:y.default.string,shouldShowOverlay:y.default.bool,handleDayChange:y.default.func};const Pn=r.forwardRef(((e,t)=>{const a=e,{date:r,value:n}=a,l=__objRest(a,["date","value"]);return w.default.createElement(wt,__spreadValues({readOnly:!0,size:"small",className:"cursor-pointer",value:r},l))}));Pn.propTypes={date:y.default.oneOfType([Date]).isRequired,value:y.default.oneOfType([Date]).isRequired};const On=x.default(),Vn=new Set(["JPY","CLP","KRW","LAK","PYG","VND","VUV"]),Tn=e=>Vn.has(e),Bn=x.default(),zn=e=>{const t=Math.abs(e);return t>=0&&t<=.001},In=(e,t=null,a=Bn,r=2)=>{const n={style:t?"currency":"decimal",minimumFractionDigits:r,maximumFractionDigits:r};return t&&(n.currency=t),new Intl.NumberFormat(a,n).format(e)},Fn=(e,t)=>{let a=Number(t);return Tn(e)?a=f.round(a):(f.round(a,3)===f.round(a,4)&&(a=f.round(a,3)),a=f.round(a,2)),a},Sn=x.default(),Rn=({currency:e="USD",locale:t=Sn,shouldRemoveTrailingZeroes:a=!0,maximumFractionDigits:r=2,children:n})=>{let l=n;zn(l)&&(l=0);let o=In(l,e,t,Tn(e)?0:r);return o=a?o.replace(".00",""):o,w.default.createElement("span",{className:"currency-formatted-amount"},o)};Rn.propTypes={currency:y.default.string,locale:y.default.string,shouldRemoveTrailingZeroes:y.default.bool,maximumFractionDigits:y.default.number,children:y.default.node.isRequired},(Rn.Round=({currency:e,children:t})=>{const a=Fn(e,t);return w.default.createElement("span",{className:"currency-rounded"},a)}).propTypes={currency:y.default.string,children:y.default.node.isRequired},(Rn.Split=({currency:e="USD",locale:t=Sn,children:a})=>{let r=a;zn(r)&&(r=0);const n=Fn(e,r).toString().split("."),l=n[0];let o=n[1]||"0";1===o.length&&(o+="0");const s=In(l,e,t,0);return w.default.createElement("span",{title:r,className:"currency-formatted-split-amount"},w.default.createElement("span",{className:"amount-int"},s),!Tn(e)&&w.default.createElement("span",{className:"pl-1 underline amount-decimal"},w.default.createElement("sup",null,o)))}).propTypes={currency:y.default.string,locale:y.default.string,children:y.default.node.isRequired};const An=_.default.PhoneNumberFormat,Hn=_.default.PhoneNumberUtil.getInstance(),Wn=({countryCode:e="US",className:t,children:a})=>{const r=a;try{let a=Hn.parseAndKeepRawInput(r,e);const n=Hn.getRegionCodeForNumber(a);let l;if(n&&n!==e&&(a=Hn.parseAndKeepRawInput(r,n)),n){const t=n===e?An.NATIONAL:An.INTERNATIONAL;l=Hn.format(a,t)}else l=r;return w.default.createElement("span",{className:t,"data-region-code":n||"N/A","data-country-code":e,title:r},l)}catch(n){console.debug("Invalid phone number",r,n.message)}return w.default.createElement("span",{className:t,"data-country-code":e},r)};Wn.propTypes={countryCode:y.default.string,className:y.default.string,children:y.default.node.isRequired};const Un=x.default(),qn=({locale:e=Un,maximumFractionDigits:t=2,children:a})=>{const r=In(a,null,e,t);return w.default.createElement("span",{className:"formatted-number"},r)};qn.propTypes={locale:y.default.string,maximumFractionDigits:y.default.number,children:y.default.node.isRequired};const Kn={primary:"bg-primary",secondary:"bg-secondary-dark",success:"bg-success-dark",warning:"bg-warning",danger:"bg-danger",caution:"bg-caution-dark"},Yn={small:"px-3 py-2 text-sm leading-3.5 shadow max-w-[200px]",medium:"px-4 py-3 text-base leading-4 shadow-md max-w-[400px]",large:"px-4 py-4 text-lg leading-4.5 shadow-lg max-w-xl"},Gn={duration:3e3,position:"top-right",reverseOrder:!1},$n={show(e){var t=e,{text:a,size:r="medium",color:n="success",className:l,canClose:o=!0,onClose:s,children:i}=t,d=__objRest(t,["text","size","color","className","canClose","onClose","children"]);o&&!s&&console.warn("If you like to close the alert, please define `onClose`");const u=__spreadValues(__spreadValues({},Gn),d);o||(u.duration=Number.POSITIVE_INFINITY);const c=$n.getStyles(n,r,l,o);console.debug("Toast props",u),M.default.custom($n.container.bind(this,a,c,o?s:null),u)},getStyles:(e,t,a)=>v.default("flex opacity-90 ring-1 ring-black ring-opacity-5 rounded text-white pointer-events-auto",Kn[e],Yn[t],a),container(e,t,a,n){console.debug(`Toasting "${e}" ${n.id}`,n.visible);return w.default.createElement(o.Transition,{appear:!0,as:r.Fragment,show:n.visible,enter:"transition transform duration-500 ease-out",enterFrom:"-translate-y-full !opacity-0",enterTo:"translate-y-0 !opacity-90",leave:"transition transform duration-500 ease-in",leaveFrom:"!opacity-90",leaveTo:"!opacity-0"},w.default.createElement("div",{key:n.id,className:t},w.default.createElement("div",{className:"w-full"},e),a?w.default.createElement("div",{className:"flex justify-center items-center pl-3 text-white hover:text-black cursor-pointer",onClick:e=>a(e,n)},w.default.createElement(S,null)):null))},dismiss(e){console.log("Dismissing",null!=e?e:"All!"),M.default.dismiss(e)}},Jn={colors:{transparent:"transparent",current:"currentColor",black:"#222324",white:"#ffffff",gray:{lighter:"#F0F2F4",light:"#E0E3E7",DEFAULT:"#BDC0C6",dark:"#8A8C91",darker:"#505254"},blue:{lighter:"#D1E1FF",light:"#2979D0",DEFAULT:"#1352C6",dark:"#3467C4",darker:"#0E44A8"},green:{lighter:"#E2FFEF",light:"#33E781",DEFAULT:"#27CE70",dark:"#23B965",darker:"#1B8E4E"},red:{lighter:"#FFEAEA",light:"#FFA1A1",DEFAULT:"#FF5A5A",dark:"#E93737",darker:"#E51919"},yellow:{lighter:"#FFFAF0",light:"#FFDB8E",DEFAULT:"#FFC03D",dark:"#EBAA24",darker:"#F0A200"},orange:{lighter:"#FFF1E7",light:"#FFB493",DEFAULT:"#FF9668",dark:"#EC743F",darker:"#ff7336"},primary:{lighter:"#D1E1FF",light:"#2979D0",DEFAULT:"#1352C6",dark:"#3467C4",darker:"#0E44A8"},secondary:{lighter:"#F0F2F4",light:"#E0E3E7",DEFAULT:"#BDC0C6",dark:"#8A8C91",darker:"#505254"},warning:{lighter:"#FFFAF0",light:"#FFDB8E",DEFAULT:"#FFC03D",dark:"#EBAA24",darker:"#F0A200"},success:{lighter:"#E2FFEF",light:"#33E781",DEFAULT:"#27CE70",dark:"#23B965",darker:"#1B8E4E"},danger:{lighter:"#FFEAEA",light:"#FFA1A1",DEFAULT:"#FF5A5A",dark:"#E93737",darker:"#E51919"},caution:{lighter:"#FFF1E7",light:"#FFB493",DEFAULT:"#FF9668",dark:"#EC743F",darker:"#ff7336"}},spacing:{0:"0px",1:"4px",2:"8px",3:"12px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",14:"56px",15:"60px",16:"64px",20:"80px",24:"96px",28:"112px",32:"128px",36:"144px",40:"160px",44:"176px",48:"192px",50:"200px",52:"208px",56:"224px",60:"240px",64:"256px",72:"288px",80:"320px",82:"350px",96:"384px",.25:"1px",.5:"2px",.75:"3px",1.5:"6px",2.5:"10px",3.5:"14px",4.5:"18px",7.5:"30px"},fontSize:{xs:"10px",sm:"12px",base:"14px",md:"16px",lg:"18px",xl:"21px","2xl":"24px","3xl":"38px"},borderRadius:{none:"0px",DEFAULT:"4px",sm:"2px",md:"6px",lg:"8px",xl:"12px","2xl":"16px",full:"9999px"},extend:{fontFamily:{sans:["Inter","ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto",'"Helvetica Neue"',"Arial",'"Noto Sans"',"sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"']},lineHeight:{0:"0px",1:"4px",2:"8px",3:"12px",4:"16px",5:"20px",6:"24px",7:"28px",8:"32px",9:"36px",10:"40px",11:"44px",12:"48px",.25:"1px",.5:"2px",.75:"3px",1.5:"6px",2.5:"10px",xs:"10px",sm:"12px",3.5:"14px",base:"14px",md:"16px",4.5:"18px",lg:"18px",p1:"130%",p2:"130%",p3:"110%",p4:"100%"},letterSpacing:{tightest:"-.4px"}}},{colors:Zn}=Jn,Xn={color:Zn.gray.darker,fontSize:Jn.fontSize.sm,fontWeight:400,cursor:"pointer",textOverflow:"ellipsis",fontFamily:Jn.extend.fontFamily.sans},Qn={global:{useUTC:!1},chart:{spacingLeft:0},colors:[Zn.primary,Zn.success,Zn.warning,Zn.caution,Zn.danger,Zn.blue.darker,Zn.green.darker,Zn.red.darker,Zn.yellow.darker,Zn.orange.darker],xAxis:{title:{style:N.default.merge({},Xn,{color:Zn.black})},labels:{style:Xn}},yAxis:{title:{style:N.default.merge({},Xn,{color:Zn.black})},labels:{style:Xn}},tooltip:{enabled:!0,backgroundColor:Zn.black,borderColor:Zn.black,borderRadius:4,borderWidth:1,valueDecimals:2,crosshairs:[!0,!0],shadow:!1,useHTML:!0,style:N.default.merge({},Xn,{opacity:.9,color:"#cccccc"})},title:{text:"",style:N.default.merge({},Xn,{color:Zn.black,fontSize:"18px",fontWeight:600})},plotOptions:{series:{marker:{enabled:!0,states:{hover:{enabled:!0,lineWidth:1,radius:4}}}}},legend:{enabled:!1,itemStyle:Xn,itemMarginBottom:5,align:"center",layout:"vertical",borderWidth:0},credits:{enabled:!1}},el=N.default.merge({},Qn,{chart:{type:"line"},title:{align:"left",margin:20,verticalAlign:"top"},xAxis:{type:"datetime",step:1,minTickInterval:864e5,lineColor:Jn.colors.gray.darker,lineWidth:1,gridLineWidth:"1",gridLineColor:"#DEDEDE",gridLineDashStyle:"dot"},yAxis:{lineColor:Jn.colors.gray.darker,lineWidth:1,gridLineWidth:"1",gridLineColor:"#DEDEDE",gridLineDashStyle:"dot"},plotOptions:{series:{marker:{enabled:!0,lineWidth:1,radius:3,states:{hover:{enabled:!0,lineWidth:1,radius:4}}}}},legend:{enabled:!1,itemStyle:{fontSize:"14px",color:"#666666",textTransform:"capitalize",fontFamily:Jn.extend.fontFamily.sans},itemMarginBottom:5,align:"center",layout:"vertical",borderWidth:0}}),tl=N.default.merge({},Qn,{chart:{type:"pie"},tooltip:{pointFormat:"<b>{point.percentage:.1f}%</b>"},plotOptions:{pie:{size:180,center:[80,90],allowPointSelect:!0,cursor:"pointer",dataLabels:{enabled:!1},showInLegend:!0,innerSize:110}},legend:{enabled:!0,maxHeight:120,width:220,navigation:{activeColor:Jn.colors.gray.darker,animation:"true",style:Jn.extend.fontFamily.sans},padding:5,backgroundColor:Jn.colors.white,itemMarginTop:1,itemMarginBottom:3,itemStyle:Jn.extend.fontFamily.sans,style:{overflow:"hidden"},align:"left",layout:"horizontal",verticalAlign:"proximate",y:240},credits:{enabled:!1}}),al=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M13.065 2.356a.455.455 0 00-.456-.456H4.391c-.255 0-.456.2-.456.456v8.214c0 .25.2.451.456.451h8.213-.004a.458.458 0 00.456-.456l.01-8.209zM8.515 3.212v6.125M11.578 6.275H5.453",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M3.94 3.725h-.918c-.255 0-.456.2-.456.456v7.757-.004a.45.45 0 00.452.456h7.757-.005c.251 0 .456-.205.456-.456v-.913",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),rl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M2.666 9.904l1.18 1.776M9.187 2l4.479 6.746M13.43 8.39l-9.82 2.934-.709-1.067 6.514-7.912 4.009 6.038.007.006z"}),w.default.createElement("path",{d:"M8.721 9.798c.54.617.47 1.558-.147 2.098-.625.541-1.566.47-2.106-.147-.042-.05-.084-.098-.12-.154l-.617-.934"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),nl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M12.916 4.083h-10.5a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.916 6.417h3.5M12.722 4.083v7c0 .645-.522 1.167-1.167 1.167H3.777a1.166 1.166 0 01-1.167-1.167v-7"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ll=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M7.666 11.667A4.666 4.666 0 103 7v.359"}),w.default.createElement("path",{d:"M1.25 5.833L3 7.583l1.75-1.75"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ol=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M9.38 2.714L13.666 7 9.38 11.286M13.666 7.003h-12"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),sl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M5.848 2.757h6.06v6.061M11.91 2.76l-8.485 8.484"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),il=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M10.388 7a2.722 2.722 0 11-5.445 0 2.722 2.722 0 015.445 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M10.387 7v1.166a1.555 1.555 0 103.111 0V6.999a5.833 5.833 0 10-2.333 4.667",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),dl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.458 5.196c0 2.152-1.744 4.87-3.896 4.87s-3.896-2.718-3.896-4.87v0a3.896 3.896 0 117.792 0v0zM7.5 10.062s-.551 1.942.547 2.738",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ul=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M5.772 7.819l-1.86.265.265-1.86L8.946 1.45H8.94c.435-.44 1.15-.44 1.59-.005.435.435.435 1.15 0 1.59L5.77 7.819z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.29 4.125H2.787a.749.749 0 00-.75.75v5.25-.005c-.005.41.335.75.745.75h9.75-.005c.41 0 .75-.34.75-.75V4.87c0-.415-.34-.75-.75-.75h-.75M11.79 9H8.04M11.79 7.125H9.54",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),cl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.329 10.7v.214a1.337 1.337 0 002.674-.001V10.7M8.735 3.355v-.536a1.07 1.07 0 10-2.138 0v.536",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.494 5.943A2.643 2.643 0 017.138 3.3h1.057a2.643 2.643 0 012.643 2.643v1.632c0 .309.123.606.342.824l.374.374c.219.22.342.516.342.825 0 .61-.494 1.103-1.103 1.103H4.54a1.102 1.102 0 01-1.102-1.103c0-.309.123-.606.342-.825l.374-.374c.218-.218.341-.515.341-.824V5.943v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),fl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M9.184 5.498a.22.22 0 01-.217.217.204.204 0 01-.112-.035L7.77 5.03l-1.31.68v-.004a.222.222 0 01-.321-.2V2h3.037l.008 3.498z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M12.221 2.022h-9.11a.434.434 0 00-.434.434v9.11c0 .24.194.434.434.434h9.11c.24 0 .434-.194.434-.434v-9.11a.434.434 0 00-.434-.434z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),pl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.345 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59H7.59a.461.461 0 01-.286-.005l-4.351-1.585a.435.435 0 01-.287-.408V4.347a.424.424 0 01.321-.422l4.56-1.185v-.004a.37.37 0 01.217 0l4.58 1.211zM7.46 5.345v6.513",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M12.551 4.069L7.46 5.34 2.8 4.069",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),hl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.676 3.719h-8.02c-.806 0-1.459.653-1.459 1.458v5.833c0 .806.653 1.459 1.459 1.459h8.02c.806 0 1.459-.653 1.459-1.459V5.177c0-.805-.653-1.458-1.459-1.458z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M9.489 3.354a1.823 1.823 0 00-3.646 0v.365H9.49v-.365zM5.235 4.083v8.264M10.097 4.083v8.264",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ml=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M3.172 7.739v3.711l-.006-.005c0 .628.508 1.136 1.136 1.142h6.723a1.146 1.146 0 001.136-1.149V7.727",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M6.313 2.441a.863.863 0 01-.857.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.629-1.325h-.006a.278.278 0 01.44-.005c.308.382.525.833.628 1.319l.023.017zM11.18 2.441a.863.863 0 01-.856.857.86.86 0 01-.857-.857v-.006c.103-.485.32-.936.628-1.325h-.005a.278.278 0 01.44-.005c.308.382.525.833.628 1.319l.022.017zM10.895 6.31H9.753V4.313a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.285.28l.012 2.01zM6.027 6.31H4.885V4.313a.283.283 0 01.28-.291h.57-.005a.281.281 0 01.286.28l.011 2.01z",fill:"currentColor"}),w.default.createElement("path",{d:"M12.166 9.11c0 .821-.674 1.498-1.499 1.498A1.5 1.5 0 019.168 9.11c0 .822-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5c0 .822-.674 1.5-1.5 1.5a1.5 1.5 0 01-1.498-1.5V6.882a.566.566 0 01.565-.577h7.852-.005a.564.564 0 01.57.565l.012 2.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),gl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.227 6.227v-.1h-.78l-.024.016-.81.513-.047.03V7.533l.153-.095.616-.386V9.6H8.227V6.227z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2})))),vl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24zM4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),yl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.645 7.104c.002-.587-.512-1.022-1.228-1.022-.705 0-1.275.42-1.285 1.058l-.002.101h.862l.003-.096c.005-.176.167-.314.42-.314.119 0 .21.036.27.09a.29.29 0 01.094.224v.002c0 .097-.04.176-.11.233a.509.509 0 01-.322.098h-.405v.708h.405c.17 0 .297.042.38.105.08.06.121.144.12.243v.001c.001.1-.04.18-.112.24a.513.513 0 01-.326.1c-.278 0-.438-.142-.446-.306l-.005-.094H5.064l.002.102c.013.646.59 1.068 1.342 1.068.763 0 1.36-.426 1.359-1.064a.814.814 0 00-.216-.578.863.863 0 00-.315-.207.758.758 0 00.41-.692zm0 0s0 0 0 0h-.1.1s0 0 0 0zm2.643-.877v-.1h-.78l-.024.016-.81.513-.046.03V7.533l.153-.095.615-.386V9.6H10.288V6.227z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2}),w.default.createElement("path",{d:"M4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),wl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.426 2.87h-9.52a.24.24 0 00-.24.24v8.65c0 .133.108.24.24.24h9.52a.24.24 0 00.24-.24V3.11a.24.24 0 00-.24-.24z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M6.8 9.455l-.073.145H7.666l.027-.055 1.359-2.7.01-.02v-.698H6.566V6.893h1.53L6.8 9.455z",fill:"currentColor",stroke:"currentColor",strokeWidth:.2}),w.default.createElement("path",{d:"M4.84 2v2.174M10.492 2v2.174",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),kl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("circle",{cx:4.166,cy:3.5,r:1.444,stroke:"currentColor"}),w.default.createElement("path",{d:"M12.61 3.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.889 0zM12.61 10.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.889 0zM5.61 10.5a1.444 1.444 0 11-2.888 0 1.444 1.444 0 012.888 0z",stroke:"currentColor"})))),bl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.419 3h-9.5a1 1 0 00-1 1v6a1 1 0 001 1h9.5a1 1 0 001-1V4a1 1 0 00-1-1zM1.916 5h11.5M11.916 7h-1.5M7.416 7h-4",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})))),El=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.32 3H3.018a.98.98 0 00-.98.98v5.874c0 .54.44.98.98.98h9.302a.98.98 0 00.98-.98V3.98A.98.98 0 0012.32 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{fill:"currentColor",d:"M2.266 4.5h11V6h-11z"})))),xl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.666 2.031l2.494 6.86h.014a.678.678 0 00.623.424h4.763c.266 0 .505-.159.61-.41l1.434-3.981c.159-.345 0-.73-.332-.876a.604.604 0 00-.265-.066H3.442M9.632 11.318h.013c-.173-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.319-.345M6.314 11.318h.013c-.172-.013-.332.146-.332.319 0 .172.16.332.332.332.186 0 .332-.16.345-.332a.33.33 0 00-.318-.345",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),_l=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M3.463 4.6h-.005a.194.194 0 01.197.197.203.203 0 01-.405-.005.195.195 0 01.197-.203s0 0 0 0M10.266 7.4h-.005a.194.194 0 01.197.197c0 .107-.09.198-.203.198a.203.203 0 01-.202-.203.195.195 0 01.197-.203"}),w.default.createElement("path",{d:"M11.266 3h-8.8a.8.8 0 00-.8.8v4.8a.8.8 0 00.8.8h8.8a.8.8 0 00.8-.8V3.8a.8.8 0 00-.8-.8z"}),w.default.createElement("path",{d:"M6.866 4.6a1.6 1.6 0 100 3.2 1.6 1.6 0 000-3.2zM13.666 5.4v4.8c0 .437-.363.8-.8.8h-8.8"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Ml=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.666 7.545l2.727 2.728L12.666 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Nl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.666 4.638l.983.983L6.269 3M2.666 10.638l.983.983L6.269 9M8.235 4h3.931M8.235 10h3.931",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Cl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M13.416 4.25l-5.5 5.5-5.5-5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ll=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.416 9.75l5.5-5.5 5.5 5.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Dl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M5.095 2.714V1M7.666 2.714V1M10.237 2.714V1M5.095 13v-1.714M7.666 13v-1.714M10.237 13v-1.714M11.952 4.429h1.714M11.952 7h1.714M11.952 9.571h1.714M1.666 4.429H3.38M1.666 7H3.38M1.666 9.571H3.38M10.238 2.714H5.095c-.947 0-1.715.768-1.715 1.715V9.57c0 .947.768 1.715 1.715 1.715h5.143c.946 0 1.714-.768 1.714-1.715V4.43c0-.947-.768-1.715-1.714-1.715z"}),w.default.createElement("path",{d:"M8.695 5.4H6.723a.657.657 0 00-.657.657V8.03c0 .363.294.657.657.657h1.972a.657.657 0 00.657-.657V6.057a.657.657 0 00-.657-.657z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),jl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.541 12.25a5.375 5.375 0 100-10.75 5.375 5.375 0 000 10.75z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.541 4.304v2.571l2.805 2.57",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Pl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.666 6.214a.786.786 0 100 1.572.786.786 0 000-1.572zM7.666 6.214v-2.75M8.221 7.555l1.41 1.41",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ol=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 12.833a5.833 5.833 0 100-11.666 5.833 5.833 0 000 11.666zM5.333 9.333l4.666-4.667M10 9.333L5.332 4.666",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Vl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.881 10.107H8.334l-2.796 2.229h-.009a.23.23 0 01-.3-.034.227.227 0 01-.05-.141v-2.07H3.5a.839.839 0 01-.835-.844v0-5.843a.827.827 0 01.827-.843h8.347-.009a.825.825 0 01.835.826V9.23c0 .459-.376.835-.835.835h-.008l.058.042zM5.204 5.103h5.008M5.204 7.607h3.339",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Tl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{clipRule:"evenodd",d:"M.666 14l14-14-14 14z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{d:"M.666 0l14 14",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{d:"M.666 9.042h14M.666 5.031h14M.666 7h14",stroke:"#979797",strokeWidth:.036,strokeLinecap:"square"}),w.default.createElement("path",{d:"M9.708 14V0M5.624 14V0M7.666 14V0",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{clipRule:"evenodd",d:"M10.583 7a2.917 2.917 0 10-5.834 0 2.917 2.917 0 005.834 0z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{clipRule:"evenodd",d:"M7.666 13.416a6.417 6.417 0 110-12.833 6.417 6.417 0 010 12.833z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{clipRule:"evenodd",d:"M12.333 12.541H2.999a.878.878 0 01-.875-.875V2.333c0-.481.394-.875.875-.875h9.334c.481 0 .875.394.875.875v9.333a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{clipRule:"evenodd",d:"M11.458 13.416H3.874A.878.878 0 013 12.541V1.458c0-.481.394-.875.875-.875h7.584c.481 0 .875.394.875.875v11.083a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{clipRule:"evenodd",d:"M13.208 11.666H2.124a.878.878 0 01-.875-.875V3.208c0-.481.394-.875.875-.875h11.084c.481 0 .875.394.875.875v7.583a.878.878 0 01-.875.875z",stroke:"#979797",strokeWidth:.036}),w.default.createElement("path",{d:"M7.616 12.7a5.75 5.75 0 100-11.5 5.75 5.75 0 000 11.5z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M6.366 5.7l3.695-1.522v0a.25.25 0 01.327.327L8.866 8.2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.866 8.2l-2.5-2.5-1.521 3.695v0a.25.25 0 00.326.326L8.866 8.2z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Bl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M8.836 7.002l1.747 1.749-1.75 1.75M5.916 8.75H3.583a1.166 1.166 0 01-1.167-1.167V2.917c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167V5.25"}),w.default.createElement("path",{d:"M11.75 12.25H7.082a1.166 1.166 0 01-1.167-1.167V6.417c0-.645.522-1.167 1.167-1.167h4.666c.645 0 1.167.522 1.167 1.167v4.666c0 .645-.522 1.167-1.167 1.167zM5.916 8.75h4.667"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),zl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.916 10.375v2.25h-2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M12.916 12.625L10.391 10.1a1.126 1.126 0 00-1.118-.282l-2.857.763a1.124 1.124 0 01-1.086-.291L2.416 7.373M3.24 5.87a3.75 3.75 0 115.926 2.257",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.666 3.627H6.65a.671.671 0 00-.25 1.294l1.032.412a.671.671 0 01-.25 1.294H6.166M6.916 3.627v-.375M6.916 7.002v-.375",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Il=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M1.674 6.006v5.863M12.666 11.136a2.2 2.2 0 00-2.199-2.198H7.72a2.2 2.2 0 00-2.198-2.199H1.666v4.397h11zM5.521 8.938h2.748M11.572 1.625V1M12.51 1.625h-1.275a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525h-1.278M11.572 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Fl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 12a5 5 0 100-10 5 5 0 000 10zM4.131 10.535l7.07-7.07",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Sl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M13.253 6.614L8.024 1.386a.545.545 0 00-.771 0L2.024 6.614a.545.545 0 000 .772l5.229 5.228a.546.546 0 00.771 0l5.229-5.228a.545.545 0 000-.772zM7.651 4.286v3.06",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.644 9.196a.127.127 0 00-.131.136c0 .07.06.13.136.13a.134.134 0 00.126-.141l-.006-.005c-.005-.077-.065-.137-.136-.137M7.651 9.195h-.005",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Rl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{d:"M7.666 13a6 6 0 100-12 6 6 0 000 12z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M9.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",fill:"currentColor"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Al=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M5.745 8.245l1.912 1.915 1.912-1.915M7.666 10V4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Hl=F((e=>w.default.createElement("svg",__spreadValues({xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",fill:"none",viewBox:"0 0 14 14"},e),w.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M10 6L7.184 8.816v0a.26.26 0 01-.368 0L4 6"})))),Wl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.88 6.88a.987.987 0 111.396 1.395l-3.312 3.31a.573.573 0 01-.405.168H8.403v-1.156c0-.152.06-.298.168-.406l3.31-3.312v0zM4.96 4.868h4.59M4.96 7.163H7.83M12.545 9.01l-1.4-1.4M11.845 4.868v-1.72c0-.635-.514-1.148-1.148-1.148H3.813c-.634 0-1.147.513-1.147 1.147v7.458c0 .634.513 1.147 1.147 1.147h2.295",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ul=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",fill:"currentColor"},w.default.createElement("path",{d:"M14.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM4.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM9.166 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),ql=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.666 2.98h-10a.833.833 0 00-.833.833v6.666c0 .46.373.834.833.834h10c.46 0 .833-.374.833-.834V3.813a.833.833 0 00-.833-.834z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M13.311 3.285l-4.524 3.48a1.838 1.838 0 01-2.242 0l-4.524-3.48",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Kl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("rect",{x:2.666,y:2,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Yl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M8.5 9.98a1.557 1.557 0 112.55-1.67.39.39 0 00.64.133l1.215-1.215a.779.779 0 000-1.101L11.659 4.88a1.557 1.557 0 10-1.91-1.907L8.502 1.728a.779.779 0 00-1.101 0L6.273 2.856a.39.39 0 00.06.6 1.557 1.557 0 11-2.157 2.158.39.39 0 00-.6-.06L2.443 6.677a.779.779 0 000 1.1l4.404 4.405a.779.779 0 001.101 0l1.216-1.216a.39.39 0 00-.134-.638A1.54 1.54 0 018.5 9.98z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Gl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M5.613 12.108h-.007c2.813 1.135 6.017-.231 7.16-3.05a5.5 5.5 0 00-3.042-7.157A5.514 5.514 0 002.55 9.067"}),w.default.createElement("path",{d:"M9.198 8.186L9.2 5.48l-2.706.002M9.2 5.48l-5.416 5.416"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),$l=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M7.683 5.218a1.828 1.828 0 100 3.656 1.828 1.828 0 000-3.656v0z"}),w.default.createElement("path",{d:"M13.624 6.875c-.61-.69-3.04-3.228-5.943-3.228-2.909 0-5.337 2.533-5.943 3.223h-.005a.25.25 0 000 .34c.605.689 3.034 3.221 5.938 3.221 2.903 0 5.332-2.534 5.938-3.227h-.006a.268.268 0 000-.345l.021.016z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Jl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M7.666.875a6.125 6.125 0 100 12.25 6.125 6.125 0 000-12.25v0z"}),w.default.createElement("path",{d:"M5.802 4.736h-.005c.069-.005.133.059.133.128a.14.14 0 01-.133.133c-.075 0-.134-.064-.139-.133a.132.132 0 01.128-.138M9.53 4.736h-.005a.132.132 0 00-.133.134c0 .069.058.133.133.127.07-.005.133-.064.128-.138a.135.135 0 00-.133-.133M4.204 8.864h6.924"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Zl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M7.52.729a6.271 6.271 0 100 12.542A6.271 6.271 0 007.52.73v0z"}),w.default.createElement("path",{d:"M4.52 5.773h-.005c.071-.005.137.06.137.13 0 .072-.066.137-.137.137-.076 0-.136-.065-.141-.136a.135.135 0 01.13-.142M10.52 5.773h-.006a.135.135 0 00-.137.136c0 .071.06.137.137.131.07-.005.136-.065.13-.142a.138.138 0 00-.136-.136M5.066 10.817a2.45 2.45 0 114.902-.01"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Xl=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M4.736 5.92h-.005c.069-.005.133.06.133.131a.14.14 0 01-.133.136c-.075 0-.133-.065-.139-.136a.134.134 0 01.128-.141M10.595 5.92h-.005a.133.133 0 00-.133.137c0 .07.059.135.133.13.07-.005.133-.065.128-.141a.137.137 0 00-.133-.136M4.47 9.046l-.005-.005c.735 1.799 2.76 2.652 4.527 1.902a3.51 3.51 0 001.864-1.902"}),w.default.createElement("path",{d:"M7.666.893c-.804 0-1.6.162-2.344.476a6.118 6.118 0 00-1.987 1.355 6.26 6.26 0 00-1.328 2.028 6.362 6.362 0 000 4.784 6.261 6.261 0 001.328 2.027 6.118 6.118 0 001.987 1.355 6.017 6.017 0 004.688 0 6.117 6.117 0 001.987-1.354 6.26 6.26 0 001.328-2.028 6.362 6.362 0 000-4.784 6.26 6.26 0 00-1.328-2.028 6.117 6.117 0 00-1.987-1.355A6.019 6.019 0 007.666.893v0z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Ql=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M3 11.667V2.333M3 9.368l1.308-.403a3.986 3.986 0 013.262.415 3.988 3.988 0 003.185.44l1.24-.354a.467.467 0 00.338-.448V4.153a.468.468 0 00-.595-.449l-.983.281a3.989 3.989 0 01-3.185-.438 3.986 3.986 0 00-3.262-.415l-1.309.402",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),eo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M5.366 2.023v3.465a2.3 2.3 0 002.31 2.298 2.317 2.317 0 002.298-2.321V2M7.676 2.028V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),to=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M13.333 2.747v-.005a.38.38 0 00-.358-.403c-.01-.005-.02-.005-.025-.005H2.38a.374.374 0 00-.378.377v.02l-.005-.01c.005-.01 4.523 5.154 4.523 5.154v4.979l-.005-.005c0 .207.166.373.378.373a.406.406 0 00.237-.09l1.513-1.261v-.005a.37.37 0 00.13-.293V7.847s4.524-4.736 4.524-5.158l.035.058z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ao=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.611 6.988h-3.15l-.007-.001a.791.791 0 01-.788-.795v-.788a.78.78 0 01.78-.795h8.662-.008a.778.778 0 01.787.78v.787a.79.79 0 01-.787.787H8.95",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.974 6.988h2.756l-.347 4.78v-.008a.783.783 0 01-.787.724H4.973v0a.785.785 0 01-.787-.733l-.347-4.788h2.757M6.611 4.625V12.5M8.974 12.5V4.625M5.036 3.586c.473.472 2.757 1.031 2.757 1.031s-.56-2.283-1.04-2.756a1.22 1.22 0 00-1.724-.008A1.21 1.21 0 005.02 3.57l.015.016zM10.549 3.586c-.473.472-2.756 1.031-2.756 1.031s.55-2.283 1.031-2.756h-.008a1.21 1.21 0 011.717-.008 1.217 1.217 0 010 1.717l.016.016z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ro=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.491 3.297V2.273a.766.766 0 111.53-.01v1.023",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.027 6.368V3.297a.766.766 0 111.53-.01v1.535",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M9.563 7.136V4.832a.766.766 0 111.53-.01v5.119a2.56 2.56 0 01-2.56 2.559H6.825a2.574 2.574 0 01-2.165-1.193c-.886-1.392-1.976-3.675-1.976-3.675a.61.61 0 01.154-.855.607.607 0 01.742.031l1.356 1.587V3.276a.766.766 0 111.53-.01v3.071",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),no=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{clipRule:"evenodd",d:"M.666 15l14-14-14 14v0z",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M.666 1l14 14",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M.666 10.115h14M.666 6.031h14M.666 7.781h14",stroke:"#979797",strokeWidth:.05,strokeLinecap:"square"}),w.default.createElement("path",{d:"M9.708 15V1M5.624 15V1M7.666 15V1",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{clipRule:"evenodd",d:"M10.583 8a2.917 2.917 0 10-5.834 0 2.917 2.917 0 005.834 0v0z",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M7.666 14.417a6.417 6.417 0 110-12.834 6.417 6.417 0 010 12.834",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M12.333 13.542H2.999a.878.878 0 01-.875-.875V3.333c0-.48.394-.875.875-.875h9.334c.48 0 .875.394.875.875v9.334a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M11.458 14.417H3.874A.878.878 0 013 13.542V2.458c0-.48.394-.875.875-.875h7.584c.48 0 .875.394.875.875v11.084a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M13.208 12.667H2.124a.878.878 0 01-.875-.875V4.208c0-.48.394-.875.875-.875h11.084c.48 0 .875.394.875.875v7.584a.878.878 0 01-.875.875",stroke:"#979797",strokeWidth:.05}),w.default.createElement("path",{d:"M2.85 12.367L12.257 3.3M6.145 11.328c.524.163 1.07.244 1.62.24 2.186.036 4.404-1.501 5.773-3.007a.887.887 0 000-1.188 10.968 10.968 0 00-1.64-1.47M9.052 4.517a5.093 5.093 0 00-1.287-.15c-2.15-.036-4.373 1.468-5.771 3.005a.887.887 0 000 1.188c.425.465.889.893 1.386 1.28M5.766 7.967a2 2 0 012-2M9.769 7.966a2 2 0 01-2 2.001",stroke:"currentColor",strokeWidth:1.015,strokeLinecap:"round",strokeLinejoin:"round"})))),lo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M3.128 6.352v5.834M12.204 6.352v5.834M8.962 12.185V9.593a1.296 1.296 0 00-2.592 0v2.592M1.833 12.186h11.666M3.175 6.352c-.99-.007-1.636-.988-1.207-1.833l1-1.97c.229-.449.708-.734 1.234-.734h6.928c.526 0 1.005.285 1.234.734l1 1.97c.43.845-.216 1.826-1.206 1.833-.827 0-1.497-.565-1.497-1.262v-.028c0 .712-.67 1.29-1.497 1.29-.827 0-1.497-.578-1.497-1.29 0 .712-.67 1.29-1.497 1.29-.826 0-1.496-.578-1.496-1.29v.028c-.002.697-.672 1.262-1.5 1.262v0z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),oo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M12.231 2h-9.13a.435.435 0 00-.435.435v9.13c0 .24.195.435.435.435h9.13c.24 0 .435-.195.435-.435v-9.13A.435.435 0 0012.231 2zM2.666 10.26h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M2.666 9.665s1.083-2.707 2.436-2.707c1.354 0 2.437 1.625 2.437 1.625l1.63-2.8h-.006a.903.903 0 011.24-.324c.152.086.27.216.352.373l1.911 3.823",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),so=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.667 7.068S5.201 9.33 3.93 9.33a2.263 2.263 0 010-4.526c1.272 0 3.738 2.263 3.738 2.263zM7.667 7.068s2.467 2.263 3.736 2.263a2.263 2.263 0 000-4.526c-1.27 0-3.736 2.263-3.736 2.263z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),io=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.716 1.3a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M9.023 9.666h-.789a.525.525 0 01-.523-.528v0V5.74a.262.262 0 00-.262-.261h-.784M7.583 4.175h-.005a.13.13 0 00-.131.13c0 .069.057.131.13.126.069-.005.131-.063.126-.136a.133.133 0 00-.13-.13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),uo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.79 12.022a.479.479 0 01-.477.478H4.144a.48.48 0 01-.478-.482v0V1.986A.474.474 0 014.14 1.5h4.58-.004a.461.461 0 01.339.139l2.584 2.589-.005-.005c.086.086.138.21.138.334l.02 7.465z",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.925 1.558v2.345c0 .262.21.473.478.473h2.345",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.573 5.625V5M8.51 5.625H7.235a.839.839 0 00-.844.838.84.84 0 00.525.774l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H6.603M7.573 10v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),co=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M10.886 7.317L9.695 6.125l1.107-1.109 1.187 1.186a.789.789 0 001.108-.02.79.79 0 000-1.093l-1.192-1.191.552-.553a.795.795 0 000-1.113.79.79 0 00-1.113-.005L5.718 7.85v0a2.745 2.745 0 00-3.721 1.107 2.74 2.74 0 104.823 2.602 2.742 2.742 0 00-.005-2.612L8.561 7.2l1.186 1.192c.303.303.8.303 1.108-.006a.79.79 0 00-.005-1.113l.036.043z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.435 9.297a.98.98 0 100 1.96.98.98 0 000-1.96z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),fo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M3.534 10.153L8.069 2.95v-.006A.667.667 0 019.13 2.94l4.535 7.203-10.132.011z"}),w.default.createElement("path",{d:"M3.534 10.153H1.666l1.868-2.935h-.006a.71.71 0 01.534-.272l-.006-.005c.208.005.4.101.534.261l.347.694M5.91 6.377l1.25 1.057-.005-.005a.534.534 0 00.72-.032l.342-.347h-.005a.527.527 0 01.752-.006l.342.342a.533.533 0 00.72.027l1.227-1.04"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),po=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.43 9.467L5.397 11.5h-.005a1.92 1.92 0 01-2.711-.005l-.452-.451a1.916 1.916 0 01-.005-2.71l2.932-2.936v-.005a1.909 1.909 0 012.707 0l.447.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M6.978 3.597l2.029-2.031h-.005a1.91 1.91 0 012.706-.008c.75.745 0 0 0 0l.447.447L12.15 2a1.918 1.918 0 010 2.706L9.213 7.638v-.004a1.924 1.924 0 01-2.71 0l-.006-.005-.451-.452",stroke:"currentColor",strokeWidth:.917,strokeLinecap:"round",strokeLinejoin:"round"})))),ho=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{clipRule:"evenodd",d:"M11.441 6.536v0a.905.905 0 00-.9-.911h-5.85 0c-.497 0-.9.408-.9.91v4.554h0c0 .503.403.911.9.911h5.85v0c.497 0 .9-.408.9-.91V6.535zM5.066 4.138h0c0-1.291 1.142-2.338 2.55-2.338s2.55 1.047 2.55 2.338v1.487h-5.1V4.138z",stroke:"currentColor",strokeWidth:1.02,strokeLinecap:"round",strokeLinejoin:"round"})))),mo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.281 6.02l1.426 1.442M1.666 10.697l6.038-6.112h0a.664.664 0 01.946 0l.473.48v0a.683.683 0 010 .957L3.217 12M4.3 2.355v1.354M4.97 3.032H3.63M7.647 1v1.355M8.316 1.677H6.977M11.662 3.37v2.033M12.666 4.387h-2.008",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),go=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.666 4h10M2.666 7h10M2.666 10h10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),vo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.666 4.638l.983.983L6.269 3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:1.333,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),yo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.696 3h-2.15v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02h-2.15M4.196 11v1.5M5.196 1.5V3M10.583 9.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM10.583 5.167v3.5M8.833 6.917h3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),wo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:15,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.674 9.972A.972.972 0 107.647 9a.972.972 0 11.972-.972M7.647 6.083v.973M7.647 10.944v.973",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M2.51 8.72a5.28 5.28 0 105.281-5.281h-.406",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M9.113 1.458l-1.98 1.98 1.98 1.98",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),ko=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M9.696 3h-2.15v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02h-2.15M7.196 11v1.5M8.196 1.5V3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),bo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M4.666 12V2M10.666 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Eo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.892 2.773a1.509 1.509 0 00-2.144.015L3.734 8.802l-.735 2.864 2.864-.735 6.015-6.014a1.509 1.509 0 00.014-2.144v0zM9.577 2.96l2.129 2.13M3.734 8.802l2.132 2.128",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),xo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M9.652 11.573l.006.004a2.705 2.705 0 003.366-.37l.378-.378a.902.902 0 000-1.275L11.808 7.96a.903.903 0 00-1.276 0v0a.9.9 0 01-1.275 0L6.707 5.41a.902.902 0 010-1.276v0a.9.9 0 000-1.275L5.111 1.264a.903.903 0 00-1.275 0l-.379.378a2.706 2.706 0 00-.37 3.365l.005.006a24.412 24.412 0 006.56 6.56v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),_o=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M3.657 5.86v-.1a4.01 4.01 0 118.018 0v.1c0 2.018-2.556 5.058-3.586 6.2a.568.568 0 01-.846 0c-1.03-1.143-3.586-4.182-3.586-6.2v0z"}),w.default.createElement("path",{d:"M6.5 5.807a1.166 1.166 0 102.333 0v-.022a1.166 1.166 0 10-2.334 0"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Mo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 12V2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),No=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 2v10M12.666 7h-10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Co=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M6.517 11.34H8.8M6.516 9.627h2.285M4.333 9.348H2.762A1.047 1.047 0 011.72 8.303V5.168c0-.579.464-1.043 1.043-1.043h9.913c.574 0 1.038.464 1.038 1.043v3.13h-.005a1.047 1.047 0 01-1.049 1.039h-1.565M4.332 3.573V1h5.002c.135 0 .266.052.365.151l1.257 1.26-.005-.005c.094.093.151.23.151.365v.802"}),w.default.createElement("path",{d:"M11.115 12.478a.523.523 0 01-.522.522H4.85a.524.524 0 01-.522-.527v0-4.696h6.783l.005 4.701z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Lo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.796 1.875h-8.26a.87.87 0 00-.87.87v8.26c0 .48.39.87.87.87h8.26c.48 0 .87-.39.87-.87v-8.26a.87.87 0 00-.87-.87z",stroke:"currentColor",strokeWidth:.976,strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M6.623 5.287l.652.652L9.014 4.2M6.623 8.639l.652.652 1.739-1.74",stroke:"currentColor",strokeWidth:.976,strokeLinecap:"round",strokeLinejoin:"round"})))),Do=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.858 11.344c0 .15-.128.279-.279.279a.283.283 0 01-.184-.073l-1.494-1.283-2.064 1.545v-.005a.285.285 0 01-.334 0l-2.064-1.55-1.494 1.277v-.006a.287.287 0 01-.469-.218V2.063a.552.552 0 01.552-.563h7.25-.005a.551.551 0 01.557.552l.028 9.292zM4.931 4.236h2.736M4.931 6.06h4.56M4.931 7.884h4.56",stroke:"currentColor",strokeWidth:.912,strokeLinecap:"round",strokeLinejoin:"round"})))),jo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.377 4.083a4.813 4.813 0 00-8.523 3.061v1.314M4.166 10.446a4.813 4.813 0 008.313-3.302V6.27",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M1.104 6.707l1.75 1.75 1.75-1.75M14.229 8.02l-1.75-1.75-1.75 1.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Po=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M6.777 4.262h3.67M4.942 7.014h5.504M4.942 9.766h5.504M3.107 2.427a.909.909 0 01.908-.927h7.34-.01a.906.906 0 01.918.908v9.175a.92.92 0 01-.918.917H3.997a.922.922 0 01-.918-.927v0l.028-9.146z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Oo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M9.593 1.313L2.479 8.427c-.173.172-.125.5.106.731l2.423 2.423c.231.231.559.279.732.106l7.114-7.114c.172-.172.125-.5-.107-.731l-2.422-2.423c-.232-.231-.56-.279-.732-.106zM4.708 6.774L6.19 8.256M5.9 5.588l1.037 1.038M7.221 4.26l1.482 1.482M8.407 3.075l1.191 1.18",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Vo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M7.666 4.083H3.583A1.17 1.17 0 002.416 5.25v5.833a1.17 1.17 0 001.167 1.167h5.833a1.17 1.17 0 001.167-1.167V7"}),w.default.createElement("path",{d:"M10.291 7a2.614 2.614 0 01-2.625-2.625 2.614 2.614 0 012.625-2.625 2.614 2.614 0 012.625 2.625A2.614 2.614 0 0110.291 7z"}),w.default.createElement("path",{d:"M9.416 4.142h.058c.642 0 1.109.525 1.109 1.108M13.5 7.583l-1.342-1.341"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),To=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M2.348 6.815a.707.707 0 01-.033-1.35l9.55-3.114a.358.358 0 01.45.448L9.205 12.35a.707.707 0 01-1.352-.033L6.783 7.879 2.348 6.815zM12.228 2.437L6.783 7.879",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Bo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M2.674 4v5.863M13.666 9.13a2.2 2.2 0 00-2.199-2.199H8.72a2.2 2.2 0 00-2.198-2.198H2.666V9.13h11zM6.521 6.931h2.748"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),zo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.666 7.233V1M7.666 12v-1.833M7.666 7.233a1.467 1.467 0 100 2.934 1.467 1.467 0 000-2.934zM3.633 6.5V12M3.633 1v2.567M3.633 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0zM11.7 6.5V12M11.7 1v2.567M11.7 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Io=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M12.3 8.902a1.961 1.961 0 11-2.773 2.774A1.961 1.961 0 0112.3 8.901M13.064 4.172l-1.69 1.691a.653.653 0 01-.926 0l-1.69-1.69a.654.654 0 010-.925l1.69-1.69a.653.653 0 01.925 0l1.69 1.69a.655.655 0 010 .924v0zM3.185 5.56h2.39a.654.654 0 00.654-.655v-2.39a.654.654 0 00-.654-.654h-2.39a.654.654 0 00-.654.654v2.39c0 .361.293.654.654.654v0zM3.795 8.84l-1.449 2.32a.69.69 0 00.585 1.055h2.898a.69.69 0 00.585-1.055l-1.45-2.319a.69.69 0 00-1.169 0v0z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Fo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M7.5 8.044v-6.04M5.409 4.09L7.499 2l2.09 2.09M11.216 7.043v4.324c0 .255-.21.464-.465.464H4.248a.463.463 0 01-.465-.464V7.043",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),So=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M13.65 5.302L11.609 3.34l-.005-.005a2.624 2.624 0 00-1.816-.733H5.607c-.68 0-1.33.262-1.816.733l-2.04 1.962h-.006a.257.257 0 00-.005.366l1.214 1.214-.005-.005c.094.094.246.1.35.016l1.492-1.162v6.018c0 .14.115.256.261.256h5.233-.005c.141 0 .261-.12.261-.262V5.721l1.492 1.155c.1.084.256.079.35-.02l1.214-1.22h-.005c.1-.105.1-.272-.005-.372l-.005-.005.068.043zM6.14 2.612a1.567 1.567 0 103.134-.01"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Ro=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.166 7.5L9.412 9.003A5 5 0 007.666 12.8v.125",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.166 7.5L5.92 9.003A5 5 0 017.666 12.8v.125M3.566 9V7M5.666 7h-2M11.766 9V7M9.666 7h2M7.573 1.625V1M8.51 1.625H7.235a.839.839 0 00-.844.837.84.84 0 00.525.775l1.29.513-.006-.006a.834.834 0 01.462 1.087.852.852 0 01-.78.525H6.603M7.573 6v-.625",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Ao=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{d:"M11 12H4.332c-.921 0-1.667-.746-1.667-1.667V3.667C2.666 2.746 3.412 2 4.333 2h6.666c.92 0 1.667.746 1.667 1.667v6.666c0 .92-.746 1.667-1.667 1.667z",stroke:"currentColor"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Ho=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M11.518 8.4H3.915a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.602a.248.248 0 00.249-.248V8.649a.249.249 0 00-.248-.249zM12.418 5.7H4.815a.249.249 0 00-.249.249v2.203c0 .137.111.248.249.248h7.603a.249.249 0 00.248-.248V5.949a.249.249 0 00-.248-.249zM11.518 3H3.915a.249.249 0 00-.249.249V5.45c0 .138.111.249.249.249h7.602a.249.249 0 00.249-.249V3.25A.249.249 0 0011.518 3z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Wo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{d:"M8.055 1.239L9.84 4.774l3.434.34a.437.437 0 01.367.283.427.427 0 01-.102.45l-2.83 2.8 1.049 3.807a.428.428 0 01-.144.446.438.438 0 01-.47.053L7.666 11.23l-3.478 1.725a.438.438 0 01-.608-.255.426.426 0 01-.005-.244l1.048-3.808-2.83-2.804a.429.429 0 01.265-.732l3.434-.34 1.785-3.535A.432.432 0 017.667 1a.438.438 0 01.388.239z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Uo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{d:"M12.36 4.31a1.354 1.354 0 11-1.916-1.915L9.327 1.278a.451.451 0 00-.639 0L1.985 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 111.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L12.36 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),qo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},w.default.createElement("path",{d:"M2.495 3.324h10.321M8.761 1.85H6.55v0a.737.737 0 00-.738.737v.737H9.5v-.737 0a.737.737 0 00-.738-.737v0zM6.55 9.591V5.905M8.761 9.591V5.905M11.03 11.495v0a.737.737 0 01-.735.677H5.017v0a.737.737 0 01-.735-.677L3.6 3.325h8.11l-.68 8.17z"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(1.757 1.113)",d:"M0 0h11.796v11.796H0z"})))))),Ko=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M5.722 3.5L4.166 1.943M4.944 5.055h-.778M7.277 2.722v-.778M8.833 4.277h2.333a2.333 2.333 0 110 4.667H8.833M3.891 6.697L2.516 8.072a2.333 2.333 0 003.3 3.3L7.19 9.996",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Yo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M10.583 12.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM10.583 8.167v3.5M8.833 9.917h3.5M1.833 9.333c0-.578.138-1.148.4-1.658.263-.51.642-.943 1.105-1.262a3.224 3.224 0 013.162-.3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M5.333 5.833a2.333 2.333 0 100-4.666 2.333 2.333 0 000 4.666z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Go=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M4.685 2.591h0a5.371 5.371 0 005.989 1.204",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.47 7.465A3.233 3.233 0 107.47 1a3.233 3.233 0 000 6.465zM12.276 11.649a5.315 5.315 0 00-9.61 0",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),$o=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M3.166 7.642a.6.6 0 01.933-.499L7.333 9.3A.6.6 0 008 9.3l3.234-2.157a.6.6 0 01.933.5V9.93a.6.6 0 01-.267.5l-3.9 2.599a.6.6 0 01-.666 0l-3.9-2.602a.6.6 0 01-.267-.5V7.642zM7.949 1.172L8.566 2.5h1.2a.293.293 0 01.207.513L8.93 4.04l.577 1.324a.314.314 0 01-.448.393l-1.394-.784-1.394.784a.314.314 0 01-.448-.393l.577-1.324L5.36 3.014a.293.293 0 01.206-.514h1.2l.617-1.328a.318.318 0 01.566 0z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Jo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("g",{clipPath:"url(#prefix__clip0)"},w.default.createElement("path",{d:"M12.36 4.31a1.354 1.354 0 11-1.916-1.915L9.327 1.278a.451.451 0 00-.639 0L1.985 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 111.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L12.36 4.31z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.71 3.84l-.953.953 1.65 2.994-.034.034-2.996-1.648-.951.95 4.38 2.112L9.82 8.22 7.71 3.84z",fill:"currentColor"})),w.default.createElement("defs",null,w.default.createElement("clipPath",{id:"prefix__clip0"},w.default.createElement("path",{fill:"#fff",transform:"translate(.666)",d:"M0 0h14v14H0z"})))))),Zo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("rect",{x:2.666,y:2,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.666 3.333V4l.333.333.167.167",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("rect",{x:2.666,y:8,width:4,height:4,rx:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M4.666 9.333V10l.333.333.167.167M8.333 4h4M8.333 10h4",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Xo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{d:"M13.345 6.857a5.81 5.81 0 01-5.734 5.823h-.005a5.648 5.648 0 01-5.73-5.562c-.005-.026-.005-.052-.005-.073l-.005-.005a5.812 5.812 0 015.73-5.834V1.2a5.639 5.639 0 015.723 5.557v.068l.026.031zM7.616 7.5V4.357",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),w.default.createElement("path",{d:"M7.611 9.042v0a.128.128 0 00-.13.124c0 .068.057.125.13.125v0a.136.136 0 00.125-.136l-.005-.005-.005-.005c-.005-.073-.063-.13-.13-.13H7.59",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))),Qo=F((e=>w.default.createElement("svg",__spreadValues({viewBox:"0 0 14 14",width:15,height:14,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),w.default.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",d:"M3.166 11h9M11.697 4.746l-5.709 5.708v0a.379.379 0 01-.193.104l-2.176.435v0a.38.38 0 01-.446-.447l.435-2.174v0a.383.383 0 01.104-.194L9.421 2.47v0a1.605 1.605 0 012.269 0l.007.007v0a1.606 1.606 0 010 2.27v0z"}))));e.AddSquareIcon=al,e.Alert=K,e.AnnounceIcon=rl,e.ArchiveIcon=nl,e.ArrowCcwIcon=ll,e.ArrowRightIcon=ol,e.ArrowTopRightIcon=sl,e.AtIcon=il,e.Avatar=Z,e.Badge=z,e.BalloonIcon=dl,e.BankCheckIcon=ul,e.BaseChartOptions=Qn,e.BellIcon=cl,e.BookmarkIcon=fl,e.BoxIcon=pl,e.Breadcrumb=mt,e.BriefcaseIcon=hl,e.Button=j,e.ButtonGroup=ve,e.CakeIcon=ml,e.CalendarDayIcon=gl,e.CalendarIcon=vl,e.CalendarMonthIcon=yl,e.CalendarWeekIcon=wl,e.CapacityIcon=kl,e.CardAltIcon=bl,e.CardIcon=El,e.CartIcon=xl,e.CashIcon=_l,e.CheckIcon=Ml,e.Checkbox=zt,e.ChecklistIcon=Nl,e.ChevronDownIcon=Cl,e.ChevronLeftIcon=Zt,e.ChevronRightIcon=$,e.ChevronUpIcon=Ll,e.ChipIcon=Dl,e.ClockAltIcon=jl,e.ClockIcon=Pl,e.CloseCircleIcon=Ol,e.CloseIcon=S,e.CommentIcon=Vl,e.CompassIcon=Tl,e.CopyIcon=Bl,e.Counter=G,e.Currency=Rn,e.DatePicker=ta,e.DatePickerInput=jn,e.DecreaseIcon=zl,e.DepositIcon=Il,e.DisabledIcon=Fl,e.DisputeIcon=Sl,e.Dot=U,e.DotCircleIcon=Rl,e.DownArrowIcon=Hl,e.DownloadIcon=Al,e.Drawer=Ut,e.EditIcon=Wl,e.EllipsisIcon=Ul,e.EmailIcon=ql,e.EmptyChecklistIcon=Kl,e.EquipmentIcon=Yl,e.ExportIcon=Gl,e.EyeIcon=$l,e.FaceNeutralIcon=Jl,e.FaceSadIcon=Zl,e.FaceSmileIcon=Xl,e.FlagIcon=Ql,e.ForkIcon=eo,e.FormGroup=gt,e.FunnelIcon=to,e.GiftIcon=ao,e.HandIcon=ro,e.HeaderToolbar=Ft,e.HiddenIcon=no,e.HistogramOptions=el,e.HomeIcon=lo,e.ImageIcon=oo,e.InfinityIcon=so,e.InfoCircleIcon=io,e.Input=wt,e.InvoiceIcon=uo,e.Key=st,e.KeyIcon=co,e.Label=It,e.LandscapeIcon=fo,e.LinkIcon=po,e.LockIcon=ho,e.Login=Kt,e.Logo=ke,e.MagicIcon=mo,e.MenuIcon=go,e.MixedChecklistIcon=vo,e.Modal=pe,e.MoneyAddIcon=yo,e.MoneyBackIcon=wo,e.MoneyIcon=ko,e.Number=qn,e.PauseIcon=bo,e.PenIcon=Eo,e.Phone=Wn,e.PhoneIcon=xo,e.PieOptions=tl,e.PinIcon=_o,e.PipeIcon=Mo,e.PlusIcon=No,e.Popover=se,e.PopoverList=de,e.PrintIcon=Co,e.QuestionnaireIcon=Lo,e.ReceiptIcon=Do,e.RefreshIcon=jo,e.RosterIcon=Po,e.RulerIcon=Oo,e.Search=ht,e.SearchAltIcon=Vo,e.SearchIcon=ot,e.Select=bt,e.SendIcon=To,e.ServiceIcon=Bo,e.SettingsIcon=zo,e.ShapesIcon=Io,e.ShareIcon=Fo,e.ShirtIcon=So,e.Sidebar=ne,e.Skeleton=Wt,e.Spinner=ft,e.SplitPaymentIcon=Ro,e.SquareIcon=Ao,e.StackIcon=Ho,e.StarIcon=Wo,e.Switch=xt,e.Table=me,e.Tabs=St,e.Tag=H,e.Textarea=kt,e.TicketIcon=Uo,e.Tooltip=le,e.TrashIcon=qo,e.UnlinkIcon=Ko,e.UserAddIcon=Yo,e.UserIcon=Go,e.VeteranIcon=$o,e.VoucherIcon=Jo,e.WaitlistIcon=Zo,e.WarningIcon=Xo,e.WriteIcon=Qo,e.almostZero=zn,e.flash=$n,e.getSymbol=(e,t=On,a=0)=>new Intl.NumberFormat(t,{style:"currency",currency:e,maximumFractionDigits:0}).format(a).replace(/\d/g,"").trim(),e.isOSX=lt,e.isZeroDecimal=Tn,e.numberFormat=In,e.roundNumber=Fn,e.theme=Jn,Object.defineProperty(e,"__esModule",{value:!0}),e[Symbol.toStringTag]="Module"}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xola/ui-kit",
3
- "version": "2.0.0-1",
3
+ "version": "2.0.0-5",
4
4
  "description": "Xola UI Kit",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -12,62 +12,68 @@
12
12
  "main": "./build/ui-kit.umd.js",
13
13
  "module": "./build/ui-kit.es.js",
14
14
  "scripts": {
15
- "prepare": "vite build",
16
- "start": "start-storybook -p 6006 -s public",
17
- "dev": "start-storybook -p 6006 -s public --no-manager-cache",
18
- "storybook": "start-storybook -p 6006 -s public",
19
- "build": "vite build",
20
- "build:storybook": "build-storybook -s public",
21
- "xola-lint": "xola-lint",
15
+ "prepare": "node scripts/prepare && vite build",
16
+ "start": "node scripts/prepare && start-storybook -p 6006 -s public",
17
+ "dev": "node scripts/prepare && start-storybook -p 6006 -s public --no-manager-cache",
18
+ "storybook": "node scripts/prepare && start-storybook -p 6006 -s public",
19
+ "build": "node scripts/prepare && vite build",
20
+ "watch": "npm run build -- --watch",
21
+ "clean": "rm -rf node_modules/.vite",
22
+ "build:storybook": "node scripts/prepare && build-storybook -s public",
22
23
  "lint": "xola-lint src",
24
+ "lint:fix": "xola-lint src --fix",
23
25
  "lint:report": "xola-lint --reporter=json src > eslint_report.json && echo 'ESLint report saved to eslint_report.json'",
24
26
  "format": "prettier --write src",
25
27
  "test": "xola-lint && jest"
26
28
  },
27
29
  "dependencies": {
28
- "@headlessui/react": "^1.2.0",
30
+ "@headlessui/react": "^1.4.0",
29
31
  "@tailwindcss/forms": "^0.3.3",
32
+ "@tailwindcss/line-clamp": "^0.2.1",
30
33
  "@tippyjs/react": "^4.2.5",
31
34
  "clsx": "^1.1.1",
32
- "downshift": "^6.1.3",
35
+ "dayjs": "^1.10.7",
36
+ "downshift": "^6.1.5",
33
37
  "get-user-locale": "^1.4.0",
34
- "google-libphonenumber": "^3.2.21",
35
- "mathjs": "^9.4.2",
38
+ "google-libphonenumber": "^3.2.22",
39
+ "mathjs": "^9.4.4",
36
40
  "prop-types": "^15.7.2",
37
- "react-hotkeys-hook": "^3.3.1",
41
+ "react-day-picker": "^7.4.10",
42
+ "react-hot-toast": "^2.1.0",
43
+ "react-hotkeys-hook": "^3.4.0",
38
44
  "tippy.js": "^6.3.1"
39
45
  },
40
46
  "devDependencies": {
41
- "@babel/core": "^7.14.6",
42
- "@babel/preset-env": "^7.14.5",
43
- "@storybook/addon-actions": "^6.2.9",
44
- "@storybook/addon-essentials": "^6.2.9",
45
- "@storybook/addon-links": "^6.2.9",
47
+ "@babel/core": "^7.14.8",
48
+ "@babel/preset-env": "^7.15.6",
49
+ "@storybook/addon-actions": "^6.3.6",
50
+ "@storybook/addon-essentials": "^6.3.6",
51
+ "@storybook/addon-links": "^6.3.6",
46
52
  "@storybook/addon-postcss": "^2.0.0",
47
- "@storybook/addons": "^6.2.9",
48
- "@storybook/react": "^6.2.9",
49
- "@storybook/theming": "^6.2.9",
53
+ "@storybook/addons": "^6.3.6",
54
+ "@storybook/react": "^6.3.6",
55
+ "@storybook/theming": "^6.3.6",
50
56
  "@xola/jslint": "0.0.2",
51
- "autoprefixer": "^10.2.6",
52
- "babel-jest": "^27.0.2",
57
+ "autoprefixer": "^10.3.1",
58
+ "babel-jest": "^27.2.0",
53
59
  "babel-loader": "^8.2.2",
54
- "jest": "^27.0.4",
60
+ "jest": "^27.2.0",
55
61
  "lodash": "^4.17.21",
56
- "postcss": "^8.3.4",
57
- "prettier": "^2.3.1",
62
+ "postcss": "^8.3.6",
63
+ "prettier": "^2.4.0",
58
64
  "react": "^17.0.2",
59
65
  "react-dom": "^17.0.2",
60
66
  "storybook-css-modules-preset": "^1.1.1",
61
- "tailwindcss": "^2.1.4",
62
- "vite": "^2.3.7"
67
+ "tailwindcss": "^2.2.15",
68
+ "vite": "^2.5.7"
63
69
  },
64
70
  "peerDependencies": {
65
- "autoprefixer": "^10.2.5",
71
+ "autoprefixer": "^10.3.1",
66
72
  "lodash": "^4.17.21",
67
- "postcss": "^8.2.10",
73
+ "postcss": "^8.3.6",
68
74
  "react": "^17.0.2",
69
75
  "react-dom": "^17.0.2",
70
- "tailwindcss": "^2.1.1"
76
+ "tailwindcss": "^2.2.7"
71
77
  },
72
78
  "prettier": {
73
79
  "semi": true,
@@ -20,7 +20,7 @@ const colors = {
20
20
  light: "#2979D0",
21
21
  DEFAULT: "#1352C6",
22
22
  dark: "#3467C4",
23
- darker: "#0E44A8", // TBD
23
+ darker: "#0E44A8",
24
24
  },
25
25
 
26
26
  green: {
@@ -28,31 +28,31 @@ const colors = {
28
28
  light: "#33E781",
29
29
  DEFAULT: "#27CE70",
30
30
  dark: "#23B965",
31
- darker: "#23B965", // TBD
31
+ darker: "#1B8E4E", // Made up by Rushi till Barth gives us a color
32
32
  },
33
33
 
34
34
  red: {
35
35
  lighter: "#FFEAEA",
36
36
  light: "#FFA1A1",
37
37
  DEFAULT: "#FF5A5A",
38
- dark: "#FF5A5A", // TBD
39
- darker: "#FF5A5A", // TBD
38
+ dark: "#E93737",
39
+ darker: "#E51919", // Made up by Rushi till Barth gives us a color
40
40
  },
41
41
 
42
42
  yellow: {
43
43
  lighter: "#FFFAF0",
44
44
  light: "#FFDB8E",
45
45
  DEFAULT: "#FFC03D",
46
- dark: "#FFC03D", // TBD
47
- darker: "#FFC03D", // TBD
46
+ dark: "#EBAA24",
47
+ darker: "#F0A200", // Made up by Rushi till Barth gives us a color
48
48
  },
49
49
 
50
50
  orange: {
51
51
  lighter: "#FFF1E7",
52
52
  light: "#FFB493",
53
53
  DEFAULT: "#FF9668",
54
- dark: "#FF9668", // TBD
55
- darker: "#FF9668", // TBD
54
+ dark: "#EC743F",
55
+ darker: "#ff7336", // Made up by Rushi till Barth gives us a color
56
56
  },
57
57
  };
58
58
 
@@ -69,6 +69,7 @@ module.exports = {
69
69
  ],
70
70
 
71
71
  theme: {
72
+ // Figma: https://www.figma.com/file/tL2vrxuBIzujkDfYvVjUhs/%F0%9F%9B%A0-Xola-DS-Desktop-Master-%F0%9F%9B%A0?node-id=1885%3A51992
72
73
  colors: {
73
74
  ...colors,
74
75
 
@@ -83,7 +84,7 @@ module.exports = {
83
84
 
84
85
  spacing: {
85
86
  0: "0px",
86
- px: "1px",
87
+ 0.25: "1px",
87
88
  0.5: "2px",
88
89
  0.75: "3px",
89
90
  1: "4px",
@@ -93,9 +94,11 @@ module.exports = {
93
94
  3: "12px",
94
95
  3.5: "14px",
95
96
  4: "16px",
97
+ 4.5: "18px",
96
98
  5: "20px",
97
99
  6: "24px",
98
100
  7: "28px",
101
+ 7.5: "30px",
99
102
  8: "32px",
100
103
  9: "36px",
101
104
  10: "40px",
@@ -123,6 +126,7 @@ module.exports = {
123
126
  96: "384px",
124
127
  },
125
128
 
129
+ // Figma: https://www.figma.com/file/tL2vrxuBIzujkDfYvVjUhs/%F0%9F%9B%A0-Xola-DS-Desktop-Master-%F0%9F%9B%A0?node-id=1885%3A51905
126
130
  fontSize: {
127
131
  xs: "10px",
128
132
  sm: "12px", // Figma - Small, H6
@@ -134,6 +138,18 @@ module.exports = {
134
138
  "3xl": "38px", // Figma - H0
135
139
  },
136
140
 
141
+ borderRadius: {
142
+ none: "0px",
143
+ DEFAULT: "4px",
144
+ sm: "2px",
145
+ md: "6px",
146
+ lg: "8px",
147
+ xl: "12px",
148
+ "2xl": "16px",
149
+ full: "9999px",
150
+ },
151
+
152
+ // Figma: https://www.figma.com/file/tL2vrxuBIzujkDfYvVjUhs/%F0%9F%9B%A0-Xola-DS-Desktop-Master-%F0%9F%9B%A0?node-id=1885%3A51905
137
153
  extend: {
138
154
  fontFamily: {
139
155
  sans: ["Inter", ...defaultTheme.fontFamily.sans],
@@ -143,6 +159,31 @@ module.exports = {
143
159
  // P2 - Med 14px 130%
144
160
  // P3 - Small 12px 110%
145
161
  lineHeight: {
162
+ 0: "0px",
163
+ 0.25: "1px",
164
+ 0.5: "2px",
165
+ 0.75: "3px",
166
+ 1: "4px",
167
+ 1.5: "6px",
168
+ 2: "8px",
169
+ 2.5: "10px",
170
+ xs: "10px",
171
+ 3: "12px",
172
+ sm: "12px",
173
+ 3.5: "14px",
174
+ base: "14px",
175
+ 4: "16px",
176
+ md: "16px",
177
+ 4.5: "18px",
178
+ lg: "18px",
179
+ 5: "20px",
180
+ 6: "24px",
181
+ 7: "28px",
182
+ 8: "32px",
183
+ 9: "36px",
184
+ 10: "40px",
185
+ 11: "44px",
186
+ 12: "48px",
146
187
  p1: "130%",
147
188
  p2: "130%",
148
189
  p3: "110%",
@@ -156,5 +197,5 @@ module.exports = {
156
197
  },
157
198
  },
158
199
 
159
- plugins: [require("@tailwindcss/forms")],
200
+ plugins: [require("@tailwindcss/forms"), require("@tailwindcss/line-clamp")],
160
201
  };