@availity/mui-empty-state 0.2.4 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/index.d.mts +16 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.js +901 -98
- package/dist/index.mjs +899 -97
- package/package.json +1 -1
- package/src/assets/Instructional_Gray.tsx +164 -0
- package/src/assets/No-Favorites_Gray.tsx +110 -0
- package/src/assets/No-Messages_Gray.tsx +114 -0
- package/src/assets/No-Notifications_Gray.tsx +124 -0
- package/src/assets/No-Patients_Gray.tsx +136 -0
- package/src/assets/Success-Confirmation_Gray.tsx +103 -0
- package/src/lib/EmptyState.stories.tsx +183 -66
- package/src/lib/EmptyStateImage.stories.tsx +15 -14
- package/src/lib/EmptyStateImage.tsx +17 -4
package/dist/index.mjs
CHANGED
|
@@ -40,64 +40,10 @@ import { forwardRef } from "react";
|
|
|
40
40
|
import { styled } from "@mui/material/styles";
|
|
41
41
|
import { Box } from "@availity/mui-layout";
|
|
42
42
|
|
|
43
|
-
// src/assets/404-Page-Not-Found_Gray.tsx
|
|
44
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
45
|
-
var PageNotFound = () => {
|
|
46
|
-
return /* @__PURE__ */ jsxs(
|
|
47
|
-
"svg",
|
|
48
|
-
{
|
|
49
|
-
id: "Layer_1",
|
|
50
|
-
"data-name": "Layer 1",
|
|
51
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
52
|
-
viewBox: "0 0 144 144",
|
|
53
|
-
"aria-label": "Page Not Found",
|
|
54
|
-
"aria-hidden": "true",
|
|
55
|
-
children: [
|
|
56
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("style", { children: `.cls-1 {
|
|
57
|
-
fill: #fff;
|
|
58
|
-
stroke: #d7dae0;
|
|
59
|
-
stroke-linecap: round;
|
|
60
|
-
stroke-linejoin: round;
|
|
61
|
-
stroke-width: 4px;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.cls-2 {
|
|
65
|
-
fill: #d7dae0;
|
|
66
|
-
stroke-width: 0px;
|
|
67
|
-
}` }) }),
|
|
68
|
-
/* @__PURE__ */ jsx("circle", { className: "cls-1", cx: "72", cy: "72", r: "65.36" }),
|
|
69
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
70
|
-
/* @__PURE__ */ jsx(
|
|
71
|
-
"path",
|
|
72
|
-
{
|
|
73
|
-
className: "cls-2",
|
|
74
|
-
d: "m41.45,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
75
|
-
}
|
|
76
|
-
),
|
|
77
|
-
/* @__PURE__ */ jsx(
|
|
78
|
-
"path",
|
|
79
|
-
{
|
|
80
|
-
className: "cls-2",
|
|
81
|
-
d: "m57.62,70.71c0-9.2,3.85-17.94,14.3-17.94s14.46,8.79,14.46,17.94-4.11,17.94-14.4,17.94-14.35-8.79-14.35-17.94Zm20.23,0c0-7.59-1.66-11.7-5.88-11.7s-5.88,4.11-5.88,11.7,1.61,11.7,5.82,11.7,5.93-4.11,5.93-11.7Z"
|
|
82
|
-
}
|
|
83
|
-
),
|
|
84
|
-
/* @__PURE__ */ jsx(
|
|
85
|
-
"path",
|
|
86
|
-
{
|
|
87
|
-
className: "cls-2",
|
|
88
|
-
d: "m105.25,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
89
|
-
}
|
|
90
|
-
)
|
|
91
|
-
] })
|
|
92
|
-
]
|
|
93
|
-
}
|
|
94
|
-
);
|
|
95
|
-
};
|
|
96
|
-
|
|
97
43
|
// src/assets/Content-Loading_Gray.tsx
|
|
98
|
-
import { jsx
|
|
44
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
99
45
|
var ContentLoading = () => {
|
|
100
|
-
return /* @__PURE__ */
|
|
46
|
+
return /* @__PURE__ */ jsxs(
|
|
101
47
|
"svg",
|
|
102
48
|
{
|
|
103
49
|
version: "1.1",
|
|
@@ -111,7 +57,7 @@ var ContentLoading = () => {
|
|
|
111
57
|
"aria-label": "Content Loading",
|
|
112
58
|
"aria-hidden": "true",
|
|
113
59
|
children: [
|
|
114
|
-
/* @__PURE__ */
|
|
60
|
+
/* @__PURE__ */ jsx("style", { type: "text/css", children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
115
61
|
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
116
62
|
.st2{fill:#FFFFFF;}
|
|
117
63
|
.st3{fill:#BBD6EB;}
|
|
@@ -188,16 +134,16 @@ var ContentLoading = () => {
|
|
|
188
134
|
.st74{fill:#E5E5E5;}
|
|
189
135
|
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
190
136
|
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}` }),
|
|
191
|
-
/* @__PURE__ */
|
|
192
|
-
/* @__PURE__ */
|
|
137
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
138
|
+
/* @__PURE__ */ jsx(
|
|
193
139
|
"path",
|
|
194
140
|
{
|
|
195
141
|
className: "st4",
|
|
196
142
|
d: "M118.7,52c0.5-2.3,0.8-4.7,0.8-7.1c0-17.6-14.3-31.9-31.9-31.9c-13,0-24.2,7.8-29.1,18.9\n c-3.7-2.1-7.9-3.3-12.4-3.3c-13.8,0-24.9,11.2-24.9,24.9c0,0,0,0.1,0,0.1C11.3,56.7,4,65.9,4,76.8C4,90.2,14.9,101,28.2,101h87.1\n c13.6,0,24.6-11,24.6-24.6C140,64,130.7,53.7,118.7,52z"
|
|
197
143
|
}
|
|
198
144
|
),
|
|
199
|
-
/* @__PURE__ */
|
|
200
|
-
/* @__PURE__ */
|
|
145
|
+
/* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("circle", { className: "st71", cx: "72", cy: "101", r: "30" }) }),
|
|
146
|
+
/* @__PURE__ */ jsx(
|
|
201
147
|
"path",
|
|
202
148
|
{
|
|
203
149
|
className: "st51",
|
|
@@ -211,9 +157,9 @@ var ContentLoading = () => {
|
|
|
211
157
|
};
|
|
212
158
|
|
|
213
159
|
// src/assets/Error_Gray.tsx
|
|
214
|
-
import { jsx as
|
|
160
|
+
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
215
161
|
var Error2 = () => {
|
|
216
|
-
return /* @__PURE__ */
|
|
162
|
+
return /* @__PURE__ */ jsxs2(
|
|
217
163
|
"svg",
|
|
218
164
|
{
|
|
219
165
|
version: "1.1",
|
|
@@ -227,7 +173,7 @@ var Error2 = () => {
|
|
|
227
173
|
"aria-label": "Error",
|
|
228
174
|
"aria-hidden": "true",
|
|
229
175
|
children: [
|
|
230
|
-
/* @__PURE__ */
|
|
176
|
+
/* @__PURE__ */ jsx2("style", { type: "text/css", children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
231
177
|
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
232
178
|
.st2{fill:#FFFFFF;}
|
|
233
179
|
.st3{fill:#BBD6EB;}
|
|
@@ -304,39 +250,39 @@ var Error2 = () => {
|
|
|
304
250
|
.st74{fill:#E5E5E5;}
|
|
305
251
|
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
306
252
|
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}` }),
|
|
307
|
-
/* @__PURE__ */
|
|
308
|
-
/* @__PURE__ */
|
|
253
|
+
/* @__PURE__ */ jsx2("rect", { x: "21", y: "34.2", className: "st2", width: "101.9", height: "57.1" }),
|
|
254
|
+
/* @__PURE__ */ jsx2(
|
|
309
255
|
"path",
|
|
310
256
|
{
|
|
311
257
|
className: "st4",
|
|
312
258
|
d: "M23.4,36.6h97.2v37.1h5.1V33.6c0-1.2-1-2.2-2.2-2.2H20.5c-1.2,0-2.2,1-2.2,2.2v40.1h5.1V36.6z"
|
|
313
259
|
}
|
|
314
260
|
),
|
|
315
|
-
/* @__PURE__ */
|
|
261
|
+
/* @__PURE__ */ jsx2(
|
|
316
262
|
"path",
|
|
317
263
|
{
|
|
318
264
|
className: "st4",
|
|
319
265
|
d: "M126.1,97.3H17.9L4,126.4H140L126.1,97.3z M58.5,122.6L61,115H83l2.4,7.6H58.5z M24.3,111.2l4.7-10.1H115\n l4.7,10.1H24.3z"
|
|
320
266
|
}
|
|
321
267
|
),
|
|
322
|
-
/* @__PURE__ */
|
|
323
|
-
/* @__PURE__ */
|
|
324
|
-
/* @__PURE__ */
|
|
268
|
+
/* @__PURE__ */ jsx2("polygon", { className: "st2", points: "61,115 58.5,122.6 85.5,122.6 83,115 " }),
|
|
269
|
+
/* @__PURE__ */ jsx2("polygon", { className: "st2", points: "29,101.2 24.3,111.2 119.7,111.2 115,101.2 " }),
|
|
270
|
+
/* @__PURE__ */ jsx2(
|
|
325
271
|
"path",
|
|
326
272
|
{
|
|
327
273
|
className: "st4",
|
|
328
274
|
d: "M135.3,131.7H8.7c-0.9,0-1.9-0.4-2.5-1.1L4,128.2H140l-2.2,2.5C137.2,131.3,136.3,131.7,135.3,131.7z"
|
|
329
275
|
}
|
|
330
276
|
),
|
|
331
|
-
/* @__PURE__ */
|
|
332
|
-
/* @__PURE__ */
|
|
277
|
+
/* @__PURE__ */ jsxs2("g", { children: [
|
|
278
|
+
/* @__PURE__ */ jsx2(
|
|
333
279
|
"path",
|
|
334
280
|
{
|
|
335
281
|
className: "st2",
|
|
336
282
|
d: "M32.3,16.3v74.3c0,2.5,1.8,1.7,4.1,1.7h71.3c2.3,0,4.1,0.8,4.1-1.7V16.3c0-2.5-1.8-4.6-4.1-4.6H36.4\n C34.1,11.7,32.3,13.8,32.3,16.3z"
|
|
337
283
|
}
|
|
338
284
|
),
|
|
339
|
-
/* @__PURE__ */
|
|
285
|
+
/* @__PURE__ */ jsx2(
|
|
340
286
|
"path",
|
|
341
287
|
{
|
|
342
288
|
className: "st4",
|
|
@@ -344,15 +290,15 @@ var Error2 = () => {
|
|
|
344
290
|
}
|
|
345
291
|
)
|
|
346
292
|
] }),
|
|
347
|
-
/* @__PURE__ */
|
|
348
|
-
/* @__PURE__ */
|
|
293
|
+
/* @__PURE__ */ jsxs2("g", { children: [
|
|
294
|
+
/* @__PURE__ */ jsx2(
|
|
349
295
|
"path",
|
|
350
296
|
{
|
|
351
297
|
className: "st71",
|
|
352
298
|
d: "M70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3\n C72.8,27.2,71.2,27.2,70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3\n C72.8,27.2,71.2,27.2,70.5,28.3z"
|
|
353
299
|
}
|
|
354
300
|
),
|
|
355
|
-
/* @__PURE__ */
|
|
301
|
+
/* @__PURE__ */ jsx2("g", { children: /* @__PURE__ */ jsx2(
|
|
356
302
|
"path",
|
|
357
303
|
{
|
|
358
304
|
className: "st51",
|
|
@@ -360,7 +306,7 @@ var Error2 = () => {
|
|
|
360
306
|
}
|
|
361
307
|
) })
|
|
362
308
|
] }),
|
|
363
|
-
/* @__PURE__ */
|
|
309
|
+
/* @__PURE__ */ jsx2(
|
|
364
310
|
"polygon",
|
|
365
311
|
{
|
|
366
312
|
className: "st4",
|
|
@@ -372,6 +318,178 @@ var Error2 = () => {
|
|
|
372
318
|
);
|
|
373
319
|
};
|
|
374
320
|
|
|
321
|
+
// src/assets/Instructional_Gray.tsx
|
|
322
|
+
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
323
|
+
var Instructional = () => {
|
|
324
|
+
return /* @__PURE__ */ jsxs3(
|
|
325
|
+
"svg",
|
|
326
|
+
{
|
|
327
|
+
version: "1.1",
|
|
328
|
+
id: "Layer_1",
|
|
329
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
330
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
331
|
+
x: "0px",
|
|
332
|
+
y: "0px",
|
|
333
|
+
viewBox: "0 0 144 144",
|
|
334
|
+
xmlSpace: "preserve",
|
|
335
|
+
children: [
|
|
336
|
+
/* @__PURE__ */ jsx3("style", { type: "text/css", children: `
|
|
337
|
+
.st0{fill:#FFFFFF;}
|
|
338
|
+
.st1{fill:#EEEFF2;}
|
|
339
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
340
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
341
|
+
.st4{fill:#BBD6EB;}
|
|
342
|
+
.st5{fill:#F3F5F7;}
|
|
343
|
+
|
|
344
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000035497992103638269770000018374492576280873104_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
345
|
+
|
|
346
|
+
.st7{fill:url(#SVGID_00000042720466532710417960000009870572214972601997_);stroke:url(#SVGID_00000111183624540837613140000013772511539878201991_);stroke-miterlimit:10;}
|
|
347
|
+
.st8{clip-path:url(#SVGID_00000139267643247673710160000017865907606426505915_);}
|
|
348
|
+
.st9{fill:url(#SVGID_00000047756973587136332170000010856034419044401819_);}
|
|
349
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
350
|
+
.st11{fill:url(#SVGID_00000150823412825420690840000000684024142309916296_);}
|
|
351
|
+
.st12{fill:url(#SVGID_00000111896622840106019840000009088932348696486023_);}
|
|
352
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000165941126711736631610000017448482304754074286_);stroke-miterlimit:10;}
|
|
353
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
354
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
355
|
+
|
|
356
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
357
|
+
|
|
358
|
+
.st17{fill:url(#SVGID_00000071522878445984576990000014711135536316627121_);stroke:url(#SVGID_00000106144183999386620150000006648806091928585367_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
359
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
360
|
+
.st19{fill:#838795;}
|
|
361
|
+
|
|
362
|
+
.st20{fill:url(#SVGID_00000054250827507555337680000010562674212370760630_);stroke:url(#SVGID_00000087410454731144265330000007574080003725661573_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
363
|
+
|
|
364
|
+
.st21{fill:url(#SVGID_00000014604442417005633350000017138343585206331009_);stroke:url(#SVGID_00000129928615435070632890000007787171265821044357_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
365
|
+
|
|
366
|
+
.st22{fill:url(#SVGID_00000058586565941025280620000000137893826539205786_);stroke:url(#SVGID_00000070120874691301478190000006691011536318545813_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
367
|
+
|
|
368
|
+
.st23{fill:url(#SVGID_00000006682162367753945460000007343350288586794134_);stroke:url(#SVGID_00000165235692958871424220000000018132329633496757_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
369
|
+
|
|
370
|
+
.st24{fill:url(#SVGID_00000101087167471161338410000011680490401128424839_);stroke:url(#SVGID_00000178925639852198419860000008153045202009691266_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
371
|
+
|
|
372
|
+
.st25{fill:url(#SVGID_00000054254698003757486330000017138529428402583997_);stroke:url(#SVGID_00000075128194765211875290000012936833574829177526_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
373
|
+
|
|
374
|
+
.st26{fill:url(#SVGID_00000164478630541955300490000015155115857204979385_);stroke:url(#SVGID_00000048482966721489705310000017205336930347062716_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
375
|
+
|
|
376
|
+
.st27{fill:url(#SVGID_00000076579773131692825260000002901152595246597005_);stroke:url(#SVGID_00000088824609386115080920000003237904249826368955_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
377
|
+
.st28{fill:url(#SVGID_00000122705501776788987360000009981889961100274590_);}
|
|
378
|
+
.st29{fill:url(#SVGID_00000117643577806513194730000017438832636578496128_);}
|
|
379
|
+
.st30{fill:url(#SVGID_00000085932580167577205070000000396301042787515300_);}
|
|
380
|
+
.st31{fill:url(#SVGID_00000098216315496909447270000003630523340380846495_);}
|
|
381
|
+
.st32{fill:url(#SVGID_00000147213597468934838700000016823230573757367961_);}
|
|
382
|
+
.st33{fill:url(#SVGID_00000170249616896475130640000015329950756274349707_);}
|
|
383
|
+
.st34{fill:url(#SVGID_00000078723063421485199340000016629676669448181149_);}
|
|
384
|
+
.st35{fill:url(#SVGID_00000155859403425201418960000017608825807189311925_);}
|
|
385
|
+
.st36{fill:url(#SVGID_00000182498480255359921720000014633866446748197270_);}
|
|
386
|
+
.st37{fill:url(#SVGID_00000146465772797877521240000006383314979418321546_);}
|
|
387
|
+
.st38{fill:url(#SVGID_00000150817666483523901650000007262272247675373699_);}
|
|
388
|
+
.st39{fill:url(#SVGID_00000077284349595457113940000012959357420054749843_);}
|
|
389
|
+
.st40{fill:url(#SVGID_00000181808499208550122880000006868656987009823647_);}
|
|
390
|
+
|
|
391
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000049221490929772488340000010510196580452788362_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
392
|
+
|
|
393
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000013876132925596882360000011348137417499028099_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
394
|
+
|
|
395
|
+
.st43{fill:url(#SVGID_00000090984827802826817800000007082883778043073923_);stroke:url(#SVGID_00000005968576943215117700000014696669880712818573_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
396
|
+
.st44{clip-path:url(#SVGID_00000096041881159327325440000000392266777811745714_);}
|
|
397
|
+
.st45{fill:#D7DAE0;}
|
|
398
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
399
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
400
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
401
|
+
.st49{fill:#E5E5E5;}
|
|
402
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
403
|
+
|
|
404
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
405
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
406
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
407
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
408
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
409
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
410
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
411
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
412
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
413
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
414
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
415
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
416
|
+
` }),
|
|
417
|
+
/* @__PURE__ */ jsxs3("g", { children: [
|
|
418
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
419
|
+
"path",
|
|
420
|
+
{
|
|
421
|
+
className: "st45",
|
|
422
|
+
d: "M43,72.1c-0.9-0.9-0.9-2.4,0-3.2c0.9-0.9,2.4-0.9,3.2,0l4.2,4.2l12.8-12.8c-0.6-0.7-1.5-1.2-2.5-1.2H41.5\n c-1.8,0-3.3,1.5-3.3,3.3v19.2c0,1.8,1.5,3.3,3.3,3.3h19.2c1.8,0,3.3-1.5,3.3-3.3V65.9L50.4,79.5L43,72.1z"
|
|
423
|
+
}
|
|
424
|
+
) }),
|
|
425
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
426
|
+
"path",
|
|
427
|
+
{
|
|
428
|
+
className: "st45",
|
|
429
|
+
d: "M43,32.8c-0.9-0.9-0.9-2.4,0-3.2c0.9-0.9,2.4-0.9,3.2,0l4.2,4.2L63.1,21c-0.6-0.7-1.5-1.2-2.5-1.2H41.5\n c-1.8,0-3.3,1.5-3.3,3.3v19.2c0,1.8,1.5,3.3,3.3,3.3h19.2c1.8,0,3.3-1.5,3.3-3.3V26.7L50.4,40.2L43,32.8z"
|
|
430
|
+
}
|
|
431
|
+
) }),
|
|
432
|
+
/* @__PURE__ */ jsxs3("g", { children: [
|
|
433
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
434
|
+
"path",
|
|
435
|
+
{
|
|
436
|
+
className: "st1",
|
|
437
|
+
d: "M106.2,69.7H74.8c-0.9,0-1.6-0.7-1.6-1.6c0-0.9,0.7-1.6,1.6-1.6h31.4c0.9,0,1.6,0.7,1.6,1.6\n C107.8,68.9,107.1,69.7,106.2,69.7z"
|
|
438
|
+
}
|
|
439
|
+
) }),
|
|
440
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
441
|
+
"path",
|
|
442
|
+
{
|
|
443
|
+
className: "st1",
|
|
444
|
+
d: "M96.8,77.5h-22c-0.9,0-1.6-0.7-1.6-1.6s0.7-1.6,1.6-1.6h22c0.9,0,1.6,0.7,1.6,1.6S97.7,77.5,96.8,77.5z"
|
|
445
|
+
}
|
|
446
|
+
) })
|
|
447
|
+
] }),
|
|
448
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
449
|
+
"path",
|
|
450
|
+
{
|
|
451
|
+
className: "st45",
|
|
452
|
+
d: "M43,111.4c-0.9-0.9-0.9-2.4,0-3.2c0.9-0.9,2.4-0.9,3.2,0l4.2,4.2l12.8-12.8c-0.6-0.7-1.5-1.2-2.5-1.2H41.5\n c-1.8,0-3.3,1.5-3.3,3.3v19.2c0,1.8,1.5,3.3,3.3,3.3h19.2c1.8,0,3.3-1.5,3.3-3.3v-15.6l-13.6,13.6L43,111.4z"
|
|
453
|
+
}
|
|
454
|
+
) }),
|
|
455
|
+
/* @__PURE__ */ jsxs3("g", { children: [
|
|
456
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
457
|
+
"path",
|
|
458
|
+
{
|
|
459
|
+
className: "st1",
|
|
460
|
+
d: "M106.2,109H74.8c-0.9,0-1.6-0.7-1.6-1.6s0.7-1.6,1.6-1.6h31.4c0.9,0,1.6,0.7,1.6,1.6S107.1,109,106.2,109z"
|
|
461
|
+
}
|
|
462
|
+
) }),
|
|
463
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
464
|
+
"path",
|
|
465
|
+
{
|
|
466
|
+
className: "st1",
|
|
467
|
+
d: "M96.8,116.8h-22c-0.9,0-1.6-0.7-1.6-1.6s0.7-1.6,1.6-1.6h22c0.9,0,1.6,0.7,1.6,1.6S97.7,116.8,96.8,116.8z"
|
|
468
|
+
}
|
|
469
|
+
) })
|
|
470
|
+
] }),
|
|
471
|
+
/* @__PURE__ */ jsxs3("g", { children: [
|
|
472
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
473
|
+
"path",
|
|
474
|
+
{
|
|
475
|
+
className: "st1",
|
|
476
|
+
d: "M106.2,30.4H74.8c-0.9,0-1.6-0.7-1.6-1.6c0-0.9,0.7-1.6,1.6-1.6h31.4c0.9,0,1.6,0.7,1.6,1.6\n C107.8,29.7,107.1,30.4,106.2,30.4z"
|
|
477
|
+
}
|
|
478
|
+
) }),
|
|
479
|
+
/* @__PURE__ */ jsx3("g", { children: /* @__PURE__ */ jsx3(
|
|
480
|
+
"path",
|
|
481
|
+
{
|
|
482
|
+
className: "st1",
|
|
483
|
+
d: "M96.8,38.3h-22c-0.9,0-1.6-0.7-1.6-1.6s0.7-1.6,1.6-1.6h22c0.9,0,1.6,0.7,1.6,1.6S97.7,38.3,96.8,38.3z"
|
|
484
|
+
}
|
|
485
|
+
) })
|
|
486
|
+
] })
|
|
487
|
+
] })
|
|
488
|
+
]
|
|
489
|
+
}
|
|
490
|
+
);
|
|
491
|
+
};
|
|
492
|
+
|
|
375
493
|
// src/assets/No-Data_Gray.tsx
|
|
376
494
|
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
377
495
|
var NoData = () => {
|
|
@@ -498,10 +616,524 @@ var NoData = () => {
|
|
|
498
616
|
);
|
|
499
617
|
};
|
|
500
618
|
|
|
501
|
-
// src/assets/No-
|
|
619
|
+
// src/assets/No-Favorites_Gray.tsx
|
|
502
620
|
import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
503
|
-
var
|
|
621
|
+
var NoFavorites = () => {
|
|
504
622
|
return /* @__PURE__ */ jsxs5(
|
|
623
|
+
"svg",
|
|
624
|
+
{
|
|
625
|
+
version: "1.1",
|
|
626
|
+
id: "Layer_1",
|
|
627
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
628
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
629
|
+
x: "0px",
|
|
630
|
+
y: "0px",
|
|
631
|
+
viewBox: "0 0 144 144",
|
|
632
|
+
xmlSpace: "preserve",
|
|
633
|
+
children: [
|
|
634
|
+
/* @__PURE__ */ jsx5("style", { type: "text/css", children: `.st0{fill:#FFFFFF;}
|
|
635
|
+
.st1{fill:#EEEFF2;}
|
|
636
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
637
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
638
|
+
.st4{fill:#BBD6EB;}
|
|
639
|
+
.st5{fill:#F3F5F7;}
|
|
640
|
+
|
|
641
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000148662538220778871740000011152332432728889533_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
642
|
+
|
|
643
|
+
.st7{fill:url(#SVGID_00000156579379232410280120000013734539863699105713_);stroke:url(#SVGID_00000052826781939178134470000000751916882147463596_);stroke-miterlimit:10;}
|
|
644
|
+
.st8{clip-path:url(#SVGID_00000082337237174202977160000004098814871560034469_);}
|
|
645
|
+
.st9{fill:url(#SVGID_00000034076221840804645050000000906157506488971189_);}
|
|
646
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
647
|
+
.st11{fill:url(#SVGID_00000114770049358612698180000004687381799617523118_);}
|
|
648
|
+
.st12{fill:url(#SVGID_00000022558016286766356500000016717626110440126850_);}
|
|
649
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000173135244017826283930000007922153287932581782_);stroke-miterlimit:10;}
|
|
650
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
651
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
652
|
+
|
|
653
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
654
|
+
|
|
655
|
+
.st17{fill:url(#SVGID_00000111155651046357850970000001570412132360402049_);stroke:url(#SVGID_00000094607761234007369110000011666293472971420035_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
656
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
657
|
+
.st19{fill:#838795;}
|
|
658
|
+
|
|
659
|
+
.st20{fill:url(#SVGID_00000074431014855968854250000015203196143759065007_);stroke:url(#SVGID_00000033362955601308533250000012687597034099541889_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
660
|
+
|
|
661
|
+
.st21{fill:url(#SVGID_00000056420526666446942770000013934997485466521236_);stroke:url(#SVGID_00000008843794387869088380000016479737815830072746_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
662
|
+
|
|
663
|
+
.st22{fill:url(#SVGID_00000004528911790777353430000013695030085861871778_);stroke:url(#SVGID_00000126299878637317213600000014382403276924284301_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
664
|
+
|
|
665
|
+
.st23{fill:url(#SVGID_00000142140974777339487760000012708008962788203177_);stroke:url(#SVGID_00000063624871891024914130000010176049413357323420_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
666
|
+
|
|
667
|
+
.st24{fill:url(#SVGID_00000067936938770352140940000013088001096469246850_);stroke:url(#SVGID_00000140733298064410197960000005608664952237680021_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
668
|
+
|
|
669
|
+
.st25{fill:url(#SVGID_00000089564075070248305610000002701242717808350854_);stroke:url(#SVGID_00000160150982139931234650000000994183983454126497_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
670
|
+
|
|
671
|
+
.st26{fill:url(#SVGID_00000090975592785123195400000011294195642260301207_);stroke:url(#SVGID_00000066487613274824097860000016103365021566864534_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
672
|
+
|
|
673
|
+
.st27{fill:url(#SVGID_00000037671326413113247940000011584295988002649734_);stroke:url(#SVGID_00000081615412897715010800000012561625466272802964_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
674
|
+
.st28{fill:url(#SVGID_00000084525384841602207810000003034295679903469994_);}
|
|
675
|
+
.st29{fill:url(#SVGID_00000066478140661430326190000007551812236301453701_);}
|
|
676
|
+
.st30{fill:url(#SVGID_00000132047734159414889550000014732897841652340652_);}
|
|
677
|
+
.st31{fill:url(#SVGID_00000120523344698832401930000010148947577091486345_);}
|
|
678
|
+
.st32{fill:url(#SVGID_00000127011009119522961020000012077363359315868091_);}
|
|
679
|
+
.st33{fill:url(#SVGID_00000122716343452452721800000004300381206703874976_);}
|
|
680
|
+
.st34{fill:url(#SVGID_00000134972475891070295530000006308118525360218032_);}
|
|
681
|
+
.st35{fill:url(#SVGID_00000080165753870509383540000011864819196080287889_);}
|
|
682
|
+
.st36{fill:url(#SVGID_00000019667497923173269260000018349799703095756727_);}
|
|
683
|
+
.st37{fill:url(#SVGID_00000106148560804026248460000006807044082500379325_);}
|
|
684
|
+
.st38{fill:url(#SVGID_00000119093044740290358370000012450881341585822888_);}
|
|
685
|
+
.st39{fill:url(#SVGID_00000080917144434220955150000009178299900227210905_);}
|
|
686
|
+
.st40{fill:url(#SVGID_00000149373379086319035520000008121290840956102279_);}
|
|
687
|
+
|
|
688
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000101063885138616574640000005171131039072630434_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
689
|
+
|
|
690
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000111166788796092407490000016528688045983322002_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
691
|
+
|
|
692
|
+
.st43{fill:url(#SVGID_00000091719469688950987690000007545782467745342867_);stroke:url(#SVGID_00000093879829011319646520000016911938454308251280_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
693
|
+
.st44{clip-path:url(#SVGID_00000101062600473218442140000002984797626640614299_);}
|
|
694
|
+
.st45{fill:#D7DAE0;}
|
|
695
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
696
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
697
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
698
|
+
.st49{fill:#E5E5E5;}
|
|
699
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
700
|
+
|
|
701
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
702
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
703
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
704
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
705
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
706
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
707
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
708
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
709
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
710
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
711
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
712
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}` }),
|
|
713
|
+
/* @__PURE__ */ jsx5("path", { className: "st0", d: "M116.3,8c-5.6,0-10.2,4.6-10.2,10.2v51.5h20.4V18.2C126.6,12.6,122,8,116.3,8z" }),
|
|
714
|
+
/* @__PURE__ */ jsx5(
|
|
715
|
+
"path",
|
|
716
|
+
{
|
|
717
|
+
className: "st1",
|
|
718
|
+
d: "M130.6,18.2c0-7.9-6.4-14.2-14.2-14.2h0H106H39.4c-7.8,0-14.2,6.4-14.2,14.2v119c0,2.2,2.5,3.5,4.4,2.2\n l36.1-26.5l36,26.5c1.8,1.3,4.4,0,4.4-2.2V73.7h24.6V18.2z M126.6,69.7h-20.4V18.2c0-5.6,4.6-10.2,10.2-10.2\n c5.6,0,10.2,4.6,10.2,10.2V69.7z"
|
|
719
|
+
}
|
|
720
|
+
),
|
|
721
|
+
/* @__PURE__ */ jsx5(
|
|
722
|
+
"path",
|
|
723
|
+
{
|
|
724
|
+
className: "st57",
|
|
725
|
+
d: "M65.6,54.5c1-0.9,1.9-1.9,3-2.7c2.6-2.1,5.5-3.5,8.9-3.4c4.7,0.2,8.2,2.6,10.7,6.5c2.2,3.5,2.3,7.3,1.5,11.2\n c-0.9,4-3,7.4-5.7,10.5c-3.5,4.2-7.7,7.7-12.2,10.8C70,88.6,68,89.8,66.1,91c-0.3,0.2-0.5,0.2-0.9,0c-6.1-3.7-11.8-7.8-16.6-13\n c-2.2-2.3-4.2-4.8-5.5-7.8c-1.8-3.9-2.7-8.1-1.4-12.3c1.7-5.4,5.3-8.7,10.9-9.6c2.8-0.5,5.4,0.4,7.8,1.8\n C62.5,51.3,64.2,52.8,65.6,54.5z"
|
|
726
|
+
}
|
|
727
|
+
)
|
|
728
|
+
]
|
|
729
|
+
}
|
|
730
|
+
);
|
|
731
|
+
};
|
|
732
|
+
|
|
733
|
+
// src/assets/No-Messages_Gray.tsx
|
|
734
|
+
import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
735
|
+
var NoMessages = () => {
|
|
736
|
+
return /* @__PURE__ */ jsxs6(
|
|
737
|
+
"svg",
|
|
738
|
+
{
|
|
739
|
+
version: "1.1",
|
|
740
|
+
id: "Layer_1",
|
|
741
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
742
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
743
|
+
x: "0px",
|
|
744
|
+
y: "0px",
|
|
745
|
+
viewBox: "0 0 144 144",
|
|
746
|
+
xmlSpace: "preserve",
|
|
747
|
+
children: [
|
|
748
|
+
/* @__PURE__ */ jsx6("style", { type: "text/css", children: `.st0{fill:#FFFFFF;}
|
|
749
|
+
.st1{fill:#EEEFF2;}
|
|
750
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
751
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
752
|
+
.st4{fill:#BBD6EB;}
|
|
753
|
+
.st5{fill:#F3F5F7;}
|
|
754
|
+
|
|
755
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000060714370365864425130000000185955920634311303_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
756
|
+
|
|
757
|
+
.st7{fill:url(#SVGID_00000065757596724138621300000000453152732729273761_);stroke:url(#SVGID_00000062878577554386306470000000370442901327134393_);stroke-miterlimit:10;}
|
|
758
|
+
.st8{clip-path:url(#SVGID_00000098205624744747638420000003111382989473650618_);}
|
|
759
|
+
.st9{fill:url(#SVGID_00000176765399974604107400000016812111101932094139_);}
|
|
760
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
761
|
+
.st11{fill:url(#SVGID_00000121964451201259282970000017665399219970030492_);}
|
|
762
|
+
.st12{fill:url(#SVGID_00000098205892335675120240000013621018716677434267_);}
|
|
763
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000083053802384795834120000016767566604038480007_);stroke-miterlimit:10;}
|
|
764
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
765
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
766
|
+
|
|
767
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
768
|
+
|
|
769
|
+
.st17{fill:url(#SVGID_00000035523686545492925210000008558290859879757980_);stroke:url(#SVGID_00000083079516052433808400000007349765784093642655_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
770
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
771
|
+
.st19{fill:#838795;}
|
|
772
|
+
|
|
773
|
+
.st20{fill:url(#SVGID_00000169532212945957536830000004026213587066378427_);stroke:url(#SVGID_00000181777276742945111600000010241750128780378029_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
774
|
+
|
|
775
|
+
.st21{fill:url(#SVGID_00000101814244195495408450000009552092166940565419_);stroke:url(#SVGID_00000174596358032170933150000007755284695778618518_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
776
|
+
|
|
777
|
+
.st22{fill:url(#SVGID_00000161595701811940691780000016952635781855728032_);stroke:url(#SVGID_00000141434528463390491040000017289784066887296444_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
778
|
+
|
|
779
|
+
.st23{fill:url(#SVGID_00000144324965772338514360000004305049693701436820_);stroke:url(#SVGID_00000183940680530102925790000005944551585912236220_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
780
|
+
|
|
781
|
+
.st24{fill:url(#SVGID_00000056392848826776111750000004445265309284448948_);stroke:url(#SVGID_00000037650482937602560350000004908689296772230591_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
782
|
+
|
|
783
|
+
.st25{fill:url(#SVGID_00000037652747890874424010000009004586966890408842_);stroke:url(#SVGID_00000076572935401443522180000008103953758626031248_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
784
|
+
|
|
785
|
+
.st26{fill:url(#SVGID_00000119803121276310784820000004738500745444112534_);stroke:url(#SVGID_00000055701796383834450290000001517281003536363931_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
786
|
+
|
|
787
|
+
.st27{fill:url(#SVGID_00000154400252554386788270000008349273576146100912_);stroke:url(#SVGID_00000111187604894280758340000000303166368342537131_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
788
|
+
.st28{fill:url(#SVGID_00000111875575102298235720000005749647640315387583_);}
|
|
789
|
+
.st29{fill:url(#SVGID_00000062182472122804150290000009168192449335803527_);}
|
|
790
|
+
.st30{fill:url(#SVGID_00000017516947003537328670000010627151264703071141_);}
|
|
791
|
+
.st31{fill:url(#SVGID_00000021109002271654926840000007364779280928761273_);}
|
|
792
|
+
.st32{fill:url(#SVGID_00000183967091667941777440000005750998194075382188_);}
|
|
793
|
+
.st33{fill:url(#SVGID_00000158747031068828402990000010376151450462204559_);}
|
|
794
|
+
.st34{fill:url(#SVGID_00000135682017304202568540000000758743065399300021_);}
|
|
795
|
+
.st35{fill:url(#SVGID_00000025432229465750136100000002989460605206786491_);}
|
|
796
|
+
.st36{fill:url(#SVGID_00000028297490319574147260000007329631730813727422_);}
|
|
797
|
+
.st37{fill:url(#SVGID_00000067227544791401658190000012525148891019564936_);}
|
|
798
|
+
.st38{fill:url(#SVGID_00000070118285136126316840000003254551356786153626_);}
|
|
799
|
+
.st39{fill:url(#SVGID_00000091703115143386651870000016987734023485058995_);}
|
|
800
|
+
.st40{fill:url(#SVGID_00000081632935355916883810000000991273767466580128_);}
|
|
801
|
+
|
|
802
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000168827034613468357240000017244368204999067557_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
803
|
+
|
|
804
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000062185189092249662680000010707943729795251621_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
805
|
+
|
|
806
|
+
.st43{fill:url(#SVGID_00000015324391959118468850000003896023754213855669_);stroke:url(#SVGID_00000141443688476475978980000007473108749265875887_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
807
|
+
.st44{clip-path:url(#SVGID_00000062899365801627027540000010500514652627569594_);}
|
|
808
|
+
.st45{fill:#D7DAE0;}
|
|
809
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
810
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
811
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
812
|
+
.st49{fill:#E5E5E5;}
|
|
813
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
814
|
+
|
|
815
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
816
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
817
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
818
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
819
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
820
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
821
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
822
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
823
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
824
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
825
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
826
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}` }),
|
|
827
|
+
/* @__PURE__ */ jsx6(
|
|
828
|
+
"path",
|
|
829
|
+
{
|
|
830
|
+
className: "st0",
|
|
831
|
+
d: "M71.7,56H14.2c-4.7,0-8.5,3.8-8.5,8.5v38.1c0,4.7,3.8,8.5,8.5,8.5h9.1l0,4.4l-0.1,11.4l11.6-11.4l4.5-4.4h32.3\n c4.7,0,8.5-3.8,8.5-8.5V64.4C80.2,59.8,76.4,56,71.7,56z"
|
|
832
|
+
}
|
|
833
|
+
),
|
|
834
|
+
/* @__PURE__ */ jsx6(
|
|
835
|
+
"path",
|
|
836
|
+
{
|
|
837
|
+
className: "st45",
|
|
838
|
+
d: "M76.2,104.9c0,2.3-1.9,4.1-4.1,4.1H41.3c-1.9,0-3.7,0.7-5,2.1l-10.8,10.8v-7.7c0-2.9-2.3-5.2-5.2-5.2h-8.2\n c-2.3,0-4.1-1.9-4.1-4.1V64.1c0-2.3,1.9-4.1,4.1-4.1h14.4c1.1,0,2-0.9,2-2v0c0-1.1-0.9-2-2-2H12.1c-4.5,0-8.1,3.7-8.1,8.1v40.8\n c0,4.5,3.7,8.1,8.1,8.1h8.2c0.7,0,1.2,0.6,1.2,1.2v12.1c0,1.3,1.1,2.1,2.2,2.1c0.5,0,1.1-0.2,1.5-0.6l14-14c0.6-0.6,1.4-0.9,2.2-0.9\n H72c4.5,0,8.1-3.7,8.1-8.1v-9c0-1.1-0.9-2-2-2l0,0c-1.1,0-2,0.9-2,2V104.9z"
|
|
839
|
+
}
|
|
840
|
+
),
|
|
841
|
+
/* @__PURE__ */ jsx6(
|
|
842
|
+
"path",
|
|
843
|
+
{
|
|
844
|
+
className: "st1",
|
|
845
|
+
d: "M128.5,15.4H43.1c-6.4,0-11.6,5.2-11.6,11.6V56v4v19.3c0,6.4,5.2,11.6,11.6,11.6h33.1h4h6.6\n c1.2,0,2.3,0.5,3.1,1.3l19.9,19.9c1.9,1.9,5.2,0.6,5.2-2.2V92.7c0-1,0.8-1.8,1.8-1.8h11.7c6.4,0,11.6-5.2,11.6-11.6V27\n C140.1,20.6,134.9,15.4,128.5,15.4z"
|
|
846
|
+
}
|
|
847
|
+
)
|
|
848
|
+
]
|
|
849
|
+
}
|
|
850
|
+
);
|
|
851
|
+
};
|
|
852
|
+
|
|
853
|
+
// src/assets/No-Notifications_Gray.tsx
|
|
854
|
+
import { jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
855
|
+
var NoNotifications = () => {
|
|
856
|
+
return /* @__PURE__ */ jsxs7(
|
|
857
|
+
"svg",
|
|
858
|
+
{
|
|
859
|
+
version: "1.1",
|
|
860
|
+
id: "Layer_1",
|
|
861
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
862
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
863
|
+
x: "0px",
|
|
864
|
+
y: "0px",
|
|
865
|
+
viewBox: "0 0 144 144",
|
|
866
|
+
xmlSpace: "preserve",
|
|
867
|
+
children: [
|
|
868
|
+
/* @__PURE__ */ jsx7("style", { type: "text/css", children: `.st0{fill:#FFFFFF;}
|
|
869
|
+
.st1{fill:#EEEFF2;}
|
|
870
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
871
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
872
|
+
.st4{fill:#BBD6EB;}
|
|
873
|
+
.st5{fill:#F3F5F7;}
|
|
874
|
+
|
|
875
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000152974823438255409840000006275817164407259295_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
876
|
+
|
|
877
|
+
.st7{fill:url(#SVGID_00000020399188369037572360000018352248840008570253_);stroke:url(#SVGID_00000126321205717961207450000012981386552981511097_);stroke-miterlimit:10;}
|
|
878
|
+
.st8{clip-path:url(#SVGID_00000081649802530929409220000013005688557868543110_);}
|
|
879
|
+
.st9{fill:url(#SVGID_00000068672484464431664160000012913843083088600733_);}
|
|
880
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
881
|
+
.st11{fill:url(#SVGID_00000010299669035957327830000004846491483131579577_);}
|
|
882
|
+
.st12{fill:url(#SVGID_00000168833551078441890260000000191711973883775655_);}
|
|
883
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000175301471077673391240000016009669935237026206_);stroke-miterlimit:10;}
|
|
884
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
885
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
886
|
+
|
|
887
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
888
|
+
|
|
889
|
+
.st17{fill:url(#SVGID_00000018941494860099879800000006183965896324956598_);stroke:url(#SVGID_00000137827617331135666190000014771101970374471856_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
890
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
891
|
+
.st19{fill:#838795;}
|
|
892
|
+
|
|
893
|
+
.st20{fill:url(#SVGID_00000097463158314947533170000009841277715251767993_);stroke:url(#SVGID_00000096025403869106410200000002898818727038632356_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
894
|
+
|
|
895
|
+
.st21{fill:url(#SVGID_00000067937577834830268650000011466027174084044472_);stroke:url(#SVGID_00000183951705156518912510000009466805866342869898_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
896
|
+
|
|
897
|
+
.st22{fill:url(#SVGID_00000126295026324067166860000008163518014679786677_);stroke:url(#SVGID_00000149363103300210875340000015316590910471993002_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
898
|
+
|
|
899
|
+
.st23{fill:url(#SVGID_00000146494082262867929720000011612642948605491592_);stroke:url(#SVGID_00000071558201304928993780000005476711338104924821_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
900
|
+
|
|
901
|
+
.st24{fill:url(#SVGID_00000176732273974591495700000001996527252111683255_);stroke:url(#SVGID_00000056396824798765014200000009079571497935021992_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
902
|
+
|
|
903
|
+
.st25{fill:url(#SVGID_00000171710529558124249470000017014599407570431412_);stroke:url(#SVGID_00000094619964757662649960000003888627143734036907_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
904
|
+
|
|
905
|
+
.st26{fill:url(#SVGID_00000054946434131303784820000011298894264412876673_);stroke:url(#SVGID_00000132790312636647363050000015426171841082999182_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
906
|
+
|
|
907
|
+
.st27{fill:url(#SVGID_00000139262019717780970110000004236704312271755702_);stroke:url(#SVGID_00000173856808896916413470000003935607645817261721_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
908
|
+
.st28{fill:url(#SVGID_00000115479817201232694780000006675520967140747915_);}
|
|
909
|
+
.st29{fill:url(#SVGID_00000067210792845871688780000016642764405927914639_);}
|
|
910
|
+
.st30{fill:url(#SVGID_00000144305112645615655900000000908348702652474013_);}
|
|
911
|
+
.st31{fill:url(#SVGID_00000031915104604331992070000008149419579666211215_);}
|
|
912
|
+
.st32{fill:url(#SVGID_00000062895575868501858030000010904199064415614903_);}
|
|
913
|
+
.st33{fill:url(#SVGID_00000134233027232668384670000004954239613427205274_);}
|
|
914
|
+
.st34{fill:url(#SVGID_00000078037489686720256210000002843239087782226073_);}
|
|
915
|
+
.st35{fill:url(#SVGID_00000106109150191604199620000008893816137077351077_);}
|
|
916
|
+
.st36{fill:url(#SVGID_00000007403641631141779180000012861790688703413402_);}
|
|
917
|
+
.st37{fill:url(#SVGID_00000096024839503768269800000005315155339616742835_);}
|
|
918
|
+
.st38{fill:url(#SVGID_00000122711495668925786510000013805954667518080179_);}
|
|
919
|
+
.st39{fill:url(#SVGID_00000083779886393730345800000016671614243395417219_);}
|
|
920
|
+
.st40{fill:url(#SVGID_00000106848717148858922030000014347635869493398422_);}
|
|
921
|
+
|
|
922
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000044864532067160351220000007298044430365423767_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
923
|
+
|
|
924
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000057135099025276307760000009317661360364856249_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
925
|
+
|
|
926
|
+
.st43{fill:url(#SVGID_00000041260040264734996170000002384821114528740737_);stroke:url(#SVGID_00000062178179149805122950000009102570480664936370_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
927
|
+
.st44{clip-path:url(#SVGID_00000044151412421520741180000017178861577988292000_);}
|
|
928
|
+
.st45{fill:#D7DAE0;}
|
|
929
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
930
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
931
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
932
|
+
.st49{fill:#E5E5E5;}
|
|
933
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
934
|
+
|
|
935
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
936
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
937
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
938
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
939
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
940
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
941
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
942
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
943
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
944
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
945
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
946
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}` }),
|
|
947
|
+
/* @__PURE__ */ jsxs7("g", { children: [
|
|
948
|
+
/* @__PURE__ */ jsxs7("g", { children: [
|
|
949
|
+
/* @__PURE__ */ jsx7(
|
|
950
|
+
"path",
|
|
951
|
+
{
|
|
952
|
+
className: "st0",
|
|
953
|
+
d: "M72,137.6c-9.3,0-16.9-7.6-16.9-16.9s7.6-16.9,16.9-16.9s16.9,7.6,16.9,16.9S81.3,137.6,72,137.6z"
|
|
954
|
+
}
|
|
955
|
+
),
|
|
956
|
+
/* @__PURE__ */ jsx7("g", { children: /* @__PURE__ */ jsx7(
|
|
957
|
+
"path",
|
|
958
|
+
{
|
|
959
|
+
className: "st1",
|
|
960
|
+
d: "M72,105.9c8.2,0,14.9,6.7,14.9,14.9c0,8.2-6.7,14.9-14.9,14.9s-14.9-6.7-14.9-14.9\n C57.1,112.5,63.8,105.9,72,105.9 M72,101.9c-10.4,0-18.9,8.5-18.9,18.9c0,10.4,8.5,18.9,18.9,18.9s18.9-8.5,18.9-18.9\n C90.9,110.3,82.4,101.9,72,101.9L72,101.9z"
|
|
961
|
+
}
|
|
962
|
+
) })
|
|
963
|
+
] }),
|
|
964
|
+
/* @__PURE__ */ jsxs7("g", { children: [
|
|
965
|
+
/* @__PURE__ */ jsx7("path", { className: "st47", d: "M10.7,54.6c-7-18.4,2.3-39,20.7-45.9" }),
|
|
966
|
+
/* @__PURE__ */ jsx7("path", { className: "st47", d: "M25,49.2c-4-10.5,1.3-22.3,11.8-26.3" }),
|
|
967
|
+
/* @__PURE__ */ jsx7("path", { className: "st47", d: "M133.3,54.6c7-18.4-2.3-39-20.7-45.9" }),
|
|
968
|
+
/* @__PURE__ */ jsx7("path", { className: "st47", d: "M119,49.2c4-10.5-1.3-22.3-11.8-26.3" })
|
|
969
|
+
] }),
|
|
970
|
+
/* @__PURE__ */ jsx7(
|
|
971
|
+
"path",
|
|
972
|
+
{
|
|
973
|
+
className: "st1",
|
|
974
|
+
d: "M120,107.2c-4.5-3-12.2-10.6-12.2-28V54.7c0-17.1-12-31.4-28.1-34.9c0-0.3,0-0.6,0-0.8c0-4.3-3.5-7.7-7.7-7.7\n s-7.7,3.5-7.7,7.7c0,0.3,0,0.6,0,0.8c-16.1,3.5-28.1,17.8-28.1,34.9v24.6c0,17.4-7.7,25-12.2,28c-2,1.3-3.2,3.5-3.2,5.8v4.7l0,0\n c0,0,8,5,51.1,5s51.1-5,51.1-5l0,0V113C123.1,110.6,121.9,108.5,120,107.2z"
|
|
975
|
+
}
|
|
976
|
+
)
|
|
977
|
+
] })
|
|
978
|
+
]
|
|
979
|
+
}
|
|
980
|
+
);
|
|
981
|
+
};
|
|
982
|
+
|
|
983
|
+
// src/assets/No-Patients_Gray.tsx
|
|
984
|
+
import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
985
|
+
var NoPatients = () => {
|
|
986
|
+
return /* @__PURE__ */ jsxs8(
|
|
987
|
+
"svg",
|
|
988
|
+
{
|
|
989
|
+
version: "1.1",
|
|
990
|
+
id: "Layer_1",
|
|
991
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
992
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
993
|
+
x: "0px",
|
|
994
|
+
y: "0px",
|
|
995
|
+
viewBox: "0 0 144 144",
|
|
996
|
+
xmlSpace: "preserve",
|
|
997
|
+
children: [
|
|
998
|
+
/* @__PURE__ */ jsx8("style", { type: "text/css", children: `.st0{fill:#FFFFFF;}
|
|
999
|
+
.st1{fill:#EEEFF2;}
|
|
1000
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
1001
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1002
|
+
.st4{fill:#BBD6EB;}
|
|
1003
|
+
.st5{fill:#F3F5F7;}
|
|
1004
|
+
|
|
1005
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000175300288679579360030000009521992934827261842_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1006
|
+
|
|
1007
|
+
.st7{fill:url(#SVGID_00000061438555016396076920000005433475259249934782_);stroke:url(#SVGID_00000044894752904991820940000000480155377091821965_);stroke-miterlimit:10;}
|
|
1008
|
+
.st8{clip-path:url(#SVGID_00000150092826891454380070000000950928591554026687_);}
|
|
1009
|
+
.st9{fill:url(#SVGID_00000126282325999135982800000010463658828771602838_);}
|
|
1010
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
1011
|
+
.st11{fill:url(#SVGID_00000136400709308955642740000002311320348359266695_);}
|
|
1012
|
+
.st12{fill:url(#SVGID_00000144305863594559283480000006311110298231235230_);}
|
|
1013
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000072966957989294504030000002680664948667529643_);stroke-miterlimit:10;}
|
|
1014
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1015
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
1016
|
+
|
|
1017
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
1018
|
+
|
|
1019
|
+
.st17{fill:url(#SVGID_00000049188872201570506270000016823380555214947760_);stroke:url(#SVGID_00000119835587891479955270000016125607043463551135_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1020
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1021
|
+
.st19{fill:#838795;}
|
|
1022
|
+
|
|
1023
|
+
.st20{fill:url(#SVGID_00000075132992420045091450000008761589383726519171_);stroke:url(#SVGID_00000067202923917549313690000015195476243300966304_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1024
|
+
|
|
1025
|
+
.st21{fill:url(#SVGID_00000147926891995510965630000000040216111561934257_);stroke:url(#SVGID_00000150806631137284618440000001206560811419424697_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1026
|
+
|
|
1027
|
+
.st22{fill:url(#SVGID_00000093167312166415813840000011019058964139672477_);stroke:url(#SVGID_00000067199337730628470610000009936938218145329284_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1028
|
+
|
|
1029
|
+
.st23{fill:url(#SVGID_00000162327624703693573560000001601276238102407611_);stroke:url(#SVGID_00000176041679770324113790000005391882093610095249_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1030
|
+
|
|
1031
|
+
.st24{fill:url(#SVGID_00000049204955805480998300000012192241916222164407_);stroke:url(#SVGID_00000119111297804964337990000010708013292203515013_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1032
|
+
|
|
1033
|
+
.st25{fill:url(#SVGID_00000123435907981009359660000009275919127214170781_);stroke:url(#SVGID_00000165929826315446655660000006354639768946561440_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1034
|
+
|
|
1035
|
+
.st26{fill:url(#SVGID_00000121982821789883938360000017096759803318989494_);stroke:url(#SVGID_00000049192650579309830840000010952698352911298945_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1036
|
+
|
|
1037
|
+
.st27{fill:url(#SVGID_00000016062246434804495920000004284491130189771906_);stroke:url(#SVGID_00000003817105168753932720000004320862397361684921_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1038
|
+
.st28{fill:url(#SVGID_00000113313557730684672580000008120689811525796001_);}
|
|
1039
|
+
.st29{fill:url(#SVGID_00000057122509135842000640000014383436299945262512_);}
|
|
1040
|
+
.st30{fill:url(#SVGID_00000163759615018774339240000006863825621884764827_);}
|
|
1041
|
+
.st31{fill:url(#SVGID_00000000220623981218978610000015436474648472884129_);}
|
|
1042
|
+
.st32{fill:url(#SVGID_00000148658067762955808480000014260373483242579850_);}
|
|
1043
|
+
.st33{fill:url(#SVGID_00000036962371437409576840000015082960004519535252_);}
|
|
1044
|
+
.st34{fill:url(#SVGID_00000105418832502326492970000011511020984397278651_);}
|
|
1045
|
+
.st35{fill:url(#SVGID_00000001663197047518613800000003952054182321117623_);}
|
|
1046
|
+
.st36{fill:url(#SVGID_00000140002345030586605440000015200626328477824701_);}
|
|
1047
|
+
.st37{fill:url(#SVGID_00000064332149327228125790000018339594117598060479_);}
|
|
1048
|
+
.st38{fill:url(#SVGID_00000036962088077095977060000008702425961168556220_);}
|
|
1049
|
+
.st39{fill:url(#SVGID_00000021832505205490021330000009632314243602334852_);}
|
|
1050
|
+
.st40{fill:url(#SVGID_00000173855730336239643980000009277879328129493890_);}
|
|
1051
|
+
|
|
1052
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000160904543326848771090000013710928862994864573_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1053
|
+
|
|
1054
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000016033396063326922150000010667933010196236168_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1055
|
+
|
|
1056
|
+
.st43{fill:url(#SVGID_00000142143951278171927120000005352081428416652471_);stroke:url(#SVGID_00000183941857143666264610000000277206320677672363_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1057
|
+
.st44{clip-path:url(#SVGID_00000115495731562023408430000006340263287112058245_);}
|
|
1058
|
+
.st45{fill:#D7DAE0;}
|
|
1059
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1060
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1061
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
1062
|
+
.st49{fill:#E5E5E5;}
|
|
1063
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1064
|
+
|
|
1065
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
1066
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1067
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
1068
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1069
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1070
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1071
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1072
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1073
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1074
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
1075
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
1076
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}` }),
|
|
1077
|
+
/* @__PURE__ */ jsxs8("g", { children: [
|
|
1078
|
+
/* @__PURE__ */ jsxs8("g", { children: [
|
|
1079
|
+
/* @__PURE__ */ jsx8("path", { className: "st0", d: "M19.6,126v-76c0-1.7,1.7-3.1,3.8-3.1h97.4c2.1,0,3.8,1.4,3.8,3.1v76H19.6z" }),
|
|
1080
|
+
/* @__PURE__ */ jsx8(
|
|
1081
|
+
"path",
|
|
1082
|
+
{
|
|
1083
|
+
className: "st1",
|
|
1084
|
+
d: "M120.7,47.9c1.5,0,2.8,1,2.8,2.1v75H20.6v-75c0-1.1,1.3-2.1,2.8-2.1H120.7 M120.7,45.9H23.3\n c-2.6,0-4.8,1.8-4.8,4.1v77h106.9v-77C125.4,47.8,123.3,45.9,120.7,45.9L120.7,45.9z"
|
|
1085
|
+
}
|
|
1086
|
+
)
|
|
1087
|
+
] }),
|
|
1088
|
+
/* @__PURE__ */ jsxs8("g", { children: [
|
|
1089
|
+
/* @__PURE__ */ jsx8(
|
|
1090
|
+
"path",
|
|
1091
|
+
{
|
|
1092
|
+
className: "st0",
|
|
1093
|
+
d: "M108,94.6H36c-2.4,0-4.4-2-4.4-4.4V10.6c0-2.4,2-4.4,4.4-4.4H108c2.4,0,4.4,2,4.4,4.4v79.6\n C112.3,92.6,110.4,94.6,108,94.6z"
|
|
1094
|
+
}
|
|
1095
|
+
),
|
|
1096
|
+
/* @__PURE__ */ jsx8(
|
|
1097
|
+
"path",
|
|
1098
|
+
{
|
|
1099
|
+
className: "st53",
|
|
1100
|
+
d: "M108,94.6H36c-2.4,0-4.4-2-4.4-4.4V10.6c0-2.4,2-4.4,4.4-4.4H108c2.4,0,4.4,2,4.4,4.4v79.6\n C112.3,92.6,110.4,94.6,108,94.6z"
|
|
1101
|
+
}
|
|
1102
|
+
)
|
|
1103
|
+
] }),
|
|
1104
|
+
/* @__PURE__ */ jsxs8("g", { children: [
|
|
1105
|
+
/* @__PURE__ */ jsx8(
|
|
1106
|
+
"path",
|
|
1107
|
+
{
|
|
1108
|
+
className: "st45",
|
|
1109
|
+
d: "M72.2,23.5c-3.1,0-5.7,2.6-5.7,5.7s2.6,5.7,5.7,5.7c3.1,0,5.7-2.6,5.7-5.7S75.3,23.5,72.2,23.5z"
|
|
1110
|
+
}
|
|
1111
|
+
),
|
|
1112
|
+
/* @__PURE__ */ jsx8(
|
|
1113
|
+
"path",
|
|
1114
|
+
{
|
|
1115
|
+
className: "st45",
|
|
1116
|
+
d: "M85.2,20.3c-7.3-7.3-19.1-7.3-26.4,0c-7.3,7.3-7.3,19.1,0,26.4c0.4,0.4,0.9,0.9,1.4,1.3\n c3.4,2.8,7.6,4.2,11.8,4.2c4.3,0,8.7-1.5,12.2-4.5c0.4-0.3,0.7-0.6,1-0.9C92.5,39.4,92.5,27.6,85.2,20.3z M83.3,44.8\n c-0.2,0.2-0.5,0.5-0.8,0.7c-0.6-5.2-5.1-9.2-10.4-9.2c-5.4,0-9.9,4.2-10.4,9.5c-0.4-0.3-0.7-0.6-1.1-1c-6.2-6.2-6.2-16.4,0-22.6\n c3.1-3.1,7.2-4.7,11.3-4.7c4.1,0,8.2,1.6,11.3,4.7C89.5,28.4,89.5,38.6,83.3,44.8z"
|
|
1117
|
+
}
|
|
1118
|
+
)
|
|
1119
|
+
] }),
|
|
1120
|
+
/* @__PURE__ */ jsx8(
|
|
1121
|
+
"path",
|
|
1122
|
+
{
|
|
1123
|
+
className: "st1",
|
|
1124
|
+
d: "M80.3,62L66.4,75.9H12.9c-2.8,0-4.9,2.5-4.5,5.3l7.9,54.4c0.2,1.3,1.3,2.2,2.5,2.2h104.2\n c1.3,0,2.4-0.9,2.5-2.2l10-68.3c0.4-2.8-1.7-5.3-4.5-5.3H80.3z"
|
|
1125
|
+
}
|
|
1126
|
+
)
|
|
1127
|
+
] })
|
|
1128
|
+
]
|
|
1129
|
+
}
|
|
1130
|
+
);
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
// src/assets/No-Search-Found_Gray.tsx
|
|
1134
|
+
import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1135
|
+
var NoSearchFound = () => {
|
|
1136
|
+
return /* @__PURE__ */ jsxs9(
|
|
505
1137
|
"svg",
|
|
506
1138
|
{
|
|
507
1139
|
version: "1.1",
|
|
@@ -515,7 +1147,7 @@ var NoSearchFound = () => {
|
|
|
515
1147
|
"aria-label": "No Search Found",
|
|
516
1148
|
"aria-hidden": "true",
|
|
517
1149
|
children: [
|
|
518
|
-
/* @__PURE__ */
|
|
1150
|
+
/* @__PURE__ */ jsx9("style", { type: "text/css", children: `.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
519
1151
|
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
520
1152
|
.st2{fill:#FFFFFF;}
|
|
521
1153
|
.st3{fill:#BBD6EB;}
|
|
@@ -592,15 +1224,15 @@ var NoSearchFound = () => {
|
|
|
592
1224
|
.st74{fill:#E5E5E5;}
|
|
593
1225
|
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
594
1226
|
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}` }),
|
|
595
|
-
/* @__PURE__ */
|
|
596
|
-
/* @__PURE__ */
|
|
1227
|
+
/* @__PURE__ */ jsxs9("g", { children: [
|
|
1228
|
+
/* @__PURE__ */ jsx9(
|
|
597
1229
|
"path",
|
|
598
1230
|
{
|
|
599
1231
|
className: "st2",
|
|
600
1232
|
d: "M63.6,17.8c-2-0.5-4.1,0.8-4.6,2.8L43.4,84.3l-3.2,13.1l-4.9,20c-0.5,2,0.8,4.1,2.8,4.6l72.9,17.8\n c2,0.5,4.1-0.8,4.6-2.8l4.9-20l3.2-13.1l15.6-63.8c0.5-2-0.8-4.1-2.8-4.6L63.6,17.8z"
|
|
601
1233
|
}
|
|
602
1234
|
),
|
|
603
|
-
/* @__PURE__ */
|
|
1235
|
+
/* @__PURE__ */ jsx9(
|
|
604
1236
|
"path",
|
|
605
1237
|
{
|
|
606
1238
|
className: "st4",
|
|
@@ -608,23 +1240,23 @@ var NoSearchFound = () => {
|
|
|
608
1240
|
}
|
|
609
1241
|
)
|
|
610
1242
|
] }),
|
|
611
|
-
/* @__PURE__ */
|
|
1243
|
+
/* @__PURE__ */ jsx9(
|
|
612
1244
|
"path",
|
|
613
1245
|
{
|
|
614
1246
|
className: "st4",
|
|
615
1247
|
d: "M7,18.3c-2.1,0.4-3.4,2.4-3,4.5l12.5,64.9l2.6,13.3l3.9,20.4c0.4,2.1,2.4,3.4,4.5,3l74.2-14.3\n c2.1-0.4,3.4-2.4,3-4.5l-3.9-20.4l-2.6-13.3L85.8,7c-0.4-2.1-2.4-3.4-4.5-3L7,18.3z"
|
|
616
1248
|
}
|
|
617
1249
|
),
|
|
618
|
-
/* @__PURE__ */
|
|
619
|
-
/* @__PURE__ */
|
|
1250
|
+
/* @__PURE__ */ jsxs9("g", { children: [
|
|
1251
|
+
/* @__PURE__ */ jsx9(
|
|
620
1252
|
"path",
|
|
621
1253
|
{
|
|
622
1254
|
className: "st51",
|
|
623
1255
|
d: "M113.3,108.9l-4.5,4.5c-1.2,1.2-3.2,1.2-4.4,0L80.3,89.2c-1.2-1.2-1.2-3.2,0-4.4l4.5-4.5\n c1.2-1.2,3.2-1.2,4.4,0l24.1,24.1C114.5,105.7,114.5,107.7,113.3,108.9z"
|
|
624
1256
|
}
|
|
625
1257
|
),
|
|
626
|
-
/* @__PURE__ */
|
|
627
|
-
/* @__PURE__ */
|
|
1258
|
+
/* @__PURE__ */ jsx9("circle", { className: "st71", cx: "58.3", cy: "58.3", r: "28.5" }),
|
|
1259
|
+
/* @__PURE__ */ jsx9(
|
|
628
1260
|
"polygon",
|
|
629
1261
|
{
|
|
630
1262
|
className: "st51",
|
|
@@ -632,20 +1264,189 @@ var NoSearchFound = () => {
|
|
|
632
1264
|
}
|
|
633
1265
|
)
|
|
634
1266
|
] }),
|
|
635
|
-
/* @__PURE__ */
|
|
1267
|
+
/* @__PURE__ */ jsx9("line", { className: "st72", x1: "78.5", y1: "78.4", x2: "90.2", y2: "90.1" })
|
|
1268
|
+
]
|
|
1269
|
+
}
|
|
1270
|
+
);
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
// src/assets/404-Page-Not-Found_Gray.tsx
|
|
1274
|
+
import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1275
|
+
var PageNotFound = () => {
|
|
1276
|
+
return /* @__PURE__ */ jsxs10(
|
|
1277
|
+
"svg",
|
|
1278
|
+
{
|
|
1279
|
+
id: "Layer_1",
|
|
1280
|
+
"data-name": "Layer 1",
|
|
1281
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1282
|
+
viewBox: "0 0 144 144",
|
|
1283
|
+
"aria-label": "Page Not Found",
|
|
1284
|
+
"aria-hidden": "true",
|
|
1285
|
+
children: [
|
|
1286
|
+
/* @__PURE__ */ jsx10("defs", { children: /* @__PURE__ */ jsx10("style", { children: `.cls-1 {
|
|
1287
|
+
fill: #fff;
|
|
1288
|
+
stroke: #d7dae0;
|
|
1289
|
+
stroke-linecap: round;
|
|
1290
|
+
stroke-linejoin: round;
|
|
1291
|
+
stroke-width: 4px;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.cls-2 {
|
|
1295
|
+
fill: #d7dae0;
|
|
1296
|
+
stroke-width: 0px;
|
|
1297
|
+
}` }) }),
|
|
1298
|
+
/* @__PURE__ */ jsx10("circle", { className: "cls-1", cx: "72", cy: "72", r: "65.36" }),
|
|
1299
|
+
/* @__PURE__ */ jsxs10("g", { children: [
|
|
1300
|
+
/* @__PURE__ */ jsx10(
|
|
1301
|
+
"path",
|
|
1302
|
+
{
|
|
1303
|
+
className: "cls-2",
|
|
1304
|
+
d: "m41.45,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
1305
|
+
}
|
|
1306
|
+
),
|
|
1307
|
+
/* @__PURE__ */ jsx10(
|
|
1308
|
+
"path",
|
|
1309
|
+
{
|
|
1310
|
+
className: "cls-2",
|
|
1311
|
+
d: "m57.62,70.71c0-9.2,3.85-17.94,14.3-17.94s14.46,8.79,14.46,17.94-4.11,17.94-14.4,17.94-14.35-8.79-14.35-17.94Zm20.23,0c0-7.59-1.66-11.7-5.88-11.7s-5.88,4.11-5.88,11.7,1.61,11.7,5.82,11.7,5.93-4.11,5.93-11.7Z"
|
|
1312
|
+
}
|
|
1313
|
+
),
|
|
1314
|
+
/* @__PURE__ */ jsx10(
|
|
1315
|
+
"path",
|
|
1316
|
+
{
|
|
1317
|
+
className: "cls-2",
|
|
1318
|
+
d: "m105.25,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"
|
|
1319
|
+
}
|
|
1320
|
+
)
|
|
1321
|
+
] })
|
|
1322
|
+
]
|
|
1323
|
+
}
|
|
1324
|
+
);
|
|
1325
|
+
};
|
|
1326
|
+
|
|
1327
|
+
// src/assets/Success-Confirmation_Gray.tsx
|
|
1328
|
+
import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1329
|
+
var SuccessConfirmation = () => {
|
|
1330
|
+
return /* @__PURE__ */ jsxs11(
|
|
1331
|
+
"svg",
|
|
1332
|
+
{
|
|
1333
|
+
version: "1.1",
|
|
1334
|
+
id: "Layer_1",
|
|
1335
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1336
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1337
|
+
x: "0px",
|
|
1338
|
+
y: "0px",
|
|
1339
|
+
viewBox: "0 0 144 144",
|
|
1340
|
+
xmlSpace: "preserve",
|
|
1341
|
+
children: [
|
|
1342
|
+
/* @__PURE__ */ jsx11("style", { type: "text/css", children: `.st0{fill:#FFFFFF;}
|
|
1343
|
+
.st1{fill:#EEEFF2;}
|
|
1344
|
+
.st2{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
1345
|
+
.st3{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1346
|
+
.st4{fill:#BBD6EB;}
|
|
1347
|
+
.st5{fill:#F3F5F7;}
|
|
1348
|
+
|
|
1349
|
+
.st6{fill:url(#SVGID_1_);stroke:url(#SVGID_00000028284429236021381630000010210480860065277606_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1350
|
+
|
|
1351
|
+
.st7{fill:url(#SVGID_00000002346145290382807310000010772803614463261329_);stroke:url(#SVGID_00000132773997407954371150000013275377183929247107_);stroke-miterlimit:10;}
|
|
1352
|
+
.st8{clip-path:url(#SVGID_00000038400761125365932740000014551702366082124430_);}
|
|
1353
|
+
.st9{fill:url(#SVGID_00000095339379086700665650000010569470218555637659_);}
|
|
1354
|
+
.st10{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
1355
|
+
.st11{fill:url(#SVGID_00000180341434570840832070000013984383470433241754_);}
|
|
1356
|
+
.st12{fill:url(#SVGID_00000129192554048861920370000008849989137377378444_);}
|
|
1357
|
+
.st13{fill:#FFFFFF;stroke:url(#SVGID_00000023245929054053202260000017715527871198531734_);stroke-miterlimit:10;}
|
|
1358
|
+
.st14{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1359
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
1360
|
+
|
|
1361
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
1362
|
+
|
|
1363
|
+
.st17{fill:url(#SVGID_00000147206495327296419390000011451386332201297589_);stroke:url(#SVGID_00000170272328258678673360000006605586839152991381_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1364
|
+
.st18{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1365
|
+
.st19{fill:#838795;}
|
|
1366
|
+
|
|
1367
|
+
.st20{fill:url(#SVGID_00000124134264928754026010000004919919149243671456_);stroke:url(#SVGID_00000050632829347866437950000014625840628700447875_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1368
|
+
|
|
1369
|
+
.st21{fill:url(#SVGID_00000103969832424238800200000007586091928173252248_);stroke:url(#SVGID_00000159461718839362185790000010406108216789518257_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1370
|
+
|
|
1371
|
+
.st22{fill:url(#SVGID_00000046336474408319561010000010459693785245395124_);stroke:url(#SVGID_00000049905822157044783800000000285464951841267383_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1372
|
+
|
|
1373
|
+
.st23{fill:url(#SVGID_00000114790985431661953040000012324517981224255116_);stroke:url(#SVGID_00000182494435204309522060000010094696869191290242_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1374
|
+
|
|
1375
|
+
.st24{fill:url(#SVGID_00000005232060128973022930000005791346824486706310_);stroke:url(#SVGID_00000032622637943370081800000002181914977037227143_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1376
|
+
|
|
1377
|
+
.st25{fill:url(#SVGID_00000099623281772351859370000010651626021818132892_);stroke:url(#SVGID_00000147933232382257382560000006599026793680525739_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1378
|
+
|
|
1379
|
+
.st26{fill:url(#SVGID_00000124140727537286453930000000479601490024379058_);stroke:url(#SVGID_00000026841599675037677540000000988942239749619850_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1380
|
+
|
|
1381
|
+
.st27{fill:url(#SVGID_00000112608237137422004900000009252031440586456980_);stroke:url(#SVGID_00000067928752730168413090000012323525578652458117_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1382
|
+
.st28{fill:url(#SVGID_00000054969635363474595590000006123515512037417910_);}
|
|
1383
|
+
.st29{fill:url(#SVGID_00000134232228628396966780000008086595646474165386_);}
|
|
1384
|
+
.st30{fill:url(#SVGID_00000028300992387620279290000017781521607760455305_);}
|
|
1385
|
+
.st31{fill:url(#SVGID_00000086672218235363856330000013292030717410366358_);}
|
|
1386
|
+
.st32{fill:url(#SVGID_00000121263489883052821350000010705233499436613283_);}
|
|
1387
|
+
.st33{fill:url(#SVGID_00000001651379907501680220000007231765339334847637_);}
|
|
1388
|
+
.st34{fill:url(#SVGID_00000161608512639504647210000012736961192957482375_);}
|
|
1389
|
+
.st35{fill:url(#SVGID_00000160172545443670805610000017607412978275058580_);}
|
|
1390
|
+
.st36{fill:url(#SVGID_00000044137027281700620140000003394426742203123855_);}
|
|
1391
|
+
.st37{fill:url(#SVGID_00000042709728812156354000000004119499516601884054_);}
|
|
1392
|
+
.st38{fill:url(#SVGID_00000131368313008914898310000000608117741340465025_);}
|
|
1393
|
+
.st39{fill:url(#SVGID_00000027567100515691125540000012713816104132731296_);}
|
|
1394
|
+
.st40{fill:url(#SVGID_00000168105064872260205760000003214793314348290718_);}
|
|
1395
|
+
|
|
1396
|
+
.st41{fill:#FFFFFF;stroke:url(#SVGID_00000029758703077486328930000011720970111664460702_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1397
|
+
|
|
1398
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000122699645481263223460000000254187828324094119_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1399
|
+
|
|
1400
|
+
.st43{fill:url(#SVGID_00000164474785394916673500000000763075433334537118_);stroke:url(#SVGID_00000045610625271151685660000002097996418563776930_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1401
|
+
.st44{clip-path:url(#SVGID_00000029023710232019776250000002782165090230363579_);}
|
|
1402
|
+
.st45{fill:#D7DAE0;}
|
|
1403
|
+
.st46{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1404
|
+
.st47{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1405
|
+
.st48{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
1406
|
+
.st49{fill:#E5E5E5;}
|
|
1407
|
+
.st50{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1408
|
+
|
|
1409
|
+
.st51{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
1410
|
+
.st52{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1411
|
+
.st53{fill:none;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:8.1319,5.0824;}
|
|
1412
|
+
.st54{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1413
|
+
.st55{fill:none;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1414
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1415
|
+
.st57{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1416
|
+
.st58{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}
|
|
1417
|
+
.st59{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
1418
|
+
.st60{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,8,10;}
|
|
1419
|
+
.st61{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.125,6,10;}
|
|
1420
|
+
.st62{fill:none;stroke:#EEEFF2;stroke-width:4;stroke-linecap:round;stroke-miterlimit:10;}` }),
|
|
1421
|
+
/* @__PURE__ */ jsxs11("g", { children: [
|
|
1422
|
+
/* @__PURE__ */ jsx11("circle", { className: "st59", cx: "72", cy: "72", r: "61.2" }),
|
|
1423
|
+
/* @__PURE__ */ jsx11(
|
|
1424
|
+
"path",
|
|
1425
|
+
{
|
|
1426
|
+
className: "st45",
|
|
1427
|
+
d: "M117.2,46.3c-2.5-4.5-5.7-8.5-9.4-12L59.5,82.6L43.2,66.4L32.5,77.1l27,27L117.2,46.3z"
|
|
1428
|
+
}
|
|
1429
|
+
)
|
|
1430
|
+
] })
|
|
636
1431
|
]
|
|
637
1432
|
}
|
|
638
1433
|
);
|
|
639
1434
|
};
|
|
640
1435
|
|
|
641
1436
|
// src/lib/EmptyStateImage.tsx
|
|
642
|
-
import { jsx as
|
|
1437
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
643
1438
|
var EmptyStateImages = {
|
|
644
|
-
PageNotFound,
|
|
645
1439
|
ContentLoading,
|
|
646
1440
|
Error: Error2,
|
|
1441
|
+
Instructional,
|
|
647
1442
|
NoData,
|
|
648
|
-
|
|
1443
|
+
NoFavorites,
|
|
1444
|
+
NoMessages,
|
|
1445
|
+
NoNotifications,
|
|
1446
|
+
NoPatients,
|
|
1447
|
+
NoSearchFound,
|
|
1448
|
+
PageNotFound,
|
|
1449
|
+
SuccessConfirmation
|
|
649
1450
|
};
|
|
650
1451
|
var EmptyStateImageContainer = styled(Box, {
|
|
651
1452
|
name: "AvEmptyState",
|
|
@@ -655,11 +1456,11 @@ var EmptyStateImageContainer = styled(Box, {
|
|
|
655
1456
|
var EmptyStateImage = forwardRef((props, ref) => {
|
|
656
1457
|
const _a = props, { variant = "NoSearchFound" } = _a, rest = __objRest(_a, ["variant"]);
|
|
657
1458
|
const Image = EmptyStateImages[variant];
|
|
658
|
-
return /* @__PURE__ */
|
|
1459
|
+
return /* @__PURE__ */ jsx12(EmptyStateImageContainer, __spreadProps(__spreadValues({ ref, "aria-hidden": true }, rest), { children: /* @__PURE__ */ jsx12(Image, {}) }));
|
|
659
1460
|
});
|
|
660
1461
|
|
|
661
1462
|
// src/lib/EmptyState.tsx
|
|
662
|
-
import { jsx as
|
|
1463
|
+
import { jsx as jsx13, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
663
1464
|
var EmptyStateContainer = styled2(Stack, {
|
|
664
1465
|
name: "AvEmptyState",
|
|
665
1466
|
slot: "root",
|
|
@@ -683,7 +1484,7 @@ var EmptyState = React.forwardRef((props, ref) => {
|
|
|
683
1484
|
"maxWidth",
|
|
684
1485
|
"padding"
|
|
685
1486
|
]);
|
|
686
|
-
return /* @__PURE__ */
|
|
1487
|
+
return /* @__PURE__ */ jsxs12(
|
|
687
1488
|
EmptyStateContainer,
|
|
688
1489
|
__spreadProps(__spreadValues({
|
|
689
1490
|
className: "AvEmptyState-root",
|
|
@@ -695,7 +1496,7 @@ var EmptyState = React.forwardRef((props, ref) => {
|
|
|
695
1496
|
}, containerProps), {
|
|
696
1497
|
ref,
|
|
697
1498
|
children: [
|
|
698
|
-
variant ? /* @__PURE__ */
|
|
1499
|
+
variant ? /* @__PURE__ */ jsx13(EmptyStateImage, { variant }) : null,
|
|
699
1500
|
children
|
|
700
1501
|
]
|
|
701
1502
|
})
|
|
@@ -703,5 +1504,6 @@ var EmptyState = React.forwardRef((props, ref) => {
|
|
|
703
1504
|
});
|
|
704
1505
|
export {
|
|
705
1506
|
EmptyState,
|
|
706
|
-
EmptyStateImage
|
|
1507
|
+
EmptyStateImage,
|
|
1508
|
+
EmptyStateImages
|
|
707
1509
|
};
|