@yuno-payments/dashboard-design-system 0.0.170 → 0.0.171
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/dist/components/atoms/access-denied-alert/access-denied-alert.d.ts +16 -0
- package/dist/components/atoms/accordion/accordion.d.ts +66 -0
- package/dist/components/atoms/alert/alert.d.ts +26 -1
- package/dist/components/atoms/alert/alert.js +9 -8
- package/dist/components/atoms/avatar/avatar-group.d.ts +28 -0
- package/dist/components/atoms/avatar/avatar.d.ts +25 -0
- package/dist/components/atoms/avatar/avatar.js +9 -9
- package/dist/components/atoms/badge/badge.d.ts +30 -2
- package/dist/components/atoms/badge/badge.js +27 -11
- package/dist/components/atoms/button/button.d.ts +44 -0
- package/dist/components/atoms/card/card.d.ts +137 -3
- package/dist/components/atoms/card/card.js +56 -28
- package/dist/components/atoms/checkbox/checkbox.d.ts +38 -2
- package/dist/components/atoms/checkbox/checkbox.js +61 -27
- package/dist/components/atoms/combobox/combobox.d.ts +18 -0
- package/dist/components/atoms/combobox/combobox.js +41 -41
- package/dist/components/atoms/combobox/types.d.ts +90 -1
- package/dist/components/atoms/currency-field/currency-field.d.ts +38 -0
- package/dist/components/atoms/currency-field/currency-field.js +22 -19
- package/dist/components/atoms/date-picker/date-picker.d.ts +15 -0
- package/dist/components/atoms/date-range-picker/date-range-picker.d.ts +15 -0
- package/dist/components/atoms/dots-menu/dots-menu.d.ts +16 -0
- package/dist/components/atoms/dots-menu/dots-menu.js +8 -8
- package/dist/components/atoms/dots-menu/dots-menu.types.d.ts +52 -0
- package/dist/components/atoms/dropdown-menu/dropdown-menu.d.ts +50 -0
- package/dist/components/atoms/field/field.d.ts +55 -0
- package/dist/components/atoms/field/field.js +53 -46
- package/dist/components/atoms/filter/filter-date-range.d.ts +12 -2
- package/dist/components/atoms/filter/filter-date-range.js +203 -168
- package/dist/components/atoms/filter/filter.d.ts +6 -0
- package/dist/components/atoms/filter/filter.js +91 -76
- package/dist/components/atoms/filter/index.d.ts +1 -1
- package/dist/components/atoms/filter-dropdown/filter-dropdown.d.ts +208 -2
- package/dist/components/atoms/filter-dropdown/filter-dropdown.js +214 -160
- package/dist/components/atoms/icon/aida-logo.d.ts +3 -0
- package/dist/components/atoms/icon/aida-logo.js +64 -0
- package/dist/components/atoms/icon/icon-list.d.ts +5 -0
- package/dist/components/atoms/icon/icon-list.js +394 -384
- package/dist/components/atoms/icon/icon.d.ts +29 -0
- package/dist/components/atoms/index.d.ts +3 -2
- package/dist/components/atoms/label/index.d.ts +1 -1
- package/dist/components/atoms/label/label.d.ts +11 -0
- package/dist/components/atoms/label/label.js +28 -0
- package/dist/components/atoms/link/link.d.ts +20 -0
- package/dist/components/atoms/loading/index.d.ts +1 -0
- package/dist/components/atoms/loading/loading.d.ts +39 -0
- package/dist/components/atoms/loading/loading.js +37 -0
- package/dist/components/atoms/multi-select/multi-select.d.ts +1 -1
- package/dist/components/atoms/multi-select/multi-select.js +6 -6
- package/dist/components/atoms/multi-values-field/multi-values-field.d.ts +16 -0
- package/dist/components/atoms/multi-values-field/multi-values-field.js +109 -87
- package/dist/components/atoms/multi-values-field/multi-values-field.types.d.ts +81 -0
- package/dist/components/atoms/otp-field/otp-field.d.ts +32 -0
- package/dist/components/atoms/password-field/password-field.d.ts +23 -0
- package/dist/components/atoms/password-field/password-field.js +1 -1
- package/dist/components/atoms/progress/progress.d.ts +15 -0
- package/dist/components/atoms/protected-field/protected-field.d.ts +10 -0
- package/dist/components/atoms/protected-field/protected-field.types.d.ts +14 -0
- package/dist/components/atoms/radio-group/radio-group-option.js +11 -11
- package/dist/components/atoms/radio-group/radio-group.d.ts +50 -1
- package/dist/components/atoms/radio-group/radio-group.js +13 -12
- package/dist/components/atoms/search-field/search-field.d.ts +14 -0
- package/dist/components/atoms/search-field/search-field.js +17 -17
- package/dist/components/atoms/search-field/search-field.types.d.ts +57 -0
- package/dist/components/atoms/select/index.d.ts +2 -0
- package/dist/components/atoms/select/search-select.d.ts +22 -0
- package/dist/components/atoms/select/search-select.js +201 -0
- package/dist/components/atoms/select/select.d.ts +83 -1
- package/dist/components/atoms/select/select.js +21 -21
- package/dist/components/atoms/separator/separator.d.ts +17 -0
- package/dist/components/atoms/skeleton/index.d.ts +9 -0
- package/dist/components/atoms/switch/switch.d.ts +56 -2
- package/dist/components/atoms/switch/switch.js +64 -32
- package/dist/components/atoms/tabs/index.d.ts +16 -0
- package/dist/components/atoms/textarea/textarea.d.ts +32 -0
- package/dist/components/atoms/textarea/textarea.js +1 -1
- package/dist/components/atoms/time-picker/time-picker.d.ts +73 -2
- package/dist/components/atoms/time-picker/time-picker.js +218 -3
- package/dist/components/atoms/toaster/index.d.ts +15 -0
- package/dist/components/atoms/toggle-group/toggle-group.d.ts +26 -1
- package/dist/components/atoms/toggle-group/toggle-group.js +15 -14
- package/dist/components/atoms/tooltip/tooltip.d.ts +53 -2
- package/dist/components/atoms/typography/typography.d.ts +18 -0
- package/dist/components/molecules/breadcrumb/breadcrumb.d.ts +50 -0
- package/dist/components/molecules/breadcrumb/breadcrumb.js +17 -17
- package/dist/components/molecules/dialog-content/dialog-content.d.ts +16 -0
- package/dist/components/molecules/dialog-footer/dialog-footer.d.ts +20 -0
- package/dist/components/molecules/dialog-header/dialog-header.d.ts +31 -0
- package/dist/components/molecules/empty/empty-icon.js +6 -6
- package/dist/components/molecules/empty/empty.d.ts +16 -1
- package/dist/components/molecules/empty/empty.js +37 -34
- package/dist/components/molecules/highlight-banner/highlight-banner.d.ts +17 -0
- package/dist/components/molecules/pagination/pagination.d.ts +49 -0
- package/dist/components/organisms/data-table/components/cells/data-table-list-cell.d.ts +41 -0
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header-content.js +1 -1
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header-menu.js +18 -18
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header.d.ts +18 -0
- package/dist/components/organisms/data-table/components/column-header/data-table-column-header.js +10 -10
- package/dist/components/organisms/data-table/components/data-table-body.d.ts +18 -0
- package/dist/components/organisms/data-table/components/data-table-header.d.ts +12 -0
- package/dist/components/organisms/data-table/components/data-table-header.js +7 -7
- package/dist/components/organisms/data-table/components/states/data-table-loading.d.ts +24 -0
- package/dist/components/organisms/data-table/components/states/data-table-loading.js +6 -6
- package/dist/components/organisms/data-table/data-table.d.ts +133 -4
- package/dist/components/organisms/data-table/data-table.js +132 -100
- package/dist/components/organisms/data-table/data-table.types.d.ts +35 -26
- package/dist/components/organisms/data-table/hooks/use-data-table-columns.js +57 -41
- package/dist/components/organisms/data-table/hooks/use-data-table-state.d.ts +8 -2
- package/dist/components/organisms/data-table/hooks/use-data-table-state.js +82 -47
- package/dist/components/organisms/data-table/utils/data-table-constants.d.ts +8 -2
- package/dist/components/organisms/data-table/utils/data-table-constants.js +16 -10
- package/dist/components/organisms/data-table/utils/data-table-styles.d.ts +1652 -0
- package/dist/components/organisms/data-table/utils/data-table-styles.js +29 -14
- package/dist/components/organisms/dialog/dialog.d.ts +67 -1
- package/dist/components/organisms/dialog/dialog.js +78 -61
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/components/organisms/sheet/sheet.d.ts +69 -0
- package/dist/components/organisms/sheet/sheet.js +34 -33
- package/dist/components/organisms/tutorial/index.d.ts +2 -0
- package/dist/components/organisms/tutorial/tutorial.d.ts +16 -0
- package/dist/components/organisms/tutorial/tutorial.js +114 -0
- package/dist/components/organisms/tutorial/tutorial.types.d.ts +15 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/use-body-scroll-lock.d.ts +13 -0
- package/dist/hooks/use-escape-key.d.ts +14 -0
- package/dist/hooks/use-media-query.d.ts +20 -0
- package/dist/hooks/use-media-query.js +21 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +173 -162
- package/dist/lib/notification-alert.d.ts +42 -0
- package/dist/lib/notification-alert.js +75 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/File.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Microphone.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Stop.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Table.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/File.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Microphone.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Stop.es.js +36 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Table.es.js +30 -0
- package/dist/vendor/shadcn/avatar.js +19 -19
- package/dist/vendor/shadcn/badge.js +15 -15
- package/dist/vendor/shadcn/card.js +7 -7
- package/dist/vendor/shadcn/date-picker.d.ts +2 -2
- package/dist/vendor/shadcn/date-picker.js +1 -1
- package/dist/vendor/shadcn/date-range-picker.d.ts +2 -2
- package/dist/vendor/shadcn/date-range-picker.js +1 -1
- package/dist/vendor/shadcn/dialog.js +2 -2
- package/dist/vendor/shadcn/input-group.js +17 -17
- package/dist/vendor/shadcn/input.js +7 -7
- package/dist/vendor/shadcn/popover.js +1 -1
- package/dist/vendor/shadcn/select.js +2 -2
- package/dist/vendor/shadcn/sonner.d.ts +26 -1
- package/dist/vendor/shadcn/sonner.js +12 -8
- package/dist/vendor/shadcn/table.js +30 -30
- package/dist/vendor/shadcn/textarea.js +9 -9
- package/dist/vendor/shadcn/time-picker.d.ts +1 -2
- package/dist/vendor/shadcn/time-picker.js +17 -23
- package/dist/vendor/shadcn/toggle.js +13 -13
- package/dist/vendor/shadcn/tooltip.js +25 -15
- package/package.json +1 -1
|
@@ -1,398 +1,408 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
1
|
+
import r from "./aida-logo.js";
|
|
2
|
+
import { MagnifyingGlassIcon as i } from "../../../node_modules/@phosphor-icons/react/dist/csr/MagnifyingGlass.es.js";
|
|
3
|
+
import { CaretDownIcon as e } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretDown.es.js";
|
|
4
|
+
import { CaretUpDownIcon as m } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretUpDown.es.js";
|
|
5
|
+
import { InfoIcon as a } from "../../../node_modules/@phosphor-icons/react/dist/csr/Info.es.js";
|
|
6
|
+
import { BellSimpleIcon as t } from "../../../node_modules/@phosphor-icons/react/dist/csr/BellSimple.es.js";
|
|
7
|
+
import { MonitorIcon as n } from "../../../node_modules/@phosphor-icons/react/dist/csr/Monitor.es.js";
|
|
8
|
+
import { ChartLineIcon as s } from "../../../node_modules/@phosphor-icons/react/dist/csr/ChartLine.es.js";
|
|
9
|
+
import { ArrowsLeftRightIcon as c } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowsLeftRight.es.js";
|
|
10
|
+
import { PhoneIcon as p } from "../../../node_modules/@phosphor-icons/react/dist/csr/Phone.es.js";
|
|
11
|
+
import { LinkSimpleIcon as l } from "../../../node_modules/@phosphor-icons/react/dist/csr/LinkSimple.es.js";
|
|
12
|
+
import { SwapIcon as f } from "../../../node_modules/@phosphor-icons/react/dist/csr/Swap.es.js";
|
|
13
|
+
import { FileArchiveIcon as I } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileArchive.es.js";
|
|
14
|
+
import { FilePdfIcon as $ } from "../../../node_modules/@phosphor-icons/react/dist/csr/FilePdf.es.js";
|
|
15
|
+
import { BoundingBoxIcon as C } from "../../../node_modules/@phosphor-icons/react/dist/csr/BoundingBox.es.js";
|
|
16
|
+
import { TreeStructureIcon as u } from "../../../node_modules/@phosphor-icons/react/dist/csr/TreeStructure.es.js";
|
|
17
|
+
import { ShoppingCartIcon as h } from "../../../node_modules/@phosphor-icons/react/dist/csr/ShoppingCart.es.js";
|
|
18
|
+
import { CodeIcon as w } from "../../../node_modules/@phosphor-icons/react/dist/csr/Code.es.js";
|
|
19
|
+
import { FileTxtIcon as S } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileTxt.es.js";
|
|
20
|
+
import { FileZipIcon as g } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileZip.es.js";
|
|
21
|
+
import { TerminalWindowIcon as d } from "../../../node_modules/@phosphor-icons/react/dist/csr/TerminalWindow.es.js";
|
|
21
22
|
import { UserIcon as k } from "../../../node_modules/@phosphor-icons/react/dist/csr/User.es.js";
|
|
22
|
-
import { LockIcon as
|
|
23
|
-
import { FileDocIcon as
|
|
24
|
-
import { QuestionIcon as
|
|
25
|
-
import { SignOutIcon as
|
|
23
|
+
import { LockIcon as P } from "../../../node_modules/@phosphor-icons/react/dist/csr/Lock.es.js";
|
|
24
|
+
import { FileDocIcon as A } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileDoc.es.js";
|
|
25
|
+
import { QuestionIcon as D } from "../../../node_modules/@phosphor-icons/react/dist/csr/Question.es.js";
|
|
26
|
+
import { SignOutIcon as B } from "../../../node_modules/@phosphor-icons/react/dist/csr/SignOut.es.js";
|
|
26
27
|
import { XIcon as o } from "../../../node_modules/@phosphor-icons/react/dist/csr/X.es.js";
|
|
27
|
-
import { FunnelSimpleIcon as
|
|
28
|
-
import { PlusIcon as
|
|
29
|
-
import { WarningCircleIcon as
|
|
30
|
-
import { XCircleIcon as
|
|
28
|
+
import { FunnelSimpleIcon as L } from "../../../node_modules/@phosphor-icons/react/dist/csr/FunnelSimple.es.js";
|
|
29
|
+
import { PlusIcon as T } from "../../../node_modules/@phosphor-icons/react/dist/csr/Plus.es.js";
|
|
30
|
+
import { WarningCircleIcon as U } from "../../../node_modules/@phosphor-icons/react/dist/csr/WarningCircle.es.js";
|
|
31
|
+
import { XCircleIcon as b } from "../../../node_modules/@phosphor-icons/react/dist/csr/XCircle.es.js";
|
|
31
32
|
import { CheckCircleIcon as y } from "../../../node_modules/@phosphor-icons/react/dist/csr/CheckCircle.es.js";
|
|
32
|
-
import { PlugsIcon as
|
|
33
|
-
import { PlugIcon as
|
|
34
|
-
import { ListIcon as
|
|
33
|
+
import { PlugsIcon as F } from "../../../node_modules/@phosphor-icons/react/dist/csr/Plugs.es.js";
|
|
34
|
+
import { PlugIcon as R } from "../../../node_modules/@phosphor-icons/react/dist/csr/Plug.es.js";
|
|
35
|
+
import { ListIcon as M } from "../../../node_modules/@phosphor-icons/react/dist/csr/List.es.js";
|
|
35
36
|
import { ArrowCircleLeftIcon as x } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowCircleLeft.es.js";
|
|
36
|
-
import { ArrowCircleRightIcon as
|
|
37
|
-
import { RadioButtonIcon as
|
|
37
|
+
import { ArrowCircleRightIcon as v } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowCircleRight.es.js";
|
|
38
|
+
import { RadioButtonIcon as N } from "../../../node_modules/@phosphor-icons/react/dist/csr/RadioButton.es.js";
|
|
38
39
|
import { GearIcon as q } from "../../../node_modules/@phosphor-icons/react/dist/csr/Gear.es.js";
|
|
39
|
-
import { UserPlusIcon as
|
|
40
|
-
import { ArrowLeftIcon as
|
|
41
|
-
import { CircleIcon as
|
|
42
|
-
import { StarIcon as
|
|
43
|
-
import { NotepadIcon as
|
|
44
|
-
import { ExportIcon as
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
40
|
+
import { UserPlusIcon as E } from "../../../node_modules/@phosphor-icons/react/dist/csr/UserPlus.es.js";
|
|
41
|
+
import { ArrowLeftIcon as G } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowLeft.es.js";
|
|
42
|
+
import { CircleIcon as W } from "../../../node_modules/@phosphor-icons/react/dist/csr/Circle.es.js";
|
|
43
|
+
import { StarIcon as O } from "../../../node_modules/@phosphor-icons/react/dist/csr/Star.es.js";
|
|
44
|
+
import { NotepadIcon as V } from "../../../node_modules/@phosphor-icons/react/dist/csr/Notepad.es.js";
|
|
45
|
+
import { ExportIcon as H } from "../../../node_modules/@phosphor-icons/react/dist/csr/Export.es.js";
|
|
46
|
+
import { StopIcon as K } from "../../../node_modules/@phosphor-icons/react/dist/csr/Stop.es.js";
|
|
47
|
+
import { MicrophoneIcon as Q } from "../../../node_modules/@phosphor-icons/react/dist/csr/Microphone.es.js";
|
|
48
|
+
import { FileIcon as X } from "../../../node_modules/@phosphor-icons/react/dist/csr/File.es.js";
|
|
49
|
+
import { TableIcon as z } from "../../../node_modules/@phosphor-icons/react/dist/csr/Table.es.js";
|
|
50
|
+
import { BinocularsIcon as j } from "../../../node_modules/@phosphor-icons/react/dist/csr/Binoculars.es.js";
|
|
51
|
+
import { GitBranchIcon as Z } from "../../../node_modules/@phosphor-icons/react/dist/csr/GitBranch.es.js";
|
|
52
|
+
import { PencilIcon as J } from "../../../node_modules/@phosphor-icons/react/dist/csr/Pencil.es.js";
|
|
53
|
+
import { LinkBreakIcon as Y } from "../../../node_modules/@phosphor-icons/react/dist/csr/LinkBreak.es.js";
|
|
54
|
+
import { PauseIcon as _ } from "../../../node_modules/@phosphor-icons/react/dist/csr/Pause.es.js";
|
|
55
|
+
import { DotsThreeVerticalIcon as oo } from "../../../node_modules/@phosphor-icons/react/dist/csr/DotsThreeVertical.es.js";
|
|
56
|
+
import { PencilSimpleIcon as ro } from "../../../node_modules/@phosphor-icons/react/dist/csr/PencilSimple.es.js";
|
|
57
|
+
import { TrashIcon as io } from "../../../node_modules/@phosphor-icons/react/dist/csr/Trash.es.js";
|
|
58
|
+
import { EqualsIcon as eo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Equals.es.js";
|
|
59
|
+
import { BracketsAngleIcon as mo } from "../../../node_modules/@phosphor-icons/react/dist/csr/BracketsAngle.es.js";
|
|
60
|
+
import { BracketsSquareIcon as ao } from "../../../node_modules/@phosphor-icons/react/dist/csr/BracketsSquare.es.js";
|
|
61
|
+
import { SelectionInverseIcon as to } from "../../../node_modules/@phosphor-icons/react/dist/csr/SelectionInverse.es.js";
|
|
62
|
+
import { BracketsCurlyIcon as no } from "../../../node_modules/@phosphor-icons/react/dist/csr/BracketsCurly.es.js";
|
|
63
|
+
import { CaretRightIcon as so } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretRight.es.js";
|
|
64
|
+
import { ArrowsDownUpIcon as co } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowsDownUp.es.js";
|
|
65
|
+
import { DotsThreeIcon as po } from "../../../node_modules/@phosphor-icons/react/dist/csr/DotsThree.es.js";
|
|
66
|
+
import { ClockIcon as lo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Clock.es.js";
|
|
67
|
+
import { ProhibitIcon as fo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Prohibit.es.js";
|
|
68
|
+
import { ListPlusIcon as Io } from "../../../node_modules/@phosphor-icons/react/dist/csr/ListPlus.es.js";
|
|
69
|
+
import { SquareIcon as $o } from "../../../node_modules/@phosphor-icons/react/dist/csr/Square.es.js";
|
|
70
|
+
import { CaretLeftIcon as Co } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretLeft.es.js";
|
|
71
|
+
import { UploadIcon as uo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Upload.es.js";
|
|
72
|
+
import { CloudSlashIcon as ho } from "../../../node_modules/@phosphor-icons/react/dist/csr/CloudSlash.es.js";
|
|
73
|
+
import { GitForkIcon as wo } from "../../../node_modules/@phosphor-icons/react/dist/csr/GitFork.es.js";
|
|
74
|
+
import { TextboxIcon as So } from "../../../node_modules/@phosphor-icons/react/dist/csr/Textbox.es.js";
|
|
75
|
+
import { DeviceMobileCameraIcon as go } from "../../../node_modules/@phosphor-icons/react/dist/csr/DeviceMobileCamera.es.js";
|
|
76
|
+
import { CaretUpIcon as ko } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretUp.es.js";
|
|
77
|
+
import { SwatchesIcon as Po } from "../../../node_modules/@phosphor-icons/react/dist/csr/Swatches.es.js";
|
|
78
|
+
import { CreditCardIcon as Ao } from "../../../node_modules/@phosphor-icons/react/dist/csr/CreditCard.es.js";
|
|
79
|
+
import { PaletteIcon as Do } from "../../../node_modules/@phosphor-icons/react/dist/csr/Palette.es.js";
|
|
80
|
+
import { CircleNotchIcon as Bo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CircleNotch.es.js";
|
|
81
|
+
import { PencilSimpleLineIcon as Lo } from "../../../node_modules/@phosphor-icons/react/dist/csr/PencilSimpleLine.es.js";
|
|
82
|
+
import { CopyIcon as To } from "../../../node_modules/@phosphor-icons/react/dist/csr/Copy.es.js";
|
|
83
|
+
import { LightbulbIcon as Uo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Lightbulb.es.js";
|
|
84
|
+
import { ArrowBendUpLeftIcon as bo } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowBendUpLeft.es.js";
|
|
85
|
+
import { CheckIcon as yo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Check.es.js";
|
|
86
|
+
import { ChartPieIcon as Fo } from "../../../node_modules/@phosphor-icons/react/dist/csr/ChartPie.es.js";
|
|
87
|
+
import { PercentIcon as Ro } from "../../../node_modules/@phosphor-icons/react/dist/csr/Percent.es.js";
|
|
88
|
+
import { HashIcon as Mo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Hash.es.js";
|
|
89
|
+
import { CurrencyCircleDollarIcon as xo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CurrencyCircleDollar.es.js";
|
|
90
|
+
import { CurrencyDollarIcon as vo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CurrencyDollar.es.js";
|
|
91
|
+
import { ChartBarIcon as No } from "../../../node_modules/@phosphor-icons/react/dist/csr/ChartBar.es.js";
|
|
92
|
+
import { ArrowsClockwiseIcon as qo } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowsClockwise.es.js";
|
|
93
|
+
import { CopySimpleIcon as Eo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CopySimple.es.js";
|
|
94
|
+
import { FlagBannerIcon as Go } from "../../../node_modules/@phosphor-icons/react/dist/csr/FlagBanner.es.js";
|
|
95
|
+
import { CalendarBlankIcon as Wo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CalendarBlank.es.js";
|
|
96
|
+
import { MoneyIcon as Oo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Money.es.js";
|
|
97
|
+
import { PlayIcon as Vo } from "../../../node_modules/@phosphor-icons/react/dist/csr/Play.es.js";
|
|
98
|
+
import { FlagIcon as Ho } from "../../../node_modules/@phosphor-icons/react/dist/csr/Flag.es.js";
|
|
99
|
+
import { CaretDoubleLeftIcon as Ko } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretDoubleLeft.es.js";
|
|
100
|
+
import { CaretDoubleRightIcon as Qo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretDoubleRight.es.js";
|
|
101
|
+
import { ShareNetworkIcon as Xo } from "../../../node_modules/@phosphor-icons/react/dist/csr/ShareNetwork.es.js";
|
|
102
|
+
import { ToggleLeftIcon as zo } from "../../../node_modules/@phosphor-icons/react/dist/csr/ToggleLeft.es.js";
|
|
103
|
+
import { PlusCircleIcon as jo } from "../../../node_modules/@phosphor-icons/react/dist/csr/PlusCircle.es.js";
|
|
104
|
+
import { UserCircleIcon as Zo } from "../../../node_modules/@phosphor-icons/react/dist/csr/UserCircle.es.js";
|
|
105
|
+
import { CaretCircleRightIcon as Jo } from "../../../node_modules/@phosphor-icons/react/dist/csr/CaretCircleRight.es.js";
|
|
106
|
+
import { MinusCircleIcon as Yo } from "../../../node_modules/@phosphor-icons/react/dist/csr/MinusCircle.es.js";
|
|
107
|
+
import { ArchiveIcon as _o } from "../../../node_modules/@phosphor-icons/react/dist/csr/Archive.es.js";
|
|
108
|
+
import { DesktopIcon as or } from "../../../node_modules/@phosphor-icons/react/dist/csr/Desktop.es.js";
|
|
109
|
+
import { SunIcon as rr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Sun.es.js";
|
|
110
|
+
import { TranslateIcon as ir } from "../../../node_modules/@phosphor-icons/react/dist/csr/Translate.es.js";
|
|
111
|
+
import { CheckSquareIcon as er } from "../../../node_modules/@phosphor-icons/react/dist/csr/CheckSquare.es.js";
|
|
112
|
+
import { CheckSquareOffsetIcon as mr } from "../../../node_modules/@phosphor-icons/react/dist/csr/CheckSquareOffset.es.js";
|
|
113
|
+
import { UploadSimpleIcon as ar } from "../../../node_modules/@phosphor-icons/react/dist/csr/UploadSimple.es.js";
|
|
114
|
+
import { FileArrowUpIcon as tr } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileArrowUp.es.js";
|
|
115
|
+
import { FileCsvIcon as nr } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileCsv.es.js";
|
|
116
|
+
import { DownloadSimpleIcon as sr } from "../../../node_modules/@phosphor-icons/react/dist/csr/DownloadSimple.es.js";
|
|
117
|
+
import { ArrowCounterClockwiseIcon as cr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowCounterClockwise.es.js";
|
|
118
|
+
import { BankIcon as pr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Bank.es.js";
|
|
119
|
+
import { ShieldWarningIcon as lr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ShieldWarning.es.js";
|
|
120
|
+
import { UserSwitchIcon as fr } from "../../../node_modules/@phosphor-icons/react/dist/csr/UserSwitch.es.js";
|
|
121
|
+
import { LightningIcon as Ir } from "../../../node_modules/@phosphor-icons/react/dist/csr/Lightning.es.js";
|
|
122
|
+
import { MapPinIcon as $r } from "../../../node_modules/@phosphor-icons/react/dist/csr/MapPin.es.js";
|
|
123
|
+
import { EraserIcon as Cr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Eraser.es.js";
|
|
124
|
+
import { VaultIcon as ur } from "../../../node_modules/@phosphor-icons/react/dist/csr/Vault.es.js";
|
|
125
|
+
import { ClockClockwiseIcon as hr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ClockClockwise.es.js";
|
|
126
|
+
import { RepeatIcon as wr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Repeat.es.js";
|
|
127
|
+
import { EyeIcon as Sr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Eye.es.js";
|
|
128
|
+
import { EyeSlashIcon as gr } from "../../../node_modules/@phosphor-icons/react/dist/csr/EyeSlash.es.js";
|
|
129
|
+
import { EyeClosedIcon as dr } from "../../../node_modules/@phosphor-icons/react/dist/csr/EyeClosed.es.js";
|
|
130
|
+
import { DotsSixVerticalIcon as kr } from "../../../node_modules/@phosphor-icons/react/dist/csr/DotsSixVertical.es.js";
|
|
131
|
+
import { DotsNineIcon as Pr } from "../../../node_modules/@phosphor-icons/react/dist/csr/DotsNine.es.js";
|
|
132
|
+
import { CardsIcon as Ar } from "../../../node_modules/@phosphor-icons/react/dist/csr/Cards.es.js";
|
|
133
|
+
import { ArrowCircleUpLeftIcon as Dr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowCircleUpLeft.es.js";
|
|
134
|
+
import { WalletIcon as Br } from "../../../node_modules/@phosphor-icons/react/dist/csr/Wallet.es.js";
|
|
135
|
+
import { ArrowBendUpRightIcon as Lr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowBendUpRight.es.js";
|
|
136
|
+
import { IdentificationCardIcon as Tr } from "../../../node_modules/@phosphor-icons/react/dist/csr/IdentificationCard.es.js";
|
|
137
|
+
import { NotificationIcon as Ur } from "../../../node_modules/@phosphor-icons/react/dist/csr/Notification.es.js";
|
|
138
|
+
import { ListBulletsIcon as br } from "../../../node_modules/@phosphor-icons/react/dist/csr/ListBullets.es.js";
|
|
139
|
+
import { DownloadIcon as yr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Download.es.js";
|
|
140
|
+
import { ArrowsOutSimpleIcon as Fr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowsOutSimple.es.js";
|
|
141
|
+
import { ClockCountdownIcon as Rr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ClockCountdown.es.js";
|
|
142
|
+
import { ClockCounterClockwiseIcon as Mr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ClockCounterClockwise.es.js";
|
|
143
|
+
import { ImageIcon as xr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Image.es.js";
|
|
144
|
+
import { ToggleRightIcon as vr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ToggleRight.es.js";
|
|
145
|
+
import { ArrowCircleUpIcon as Nr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowCircleUp.es.js";
|
|
146
|
+
import { ArrowUpIcon as qr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowUp.es.js";
|
|
147
|
+
import { ArrowDownIcon as Er } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowDown.es.js";
|
|
148
|
+
import { ArrowUpRightIcon as Gr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowUpRight.es.js";
|
|
149
|
+
import { PlayCircleIcon as Wr } from "../../../node_modules/@phosphor-icons/react/dist/csr/PlayCircle.es.js";
|
|
150
|
+
import { PauseCircleIcon as Or } from "../../../node_modules/@phosphor-icons/react/dist/csr/PauseCircle.es.js";
|
|
151
|
+
import { SquaresFourIcon as Vr } from "../../../node_modules/@phosphor-icons/react/dist/csr/SquaresFour.es.js";
|
|
152
|
+
import { LinkSimpleHorizontalIcon as Hr } from "../../../node_modules/@phosphor-icons/react/dist/csr/LinkSimpleHorizontal.es.js";
|
|
153
|
+
import { KeyIcon as Kr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Key.es.js";
|
|
154
|
+
import { LockKeyIcon as Qr } from "../../../node_modules/@phosphor-icons/react/dist/csr/LockKey.es.js";
|
|
155
|
+
import { DetectiveIcon as Xr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Detective.es.js";
|
|
156
|
+
import { CalendarIcon as zr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Calendar.es.js";
|
|
157
|
+
import { TextColumnsIcon as jr } from "../../../node_modules/@phosphor-icons/react/dist/csr/TextColumns.es.js";
|
|
158
|
+
import { ColumnsIcon as Zr } from "../../../node_modules/@phosphor-icons/react/dist/csr/Columns.es.js";
|
|
159
|
+
import { ImageSquareIcon as Jr } from "../../../node_modules/@phosphor-icons/react/dist/csr/ImageSquare.es.js";
|
|
160
|
+
import { PushPinIcon as Yr } from "../../../node_modules/@phosphor-icons/react/dist/csr/PushPin.es.js";
|
|
161
|
+
import { PushPinSimpleIcon as _r } from "../../../node_modules/@phosphor-icons/react/dist/csr/PushPinSimple.es.js";
|
|
162
|
+
import { PushPinSimpleSlashIcon as oi } from "../../../node_modules/@phosphor-icons/react/dist/csr/PushPinSimpleSlash.es.js";
|
|
163
|
+
import { ShieldCheckIcon as ri } from "../../../node_modules/@phosphor-icons/react/dist/csr/ShieldCheck.es.js";
|
|
164
|
+
import { PackageIcon as ii } from "../../../node_modules/@phosphor-icons/react/dist/csr/Package.es.js";
|
|
165
|
+
import { ArrowElbowDownRightIcon as ei } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowElbowDownRight.es.js";
|
|
166
|
+
import { BellSimpleSlashIcon as mi } from "../../../node_modules/@phosphor-icons/react/dist/csr/BellSimpleSlash.es.js";
|
|
167
|
+
import { BellRingingIcon as ai } from "../../../node_modules/@phosphor-icons/react/dist/csr/BellRinging.es.js";
|
|
168
|
+
import { GearSixIcon as ti } from "../../../node_modules/@phosphor-icons/react/dist/csr/GearSix.es.js";
|
|
169
|
+
import { TextTIcon as ni } from "../../../node_modules/@phosphor-icons/react/dist/csr/TextT.es.js";
|
|
170
|
+
import { NumberCircleOneIcon as si } from "../../../node_modules/@phosphor-icons/react/dist/csr/NumberCircleOne.es.js";
|
|
171
|
+
import { ListNumbersIcon as ci } from "../../../node_modules/@phosphor-icons/react/dist/csr/ListNumbers.es.js";
|
|
172
|
+
import { WarningIcon as pi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Warning.es.js";
|
|
173
|
+
import { SortAscendingIcon as li } from "../../../node_modules/@phosphor-icons/react/dist/csr/SortAscending.es.js";
|
|
174
|
+
import { ArrowClockwiseIcon as fi } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowClockwise.es.js";
|
|
175
|
+
import { SparkleIcon as Ii } from "../../../node_modules/@phosphor-icons/react/dist/csr/Sparkle.es.js";
|
|
176
|
+
import { ThumbsUpIcon as $i } from "../../../node_modules/@phosphor-icons/react/dist/csr/ThumbsUp.es.js";
|
|
177
|
+
import { ThumbsDownIcon as Ci } from "../../../node_modules/@phosphor-icons/react/dist/csr/ThumbsDown.es.js";
|
|
178
|
+
import { DotsThreeCircleVerticalIcon as ui } from "../../../node_modules/@phosphor-icons/react/dist/csr/DotsThreeCircleVertical.es.js";
|
|
179
|
+
import { BugBeetleIcon as hi } from "../../../node_modules/@phosphor-icons/react/dist/csr/BugBeetle.es.js";
|
|
180
|
+
import { EnvelopeIcon as wi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Envelope.es.js";
|
|
181
|
+
import { ShieldSlashIcon as Si } from "../../../node_modules/@phosphor-icons/react/dist/csr/ShieldSlash.es.js";
|
|
182
|
+
import { ArrowSquareInIcon as gi } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowSquareIn.es.js";
|
|
183
|
+
import { RowsIcon as di } from "../../../node_modules/@phosphor-icons/react/dist/csr/Rows.es.js";
|
|
184
|
+
import { GearFineIcon as ki } from "../../../node_modules/@phosphor-icons/react/dist/csr/GearFine.es.js";
|
|
185
|
+
import { MoonIcon as Pi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Moon.es.js";
|
|
186
|
+
import { TrendDownIcon as Ai } from "../../../node_modules/@phosphor-icons/react/dist/csr/TrendDown.es.js";
|
|
187
|
+
import { TrendUpIcon as Di } from "../../../node_modules/@phosphor-icons/react/dist/csr/TrendUp.es.js";
|
|
188
|
+
import { IntersectIcon as Bi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Intersect.es.js";
|
|
189
|
+
import { MagicWandIcon as Li } from "../../../node_modules/@phosphor-icons/react/dist/csr/MagicWand.es.js";
|
|
190
|
+
import { PasswordIcon as Ti } from "../../../node_modules/@phosphor-icons/react/dist/csr/Password.es.js";
|
|
191
|
+
import { BuildingsIcon as Ui } from "../../../node_modules/@phosphor-icons/react/dist/csr/Buildings.es.js";
|
|
192
|
+
import { ArrowRightIcon as bi } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowRight.es.js";
|
|
193
|
+
import { HeadsetIcon as yi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Headset.es.js";
|
|
194
|
+
import { NetworkIcon as Fi } from "../../../node_modules/@phosphor-icons/react/dist/csr/Network.es.js";
|
|
195
|
+
import { NetworkSlashIcon as Ri } from "../../../node_modules/@phosphor-icons/react/dist/csr/NetworkSlash.es.js";
|
|
196
|
+
import { TrafficSignalIcon as Mi } from "../../../node_modules/@phosphor-icons/react/dist/csr/TrafficSignal.es.js";
|
|
197
|
+
import { FileMagnifyingGlassIcon as xi } from "../../../node_modules/@phosphor-icons/react/dist/csr/FileMagnifyingGlass.es.js";
|
|
198
|
+
import { ArrowsInSimpleIcon as vi } from "../../../node_modules/@phosphor-icons/react/dist/csr/ArrowsInSimple.es.js";
|
|
199
|
+
import { QueueIcon as Ni } from "../../../node_modules/@phosphor-icons/react/dist/csr/Queue.es.js";
|
|
200
|
+
import { DeviceMobileSpeakerIcon as qi } from "../../../node_modules/@phosphor-icons/react/dist/csr/DeviceMobileSpeaker.es.js";
|
|
201
|
+
import { CameraIcon as Ei } from "../../../node_modules/@phosphor-icons/react/dist/csr/Camera.es.js";
|
|
202
|
+
const Dt = {
|
|
203
|
+
AidaLogo: r,
|
|
204
|
+
Activity: Mi,
|
|
205
|
+
FileSearch: xi,
|
|
206
|
+
MagnifyingGlass: i,
|
|
207
|
+
CaretDown: e,
|
|
208
|
+
CaretUpDown: m,
|
|
209
|
+
Info: a,
|
|
210
|
+
BellSimple: t,
|
|
211
|
+
Monitor: n,
|
|
212
|
+
ChartLine: s,
|
|
213
|
+
ArrowsLeftRight: c,
|
|
214
|
+
Phone: p,
|
|
215
|
+
LinkSimple: l,
|
|
216
|
+
Swap: f,
|
|
217
|
+
FileArchive: I,
|
|
218
|
+
FilePdf: $,
|
|
219
|
+
BoundingBox: C,
|
|
220
|
+
TreeStructure: u,
|
|
221
|
+
ShoppingCart: h,
|
|
222
|
+
Code: w,
|
|
223
|
+
FileTxt: S,
|
|
224
|
+
FileZip: g,
|
|
225
|
+
TerminalWindow: d,
|
|
220
226
|
User: k,
|
|
221
|
-
Lock:
|
|
222
|
-
FileDoc:
|
|
223
|
-
Question:
|
|
224
|
-
SignOut:
|
|
227
|
+
Lock: P,
|
|
228
|
+
FileDoc: A,
|
|
229
|
+
Question: D,
|
|
230
|
+
SignOut: B,
|
|
225
231
|
X: o,
|
|
226
|
-
FunnelSimple:
|
|
227
|
-
Plus:
|
|
228
|
-
WarningCircle:
|
|
229
|
-
XCircle:
|
|
232
|
+
FunnelSimple: L,
|
|
233
|
+
Plus: T,
|
|
234
|
+
WarningCircle: U,
|
|
235
|
+
XCircle: b,
|
|
230
236
|
CheckCircle: y,
|
|
231
|
-
Plugs:
|
|
232
|
-
Plug:
|
|
233
|
-
List:
|
|
237
|
+
Plugs: F,
|
|
238
|
+
Plug: R,
|
|
239
|
+
List: M,
|
|
234
240
|
ArrowCircleLeft: x,
|
|
235
|
-
ArrowCircleRight:
|
|
236
|
-
RadioButton:
|
|
241
|
+
ArrowCircleRight: v,
|
|
242
|
+
RadioButton: N,
|
|
237
243
|
Gear: q,
|
|
238
|
-
UserPlus:
|
|
239
|
-
ArrowLeft:
|
|
240
|
-
Circle:
|
|
241
|
-
Star:
|
|
242
|
-
Notepad:
|
|
243
|
-
Export:
|
|
244
|
-
Binoculars:
|
|
245
|
-
GitBranch:
|
|
246
|
-
Pencil:
|
|
247
|
-
LinkBreak:
|
|
248
|
-
Pause:
|
|
249
|
-
DotsThreeVertical:
|
|
250
|
-
PencilSimple:
|
|
251
|
-
Trash:
|
|
252
|
-
Equals:
|
|
253
|
-
BracketsAngle:
|
|
254
|
-
BracketsSquare:
|
|
255
|
-
SelectionInverse:
|
|
256
|
-
BracketsCurly:
|
|
257
|
-
CaretRight:
|
|
258
|
-
ArrowsDownUp:
|
|
259
|
-
DotsThree:
|
|
260
|
-
Clock:
|
|
261
|
-
Prohibit:
|
|
262
|
-
ListPlus:
|
|
263
|
-
Square:
|
|
264
|
-
CaretLeft:
|
|
265
|
-
Upload:
|
|
266
|
-
CloudSlash:
|
|
267
|
-
GitFork:
|
|
268
|
-
Textbox:
|
|
269
|
-
DeviceMobileCamera:
|
|
270
|
-
CaretUp:
|
|
271
|
-
Swatches:
|
|
272
|
-
CreditCard:
|
|
273
|
-
Palette:
|
|
274
|
-
CircleNotch:
|
|
275
|
-
PencilSimpleLine:
|
|
276
|
-
Copy:
|
|
277
|
-
Lightbulb:
|
|
278
|
-
ArrowBendUpLeft:
|
|
279
|
-
Check:
|
|
280
|
-
ChartPie:
|
|
281
|
-
Percent:
|
|
282
|
-
Hash:
|
|
283
|
-
CurrencyCircleDollar:
|
|
284
|
-
CurrencyDollar:
|
|
285
|
-
ChartBar:
|
|
286
|
-
ArrowsClockwise:
|
|
287
|
-
CopySimple:
|
|
288
|
-
FlagBanner:
|
|
289
|
-
CalendarBlank:
|
|
290
|
-
Money:
|
|
291
|
-
Play:
|
|
292
|
-
Flag:
|
|
293
|
-
CaretDoubleLeft:
|
|
294
|
-
CaretDoubleRight:
|
|
295
|
-
ShareNetwork:
|
|
296
|
-
ToggleLeft:
|
|
297
|
-
PlusCircle:
|
|
298
|
-
UserCircle:
|
|
299
|
-
CaretCircleRight:
|
|
300
|
-
MinusCircle:
|
|
301
|
-
Archive:
|
|
302
|
-
Desktop:
|
|
303
|
-
Sun:
|
|
304
|
-
Translate:
|
|
305
|
-
CheckSquare:
|
|
306
|
-
CheckSquareOffset:
|
|
307
|
-
UploadSimple:
|
|
308
|
-
FileArrowUp:
|
|
309
|
-
FileCsv:
|
|
310
|
-
DownloadSimple:
|
|
311
|
-
ArrowCounterClockwise:
|
|
312
|
-
Bank:
|
|
313
|
-
ShieldWarning:
|
|
314
|
-
UserSwitch:
|
|
315
|
-
Lightning:
|
|
316
|
-
MapPin:
|
|
317
|
-
Eraser:
|
|
318
|
-
Vault:
|
|
319
|
-
ClockClockwise:
|
|
320
|
-
Repeat:
|
|
321
|
-
Eye:
|
|
322
|
-
EyeSlash:
|
|
323
|
-
EyeClosed:
|
|
324
|
-
DotsSixVertical:
|
|
325
|
-
DotsNine:
|
|
326
|
-
Cards:
|
|
327
|
-
ArrowCircleUpLeft:
|
|
328
|
-
Wallet:
|
|
329
|
-
ArrowBendUpRight:
|
|
330
|
-
IdentificationCard:
|
|
331
|
-
Notification:
|
|
332
|
-
ListBullets:
|
|
333
|
-
Download:
|
|
334
|
-
ArrowsOutSimple:
|
|
335
|
-
ClockCountdown:
|
|
336
|
-
ClockCounterClockwise:
|
|
337
|
-
Image:
|
|
338
|
-
ToggleRight:
|
|
339
|
-
ArrowCircleUp:
|
|
340
|
-
ArrowUp:
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
244
|
+
UserPlus: E,
|
|
245
|
+
ArrowLeft: G,
|
|
246
|
+
Circle: W,
|
|
247
|
+
Star: O,
|
|
248
|
+
Notepad: V,
|
|
249
|
+
Export: H,
|
|
250
|
+
Binoculars: j,
|
|
251
|
+
GitBranch: Z,
|
|
252
|
+
Pencil: J,
|
|
253
|
+
LinkBreak: Y,
|
|
254
|
+
Pause: _,
|
|
255
|
+
DotsThreeVertical: oo,
|
|
256
|
+
PencilSimple: ro,
|
|
257
|
+
Trash: io,
|
|
258
|
+
Equals: eo,
|
|
259
|
+
BracketsAngle: mo,
|
|
260
|
+
BracketsSquare: ao,
|
|
261
|
+
SelectionInverse: to,
|
|
262
|
+
BracketsCurly: no,
|
|
263
|
+
CaretRight: so,
|
|
264
|
+
ArrowsDownUp: co,
|
|
265
|
+
DotsThree: po,
|
|
266
|
+
Clock: lo,
|
|
267
|
+
Prohibit: fo,
|
|
268
|
+
ListPlus: Io,
|
|
269
|
+
Square: $o,
|
|
270
|
+
CaretLeft: Co,
|
|
271
|
+
Upload: uo,
|
|
272
|
+
CloudSlash: ho,
|
|
273
|
+
GitFork: wo,
|
|
274
|
+
Textbox: So,
|
|
275
|
+
DeviceMobileCamera: go,
|
|
276
|
+
CaretUp: ko,
|
|
277
|
+
Swatches: Po,
|
|
278
|
+
CreditCard: Ao,
|
|
279
|
+
Palette: Do,
|
|
280
|
+
CircleNotch: Bo,
|
|
281
|
+
PencilSimpleLine: Lo,
|
|
282
|
+
Copy: To,
|
|
283
|
+
Lightbulb: Uo,
|
|
284
|
+
ArrowBendUpLeft: bo,
|
|
285
|
+
Check: yo,
|
|
286
|
+
ChartPie: Fo,
|
|
287
|
+
Percent: Ro,
|
|
288
|
+
Hash: Mo,
|
|
289
|
+
CurrencyCircleDollar: xo,
|
|
290
|
+
CurrencyDollar: vo,
|
|
291
|
+
ChartBar: No,
|
|
292
|
+
ArrowsClockwise: qo,
|
|
293
|
+
CopySimple: Eo,
|
|
294
|
+
FlagBanner: Go,
|
|
295
|
+
CalendarBlank: Wo,
|
|
296
|
+
Money: Oo,
|
|
297
|
+
Play: Vo,
|
|
298
|
+
Flag: Ho,
|
|
299
|
+
CaretDoubleLeft: Ko,
|
|
300
|
+
CaretDoubleRight: Qo,
|
|
301
|
+
ShareNetwork: Xo,
|
|
302
|
+
ToggleLeft: zo,
|
|
303
|
+
PlusCircle: jo,
|
|
304
|
+
UserCircle: Zo,
|
|
305
|
+
CaretCircleRight: Jo,
|
|
306
|
+
MinusCircle: Yo,
|
|
307
|
+
Archive: _o,
|
|
308
|
+
Desktop: or,
|
|
309
|
+
Sun: rr,
|
|
310
|
+
Translate: ir,
|
|
311
|
+
CheckSquare: er,
|
|
312
|
+
CheckSquareOffset: mr,
|
|
313
|
+
UploadSimple: ar,
|
|
314
|
+
FileArrowUp: tr,
|
|
315
|
+
FileCsv: nr,
|
|
316
|
+
DownloadSimple: sr,
|
|
317
|
+
ArrowCounterClockwise: cr,
|
|
318
|
+
Bank: pr,
|
|
319
|
+
ShieldWarning: lr,
|
|
320
|
+
UserSwitch: fr,
|
|
321
|
+
Lightning: Ir,
|
|
322
|
+
MapPin: $r,
|
|
323
|
+
Eraser: Cr,
|
|
324
|
+
Vault: ur,
|
|
325
|
+
ClockClockwise: hr,
|
|
326
|
+
Repeat: wr,
|
|
327
|
+
Eye: Sr,
|
|
328
|
+
EyeSlash: gr,
|
|
329
|
+
EyeClosed: dr,
|
|
330
|
+
DotsSixVertical: kr,
|
|
331
|
+
DotsNine: Pr,
|
|
332
|
+
Cards: Ar,
|
|
333
|
+
ArrowCircleUpLeft: Dr,
|
|
334
|
+
Wallet: Br,
|
|
335
|
+
ArrowBendUpRight: Lr,
|
|
336
|
+
IdentificationCard: Tr,
|
|
337
|
+
Notification: Ur,
|
|
338
|
+
ListBullets: br,
|
|
339
|
+
Download: yr,
|
|
340
|
+
ArrowsOutSimple: Fr,
|
|
341
|
+
ClockCountdown: Rr,
|
|
342
|
+
ClockCounterClockwise: Mr,
|
|
343
|
+
Image: xr,
|
|
344
|
+
ToggleRight: vr,
|
|
345
|
+
ArrowCircleUp: Nr,
|
|
346
|
+
ArrowUp: qr,
|
|
347
|
+
File: X,
|
|
348
|
+
Table: z,
|
|
349
|
+
ArrowDown: Er,
|
|
350
|
+
ArrowUpRight: Gr,
|
|
351
|
+
PlayCircle: Wr,
|
|
352
|
+
PauseCircle: Or,
|
|
353
|
+
SquaresFour: Vr,
|
|
354
|
+
LinkSimpleHorizontal: Hr,
|
|
355
|
+
Key: Kr,
|
|
356
|
+
LockKey: Qr,
|
|
357
|
+
Detective: Xr,
|
|
358
|
+
Calendar: zr,
|
|
359
|
+
TextColumns: jr,
|
|
360
|
+
Columns: Zr,
|
|
361
|
+
ImageSquare: Jr,
|
|
362
|
+
PushPin: Yr,
|
|
363
|
+
PushPinSimple: _r,
|
|
364
|
+
PushPinSimpleSlash: oi,
|
|
365
|
+
ShieldCheck: ri,
|
|
366
|
+
Package: ii,
|
|
367
|
+
ArrowElbowDownRight: ei,
|
|
368
|
+
BellSimpleSlash: mi,
|
|
369
|
+
BellRinging: ai,
|
|
370
|
+
GearSix: ti,
|
|
371
|
+
TextT: ni,
|
|
372
|
+
NumberCircleOne: si,
|
|
373
|
+
ListNumbers: ci,
|
|
374
|
+
Warning: pi,
|
|
375
|
+
SortAscending: li,
|
|
376
|
+
ArrowClockwise: fi,
|
|
377
|
+
Sparkle: Ii,
|
|
378
|
+
ThumbsUp: $i,
|
|
379
|
+
ThumbsDown: Ci,
|
|
380
|
+
DotsThreeCircleVertical: ui,
|
|
381
|
+
BugBeetle: hi,
|
|
382
|
+
Envelope: wi,
|
|
383
|
+
ShieldSlash: Si,
|
|
384
|
+
ArrowSquareIn: gi,
|
|
385
|
+
Rows: di,
|
|
386
|
+
GearFine: ki,
|
|
387
|
+
Moon: Pi,
|
|
388
|
+
TrendDown: Ai,
|
|
389
|
+
TrendUp: Di,
|
|
390
|
+
Intersect: Bi,
|
|
383
391
|
close: o,
|
|
384
|
-
MagicWand:
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
392
|
+
MagicWand: Li,
|
|
393
|
+
Stop: K,
|
|
394
|
+
Microphone: Q,
|
|
395
|
+
Password: Ti,
|
|
396
|
+
Buildings: Ui,
|
|
397
|
+
ArrowRight: bi,
|
|
398
|
+
Headset: yi,
|
|
399
|
+
Network: Fi,
|
|
400
|
+
NetworkSlash: Ri,
|
|
401
|
+
ArrowsInSimple: vi,
|
|
402
|
+
Queue: Ni,
|
|
403
|
+
DeviceMobileSpeaker: qi,
|
|
404
|
+
Camera: Ei
|
|
395
405
|
};
|
|
396
406
|
export {
|
|
397
|
-
|
|
407
|
+
Dt as IconList
|
|
398
408
|
};
|