prometeo-design-system 2.9.7 → 2.9.9
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/Icons/Icons.d.ts +64 -65
- package/dist/Icons.es.js +120 -250
- package/dist/Spinner.es.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/prometeo-design-system.es.js +30 -31
- package/package.json +1 -1
package/dist/Icons/Icons.d.ts
CHANGED
|
@@ -64,69 +64,68 @@ declare const UserAddFill: import('react').MemoExoticComponent<(props: IconProps
|
|
|
64
64
|
declare const EditFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
65
65
|
declare const TrashFill: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
66
66
|
declare const Company: import('react').MemoExoticComponent<(props: IconProps) => ReactElement>;
|
|
67
|
-
export { Ticket, Home, Boards, Notifications, Help, Settings, CrevronLeft, CrevronRight, ArrowLeft, Shared, ChevronDown, Collapse, Calendar, Close, UserPerson, Logout, ArrowUpDown, Filter, Search, Stars, MoreVert, Add, Edit, Upload, Copy, FaLock, AccountCircle, UserAdd, AttachFile, HistoryActivity, MessageSquare, CloseNavBarDesktop, EyeVisibility, EyeVisibilityOff, Check, Info, Error, TicketFilled, UploadCloud, Clock, Pause, FastForward, Trash, Sort, Cancel, CheckCircle, FormatColorText, CheckList, WhatsApp, File, Email, Download, Reload, Image, DocumentFill, Company, EditFill, TrashFill, MessageSquareFill, UserAddFill };
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
67
|
+
export { Ticket, Home, Boards, Notifications, Help, Settings, CrevronLeft, CrevronRight, ArrowLeft, Shared, ChevronDown, Collapse, Calendar, Close, UserPerson, Logout, ArrowUpDown, Filter, Search, Stars, MoreVert, Add, Edit, Upload, Copy, FaLock, AccountCircle, UserAdd, AttachFile, HistoryActivity, MessageSquare, CloseNavBarDesktop, EyeVisibility, EyeVisibilityOff, Check, Info, Error, TicketFilled, UploadCloud, Clock, Pause, FastForward, Trash, Sort, Cancel, CheckCircle, FormatColorText, CheckList, WhatsApp, File, Email, Download, Reload, Image, DocumentFill, Company, EditFill, TrashFill, MessageSquareFill, UserAddFill, };
|
|
68
|
+
type IconsMap = {
|
|
69
|
+
Ticket: typeof Ticket;
|
|
70
|
+
Home: typeof Home;
|
|
71
|
+
Boards: typeof Boards;
|
|
72
|
+
Notifications: typeof Notifications;
|
|
73
|
+
Help: typeof Help;
|
|
74
|
+
Settings: typeof Settings;
|
|
75
|
+
CrevronLeft: typeof CrevronLeft;
|
|
76
|
+
CrevronRight: typeof CrevronRight;
|
|
77
|
+
ArrowLeft: typeof ArrowLeft;
|
|
78
|
+
Shared: typeof Shared;
|
|
79
|
+
ChevronDown: typeof ChevronDown;
|
|
80
|
+
Collapse: typeof Collapse;
|
|
81
|
+
Calendar: typeof Calendar;
|
|
82
|
+
Close: typeof Close;
|
|
83
|
+
UserPerson: typeof UserPerson;
|
|
84
|
+
Logout: typeof Logout;
|
|
85
|
+
ArrowUpDown: typeof ArrowUpDown;
|
|
86
|
+
Filter: typeof Filter;
|
|
87
|
+
Search: typeof Search;
|
|
88
|
+
Stars: typeof Stars;
|
|
89
|
+
MoreVert: typeof MoreVert;
|
|
90
|
+
Add: typeof Add;
|
|
91
|
+
Edit: typeof Edit;
|
|
92
|
+
Upload: typeof Upload;
|
|
93
|
+
Copy: typeof Copy;
|
|
94
|
+
FaLock: typeof FaLock;
|
|
95
|
+
AccountCircle: typeof AccountCircle;
|
|
96
|
+
UserAdd: typeof UserAdd;
|
|
97
|
+
AttachFile: typeof AttachFile;
|
|
98
|
+
HistoryActivity: typeof HistoryActivity;
|
|
99
|
+
MessageSquare: typeof MessageSquare;
|
|
100
|
+
CloseNavBarDesktop: typeof CloseNavBarDesktop;
|
|
101
|
+
EyeVisibility: typeof EyeVisibility;
|
|
102
|
+
EyeVisibilityOff: typeof EyeVisibilityOff;
|
|
103
|
+
Check: typeof Check;
|
|
104
|
+
Info: typeof Info;
|
|
105
|
+
Error: typeof Error;
|
|
106
|
+
TicketFilled: typeof TicketFilled;
|
|
107
|
+
UploadCloud: typeof UploadCloud;
|
|
108
|
+
Clock: typeof Clock;
|
|
109
|
+
Pause: typeof Pause;
|
|
110
|
+
FastForward: typeof FastForward;
|
|
111
|
+
Trash: typeof Trash;
|
|
112
|
+
Sort: typeof Sort;
|
|
113
|
+
Cancel: typeof Cancel;
|
|
114
|
+
CheckCircle: typeof CheckCircle;
|
|
115
|
+
FormatColorText: typeof FormatColorText;
|
|
116
|
+
CheckList: typeof CheckList;
|
|
117
|
+
WhatsApp: typeof WhatsApp;
|
|
118
|
+
File: typeof File;
|
|
119
|
+
Email: typeof Email;
|
|
120
|
+
Download: typeof Download;
|
|
121
|
+
Reload: typeof Reload;
|
|
122
|
+
Image: typeof Image;
|
|
123
|
+
DocumentFill: typeof DocumentFill;
|
|
124
|
+
Company: typeof Company;
|
|
125
|
+
EditFill: typeof EditFill;
|
|
126
|
+
TrashFill: typeof TrashFill;
|
|
127
|
+
MessageSquareFill: typeof MessageSquareFill;
|
|
128
|
+
UserAddFill: typeof UserAddFill;
|
|
129
129
|
};
|
|
130
|
-
export
|
|
131
|
-
export type
|
|
132
|
-
export type IconComponent = (typeof Icons)[IconName];
|
|
130
|
+
export type IconName = keyof IconsMap;
|
|
131
|
+
export type IconComponent = IconsMap[IconName];
|
package/dist/Icons.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { j as r } from "./jsx-runtime-DKDX3adD.js";
|
|
2
|
-
import { memo as
|
|
3
|
-
const s = (t) =>
|
|
2
|
+
import { memo as o } from "react";
|
|
3
|
+
const s = (t) => o(t), w = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
4
4
|
"svg",
|
|
5
5
|
{
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12,7 +12,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
12
12
|
className: l,
|
|
13
13
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480q0 17 11.5 28.5T480-440Zm0-160q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm320 440H160q-33 0-56.5-23.5T80-240v-160q33 0 56.5-23.5T160-480q0-33-23.5-56.5T80-560v-160q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v160q-33 0-56.5 23.5T800-480q0 33 23.5 56.5T880-400v160q0 33-23.5 56.5T800-160Zm0-80v-102q-37-22-58.5-58.5T720-480q0-43 21.5-79.5T800-618v-102H160v102q37 22 58.5 58.5T240-480q0 43-21.5 79.5T160-342v102h640ZM480-480Z" })
|
|
14
14
|
}
|
|
15
|
-
)),
|
|
15
|
+
)), q = s(
|
|
16
16
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
17
17
|
"svg",
|
|
18
18
|
{
|
|
@@ -26,7 +26,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
26
26
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480q0 17 11.5 28.5T480-440Zm0-160q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm320 440H160q-33 0-56.5-23.5T80-240v-160q33 0 56.5-23.5T160-480q0-33-23.5-56.5T80-560v-160q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v160q-33 0-56.5 23.5T800-480q0 33 23.5 56.5T880-400v160q0 33-23.5 56.5T800-160Z" })
|
|
27
27
|
}
|
|
28
28
|
)
|
|
29
|
-
),
|
|
29
|
+
), v = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
30
30
|
"svg",
|
|
31
31
|
{
|
|
32
32
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -38,7 +38,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
38
38
|
className: l,
|
|
39
39
|
children: /* @__PURE__ */ r.jsx("path", { d: "M240-200h120v-240h240v240h120v-360L480-740 240-560v360Zm-80 80v-480l320-240 320 240v480H520v-240h-80v240H160Zm320-350Z" })
|
|
40
40
|
}
|
|
41
|
-
)),
|
|
41
|
+
)), i = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
42
42
|
"svg",
|
|
43
43
|
{
|
|
44
44
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -50,7 +50,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
50
50
|
className: l,
|
|
51
51
|
children: /* @__PURE__ */ r.jsx("path", { d: "M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm360-80h100v-480H520v480Zm-180 0h100v-480H340v480Zm-180 0h100v-480H160v480Zm540 0h100v-480H700v480Z" })
|
|
52
52
|
}
|
|
53
|
-
)),
|
|
53
|
+
)), T = s(
|
|
54
54
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
55
55
|
"svg",
|
|
56
56
|
{
|
|
@@ -64,7 +64,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
64
64
|
children: /* @__PURE__ */ r.jsx("path", { d: "M160-200v-80h80v-280q0-83 50-147.5T420-792v-28q0-25 17.5-42.5T480-880q25 0 42.5 17.5T540-820v28q80 20 130 84.5T720-560v280h80v80H160Zm320-300Zm0 420q-33 0-56.5-23.5T400-160h160q0 33-23.5 56.5T480-80ZM320-280h320v-280q0-66-47-113t-113-47q-66 0-113 47t-47 113v280Z" })
|
|
65
65
|
}
|
|
66
66
|
)
|
|
67
|
-
),
|
|
67
|
+
), C = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
68
68
|
"svg",
|
|
69
69
|
{
|
|
70
70
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -76,7 +76,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
76
76
|
className: l,
|
|
77
77
|
children: /* @__PURE__ */ r.jsx("path", { d: "M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm-36-154h74q0-33 7.5-52t42.5-52q26-26 41-49.5t15-56.5q0-56-41-86t-97-30q-57 0-92.5 30T342-618l66 26q5-18 22.5-39t53.5-21q32 0 48 17.5t16 38.5q0 20-12 37.5T506-526q-44 39-54 59t-10 73Zm38 314q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" })
|
|
78
78
|
}
|
|
79
|
-
)),
|
|
79
|
+
)), x = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
80
80
|
"svg",
|
|
81
81
|
{
|
|
82
82
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -88,7 +88,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
88
88
|
className: l,
|
|
89
89
|
children: /* @__PURE__ */ r.jsx("path", { d: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm70-80h79l14-106q31-8 57.5-23.5T639-327l99 41 39-68-86-65q5-14 7-29.5t2-31.5q0-16-2-31.5t-7-29.5l86-65-39-68-99 42q-22-23-48.5-38.5T533-694l-13-106h-79l-14 106q-31 8-57.5 23.5T321-633l-99-41-39 68 86 64q-5 15-7 30t-2 32q0 16 2 31t7 30l-86 65 39 68 99-42q22 23 48.5 38.5T427-266l13 106Zm42-180q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Zm-2-140Z" })
|
|
90
90
|
}
|
|
91
|
-
)),
|
|
91
|
+
)), g = s(
|
|
92
92
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
93
93
|
"svg",
|
|
94
94
|
{
|
|
@@ -102,7 +102,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
102
102
|
children: /* @__PURE__ */ r.jsx("path", { d: "M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z" })
|
|
103
103
|
}
|
|
104
104
|
)
|
|
105
|
-
),
|
|
105
|
+
), c = s(
|
|
106
106
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
107
107
|
"svg",
|
|
108
108
|
{
|
|
@@ -116,7 +116,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
116
116
|
children: /* @__PURE__ */ r.jsx("path", { d: "M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z" })
|
|
117
117
|
}
|
|
118
118
|
)
|
|
119
|
-
),
|
|
119
|
+
), d = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
120
120
|
"svg",
|
|
121
121
|
{
|
|
122
122
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -128,7 +128,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
128
128
|
className: l,
|
|
129
129
|
children: /* @__PURE__ */ r.jsx("path", { d: "M400-240 160-480l240-240 56 58-142 142h486v80H314l142 142-56 58Z" })
|
|
130
130
|
}
|
|
131
|
-
)),
|
|
131
|
+
)), Z = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
132
132
|
"svg",
|
|
133
133
|
{
|
|
134
134
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -140,7 +140,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
140
140
|
className: l,
|
|
141
141
|
children: /* @__PURE__ */ r.jsx("path", { d: "M680-80q-50 0-85-35t-35-85q0-6 3-28L282-392q-16 15-37 23.5t-45 8.5q-50 0-85-35t-35-85q0-50 35-85t85-35q24 0 45 8.5t37 23.5l281-164q-2-7-2.5-13.5T560-760q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35q-24 0-45-8.5T598-672L317-508q2 7 2.5 13.5t.5 14.5q0 8-.5 14.5T317-452l281 164q16-15 37-23.5t45-8.5q50 0 85 35t35 85q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T720-200q0-17-11.5-28.5T680-240q-17 0-28.5 11.5T640-200q0 17 11.5 28.5T680-160ZM200-440q17 0 28.5-11.5T240-480q0-17-11.5-28.5T200-520q-17 0-28.5 11.5T160-480q0 17 11.5 28.5T200-440Zm480-280q17 0 28.5-11.5T720-760q0-17-11.5-28.5T680-800q-17 0-28.5 11.5T640-760q0 17 11.5 28.5T680-720Zm0 520ZM200-480Zm480-280Z" })
|
|
142
142
|
}
|
|
143
|
-
)),
|
|
143
|
+
)), a = s(
|
|
144
144
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
145
145
|
"svg",
|
|
146
146
|
{
|
|
@@ -154,7 +154,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
154
154
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-345 240-585l56-56 184 183 184-183 56 56-240 240Z" })
|
|
155
155
|
}
|
|
156
156
|
)
|
|
157
|
-
),
|
|
157
|
+
), m = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
158
158
|
"svg",
|
|
159
159
|
{
|
|
160
160
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -166,7 +166,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
166
166
|
className: l,
|
|
167
167
|
children: /* @__PURE__ */ r.jsx("path", { d: "M440-440v240h-80v-160H200v-80h240Zm160-320v160h160v80H520v-240h80Z" })
|
|
168
168
|
}
|
|
169
|
-
)),
|
|
169
|
+
)), p = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
170
170
|
"svg",
|
|
171
171
|
{
|
|
172
172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -178,7 +178,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
178
178
|
className: l,
|
|
179
179
|
children: /* @__PURE__ */ r.jsx("path", { d: "M200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Zm280 240q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm-160 0q-17 0-28.5-11.5T280-440q0-17 11.5-28.5T320-480q17 0 28.5 11.5T360-440q0 17-11.5 28.5T320-400Zm320 0q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM480-240q-17 0-28.5-11.5T440-280q0-17 11.5-28.5T480-320q17 0 28.5 11.5T520-280q0 17-11.5 28.5T480-240Zm-160 0q-17 0-28.5-11.5T280-280q0-17 11.5-28.5T320-320q17 0 28.5 11.5T360-280q0 17-11.5 28.5T320-240Zm320 0q-17 0-28.5-11.5T600-280q0-17 11.5-28.5T640-320q17 0 28.5 11.5T680-280q0 17-11.5 28.5T640-240Z" })
|
|
180
180
|
}
|
|
181
|
-
)),
|
|
181
|
+
)), u = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
182
182
|
"svg",
|
|
183
183
|
{
|
|
184
184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -190,7 +190,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
190
190
|
className: l,
|
|
191
191
|
children: /* @__PURE__ */ r.jsx("path", { d: "m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z" })
|
|
192
192
|
}
|
|
193
|
-
)),
|
|
193
|
+
)), H = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
194
194
|
"svg",
|
|
195
195
|
{
|
|
196
196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -202,7 +202,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
202
202
|
className: l,
|
|
203
203
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-480q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 66-47 113t-113 47ZM160-160v-112q0-34 17.5-62.5T224-378q62-31 126-46.5T480-440q66 0 130 15.5T736-378q29 15 46.5 43.5T800-272v112H160Zm80-80h480v-32q0-11-5.5-20T700-306q-54-27-109-40.5T480-360q-56 0-111 13.5T260-306q-9 5-14.5 14t-5.5 20v32Zm240-320q33 0 56.5-23.5T560-640q0-33-23.5-56.5T480-720q-33 0-56.5 23.5T400-640q0 33 23.5 56.5T480-560Zm0-80Zm0 400Z" })
|
|
204
204
|
}
|
|
205
|
-
)),
|
|
205
|
+
)), j = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
206
206
|
"svg",
|
|
207
207
|
{
|
|
208
208
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -214,7 +214,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
214
214
|
className: l,
|
|
215
215
|
children: /* @__PURE__ */ r.jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h280v80H200Zm440-160-55-58 102-102H360v-80h327L585-622l55-58 200 200-200 200Z" })
|
|
216
216
|
}
|
|
217
|
-
)),
|
|
217
|
+
)), M = s(
|
|
218
218
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
219
219
|
"svg",
|
|
220
220
|
{
|
|
@@ -228,7 +228,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
228
228
|
children: /* @__PURE__ */ r.jsx("path", { d: "M320-440v-287L217-624l-57-56 200-200 200 200-57 56-103-103v287h-80ZM600-80 400-280l57-56 103 103v-287h80v287l103-103 57 56L600-80Z" })
|
|
229
229
|
}
|
|
230
230
|
)
|
|
231
|
-
),
|
|
231
|
+
), L = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
232
232
|
"svg",
|
|
233
233
|
{
|
|
234
234
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -240,7 +240,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
240
240
|
className: l,
|
|
241
241
|
children: /* @__PURE__ */ r.jsx("path", { d: "M400-240v-80h160v80H400ZM240-440v-80h480v80H240ZM120-640v-80h720v80H120Z" })
|
|
242
242
|
}
|
|
243
|
-
)),
|
|
243
|
+
)), f = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
244
244
|
"svg",
|
|
245
245
|
{
|
|
246
246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -252,7 +252,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
252
252
|
className: l,
|
|
253
253
|
children: /* @__PURE__ */ r.jsx("path", { d: "M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" })
|
|
254
254
|
}
|
|
255
|
-
)),
|
|
255
|
+
)), V = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
256
256
|
"svg",
|
|
257
257
|
{
|
|
258
258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -264,7 +264,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
264
264
|
className: l,
|
|
265
265
|
children: /* @__PURE__ */ r.jsx("path", { d: "m668-380 152-130 120 10-176 153 52 227-102-62-46-198Zm-94-292-42-98 46-110 92 217-96-9ZM294-287l126-76 126 77-33-144 111-96-146-13-58-136-58 135-146 13 111 97-33 143ZM173-120l65-281L20-590l288-25 112-265 112 265 288 25-218 189 65 281-247-149-247 149Zm247-340Z" })
|
|
266
266
|
}
|
|
267
|
-
)),
|
|
267
|
+
)), B = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
268
268
|
"svg",
|
|
269
269
|
{
|
|
270
270
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -276,7 +276,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
276
276
|
className: l,
|
|
277
277
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-160q-33 0-56.5-23.5T400-240q0-33 23.5-56.5T480-320q33 0 56.5 23.5T560-240q0 33-23.5 56.5T480-160Zm0-240q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm0-240q-33 0-56.5-23.5T400-720q0-33 23.5-56.5T480-800q33 0 56.5 23.5T560-720q0 33-23.5 56.5T480-640Z" })
|
|
278
278
|
}
|
|
279
|
-
)),
|
|
279
|
+
)), F = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
280
280
|
"svg",
|
|
281
281
|
{
|
|
282
282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -288,7 +288,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
288
288
|
className: l,
|
|
289
289
|
children: /* @__PURE__ */ r.jsx("path", { d: "M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z" })
|
|
290
290
|
}
|
|
291
|
-
)),
|
|
291
|
+
)), _ = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
292
292
|
"svg",
|
|
293
293
|
{
|
|
294
294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -300,7 +300,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
300
300
|
className: l,
|
|
301
301
|
children: /* @__PURE__ */ r.jsx("path", { d: "M200-200h57l391-391-57-57-391 391v57Zm-80 80v-170l528-527q12-11 26.5-17t30.5-6q16 0 31 6t26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L290-120H120Zm640-584-56-56 56 56Zm-141 85-28-29 57 57-29-28Z" })
|
|
302
302
|
}
|
|
303
|
-
)),
|
|
303
|
+
)), y = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
304
304
|
"svg",
|
|
305
305
|
{
|
|
306
306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -312,7 +312,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
312
312
|
className: l,
|
|
313
313
|
children: /* @__PURE__ */ r.jsx("path", { d: "M440-320v-326L336-542l-56-58 200-200 200 200-56 58-104-104v326h-80ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z" })
|
|
314
314
|
}
|
|
315
|
-
)),
|
|
315
|
+
)), k = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
316
316
|
"svg",
|
|
317
317
|
{
|
|
318
318
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -324,7 +324,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
324
324
|
className: l,
|
|
325
325
|
children: /* @__PURE__ */ r.jsx("path", { d: "M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z" })
|
|
326
326
|
}
|
|
327
|
-
)),
|
|
327
|
+
)), U = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
328
328
|
"svg",
|
|
329
329
|
{
|
|
330
330
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -336,7 +336,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
336
336
|
className: l,
|
|
337
337
|
children: /* @__PURE__ */ r.jsx("path", { d: "M80-200v-80h800v80H80Zm46-242-52-30 34-60H40v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Zm320 0-52-30 34-60h-68v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Zm320 0-52-30 34-60h-68v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Z" })
|
|
338
338
|
}
|
|
339
|
-
)),
|
|
339
|
+
)), A = s(
|
|
340
340
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
341
341
|
"svg",
|
|
342
342
|
{
|
|
@@ -350,7 +350,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
350
350
|
children: /* @__PURE__ */ r.jsx("path", { d: "M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0 360Z" })
|
|
351
351
|
}
|
|
352
352
|
)
|
|
353
|
-
),
|
|
353
|
+
), E = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
354
354
|
"svg",
|
|
355
355
|
{
|
|
356
356
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -374,7 +374,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
374
374
|
className: l,
|
|
375
375
|
children: /* @__PURE__ */ r.jsx("path", { d: "M720-330q0 104-73 177T470-80q-104 0-177-73t-73-177v-370q0-75 52.5-127.5T400-880q75 0 127.5 52.5T580-700v350q0 46-32 78t-78 32q-46 0-78-32t-32-78v-370h80v370q0 13 8.5 21.5T470-320q13 0 21.5-8.5T500-350v-350q-1-42-29.5-71T400-800q-42 0-71 29t-29 71v370q-1 71 49 120.5T470-160q70 0 119-49.5T640-330v-390h80v390Z" })
|
|
376
376
|
}
|
|
377
|
-
)),
|
|
377
|
+
)), D = s(
|
|
378
378
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
379
379
|
"svg",
|
|
380
380
|
{
|
|
@@ -388,7 +388,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
388
388
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-80q-155 0-269-103T82-440h81q15 121 105.5 200.5T480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-86 0-159.5 42.5T204-640h116v80H88q29-140 139-230t253-90q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm112-232L440-464v-216h80v184l128 128-56 56Z" })
|
|
389
389
|
}
|
|
390
390
|
)
|
|
391
|
-
),
|
|
391
|
+
), O = s(
|
|
392
392
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
393
393
|
"svg",
|
|
394
394
|
{
|
|
@@ -402,7 +402,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
402
402
|
children: /* @__PURE__ */ r.jsx("path", { d: "M80-80v-720q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H240L80-80Zm126-240h594v-480H160v525l46-45Zm-46 0v-480 480Z" })
|
|
403
403
|
}
|
|
404
404
|
)
|
|
405
|
-
),
|
|
405
|
+
), I = s(
|
|
406
406
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsxs(
|
|
407
407
|
"svg",
|
|
408
408
|
{
|
|
@@ -431,7 +431,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
431
431
|
]
|
|
432
432
|
}
|
|
433
433
|
)
|
|
434
|
-
),
|
|
434
|
+
), P = s(
|
|
435
435
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
436
436
|
"svg",
|
|
437
437
|
{
|
|
@@ -445,7 +445,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
445
445
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-320q75 0 127.5-52.5T660-500q0-75-52.5-127.5T480-680q-75 0-127.5 52.5T300-500q0 75 52.5 127.5T480-320Zm0-72q-45 0-76.5-31.5T372-500q0-45 31.5-76.5T480-608q45 0 76.5 31.5T588-500q0 45-31.5 76.5T480-392Zm0 192q-146 0-266-81.5T40-500q54-137 174-218.5T480-800q146 0 266 81.5T920-500q-54 137-174 218.5T480-200Zm0-300Zm0 220q113 0 207.5-59.5T832-500q-50-101-144.5-160.5T480-720q-113 0-207.5 59.5T128-500q50 101 144.5 160.5T480-280Z" })
|
|
446
446
|
}
|
|
447
447
|
)
|
|
448
|
-
),
|
|
448
|
+
), R = s(
|
|
449
449
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
450
450
|
"svg",
|
|
451
451
|
{
|
|
@@ -459,7 +459,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
459
459
|
children: /* @__PURE__ */ r.jsx("path", { d: "m644-428-58-58q9-47-27-88t-93-32l-58-58q17-8 34.5-12t37.5-4q75 0 127.5 52.5T660-500q0 20-4 37.5T644-428Zm128 126-58-56q38-29 67.5-63.5T832-500q-50-101-143.5-160.5T480-720q-29 0-57 4t-55 12l-62-62q41-17 84-25.5t90-8.5q151 0 269 83.5T920-500q-23 59-60.5 109.5T772-302Zm20 246L624-222q-35 11-70.5 16.5T480-200q-151 0-269-83.5T40-500q21-53 53-98.5t73-81.5L56-792l56-56 736 736-56 56ZM222-624q-29 26-53 57t-41 67q50 101 143.5 160.5T480-280q20 0 39-2.5t39-5.5l-36-38q-11 3-21 4.5t-21 1.5q-75 0-127.5-52.5T300-500q0-11 1.5-21t4.5-21l-84-82Zm319 93Zm-151 75Z" })
|
|
460
460
|
}
|
|
461
461
|
)
|
|
462
|
-
),
|
|
462
|
+
), b = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
463
463
|
"svg",
|
|
464
464
|
{
|
|
465
465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -471,7 +471,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
471
471
|
fill: "currentColor",
|
|
472
472
|
children: /* @__PURE__ */ r.jsx("path", { d: "M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z" })
|
|
473
473
|
}
|
|
474
|
-
)),
|
|
474
|
+
)), G = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
475
475
|
"svg",
|
|
476
476
|
{
|
|
477
477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -483,7 +483,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
483
483
|
fill: "currentColor",
|
|
484
484
|
children: /* @__PURE__ */ r.jsx("path", { d: "M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" })
|
|
485
485
|
}
|
|
486
|
-
)),
|
|
486
|
+
)), N = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
487
487
|
"svg",
|
|
488
488
|
{
|
|
489
489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -495,7 +495,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
495
495
|
viewBox: "0 -960 960 960",
|
|
496
496
|
children: /* @__PURE__ */ r.jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm-40-160h80v-240h-80v240Zm40 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" })
|
|
497
497
|
}
|
|
498
|
-
)),
|
|
498
|
+
)), W = s(
|
|
499
499
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
500
500
|
"svg",
|
|
501
501
|
{
|
|
@@ -509,7 +509,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
509
509
|
children: /* @__PURE__ */ r.jsx("path", { d: "M260-160q-91 0-155.5-63T40-377q0-78 47-139t123-78q25-92 100-149t170-57q117 0 198.5 81.5T760-520q69 8 114.5 59.5T920-340q0 75-52.5 127.5T740-160H520q-33 0-56.5-23.5T440-240v-206l-64 62-56-56 160-160 160 160-56 56-64-62v206h220q42 0 71-29t29-71q0-42-29-71t-71-29h-60v-80q0-83-58.5-141.5T480-720q-83 0-141.5 58.5T280-520h-20q-58 0-99 41t-41 99q0 58 41 99t99 41h100v80H260Zm220-280Z" })
|
|
510
510
|
}
|
|
511
511
|
)
|
|
512
|
-
),
|
|
512
|
+
), J = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
513
513
|
"svg",
|
|
514
514
|
{
|
|
515
515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -521,7 +521,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
521
521
|
className: l,
|
|
522
522
|
children: /* @__PURE__ */ r.jsx("path", { d: "m612-292 56-56-148-148v-184h-80v216l172 172ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-400Zm0 320q133 0 226.5-93.5T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160Z" })
|
|
523
523
|
}
|
|
524
|
-
)),
|
|
524
|
+
)), K = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
525
525
|
"svg",
|
|
526
526
|
{
|
|
527
527
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -533,7 +533,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
533
533
|
className: l,
|
|
534
534
|
children: /* @__PURE__ */ r.jsx("path", { d: "M520-200v-560h240v560H520Zm-320 0v-560h240v560H200Zm400-80h80v-400h-80v400Zm-320 0h80v-400h-80v400Zm0-400v400-400Zm320 0v400-400Z" })
|
|
535
535
|
}
|
|
536
|
-
)),
|
|
536
|
+
)), Q = s(
|
|
537
537
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
538
538
|
"svg",
|
|
539
539
|
{
|
|
@@ -553,7 +553,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
553
553
|
)
|
|
554
554
|
}
|
|
555
555
|
)
|
|
556
|
-
),
|
|
556
|
+
), X = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
557
557
|
"svg",
|
|
558
558
|
{
|
|
559
559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -565,7 +565,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
565
565
|
className: l,
|
|
566
566
|
children: /* @__PURE__ */ r.jsx("path", { d: "M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z" })
|
|
567
567
|
}
|
|
568
|
-
)),
|
|
568
|
+
)), Y = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
569
569
|
"svg",
|
|
570
570
|
{
|
|
571
571
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -577,7 +577,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
577
577
|
className: l,
|
|
578
578
|
children: /* @__PURE__ */ r.jsx("path", { d: "M4 13.3333L0 9.33333L0.95 8.38333L4 11.4333L7.05 8.38333L8 9.33333L4 13.3333ZM0.966667 4.93333L0 4L4 0L8 4L7.03333 4.93333L4 1.9L0.966667 4.93333Z" })
|
|
579
579
|
}
|
|
580
|
-
)),
|
|
580
|
+
)), $ = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
581
581
|
"svg",
|
|
582
582
|
{
|
|
583
583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -589,7 +589,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
589
589
|
className: l,
|
|
590
590
|
children: /* @__PURE__ */ r.jsx("path", { d: "M8.4 17L12 13.4L15.6 17L17 15.6L13.4 12L17 8.4L15.6 7L12 10.6L8.4 7L7 8.4L10.6 12L7 15.6L8.4 17ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z" })
|
|
591
591
|
}
|
|
592
|
-
)),
|
|
592
|
+
)), z = s(
|
|
593
593
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
594
594
|
"svg",
|
|
595
595
|
{
|
|
@@ -603,7 +603,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
603
603
|
children: /* @__PURE__ */ r.jsx("path", { d: "M10.6 16.6L17.65 9.55L16.25 8.15L10.6 13.8L7.75 10.95L6.35 12.35L10.6 16.6ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z" })
|
|
604
604
|
}
|
|
605
605
|
)
|
|
606
|
-
),
|
|
606
|
+
), t0 = s(
|
|
607
607
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
608
608
|
"svg",
|
|
609
609
|
{
|
|
@@ -623,7 +623,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
623
623
|
)
|
|
624
624
|
}
|
|
625
625
|
)
|
|
626
|
-
),
|
|
626
|
+
), r0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
627
627
|
"svg",
|
|
628
628
|
{
|
|
629
629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -642,7 +642,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
642
642
|
}
|
|
643
643
|
)
|
|
644
644
|
}
|
|
645
|
-
)),
|
|
645
|
+
)), l0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsxs(
|
|
646
646
|
"svg",
|
|
647
647
|
{
|
|
648
648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -711,7 +711,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
711
711
|
] })
|
|
712
712
|
]
|
|
713
713
|
}
|
|
714
|
-
)),
|
|
714
|
+
)), h0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
715
715
|
"svg",
|
|
716
716
|
{
|
|
717
717
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -730,7 +730,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
730
730
|
}
|
|
731
731
|
)
|
|
732
732
|
}
|
|
733
|
-
)),
|
|
733
|
+
)), s0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
734
734
|
"svg",
|
|
735
735
|
{
|
|
736
736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -749,7 +749,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
749
749
|
}
|
|
750
750
|
)
|
|
751
751
|
}
|
|
752
|
-
)),
|
|
752
|
+
)), o0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
753
753
|
"svg",
|
|
754
754
|
{
|
|
755
755
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -768,7 +768,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
768
768
|
}
|
|
769
769
|
)
|
|
770
770
|
}
|
|
771
|
-
)),
|
|
771
|
+
)), n0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
772
772
|
"svg",
|
|
773
773
|
{
|
|
774
774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -787,7 +787,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
787
787
|
}
|
|
788
788
|
)
|
|
789
789
|
}
|
|
790
|
-
)),
|
|
790
|
+
)), e0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
791
791
|
"svg",
|
|
792
792
|
{
|
|
793
793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -806,7 +806,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
806
806
|
}
|
|
807
807
|
)
|
|
808
808
|
}
|
|
809
|
-
)),
|
|
809
|
+
)), w0 = s(
|
|
810
810
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
811
811
|
"svg",
|
|
812
812
|
{
|
|
@@ -827,7 +827,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
827
827
|
)
|
|
828
828
|
}
|
|
829
829
|
)
|
|
830
|
-
),
|
|
830
|
+
), q0 = s(
|
|
831
831
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
832
832
|
"svg",
|
|
833
833
|
{
|
|
@@ -848,7 +848,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
848
848
|
)
|
|
849
849
|
}
|
|
850
850
|
)
|
|
851
|
-
),
|
|
851
|
+
), v0 = s(
|
|
852
852
|
({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
853
853
|
"svg",
|
|
854
854
|
{
|
|
@@ -869,7 +869,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
869
869
|
)
|
|
870
870
|
}
|
|
871
871
|
)
|
|
872
|
-
),
|
|
872
|
+
), i0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
873
873
|
"svg",
|
|
874
874
|
{
|
|
875
875
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -888,7 +888,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
888
888
|
}
|
|
889
889
|
)
|
|
890
890
|
}
|
|
891
|
-
)),
|
|
891
|
+
)), T0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
892
892
|
"svg",
|
|
893
893
|
{
|
|
894
894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -907,7 +907,7 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
907
907
|
}
|
|
908
908
|
)
|
|
909
909
|
}
|
|
910
|
-
)),
|
|
910
|
+
)), C0 = s(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r.jsx(
|
|
911
911
|
"svg",
|
|
912
912
|
{
|
|
913
913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -926,196 +926,66 @@ const s = (t) => i0(t), o = s(({ size: t = 24, className: l, ...h }) => /* @__PU
|
|
|
926
926
|
}
|
|
927
927
|
)
|
|
928
928
|
}
|
|
929
|
-
))
|
|
930
|
-
Ticket: o,
|
|
931
|
-
Home: e,
|
|
932
|
-
Boards: w,
|
|
933
|
-
Notifications: q,
|
|
934
|
-
Help: v,
|
|
935
|
-
Settings: i,
|
|
936
|
-
CrevronLeft: T,
|
|
937
|
-
CrevronRight: C,
|
|
938
|
-
ArrowLeft: x,
|
|
939
|
-
Shared: g,
|
|
940
|
-
ChevronDown: c,
|
|
941
|
-
Collapse: d,
|
|
942
|
-
Calendar: Z,
|
|
943
|
-
Close: a,
|
|
944
|
-
UserPerson: m,
|
|
945
|
-
Logout: p,
|
|
946
|
-
ArrowUpDown: u,
|
|
947
|
-
Filter: H,
|
|
948
|
-
Search: j,
|
|
949
|
-
Stars: M,
|
|
950
|
-
MoreVert: f,
|
|
951
|
-
Add: L,
|
|
952
|
-
Edit: V,
|
|
953
|
-
Upload: B,
|
|
954
|
-
Copy: _,
|
|
955
|
-
FaLock: y,
|
|
956
|
-
AccountCircle: F,
|
|
957
|
-
UserAdd: k,
|
|
958
|
-
AttachFile: S,
|
|
959
|
-
HistoryActivity: U,
|
|
960
|
-
MessageSquare: A,
|
|
961
|
-
CloseNavBarDesktop: E,
|
|
962
|
-
EyeVisibility: D,
|
|
963
|
-
EyeVisibilityOff: I,
|
|
964
|
-
Check: O,
|
|
965
|
-
Info: b,
|
|
966
|
-
Error: P,
|
|
967
|
-
TicketFilled: n,
|
|
968
|
-
UploadCloud: N,
|
|
969
|
-
Clock: R,
|
|
970
|
-
Pause: G,
|
|
971
|
-
FastForward: $,
|
|
972
|
-
Trash: W,
|
|
973
|
-
Sort: J,
|
|
974
|
-
Cancel: K,
|
|
975
|
-
CheckCircle: Q,
|
|
976
|
-
FormatColorText: X,
|
|
977
|
-
CheckList: Y,
|
|
978
|
-
WhatsApp: z,
|
|
979
|
-
File: r0,
|
|
980
|
-
Email: t0,
|
|
981
|
-
Download: l0,
|
|
982
|
-
Reload: h0,
|
|
983
|
-
Image: s0,
|
|
984
|
-
DocumentFill: o0,
|
|
985
|
-
Company: v0,
|
|
986
|
-
EditFill: w0,
|
|
987
|
-
TrashFill: q0,
|
|
988
|
-
MessageSquareFill: n0,
|
|
989
|
-
UserAddFill: e0
|
|
990
|
-
};
|
|
991
|
-
for (const [t, l] of Object.entries(T0))
|
|
992
|
-
l.displayName = `${t}_Icon`;
|
|
993
|
-
const C0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
994
|
-
__proto__: null,
|
|
995
|
-
AccountCircle: F,
|
|
996
|
-
Add: L,
|
|
997
|
-
ArrowLeft: x,
|
|
998
|
-
ArrowUpDown: u,
|
|
999
|
-
AttachFile: S,
|
|
1000
|
-
Boards: w,
|
|
1001
|
-
Calendar: Z,
|
|
1002
|
-
Cancel: K,
|
|
1003
|
-
Check: O,
|
|
1004
|
-
CheckCircle: Q,
|
|
1005
|
-
CheckList: Y,
|
|
1006
|
-
ChevronDown: c,
|
|
1007
|
-
Clock: R,
|
|
1008
|
-
Close: a,
|
|
1009
|
-
CloseNavBarDesktop: E,
|
|
1010
|
-
Collapse: d,
|
|
1011
|
-
Company: v0,
|
|
1012
|
-
Copy: _,
|
|
1013
|
-
CrevronLeft: T,
|
|
1014
|
-
CrevronRight: C,
|
|
1015
|
-
DocumentFill: o0,
|
|
1016
|
-
Download: l0,
|
|
1017
|
-
Edit: V,
|
|
1018
|
-
EditFill: w0,
|
|
1019
|
-
Email: t0,
|
|
1020
|
-
Error: P,
|
|
1021
|
-
EyeVisibility: D,
|
|
1022
|
-
EyeVisibilityOff: I,
|
|
1023
|
-
FaLock: y,
|
|
1024
|
-
FastForward: $,
|
|
1025
|
-
File: r0,
|
|
1026
|
-
Filter: H,
|
|
1027
|
-
FormatColorText: X,
|
|
1028
|
-
Help: v,
|
|
1029
|
-
HistoryActivity: U,
|
|
1030
|
-
Home: e,
|
|
1031
|
-
get Icons() {
|
|
1032
|
-
return C0;
|
|
1033
|
-
},
|
|
1034
|
-
Image: s0,
|
|
1035
|
-
Info: b,
|
|
1036
|
-
Logout: p,
|
|
1037
|
-
MessageSquare: A,
|
|
1038
|
-
MessageSquareFill: n0,
|
|
1039
|
-
MoreVert: f,
|
|
1040
|
-
Notifications: q,
|
|
1041
|
-
Pause: G,
|
|
1042
|
-
Reload: h0,
|
|
1043
|
-
Search: j,
|
|
1044
|
-
Settings: i,
|
|
1045
|
-
Shared: g,
|
|
1046
|
-
Sort: J,
|
|
1047
|
-
Stars: M,
|
|
1048
|
-
Ticket: o,
|
|
1049
|
-
TicketFilled: n,
|
|
1050
|
-
Trash: W,
|
|
1051
|
-
TrashFill: q0,
|
|
1052
|
-
Upload: B,
|
|
1053
|
-
UploadCloud: N,
|
|
1054
|
-
UserAdd: k,
|
|
1055
|
-
UserAddFill: e0,
|
|
1056
|
-
UserPerson: m,
|
|
1057
|
-
WhatsApp: z
|
|
1058
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
929
|
+
));
|
|
1059
930
|
export {
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
931
|
+
A as AccountCircle,
|
|
932
|
+
F as Add,
|
|
933
|
+
d as ArrowLeft,
|
|
934
|
+
M as ArrowUpDown,
|
|
1064
935
|
S as AttachFile,
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
z as WhatsApp
|
|
936
|
+
i as Boards,
|
|
937
|
+
p as Calendar,
|
|
938
|
+
$ as Cancel,
|
|
939
|
+
b as Check,
|
|
940
|
+
z as CheckCircle,
|
|
941
|
+
r0 as CheckList,
|
|
942
|
+
a as ChevronDown,
|
|
943
|
+
J as Clock,
|
|
944
|
+
u as Close,
|
|
945
|
+
I as CloseNavBarDesktop,
|
|
946
|
+
m as Collapse,
|
|
947
|
+
C0 as Company,
|
|
948
|
+
k as Copy,
|
|
949
|
+
g as CrevronLeft,
|
|
950
|
+
c as CrevronRight,
|
|
951
|
+
w0 as DocumentFill,
|
|
952
|
+
o0 as Download,
|
|
953
|
+
_ as Edit,
|
|
954
|
+
i0 as EditFill,
|
|
955
|
+
h0 as Email,
|
|
956
|
+
N as Error,
|
|
957
|
+
P as EyeVisibility,
|
|
958
|
+
R as EyeVisibilityOff,
|
|
959
|
+
U as FaLock,
|
|
960
|
+
Q as FastForward,
|
|
961
|
+
s0 as File,
|
|
962
|
+
L as Filter,
|
|
963
|
+
t0 as FormatColorText,
|
|
964
|
+
C as Help,
|
|
965
|
+
D as HistoryActivity,
|
|
966
|
+
v as Home,
|
|
967
|
+
e0 as Image,
|
|
968
|
+
G as Info,
|
|
969
|
+
j as Logout,
|
|
970
|
+
O as MessageSquare,
|
|
971
|
+
q0 as MessageSquareFill,
|
|
972
|
+
B as MoreVert,
|
|
973
|
+
T as Notifications,
|
|
974
|
+
K as Pause,
|
|
975
|
+
n0 as Reload,
|
|
976
|
+
f as Search,
|
|
977
|
+
x as Settings,
|
|
978
|
+
Z as Shared,
|
|
979
|
+
Y as Sort,
|
|
980
|
+
V as Stars,
|
|
981
|
+
w as Ticket,
|
|
982
|
+
q as TicketFilled,
|
|
983
|
+
X as Trash,
|
|
984
|
+
T0 as TrashFill,
|
|
985
|
+
y as Upload,
|
|
986
|
+
W as UploadCloud,
|
|
987
|
+
E as UserAdd,
|
|
988
|
+
v0 as UserAddFill,
|
|
989
|
+
H as UserPerson,
|
|
990
|
+
l0 as WhatsApp
|
|
1121
991
|
};
|
package/dist/Spinner.es.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -101,5 +101,5 @@ export type { FAButtonProps } from './components/FAB/FAButton';
|
|
|
101
101
|
export type { RadioButtonProps } from './components/RadioButton/RadioButton';
|
|
102
102
|
export type { RecurrentDatePickerProps } from './components/RecurrentDatePicker/RecurrentDatePicker';
|
|
103
103
|
export type { RecurrentDatePickerRRuleProps } from './components/RecurrentDatePicker/RecurrentDatePickerRRule';
|
|
104
|
-
export {
|
|
104
|
+
export type { RecurrenceConfig } from './components/RecurrentDatePicker/RecurrentDatePicker';
|
|
105
105
|
export * from './Icons/Icons';
|
|
@@ -42,12 +42,12 @@ import T, { useRef as h, useState as g, useLayoutEffect as P, createContext as q
|
|
|
42
42
|
import { useGSAP as I } from "@gsap/react";
|
|
43
43
|
import x from "gsap";
|
|
44
44
|
import { CloseNavBarDesktop as w } from "./Icons.es.js";
|
|
45
|
-
import { AccountCircle as oa, Add as na, ArrowLeft as ia, ArrowUpDown as sa, AttachFile as la, Boards as ca, Calendar as ua, Cancel as da, Check as fa, CheckCircle as pa, CheckList as ma, ChevronDown as xa, Clock as ba, Close as ya, Collapse as ha, Company as ga, Copy as va, CrevronLeft as wa, CrevronRight as Ca, DocumentFill as ja, Download as Na, Edit as Sa, EditFill as ka, Email as Ia, Error as Ra, EyeVisibility as Ba, EyeVisibilityOff as Aa, FaLock as La, FastForward as Ta, File as Pa, Filter as qa, FormatColorText as Da, Help as Ea, HistoryActivity as za, Home as Fa,
|
|
45
|
+
import { AccountCircle as oa, Add as na, ArrowLeft as ia, ArrowUpDown as sa, AttachFile as la, Boards as ca, Calendar as ua, Cancel as da, Check as fa, CheckCircle as pa, CheckList as ma, ChevronDown as xa, Clock as ba, Close as ya, Collapse as ha, Company as ga, Copy as va, CrevronLeft as wa, CrevronRight as Ca, DocumentFill as ja, Download as Na, Edit as Sa, EditFill as ka, Email as Ia, Error as Ra, EyeVisibility as Ba, EyeVisibilityOff as Aa, FaLock as La, FastForward as Ta, File as Pa, Filter as qa, FormatColorText as Da, Help as Ea, HistoryActivity as za, Home as Fa, Info as Oa, Logout as Ha, MessageSquare as Ua, MessageSquareFill as Wa, MoreVert as Ma, Notifications as $a, Pause as Va, Reload as Ga, Search as _a, Settings as Xa, Shared as Za, Sort as Ja, Stars as Ka, Ticket as Qa, TicketFilled as Ya, Trash as er, TrashFill as tr, Upload as ar, UploadCloud as rr, UserAdd as or, UserAddFill as nr, UserPerson as ir, WhatsApp as sr } from "./Icons.es.js";
|
|
46
46
|
import { motion as b, AnimatePresence as R } from "framer-motion";
|
|
47
|
-
import { default as
|
|
47
|
+
import { default as cr } from "./OtpInput.es.js";
|
|
48
48
|
import { useDropzone as z } from "react-dropzone";
|
|
49
|
-
import { useIsMobile as
|
|
50
|
-
import { default as
|
|
49
|
+
import { useIsMobile as dr } from "./useDevice.es.js";
|
|
50
|
+
import { default as pr } from "./DropZone.es.js";
|
|
51
51
|
const F = (t, e) => {
|
|
52
52
|
I(
|
|
53
53
|
() => {
|
|
@@ -973,7 +973,7 @@ export {
|
|
|
973
973
|
Na as Download,
|
|
974
974
|
ze as DrawerDesktop,
|
|
975
975
|
He as DrawerMobile,
|
|
976
|
-
|
|
976
|
+
pr as DropZone,
|
|
977
977
|
Sa as Edit,
|
|
978
978
|
ka as EditFill,
|
|
979
979
|
Ia as Email,
|
|
@@ -990,47 +990,46 @@ export {
|
|
|
990
990
|
Ea as Help,
|
|
991
991
|
za as HistoryActivity,
|
|
992
992
|
Fa as Home,
|
|
993
|
-
Oa as Icons,
|
|
994
993
|
Vt as Image,
|
|
995
994
|
Mt as ImageGallery,
|
|
996
|
-
|
|
995
|
+
Oa as Info,
|
|
997
996
|
Ve as Input,
|
|
998
997
|
_e as InputMultiple,
|
|
999
998
|
Ht as LayoutGeneric,
|
|
1000
999
|
Ze as Logo,
|
|
1001
|
-
|
|
1000
|
+
Ha as Logout,
|
|
1002
1001
|
Ke as Menu,
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1002
|
+
Ua as MessageSquare,
|
|
1003
|
+
Wa as MessageSquareFill,
|
|
1004
|
+
Ma as MoreVert,
|
|
1006
1005
|
xe as NavBarActions,
|
|
1007
1006
|
ge as NavbarCollapseButton,
|
|
1008
1007
|
be as NavbarLinks,
|
|
1009
1008
|
me as NavigationLink,
|
|
1010
|
-
|
|
1011
|
-
|
|
1009
|
+
$a as Notifications,
|
|
1010
|
+
cr as OtpInput,
|
|
1012
1011
|
Ye as Pagination,
|
|
1013
|
-
|
|
1012
|
+
Va as Pause,
|
|
1014
1013
|
tt as ProfilePictureUpload,
|
|
1015
1014
|
rt as ProgressBar,
|
|
1016
1015
|
aa as RadioButton,
|
|
1017
1016
|
yt as RecurrentDatePicker,
|
|
1018
1017
|
gt as RecurrentDatePickerRRule,
|
|
1019
|
-
|
|
1020
|
-
|
|
1018
|
+
Ga as Reload,
|
|
1019
|
+
_a as Search,
|
|
1021
1020
|
de as SecondaryBar,
|
|
1022
1021
|
Ft as SegmentedButton,
|
|
1023
1022
|
nt as Select,
|
|
1024
1023
|
Qt as SelectSearch,
|
|
1025
|
-
|
|
1026
|
-
|
|
1024
|
+
Xa as Settings,
|
|
1025
|
+
Za as Shared,
|
|
1027
1026
|
pe as Sidebar,
|
|
1028
1027
|
M as SidebarProvider,
|
|
1029
1028
|
Ut as SidebarRefProvider,
|
|
1030
1029
|
Et as Skeleton,
|
|
1031
|
-
|
|
1030
|
+
Ja as Sort,
|
|
1032
1031
|
st as Spinner,
|
|
1033
|
-
|
|
1032
|
+
Ka as Stars,
|
|
1034
1033
|
ct as Steps,
|
|
1035
1034
|
dt as SwipeContainer,
|
|
1036
1035
|
pt as Switch,
|
|
@@ -1044,19 +1043,19 @@ export {
|
|
|
1044
1043
|
It as TableHeader,
|
|
1045
1044
|
Rt as TableRow,
|
|
1046
1045
|
Tt as TextArea,
|
|
1047
|
-
|
|
1048
|
-
|
|
1046
|
+
Qa as Ticket,
|
|
1047
|
+
Ya as TicketFilled,
|
|
1049
1048
|
_t as Toast,
|
|
1050
1049
|
Jt as ToastProvider,
|
|
1051
1050
|
qt as Tooltip,
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1051
|
+
er as Trash,
|
|
1052
|
+
tr as TrashFill,
|
|
1053
|
+
ar as Upload,
|
|
1054
|
+
rr as UploadCloud,
|
|
1055
|
+
or as UserAdd,
|
|
1056
|
+
nr as UserAddFill,
|
|
1057
|
+
ir as UserPerson,
|
|
1058
|
+
sr as WhatsApp,
|
|
1060
1059
|
Xt as toastpyrion,
|
|
1061
1060
|
ye as useActionsNavbar,
|
|
1062
1061
|
Ce as useClickOutside,
|
|
@@ -1064,7 +1063,7 @@ export {
|
|
|
1064
1063
|
Fe as useDrawerDesktop,
|
|
1065
1064
|
Ue as useDrawerMobile,
|
|
1066
1065
|
we as useFileDropzone,
|
|
1067
|
-
|
|
1066
|
+
dr as useIsMobile,
|
|
1068
1067
|
he as useNavbarCollapse,
|
|
1069
1068
|
fe as useSidebar,
|
|
1070
1069
|
k as useSidebarContext
|