@3w-witim/ui 0.1.0

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.
@@ -0,0 +1,568 @@
1
+ import { jsx, jsxs } from 'react/jsx-runtime';
2
+
3
+ // src/icons/_base.tsx
4
+ function IconBase({
5
+ size = 20,
6
+ children,
7
+ ...props
8
+ }) {
9
+ return /* @__PURE__ */ jsx(
10
+ "svg",
11
+ {
12
+ xmlns: "http://www.w3.org/2000/svg",
13
+ width: size,
14
+ height: size,
15
+ viewBox: "0 0 24 24",
16
+ fill: "none",
17
+ stroke: "currentColor",
18
+ strokeWidth: 1.5,
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round",
21
+ "aria-hidden": "true",
22
+ ...props,
23
+ children
24
+ }
25
+ );
26
+ }
27
+ var AiIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
28
+ /* @__PURE__ */ jsx("path", { d: "M4 10C4 6.5 5 4.5 7 4.5C9 6 10.5 8 12 8C13.5 8 15 6 17 4.5C19 4.5 20 6.5 20 10L20 16Q20 20 16 20L8 20Q4 20 4 16Z" }),
29
+ /* @__PURE__ */ jsx("circle", { cx: "9.5", cy: "14.5", r: "1.1", fill: "currentColor", stroke: "none" }),
30
+ /* @__PURE__ */ jsx("circle", { cx: "14.5", cy: "14.5", r: "1.1", fill: "currentColor", stroke: "none" })
31
+ ] });
32
+ var AlignCenterIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M21 6H3M17 12H7M19 18H5" }) });
33
+ var AlignLeftIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M21 6H3M15 12H3M17 18H3" }) });
34
+ var AlignRightIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M21 6H3M21 12H9M21 18H7" }) });
35
+ var ApprovalIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
36
+ /* @__PURE__ */ jsx("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1.5", ry: "1.5" }),
37
+ /* @__PURE__ */ jsx("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
38
+ /* @__PURE__ */ jsx("path", { d: "m9 14 2 2 4-4" })
39
+ ] });
40
+ var ArchiveIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
41
+ /* @__PURE__ */ jsx("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1.5" }),
42
+ /* @__PURE__ */ jsx("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
43
+ /* @__PURE__ */ jsx("path", { d: "M10 12h4" })
44
+ ] });
45
+ var AttachIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551" }) });
46
+ var AwardIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
47
+ /* @__PURE__ */ jsx("path", { d: "m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526" }),
48
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "8", r: "6" })
49
+ ] });
50
+ var BellIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
51
+ /* @__PURE__ */ jsx("path", { d: "M9 18a3 3 0 0 0 6 0" }),
52
+ /* @__PURE__ */ jsx("path", { d: "M4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.5 18 8A6 6 0 0 0 6 8c0 4.5-1.411 5.956-2.738 7.327A1 1 0 0 0 4 17z" })
53
+ ] });
54
+ var BillingIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
55
+ /* @__PURE__ */ jsx("rect", { width: "20", height: "14", x: "2", y: "5", rx: "3" }),
56
+ /* @__PURE__ */ jsx("path", { d: "M2 10h20" })
57
+ ] });
58
+ var BoardIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
59
+ /* @__PURE__ */ jsx("rect", { x: "3.5", y: "3.5", width: "7", height: "7", rx: "2.5" }),
60
+ /* @__PURE__ */ jsx("rect", { x: "13.5", y: "3.5", width: "7", height: "7", rx: "2.5" }),
61
+ /* @__PURE__ */ jsx("rect", { x: "3.5", y: "13.5", width: "7", height: "7", rx: "2.5" }),
62
+ /* @__PURE__ */ jsx("rect", { x: "13.5", y: "13.5", width: "7", height: "7", rx: "2.5" })
63
+ ] });
64
+ var BoldIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" }) });
65
+ var BookmarkIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }) });
66
+ var BuildingIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
67
+ /* @__PURE__ */ jsx("path", { d: "M10 12h4" }),
68
+ /* @__PURE__ */ jsx("path", { d: "M10 8h4" }),
69
+ /* @__PURE__ */ jsx("path", { d: "M14 21v-3a2 2 0 0 0-4 0v3" }),
70
+ /* @__PURE__ */ jsx("path", { d: "M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2" }),
71
+ /* @__PURE__ */ jsx("path", { d: "M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16" })
72
+ ] });
73
+ var CalendarAddIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
74
+ /* @__PURE__ */ jsx("path", { d: "M16 19h6" }),
75
+ /* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
76
+ /* @__PURE__ */ jsx("path", { d: "M19 16v6" }),
77
+ /* @__PURE__ */ jsx("path", { d: "M21 12.6V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5" }),
78
+ /* @__PURE__ */ jsx("path", { d: "M3 10h18" }),
79
+ /* @__PURE__ */ jsx("path", { d: "M8 2v4" })
80
+ ] });
81
+ var CalendarOffIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
82
+ /* @__PURE__ */ jsx("path", { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" }),
83
+ /* @__PURE__ */ jsx("path", { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5" }),
84
+ /* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
85
+ /* @__PURE__ */ jsx("path", { d: "M3 10h7" }),
86
+ /* @__PURE__ */ jsx("path", { d: "M21 10h-5.5" }),
87
+ /* @__PURE__ */ jsx("path", { d: "m2 2 20 20" })
88
+ ] });
89
+ var CalendarWeekIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
90
+ /* @__PURE__ */ jsx("path", { d: "M8 2v4M16 2v4" }),
91
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "4", rx: "3" }),
92
+ /* @__PURE__ */ jsx("path", { d: "M3 10h18" }),
93
+ /* @__PURE__ */ jsx("path", { d: "M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01" })
94
+ ] });
95
+ var CalendarIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
96
+ /* @__PURE__ */ jsx("rect", { x: "3", y: "4.5", width: "18", height: "16", rx: "3" }),
97
+ /* @__PURE__ */ jsx("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4" })
98
+ ] });
99
+ var ChatIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M21 14a3 3 0 0 1-3 3H8l-5 4V6A3 3 0 0 1 6 3h12a3 3 0 0 1 3 3z" }) });
100
+ var CheckIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" }) });
101
+ var ChevronDownIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" }) });
102
+ var ChevronLeftIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m15 6-6 6 6 6" }) });
103
+ var ChevronRightIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m9 6 6 6-6 6" }) });
104
+ var ChevronUpIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "m6 15 6-6 6 6" }) });
105
+ var ClipboardIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
106
+ /* @__PURE__ */ jsx("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1.5" }),
107
+ /* @__PURE__ */ jsx("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
108
+ /* @__PURE__ */ jsx("path", { d: "M12 11h4" }),
109
+ /* @__PURE__ */ jsx("path", { d: "M12 16h4" }),
110
+ /* @__PURE__ */ jsx("path", { d: "M8 11h.01" }),
111
+ /* @__PURE__ */ jsx("path", { d: "M8 16h.01" })
112
+ ] });
113
+ var ClockIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
114
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
115
+ /* @__PURE__ */ jsx("path", { d: "M12 6v6l4 2" })
116
+ ] });
117
+ var CodeIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
118
+ /* @__PURE__ */ jsx("path", { d: "m16 18 6-6-6-6" }),
119
+ /* @__PURE__ */ jsx("path", { d: "m8 6-6 6 6 6" })
120
+ ] });
121
+ var CollapseIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M8 3v3a2 2 0 0 1-2 2H3M16 3v3a2 2 0 0 0 2 2h3M21 16h-3a2 2 0 0 0-2 2v3M8 21v-3a2 2 0 0 0-2-2H3" }) });
122
+ var CompassIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
123
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
124
+ /* @__PURE__ */ jsx("path", { d: "m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z" })
125
+ ] });
126
+ var CopyIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
127
+ /* @__PURE__ */ jsx("rect", { x: "8.5", y: "8.5", width: "11.5", height: "11.5", rx: "3" }),
128
+ /* @__PURE__ */ jsx("path", { d: "M15.5 8.5V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v7.5a2 2 0 0 0 2 2h2.5" })
129
+ ] });
130
+ var DocumentIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
131
+ /* @__PURE__ */ jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }),
132
+ /* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
133
+ /* @__PURE__ */ jsx("path", { d: "M16 13H8M16 17H8M10 9H8" })
134
+ ] });
135
+ var DownloadIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
136
+ /* @__PURE__ */ jsx("path", { d: "M12 4v11M7.5 11l4.5 4 4.5-4" }),
137
+ /* @__PURE__ */ jsx("path", { d: "M5 20h14" })
138
+ ] });
139
+ var DragIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
140
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "6", r: "1.1", fill: "currentColor", stroke: "none" }),
141
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
142
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "18", r: "1.1", fill: "currentColor", stroke: "none" }),
143
+ /* @__PURE__ */ jsx("circle", { cx: "15", cy: "6", r: "1.1", fill: "currentColor", stroke: "none" }),
144
+ /* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
145
+ /* @__PURE__ */ jsx("circle", { cx: "15", cy: "18", r: "1.1", fill: "currentColor", stroke: "none" })
146
+ ] });
147
+ var EditIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
148
+ /* @__PURE__ */ jsx("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
149
+ /* @__PURE__ */ jsx("path", { d: "m15 5 4 4" })
150
+ ] });
151
+ var EmojiIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
152
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
153
+ /* @__PURE__ */ jsx("path", { d: "M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01" })
154
+ ] });
155
+ var ErrorIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
156
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
157
+ /* @__PURE__ */ jsx("path", { d: "m15 9-6 6M9 9l6 6" })
158
+ ] });
159
+ var ExpandIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M8 3H5a2 2 0 0 0-2 2v3M16 3h3a2 2 0 0 1 2 2v3M21 16v3a2 2 0 0 1-2 2h-3M8 21H5a2 2 0 0 1-2-2v-3" }) });
160
+ var ExportIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
161
+ /* @__PURE__ */ jsx("path", { d: "M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127" }),
162
+ /* @__PURE__ */ jsx("path", { d: "M14 2v5a1 1 0 0 0 1 1h5" }),
163
+ /* @__PURE__ */ jsx("path", { d: "m5 11-3 3" }),
164
+ /* @__PURE__ */ jsx("path", { d: "m5 17-3-3h10" })
165
+ ] });
166
+ var ExternalIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
167
+ /* @__PURE__ */ jsx("path", { d: "M15 3h6v6" }),
168
+ /* @__PURE__ */ jsx("path", { d: "M10 14 21 3" }),
169
+ /* @__PURE__ */ jsx("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
170
+ ] });
171
+ var EyeOffIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
172
+ /* @__PURE__ */ jsx("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
173
+ /* @__PURE__ */ jsx("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
174
+ /* @__PURE__ */ jsx("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
175
+ /* @__PURE__ */ jsx("path", { d: "m2 2 20 20" })
176
+ ] });
177
+ var EyeIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
178
+ /* @__PURE__ */ jsx("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
179
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
180
+ ] });
181
+ var FileIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
182
+ /* @__PURE__ */ jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }),
183
+ /* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
184
+ ] });
185
+ var FilterIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M4 5.5h16l-6.5 8V20l-3-2v-4.5z" }) });
186
+ var FingerprintIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
187
+ /* @__PURE__ */ jsx("path", { d: "M2 12a10 10 0 0 1 18-6" }),
188
+ /* @__PURE__ */ jsx("path", { d: "M2 16h.01" }),
189
+ /* @__PURE__ */ jsx("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
190
+ /* @__PURE__ */ jsx("path", { d: "M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" }),
191
+ /* @__PURE__ */ jsx("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
192
+ /* @__PURE__ */ jsx("path", { d: "M9 6.8a6 6 0 0 1 9 5.2v2" }),
193
+ /* @__PURE__ */ jsx("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
194
+ /* @__PURE__ */ jsx("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
195
+ /* @__PURE__ */ jsx("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" })
196
+ ] });
197
+ var FolderIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M3 8a3 3 0 0 1 3-3h3l2 2.5h7a3 3 0 0 1 3 3V17a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z" }) });
198
+ var HashIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M4 9h16M4 15h16M10 3 8 21M16 3 14 21" }) });
199
+ var HeartIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5" }) });
200
+ var HelpIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
201
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
202
+ /* @__PURE__ */ jsx("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
203
+ /* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
204
+ ] });
205
+ var HighlightIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
206
+ /* @__PURE__ */ jsx("path", { d: "m9 11-6 6v3h9l3-3" }),
207
+ /* @__PURE__ */ jsx("path", { d: "m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4" })
208
+ ] });
209
+ var HomeIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
210
+ /* @__PURE__ */ jsx("path", { d: "M3 10.2 12 3l9 7.2" }),
211
+ /* @__PURE__ */ jsx("path", { d: "M5 9.5V19a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9.5" }),
212
+ /* @__PURE__ */ jsx("path", { d: "M9.5 21v-5.5a1.5 1.5 0 0 1 1.5-1.5h2a1.5 1.5 0 0 1 1.5 1.5V21" })
213
+ ] });
214
+ var HrIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
215
+ /* @__PURE__ */ jsx("rect", { x: "3", y: "5", width: "18", height: "14", rx: "3" }),
216
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "10.5", r: "2" }),
217
+ /* @__PURE__ */ jsx("path", { d: "M6 16a3 3 0 0 1 6 0" }),
218
+ /* @__PURE__ */ jsx("path", { d: "M14.5 10h3.5M14.5 13.5h3.5" })
219
+ ] });
220
+ var ImageIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
221
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "3", ry: "3" }),
222
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "9", r: "2" }),
223
+ /* @__PURE__ */ jsx("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
224
+ ] });
225
+ var InfoIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
226
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
227
+ /* @__PURE__ */ jsx("path", { d: "M12 16v-4M12 8h.01" })
228
+ ] });
229
+ var ItalicIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M19 4h-9M14 20H5M15 4 9 20" }) });
230
+ var KeyIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
231
+ /* @__PURE__ */ jsx("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }),
232
+ /* @__PURE__ */ jsx("path", { d: "m21 2-9.6 9.6" }),
233
+ /* @__PURE__ */ jsx("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
234
+ ] });
235
+ var LeaveIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
236
+ /* @__PURE__ */ jsx("path", { d: "M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4" }),
237
+ /* @__PURE__ */ jsx("path", { d: "M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3" }),
238
+ /* @__PURE__ */ jsx("path", { d: "M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35" }),
239
+ /* @__PURE__ */ jsx("path", { d: "M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14" })
240
+ ] });
241
+ var LinkIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
242
+ /* @__PURE__ */ jsx("path", { d: "M9.5 14.5 14.5 9.5" }),
243
+ /* @__PURE__ */ jsx("path", { d: "M11 6.5 12.5 5a4 4 0 0 1 6 6L17 12.5" }),
244
+ /* @__PURE__ */ jsx("path", { d: "M13 17.5 11.5 19a4 4 0 0 1-6-6L7 11.5" })
245
+ ] });
246
+ var ListNumIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M11 5h10M11 12h10M11 19h10M4 4h1v5M4 9h2M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02" }) });
247
+ var ListIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M3 5h.01M3 12h.01M3 19h.01M8 5h13M8 12h13M8 19h13" }) });
248
+ var LocationIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
249
+ /* @__PURE__ */ jsx("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
250
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "10", r: "3" })
251
+ ] });
252
+ var LockIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
253
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "11", x: "3", y: "11", rx: "3", ry: "3" }),
254
+ /* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
255
+ ] });
256
+ var LogoutIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
257
+ /* @__PURE__ */ jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
258
+ /* @__PURE__ */ jsx("path", { d: "m16 17 5-5-5-5" }),
259
+ /* @__PURE__ */ jsx("path", { d: "M21 12H9" })
260
+ ] });
261
+ var MailIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
262
+ /* @__PURE__ */ jsx("rect", { width: "20", height: "16", x: "2", y: "4", rx: "3" }),
263
+ /* @__PURE__ */ jsx("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
264
+ ] });
265
+ var MegaphoneIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
266
+ /* @__PURE__ */ jsx("path", { d: "M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" }),
267
+ /* @__PURE__ */ jsx("path", { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" }),
268
+ /* @__PURE__ */ jsx("path", { d: "M8 6v8" })
269
+ ] });
270
+ var MentionIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
271
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4" }),
272
+ /* @__PURE__ */ jsx("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
273
+ ] });
274
+ var MicIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
275
+ /* @__PURE__ */ jsx("path", { d: "M12 19v3" }),
276
+ /* @__PURE__ */ jsx("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
277
+ /* @__PURE__ */ jsx("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
278
+ ] });
279
+ var MoneyIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
280
+ /* @__PURE__ */ jsx("rect", { width: "20", height: "12", x: "2", y: "6", rx: "3" }),
281
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2" }),
282
+ /* @__PURE__ */ jsx("path", { d: "M6 12h.01M18 12h.01" })
283
+ ] });
284
+ var MoreIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
285
+ /* @__PURE__ */ jsx("circle", { cx: "5.5", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
286
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
287
+ /* @__PURE__ */ jsx("circle", { cx: "18.5", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" })
288
+ ] });
289
+ var OrgIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
290
+ /* @__PURE__ */ jsx("rect", { x: "16", y: "16", width: "6", height: "6", rx: "1.5" }),
291
+ /* @__PURE__ */ jsx("rect", { x: "2", y: "16", width: "6", height: "6", rx: "1.5" }),
292
+ /* @__PURE__ */ jsx("rect", { x: "9", y: "2", width: "6", height: "6", rx: "1.5" }),
293
+ /* @__PURE__ */ jsx("path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" }),
294
+ /* @__PURE__ */ jsx("path", { d: "M12 12V8" })
295
+ ] });
296
+ var PayrollIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
297
+ /* @__PURE__ */ jsx("path", { d: "M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 1 1-1v-2a1 1 0 0 0-1-1" }),
298
+ /* @__PURE__ */ jsx("path", { d: "M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" })
299
+ ] });
300
+ var PhoneIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }) });
301
+ var PinIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
302
+ /* @__PURE__ */ jsx("path", { d: "M12 17v5" }),
303
+ /* @__PURE__ */ jsx("path", { d: "M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z" })
304
+ ] });
305
+ var PlusIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M12 5v14M5 12h14" }) });
306
+ var ProjectIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
307
+ /* @__PURE__ */ jsx("rect", { x: "3", y: "7.5", width: "18", height: "12.5", rx: "3" }),
308
+ /* @__PURE__ */ jsx("path", { d: "M8.5 7.5V6a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v1.5" }),
309
+ /* @__PURE__ */ jsx("path", { d: "M3 13h18" })
310
+ ] });
311
+ var QrIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
312
+ /* @__PURE__ */ jsx("rect", { width: "5", height: "5", x: "3", y: "3", rx: "1.5" }),
313
+ /* @__PURE__ */ jsx("rect", { width: "5", height: "5", x: "16", y: "3", rx: "1.5" }),
314
+ /* @__PURE__ */ jsx("rect", { width: "5", height: "5", x: "3", y: "16", rx: "1.5" }),
315
+ /* @__PURE__ */ jsx("path", { d: "M21 16h-3a2 2 0 0 0-2 2v3" }),
316
+ /* @__PURE__ */ jsx("path", { d: "M21 21v.01" }),
317
+ /* @__PURE__ */ jsx("path", { d: "M12 7v3a2 2 0 0 1-2 2H7" }),
318
+ /* @__PURE__ */ jsx("path", { d: "M3 12h.01" }),
319
+ /* @__PURE__ */ jsx("path", { d: "M12 3h.01" }),
320
+ /* @__PURE__ */ jsx("path", { d: "M12 16v.01" }),
321
+ /* @__PURE__ */ jsx("path", { d: "M16 12h1" }),
322
+ /* @__PURE__ */ jsx("path", { d: "M21 12v.01" }),
323
+ /* @__PURE__ */ jsx("path", { d: "M12 21v-1" })
324
+ ] });
325
+ var QuoteIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
326
+ /* @__PURE__ */ jsx("path", { d: "M17 5H3" }),
327
+ /* @__PURE__ */ jsx("path", { d: "M21 12H8" }),
328
+ /* @__PURE__ */ jsx("path", { d: "M21 19H8" }),
329
+ /* @__PURE__ */ jsx("path", { d: "M3 12v7" })
330
+ ] });
331
+ var RedoIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
332
+ /* @__PURE__ */ jsx("path", { d: "M21 7v6h-6" }),
333
+ /* @__PURE__ */ jsx("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
334
+ ] });
335
+ var RefreshIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
336
+ /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-2.64-6.36L21 8" }),
337
+ /* @__PURE__ */ jsx("path", { d: "M21 3v5h-5" })
338
+ ] });
339
+ var RepeatIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
340
+ /* @__PURE__ */ jsx("path", { d: "m17 2 4 4-4 4" }),
341
+ /* @__PURE__ */ jsx("path", { d: "M3 11v-1a4 4 0 0 1 4-4h14" }),
342
+ /* @__PURE__ */ jsx("path", { d: "m7 22-4-4 4-4" }),
343
+ /* @__PURE__ */ jsx("path", { d: "M21 13v1a4 4 0 0 1-4 4H3" })
344
+ ] });
345
+ var ReplyIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
346
+ /* @__PURE__ */ jsx("path", { d: "m9 17-5-5 5-5" }),
347
+ /* @__PURE__ */ jsx("path", { d: "M4 12h11a5 5 0 0 1 5 5v1" })
348
+ ] });
349
+ var SearchIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
350
+ /* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "7" }),
351
+ /* @__PURE__ */ jsx("path", { d: "m20 20-3.4-3.4" })
352
+ ] });
353
+ var SecurityIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
354
+ /* @__PURE__ */ jsx("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
355
+ /* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
356
+ ] });
357
+ var SendIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
358
+ /* @__PURE__ */ jsx("path", { d: "M20.5 3.5 2.5 11l7.5 2.5L12.5 21z" }),
359
+ /* @__PURE__ */ jsx("path", { d: "M20.5 3.5 10 13.5" })
360
+ ] });
361
+ var SettingsIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
362
+ /* @__PURE__ */ jsx("path", { d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915" }),
363
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
364
+ ] });
365
+ var ShareIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
366
+ /* @__PURE__ */ jsx("circle", { cx: "18", cy: "6", r: "2.5" }),
367
+ /* @__PURE__ */ jsx("circle", { cx: "6", cy: "12", r: "2.5" }),
368
+ /* @__PURE__ */ jsx("circle", { cx: "18", cy: "18", r: "2.5" }),
369
+ /* @__PURE__ */ jsx("path", { d: "M8.2 10.8 15.8 7.2M8.2 13.2l7.6 3.6" })
370
+ ] });
371
+ var SidebarIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
372
+ /* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "16", rx: "3" }),
373
+ /* @__PURE__ */ jsx("path", { d: "M15 4v16" })
374
+ ] });
375
+ var SortIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
376
+ /* @__PURE__ */ jsx("path", { d: "M7 4v16M3 8l4-4 4 4" }),
377
+ /* @__PURE__ */ jsx("path", { d: "M17 20V4M21 16l-4 4-4-4" })
378
+ ] });
379
+ var StarIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" }) });
380
+ var StatsIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
381
+ /* @__PURE__ */ jsx("path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }),
382
+ /* @__PURE__ */ jsx("path", { d: "M7 16v-5M12 16v-9M17 16v-3" })
383
+ ] });
384
+ var StrikeIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
385
+ /* @__PURE__ */ jsx("path", { d: "M16 4H9a3 3 0 0 0-2.83 4" }),
386
+ /* @__PURE__ */ jsx("path", { d: "M14 12a4 4 0 0 1 0 8H6" }),
387
+ /* @__PURE__ */ jsx("path", { d: "M4 12h16" })
388
+ ] });
389
+ var SuccessIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
390
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
391
+ /* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
392
+ ] });
393
+ var SwitchIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
394
+ /* @__PURE__ */ jsx("path", { d: "M16 4l4 4-4 4M20 8H7" }),
395
+ /* @__PURE__ */ jsx("path", { d: "M8 12l-4 4 4 4M4 16h13" })
396
+ ] });
397
+ var TargetIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
398
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
399
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "6" }),
400
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2" })
401
+ ] });
402
+ var ThemeDarkIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" }) });
403
+ var ThemeLightIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
404
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4" }),
405
+ /* @__PURE__ */ jsx("path", { d: "M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41" })
406
+ ] });
407
+ var ThreadIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z" }) });
408
+ var TimelineIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
409
+ /* @__PURE__ */ jsx("path", { d: "M10 6h8" }),
410
+ /* @__PURE__ */ jsx("path", { d: "M12 16h6" }),
411
+ /* @__PURE__ */ jsx("path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }),
412
+ /* @__PURE__ */ jsx("path", { d: "M8 11h7" })
413
+ ] });
414
+ var TrashIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M4 7h16M9 7V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2M6 7l1 13a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1l1-13" }) });
415
+ var UnderlineIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
416
+ /* @__PURE__ */ jsx("path", { d: "M6 4v6a6 6 0 0 0 12 0V4" }),
417
+ /* @__PURE__ */ jsx("path", { d: "M4 20h16" })
418
+ ] });
419
+ var UndoIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
420
+ /* @__PURE__ */ jsx("path", { d: "M3 7v6h6" }),
421
+ /* @__PURE__ */ jsx("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
422
+ ] });
423
+ var UploadIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
424
+ /* @__PURE__ */ jsx("path", { d: "M12 20V8M7.5 12l4.5-4 4.5 4" }),
425
+ /* @__PURE__ */ jsx("path", { d: "M5 4h14" })
426
+ ] });
427
+ var UserIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
428
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "8", r: "4" }),
429
+ /* @__PURE__ */ jsx("path", { d: "M4 21a8 8 0 0 1 16 0" })
430
+ ] });
431
+ var UsersIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
432
+ /* @__PURE__ */ jsx("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
433
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "7", r: "4" }),
434
+ /* @__PURE__ */ jsx("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
435
+ /* @__PURE__ */ jsx("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
436
+ ] });
437
+ var VacationIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z" }) });
438
+ var VideoIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
439
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "3" }),
440
+ /* @__PURE__ */ jsx("path", { d: "M7 3v18" }),
441
+ /* @__PURE__ */ jsx("path", { d: "M3 7.5h4" }),
442
+ /* @__PURE__ */ jsx("path", { d: "M3 12h18" }),
443
+ /* @__PURE__ */ jsx("path", { d: "M3 16.5h4" }),
444
+ /* @__PURE__ */ jsx("path", { d: "M17 3v18" }),
445
+ /* @__PURE__ */ jsx("path", { d: "M17 7.5h4" }),
446
+ /* @__PURE__ */ jsx("path", { d: "M17 16.5h4" })
447
+ ] });
448
+ var WarningIcon = (props) => /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
449
+ /* @__PURE__ */ jsx("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" }),
450
+ /* @__PURE__ */ jsx("path", { d: "M12 9v4" }),
451
+ /* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
452
+ ] });
453
+ var XIcon = (props) => /* @__PURE__ */ jsx(IconBase, { ...props, children: /* @__PURE__ */ jsx("path", { d: "M18 6 6 18M6 6l12 12" }) });
454
+
455
+ // src/icons/index.ts
456
+ var ICON_NAMES = [
457
+ "AiIcon",
458
+ "AlignCenterIcon",
459
+ "AlignLeftIcon",
460
+ "AlignRightIcon",
461
+ "ApprovalIcon",
462
+ "ArchiveIcon",
463
+ "AttachIcon",
464
+ "AwardIcon",
465
+ "BellIcon",
466
+ "BillingIcon",
467
+ "BoardIcon",
468
+ "BoldIcon",
469
+ "BookmarkIcon",
470
+ "BuildingIcon",
471
+ "CalendarAddIcon",
472
+ "CalendarOffIcon",
473
+ "CalendarWeekIcon",
474
+ "CalendarIcon",
475
+ "ChatIcon",
476
+ "CheckIcon",
477
+ "ChevronDownIcon",
478
+ "ChevronLeftIcon",
479
+ "ChevronRightIcon",
480
+ "ChevronUpIcon",
481
+ "ClipboardIcon",
482
+ "ClockIcon",
483
+ "CodeIcon",
484
+ "CollapseIcon",
485
+ "CompassIcon",
486
+ "CopyIcon",
487
+ "DocumentIcon",
488
+ "DownloadIcon",
489
+ "DragIcon",
490
+ "EditIcon",
491
+ "EmojiIcon",
492
+ "ErrorIcon",
493
+ "ExpandIcon",
494
+ "ExportIcon",
495
+ "ExternalIcon",
496
+ "EyeOffIcon",
497
+ "EyeIcon",
498
+ "FileIcon",
499
+ "FilterIcon",
500
+ "FingerprintIcon",
501
+ "FolderIcon",
502
+ "HashIcon",
503
+ "HeartIcon",
504
+ "HelpIcon",
505
+ "HighlightIcon",
506
+ "HomeIcon",
507
+ "HrIcon",
508
+ "ImageIcon",
509
+ "InfoIcon",
510
+ "ItalicIcon",
511
+ "KeyIcon",
512
+ "LeaveIcon",
513
+ "LinkIcon",
514
+ "ListNumIcon",
515
+ "ListIcon",
516
+ "LocationIcon",
517
+ "LockIcon",
518
+ "LogoutIcon",
519
+ "MailIcon",
520
+ "MegaphoneIcon",
521
+ "MentionIcon",
522
+ "MicIcon",
523
+ "MoneyIcon",
524
+ "MoreIcon",
525
+ "OrgIcon",
526
+ "PayrollIcon",
527
+ "PhoneIcon",
528
+ "PinIcon",
529
+ "PlusIcon",
530
+ "ProjectIcon",
531
+ "QrIcon",
532
+ "QuoteIcon",
533
+ "RedoIcon",
534
+ "RefreshIcon",
535
+ "RepeatIcon",
536
+ "ReplyIcon",
537
+ "SearchIcon",
538
+ "SecurityIcon",
539
+ "SendIcon",
540
+ "SettingsIcon",
541
+ "ShareIcon",
542
+ "SidebarIcon",
543
+ "SortIcon",
544
+ "StarIcon",
545
+ "StatsIcon",
546
+ "StrikeIcon",
547
+ "SuccessIcon",
548
+ "SwitchIcon",
549
+ "TargetIcon",
550
+ "ThemeDarkIcon",
551
+ "ThemeLightIcon",
552
+ "ThreadIcon",
553
+ "TimelineIcon",
554
+ "TrashIcon",
555
+ "UnderlineIcon",
556
+ "UndoIcon",
557
+ "UploadIcon",
558
+ "UserIcon",
559
+ "UsersIcon",
560
+ "VacationIcon",
561
+ "VideoIcon",
562
+ "WarningIcon",
563
+ "XIcon"
564
+ ];
565
+
566
+ export { AiIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, ApprovalIcon, ArchiveIcon, AttachIcon, AwardIcon, BellIcon, BillingIcon, BoardIcon, BoldIcon, BookmarkIcon, BuildingIcon, CalendarAddIcon, CalendarIcon, CalendarOffIcon, CalendarWeekIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClipboardIcon, ClockIcon, CodeIcon, CollapseIcon, CompassIcon, CopyIcon, DocumentIcon, DownloadIcon, DragIcon, EditIcon, EmojiIcon, ErrorIcon, ExpandIcon, ExportIcon, ExternalIcon, EyeIcon, EyeOffIcon, FileIcon, FilterIcon, FingerprintIcon, FolderIcon, HashIcon, HeartIcon, HelpIcon, HighlightIcon, HomeIcon, HrIcon, ICON_NAMES, IconBase, ImageIcon, InfoIcon, ItalicIcon, KeyIcon, LeaveIcon, LinkIcon, ListIcon, ListNumIcon, LocationIcon, LockIcon, LogoutIcon, MailIcon, MegaphoneIcon, MentionIcon, MicIcon, MoneyIcon, MoreIcon, OrgIcon, PayrollIcon, PhoneIcon, PinIcon, PlusIcon, ProjectIcon, QrIcon, QuoteIcon, RedoIcon, RefreshIcon, RepeatIcon, ReplyIcon, SearchIcon, SecurityIcon, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, SortIcon, StarIcon, StatsIcon, StrikeIcon, SuccessIcon, SwitchIcon, TargetIcon, ThemeDarkIcon, ThemeLightIcon, ThreadIcon, TimelineIcon, TrashIcon, UnderlineIcon, UndoIcon, UploadIcon, UserIcon, UsersIcon, VacationIcon, VideoIcon, WarningIcon, XIcon };
567
+ //# sourceMappingURL=index.mjs.map
568
+ //# sourceMappingURL=index.mjs.map