@sanvika/ui 0.2.0 → 0.3.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,782 @@
1
+ "use client";
2
+ import 'react';
3
+ import { jsxs, jsx } from 'react/jsx-runtime';
4
+
5
+ const HeartIcon = ({
6
+ className,
7
+ style,
8
+ title = "Favorite"
9
+ }) => /*#__PURE__*/jsxs("svg", {
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ viewBox: "0 0 24 24",
12
+ fill: "currentColor",
13
+ "aria-hidden": "true",
14
+ className: className,
15
+ style: style,
16
+ role: "img",
17
+ children: [/*#__PURE__*/jsx("title", {
18
+ children: title
19
+ }), /*#__PURE__*/jsx("path", {
20
+ d: "M12 21s-7-4.35-10-7.045C-0.334 10.668 3.213 4 8 4c2.206 0 3.813 1.093 4 2.09C12.187 5.093 13.794 4 16 4c4.787 0 8.334 6.668 6 9.955C19 16.65 12 21 12 21z"
21
+ })]
22
+ });
23
+
24
+ function FaCheckCircle(props) {
25
+ return /*#__PURE__*/jsx("svg", {
26
+ viewBox: "0 0 512 512",
27
+ width: "1em",
28
+ height: "1em",
29
+ fill: "currentColor",
30
+ ...props,
31
+ children: /*#__PURE__*/jsx("path", {
32
+ d: "M256 8C119.03 8 8 119.03 8 256s111.03 248 248 248 248-111.03 248-248S392.97 8 256 8zm123.31 170.69l-138 184c-4.8 6.4-12.8 10.31-20.8 10.31-8 0-16-3.91-20.8-10.31l-69.99-93.33c-9.07-12.09-5.96-29.33 6.13-38.4 12.09-9.07 29.33-5.96 38.4 6.13L234.7 318.7l118.9-158.53c9.07-12.09 26.31-15.2 38.4-6.13 12.09 9.07 15.2 26.31 6.13 38.45z"
33
+ })
34
+ });
35
+ }
36
+
37
+ function FaStar(props) {
38
+ return /*#__PURE__*/jsx("svg", {
39
+ viewBox: "0 0 576 512",
40
+ width: "1em",
41
+ height: "1em",
42
+ fill: "currentColor",
43
+ ...props,
44
+ children: /*#__PURE__*/jsx("path", {
45
+ d: "M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36-17.7 54.6l105.7 103L120 470.6c-4.5 26.3 23 46 46.4 33.7L288 405.3l121.6 63.9c23.4 12.3 50.9-7.4 46.4-33.7l-16-93.5 105.7-103c19-18.6 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"
46
+ })
47
+ });
48
+ }
49
+
50
+ function FaEye(props) {
51
+ return /*#__PURE__*/jsx("svg", {
52
+ viewBox: "0 0 576 512",
53
+ width: "1em",
54
+ height: "1em",
55
+ fill: "currentColor",
56
+ ...props,
57
+ children: /*#__PURE__*/jsx("path", {
58
+ d: "M572.52 241.4C518.29 135.5 407.88 64 288 64 168.12 64 57.71 135.5 3.48 241.4a48.12 48.12 0 0 0 0 29.2C57.71 376.5 168.12 448 288 448c119.88 0 230.29-71.5 284.52-177.4a48.12 48.12 0 0 0 0-29.2zM288 400c-88.22 0-168.44-52.9-210.66-128C119.56 196.9 199.78 144 288 144s168.44 52.9 210.66 128C456.44 347.1 376.22 400 288 400zM288 176a112 112 0 1 0 112 112A112 112 0 0 0 288 176z"
59
+ })
60
+ });
61
+ }
62
+
63
+ function FaEyeSlash(props) {
64
+ return /*#__PURE__*/jsx("svg", {
65
+ viewBox: "0 0 640 512",
66
+ width: "1em",
67
+ height: "1em",
68
+ fill: "currentColor",
69
+ ...props,
70
+ children: /*#__PURE__*/jsx("path", {
71
+ d: "M320 400c-78.8 0-147.1-45.6-180.3-112 19.3-36.2 50.7-64 88.3-79.6L118 85.3C90.7 103.7 63.3 127.6 39.6 156.5 3.4 203.8 0 256 0 256s111.03 248 248 248c29.1 0 56.9-4.6 82.8-13.1L320 400zM633.8 458.1L35.2 3.5A16 16 0 0 0 15.6 6.6L6.3 18.9a16 16 0 0 0 1.5 18l45.9 58.5C86 123.7 142.7 96 208 96c119.9 0 230.3 71.5 284.5 177.4a48.12 48.12 0 0 1 0 29.2c-14.3 27.5-34.2 51.5-57.9 72.9l71.7 91.3a16 16 0 0 0 22.4 2.8l9.3-12.3a16 16 0 0 0-2-22.5z"
72
+ })
73
+ });
74
+ }
75
+
76
+ function FaTrash(props) {
77
+ return /*#__PURE__*/jsx("svg", {
78
+ viewBox: "0 0 448 512",
79
+ width: "1em",
80
+ height: "1em",
81
+ fill: "currentColor",
82
+ ...props,
83
+ children: /*#__PURE__*/jsx("path", {
84
+ d: "M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zM432 32H312l-9.4-18.8A24 24 0 0 0 279.1 0H168.9a24 24 0 0 0-23.5 13.2L136 32H16A16 16 0 0 0 0 48v16a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"
85
+ })
86
+ });
87
+ }
88
+
89
+ function FaUser(props) {
90
+ return /*#__PURE__*/jsx("svg", {
91
+ viewBox: "0 0 448 512",
92
+ width: "1em",
93
+ height: "1em",
94
+ fill: "currentColor",
95
+ ...props,
96
+ children: /*#__PURE__*/jsx("path", {
97
+ d: "M313.6 304h-16.7a174.6 174.6 0 0 1-145.8 0H134.4A134.4 134.4 0 0 0 0 438.4V464a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48v-25.6A134.4 134.4 0 0 0 313.6 304zM224 256a128 128 0 1 0-128-128 128 128 0 0 0 128 128z"
98
+ })
99
+ });
100
+ }
101
+
102
+ function FaCalendarAlt(props) {
103
+ return /*#__PURE__*/jsx("svg", {
104
+ viewBox: "0 0 448 512",
105
+ width: "1em",
106
+ height: "1em",
107
+ fill: "currentColor",
108
+ ...props,
109
+ children: /*#__PURE__*/jsx("path", {
110
+ d: "M400 64h-48V24a24 24 0 0 0-48 0v40H144V24a24 24 0 0 0-48 0v40H48A48 48 0 0 0 0 112v320a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48V112a48 48 0 0 0-48-48zM400 432H48V192h352z"
111
+ })
112
+ });
113
+ }
114
+
115
+ function FaThumbsUp(props) {
116
+ return /*#__PURE__*/jsx("svg", {
117
+ viewBox: "0 0 512 512",
118
+ width: "1em",
119
+ height: "1em",
120
+ fill: "currentColor",
121
+ ...props,
122
+ children: /*#__PURE__*/jsx("path", {
123
+ d: "M104 224H24a24 24 0 0 0-24 24v240a24 24 0 0 0 24 24h80V224zM456 192c6.6-11.3 8-24.4 3.9-36.8-8.8-25.8-36.2-49.2-74.7-49.2H320c10.3-12.9 20.3-31.4 23.1-58.8 3.8-38-8.9-64-58.3-64-22.8 0-41.4 10.6-50.6 28.3C226.8 66.4 208 96 208 128v160h160c11.8 0 22.8-4.4 30.6-12.4 14.9-14.7 19.2-38.7 12.4-63.6z"
124
+ })
125
+ });
126
+ }
127
+
128
+ function FaThumbsDown(props) {
129
+ return /*#__PURE__*/jsx("svg", {
130
+ viewBox: "0 0 512 512",
131
+ width: "1em",
132
+ height: "1em",
133
+ fill: "currentColor",
134
+ ...props,
135
+ children: /*#__PURE__*/jsx("path", {
136
+ d: "M408 288h80a24 24 0 0 0 24-24V24a24 24 0 0 0-24-24h-80v288zM56 320c-6.6 11.3-8 24.4-3.9 36.8 8.8 25.8 36.2 49.2 74.7 49.2H192c-10.3 12.9-20.3 31.4-23.1 58.8-3.8 38 8.9 64 58.3 64 22.8 0 41.4-10.6 50.6-28.3C285.2 445.6 304 416 304 384V224H144c-11.8 0-22.8 4.4-30.6 12.4-14.9 14.7-19.2 38.7-12.4 63.6z"
137
+ })
138
+ });
139
+ }
140
+
141
+ function FaAngleRight(props) {
142
+ return /*#__PURE__*/jsx("svg", {
143
+ viewBox: "0 0 256 512",
144
+ width: "1em",
145
+ height: "1em",
146
+ fill: "currentColor",
147
+ ...props,
148
+ children: /*#__PURE__*/jsx("path", {
149
+ d: "M64 448c-8.1 0-16.2-3.1-22.4-9.4-12.5-12.5-12.5-32.8 0-45.3L178.7 256 41.6 118.7c-12.5-12.5-12.5-32.8 0-45.3 12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3l-160 160C80.2 444.9 72.1 448 64 448z"
150
+ })
151
+ });
152
+ }
153
+
154
+ function FaMapMarkerAlt(props) {
155
+ return /*#__PURE__*/jsx("svg", {
156
+ viewBox: "0 0 384 512",
157
+ width: "1em",
158
+ height: "1em",
159
+ fill: "currentColor",
160
+ ...props,
161
+ children: /*#__PURE__*/jsx("path", {
162
+ d: "M172.3 501.7C35.4 343.1 0 301.1 0 208 0 93 93 0 208 0s208 93 208 208c0 93.1-35.4 135.1-172.3 293.7-12 14-31.9 14-43.4 0zM208 272a64 64 0 1 0-64-64 64 64 0 0 0 64 64z"
163
+ })
164
+ });
165
+ }
166
+
167
+ function FaAngleDown(props) {
168
+ return /*#__PURE__*/jsx("svg", {
169
+ viewBox: "0 0 320 512",
170
+ width: "1em",
171
+ height: "1em",
172
+ fill: "currentColor",
173
+ ...props,
174
+ children: /*#__PURE__*/jsx("path", {
175
+ d: "M31 192c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0L160 259.3 232.5 135.5c9.4-9.4 24.6-9.4 33.9 0L289 158c9.4 9.4 9.4 24.6 0 33.9l-128 128c-9.4 9.4-24.6 9.4-33.9 0z"
176
+ })
177
+ });
178
+ }
179
+
180
+ function FaLocationArrow(props) {
181
+ return /*#__PURE__*/jsx("svg", {
182
+ viewBox: "0 0 512 512",
183
+ width: "1em",
184
+ height: "1em",
185
+ fill: "currentColor",
186
+ ...props,
187
+ children: /*#__PURE__*/jsx("path", {
188
+ d: "M492 0L0 220l124 44 44 124L512 20 492 0z"
189
+ })
190
+ });
191
+ }
192
+
193
+ function FaCheck(props) {
194
+ return /*#__PURE__*/jsx("svg", {
195
+ viewBox: "0 0 512 512",
196
+ width: "1em",
197
+ height: "1em",
198
+ fill: "currentColor",
199
+ ...props,
200
+ children: /*#__PURE__*/jsx("path", {
201
+ d: "M173.9 439.4L7 272.5c-9.4-9.4-9.4-24.6 0-33.9l33.9-33.9c9.4-9.4 24.6-9.4 33.9 0L192 312l252.4-252.4c9.4-9.4 24.6-9.4 33.9 0l33.9 33.9c9.4 9.4 9.4 24.6 0 33.9L207.8 439.4c-9.4 9.4-24.6 9.4-33.9 0z"
202
+ })
203
+ });
204
+ }
205
+
206
+ function FaCheckDouble(props) {
207
+ return /*#__PURE__*/jsx("svg", {
208
+ viewBox: "0 0 512 512",
209
+ width: "1em",
210
+ height: "1em",
211
+ fill: "currentColor",
212
+ ...props,
213
+ children: /*#__PURE__*/jsx("path", {
214
+ d: "M464 64.3L199.4 328.9 97 226.5c-9.4-9.4-24.6-9.4-33.9 0L23 267.6c-9.4 9.4-9.4 24.6 0 33.9l144 144c9.4 9.4 24.6 9.4 33.9 0l304-304c9.4-9.4 9.4-24.6 0-33.9L497.9 64.3c-9.4-9.4-24.6-9.4-33.9 0z"
215
+ })
216
+ });
217
+ }
218
+
219
+ function FaPaperPlane(props) {
220
+ return /*#__PURE__*/jsx("svg", {
221
+ viewBox: "0 0 512 512",
222
+ width: "1em",
223
+ height: "1em",
224
+ fill: "currentColor",
225
+ ...props,
226
+ children: /*#__PURE__*/jsx("path", {
227
+ d: "M476 3L12 232c-23 11-20 42 5 49l111 34 34 111c7 25 38 28 49 5L509 36c10-20-11-41-33-33z"
228
+ })
229
+ });
230
+ }
231
+
232
+ function FaSmile(props) {
233
+ return /*#__PURE__*/jsx("svg", {
234
+ viewBox: "0 0 496 512",
235
+ width: "1em",
236
+ height: "1em",
237
+ fill: "currentColor",
238
+ ...props,
239
+ children: /*#__PURE__*/jsx("path", {
240
+ d: "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm-80 192a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm160 0a24 24 0 1 1 24-24 24 24 0 0 1-24 24zm-80 160c-44.2 0-80-35.8-80-48h160c0 12.2-35.8 48-80 48z"
241
+ })
242
+ });
243
+ }
244
+
245
+ function FaPaperclip(props) {
246
+ return /*#__PURE__*/jsx("svg", {
247
+ viewBox: "0 0 448 512",
248
+ width: "1em",
249
+ height: "1em",
250
+ fill: "currentColor",
251
+ ...props,
252
+ children: /*#__PURE__*/jsx("path", {
253
+ d: "M43.03 466.5C16.3 439.78 5.2 400.6 15.7 366.4l168-416C189.6-14.9 214.6-9.7 223.8 9.9l26.4 61.5c9.9 23-4.8 50.5-29.7 50.5H192L83.4 213.9c-24.9 0-44.9 20.1-44.9 45s20 45 44.9 45H288c53 0 96 43 96 96s-43 96-96 96H160c-35.35 0-64-28.65-64-64V256"
254
+ })
255
+ });
256
+ }
257
+
258
+ function FaCircle(props) {
259
+ return /*#__PURE__*/jsx("svg", {
260
+ viewBox: "0 0 512 512",
261
+ width: "1em",
262
+ height: "1em",
263
+ fill: "currentColor",
264
+ ...props,
265
+ children: /*#__PURE__*/jsx("path", {
266
+ d: "M256 8C119.03 8 8 119.03 8 256s111.03 248 248 248 248-111.03 248-248S392.97 8 256 8z"
267
+ })
268
+ });
269
+ }
270
+
271
+ function FaArrowUp(props) {
272
+ return /*#__PURE__*/jsx("svg", {
273
+ viewBox: "0 0 448 512",
274
+ width: "1em",
275
+ height: "1em",
276
+ fill: "currentColor",
277
+ ...props,
278
+ children: /*#__PURE__*/jsx("path", {
279
+ d: "M34.9 289.5L224 100.3 413.1 289.5c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L259.3 7c-9.4-9.4-24.6-9.4-34 0L12.3 233c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.3 9.4 24.5 9.4 34-0.0z"
280
+ })
281
+ });
282
+ }
283
+
284
+ function FaArrowDown(props) {
285
+ return /*#__PURE__*/jsx("svg", {
286
+ viewBox: "0 0 448 512",
287
+ width: "1em",
288
+ height: "1em",
289
+ fill: "currentColor",
290
+ ...props,
291
+ children: /*#__PURE__*/jsx("path", {
292
+ d: "M413.1 222.5L224 411.7 34.9 222.5c-9.4-9.4-24.6-9.4-33.9 0L-21.6 245.1c-9.4 9.4-9.4 24.6 0 33.9L192.7 512c9.4 9.4 24.6 9.4 34 0L469.6 279c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.3-9.4-24.5-9.4-34 0z"
293
+ })
294
+ });
295
+ }
296
+
297
+ function FaUserCircle(props) {
298
+ return /*#__PURE__*/jsx("svg", {
299
+ viewBox: "0 0 496 512",
300
+ width: "1em",
301
+ height: "1em",
302
+ fill: "currentColor",
303
+ ...props,
304
+ children: /*#__PURE__*/jsx("path", {
305
+ d: "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 120a88 88 0 1 1-88 88 88 88 0 0 1 88-88zm0 312c-59.6 0-112.9-29.6-146.6-74.6 6.2-45.6 91-70.6 146.6-70.6s140.4 25 146.6 70.6C360.9 410.4 307.6 440 248 440z"
306
+ })
307
+ });
308
+ }
309
+
310
+ function FaChevronRight(props) {
311
+ return /*#__PURE__*/jsx("svg", {
312
+ viewBox: "0 0 256 512",
313
+ width: "1em",
314
+ height: "1em",
315
+ fill: "currentColor",
316
+ ...props,
317
+ children: /*#__PURE__*/jsx("path", {
318
+ d: "M96 448c-12.5 0-25-7.5-31.2-19.3-12.5-24.9-6.1-55.3 15.9-72.2L225.9 256 80.7 155.5c-22-17-28.4-47.3-15.9-72.2C82.9 66.6 95.4 59 108 59s25 7.6 31.2 19.3l160 240C320.4 454.4 297.1 448 96 448z"
319
+ })
320
+ });
321
+ }
322
+
323
+ function FaChevronDown(props) {
324
+ return /*#__PURE__*/jsx("svg", {
325
+ viewBox: "0 0 320 512",
326
+ width: "1em",
327
+ height: "1em",
328
+ fill: "currentColor",
329
+ ...props,
330
+ children: /*#__PURE__*/jsx("path", {
331
+ d: "M31 192c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0L160 259.3 232.5 135.5c9.4-9.4 24.6-9.4 33.9 0L289 158c9.4 9.4 9.4 24.6 0 33.9l-128 128c-9.4 9.4-24.6 9.4-33.9 0z"
332
+ })
333
+ });
334
+ }
335
+
336
+ function FaComments(props) {
337
+ return /*#__PURE__*/jsx("svg", {
338
+ viewBox: "0 0 512 512",
339
+ width: "1em",
340
+ height: "1em",
341
+ fill: "currentColor",
342
+ ...props,
343
+ children: /*#__PURE__*/jsx("path", {
344
+ d: "M256 32C114.6 32 0 125.1 0 240c0 49.6 21 95 56 128v88c0 6.6 7.7 10.4 12.9 6.5L152 346.8c24.4 6.8 50.1 10.2 76 10.2 141.4 0 256-93.1 256-208S397.4 32 256 32z"
345
+ })
346
+ });
347
+ }
348
+
349
+ function FaArrowLeft(props) {
350
+ return /*#__PURE__*/jsx("svg", {
351
+ viewBox: "0 0 256 512",
352
+ width: "1em",
353
+ height: "1em",
354
+ fill: "currentColor",
355
+ ...props,
356
+ children: /*#__PURE__*/jsx("path", {
357
+ d: "M31.1 239l160-160c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L154.9 256l92.7 120.5c9.4 9.4 9.4 24.6 0 33.9L225.1 433c-9.4 9.4-24.6 9.4-33.9 0l-160-160c-9.4-9.4-9.4-24.6 0-33.9z"
358
+ })
359
+ });
360
+ }
361
+
362
+ function FaBell(props) {
363
+ return /*#__PURE__*/jsx("svg", {
364
+ viewBox: "0 0 448 512",
365
+ width: "1em",
366
+ height: "1em",
367
+ fill: "currentColor",
368
+ ...props,
369
+ children: /*#__PURE__*/jsx("path", {
370
+ d: "M224 512a64 64 0 0 0 64-64H160a64 64 0 0 0 64 64zm215.4-149.7C406.4 339 384 288 384 224 384 141 323 76 256 64V48a32 32 0 0 0-64 0v16C129 76 68 141 68 224c0 64-22.4 115-55.4 138.3A31.99 31.99 0 0 0 48 416h352a31.99 31.99 0 0 0 39.4-53.7z"
371
+ })
372
+ });
373
+ }
374
+
375
+ function FaTag(props) {
376
+ return /*#__PURE__*/jsx("svg", {
377
+ viewBox: "0 0 512 512",
378
+ width: "1em",
379
+ height: "1em",
380
+ fill: "currentColor",
381
+ ...props,
382
+ children: /*#__PURE__*/jsx("path", {
383
+ d: "M497.9 225.9L286.1 14.1C277.7 5.7 266.1 0 253.9 0H80C35.8 0 0 35.8 0 80v173.9c0 12.2 5.7 23.8 14.1 32.2L225.9 497.9c17 17 44.6 17 61.6 0L497.9 287.5c17-17 17-44.6 0-61.6zM144 176a48 48 0 1 1 48-48 48 48 0 0 1-48 48z"
384
+ })
385
+ });
386
+ }
387
+
388
+ function FaHome(props) {
389
+ return /*#__PURE__*/jsx("svg", {
390
+ viewBox: "0 0 576 512",
391
+ width: "1em",
392
+ height: "1em",
393
+ fill: "currentColor",
394
+ ...props,
395
+ children: /*#__PURE__*/jsx("path", {
396
+ d: "M280.37 148.26L96 300.11V464a48 48 0 0 0 48 48l96-.3V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v143.7l96 .3a48 48 0 0 0 48-48V300L295.67 148.26a12 12 0 0 0-15.3 0zM571.6 251.5L488 182.6V44a12 12 0 0 0-12-12h-72a12 12 0 0 0-12 12v72.6L318.47 43a48 48 0 0 0-61 0L4.34 251.5c-12 9.7-1.7 31 13.4 31H64V464a48 48 0 0 0 48 48h416a48 48 0 0 0 48-48V282.5h46.3c15.1 0 25.4-21.3 13.3-31z"
397
+ })
398
+ });
399
+ }
400
+
401
+ function FaMoon(props) {
402
+ return /*#__PURE__*/jsx("svg", {
403
+ viewBox: "0 0 512 512",
404
+ width: "1em",
405
+ height: "1em",
406
+ fill: "currentColor",
407
+ "aria-hidden": "true",
408
+ ...props,
409
+ children: /*#__PURE__*/jsx("path", {
410
+ d: "M279.135 512c129.416 0 234.865-105.45 234.865-234.865 0-109.39-71.8-202.553-170.09-231.44-11.9-3.443-24.57 4.417-26.91 16.77-20.44 87.05-95.66 153.43-186.62 176.77-12.77 3.18-19.98 16.99-15.37 29.38 34.1 85.77 121.02 147.25 264.12 142.3z"
411
+ })
412
+ });
413
+ }
414
+
415
+ function MdWbSunny(props) {
416
+ return /*#__PURE__*/jsx("svg", {
417
+ viewBox: "0 0 512 512",
418
+ width: "1em",
419
+ height: "1em",
420
+ fill: "currentColor",
421
+ ...props,
422
+ children: /*#__PURE__*/jsx("path", {
423
+ d: "M256 128a128 128 0 1 0 128 128A128 128 0 0 0 256 128zm0-96a16 16 0 0 0 16-16V16a16 16 0 0 0-32 0v.02A16 16 0 0 0 256 32zM256 480a16 16 0 0 0-16 16v16a16 16 0 0 0 32 0v-16a16 16 0 0 0-16-16zM480 240a16 16 0 0 0 16 16h16a16 16 0 0 0 0-32h-16a16 16 0 0 0-16 16zM16 240a16 16 0 0 0 16 16H48a16 16 0 0 0 0-32H32A16 16 0 0 0 16 240z"
424
+ })
425
+ });
426
+ }
427
+
428
+ function FaSignInAlt(props) {
429
+ return /*#__PURE__*/jsx("svg", {
430
+ viewBox: "0 0 512 512",
431
+ width: "1em",
432
+ height: "1em",
433
+ fill: "currentColor",
434
+ ...props,
435
+ children: /*#__PURE__*/jsx("path", {
436
+ d: "M192 96v64H80v192h112v64H48a48 48 0 0 1-48-48V144a48 48 0 0 1 48-48h144zm288 176L320 432c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9L372.1 288H160c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h212.1L263.5 177.5c-9.4-9.4-9.4-24.6 0-33.9L286.1 121c9.4-9.4 24.6-9.4 33.9 0l192 192c9.4 9.4 9.4 24.6 0 33.9z"
437
+ })
438
+ });
439
+ }
440
+
441
+ // src/components/icons/FaBullhorn.jsx
442
+ function FaBullhorn(props) {
443
+ return /*#__PURE__*/jsx("svg", {
444
+ viewBox: "0 0 576 512",
445
+ width: "1em",
446
+ height: "1em",
447
+ fill: "currentColor",
448
+ ...props,
449
+ children: /*#__PURE__*/jsx("path", {
450
+ d: "M576 240c0-23.63-12.95-44.04-32-55.12V15.99C544 5.6 536.5 0 528 0c-3.999 0-8 1.251-11.5 3.75l-160 112C343 127.4 320 133.6 296 133.6H176C131.8 133.6 96 169.4 96 213.6v52.8c0 44.2 35.8 80 80 80h17.44l-17.36 112.4C173.4 473.3 183.1 480 192 480h80c30.63 0 56.25-21.98 61.63-53.12L354.4 346.6h-.001c-2.75 0-5.25-.62-8.001-.62H248c-4.418 0-8-3.578-8-8v-80c0-4.422 3.582-8 8-8h96.63c2.75 0 5.25-.625 7.999-.625L512 360.2c3.5 2.5 7.5 3.75 11.5 3.75c8.5 0 16-5.6 16-15.99V295.1C563.1 284 576 263.6 576 240zM448 292.7L354.2 230.8c-.75-.5-1.75-.75-2.625-.75H176c-8.836 0-16 7.164-16 16v16c0 8.836 7.164 16 16 16h120c4.418 0 8 3.578 8 8v16c0 4.422-3.582 8-8 8H176c-8.836 0-16 7.164-16 16v16c0 8.836 7.164 16 16 16h120c4.418 0 8 3.578 8 8v16c0 4.422-3.582 8-8 8H200c-4.418 0-8-3.578-8-8v-16c0-4.422 3.582-8 8-8h32v-16H200l-9.375-60.8C175 363.6 176 370.6 176 378.4c0 44.2-35.8 80-80 80H96c8.836 0 16-7.164 16-16V294.4C130.9 313.4 152 320 176 320h170.6c3.5 0 6.748-.875 9.873-2.125L448 374.3V292.7z"
451
+ })
452
+ });
453
+ }
454
+
455
+ // src/components/icons/SearchIcon.jsx
456
+ const SearchIcon = ({
457
+ className,
458
+ style,
459
+ title = "Search"
460
+ }) => /*#__PURE__*/jsxs("svg", {
461
+ xmlns: "http://www.w3.org/2000/svg",
462
+ viewBox: "0 0 24 24",
463
+ width: "1em",
464
+ height: "1em",
465
+ fill: "currentColor",
466
+ "aria-hidden": "true",
467
+ className: className,
468
+ style: style,
469
+ role: "img",
470
+ children: [/*#__PURE__*/jsx("title", {
471
+ children: title
472
+ }), /*#__PURE__*/jsx("path", {
473
+ d: "M10 2a8 8 0 105.293 14.293l4.707 4.707 1.414-1.414-4.707-4.707A8 8 0 0010 2zm0 2a6 6 0 110 12A6 6 0 0110 4z"
474
+ })]
475
+ });
476
+
477
+ // src/components/icons/BellIcon.jsx
478
+ const BellIcon = ({
479
+ className,
480
+ style,
481
+ title = "Notifications"
482
+ }) => /*#__PURE__*/jsxs("svg", {
483
+ xmlns: "http://www.w3.org/2000/svg",
484
+ viewBox: "0 0 24 24",
485
+ fill: "currentColor",
486
+ "aria-hidden": "true",
487
+ className: className,
488
+ style: style,
489
+ role: "img",
490
+ children: [/*#__PURE__*/jsx("title", {
491
+ children: title
492
+ }), /*#__PURE__*/jsx("path", {
493
+ d: "M12 2a4 4 0 00-4 4v1.586L6.293 9.293A1 1 0 006 10v2l-1 1v1h14v-1l-1-1v-2a1 1 0 00-.293-.707L16 7.586V6a4 4 0 00-4-4zm0 18a2.5 2.5 0 01-2.45-2h4.9A2.5 2.5 0 0112 20z"
494
+ })]
495
+ });
496
+
497
+ const MapMarkerIcon = ({
498
+ className,
499
+ style,
500
+ title = "Location"
501
+ }) => /*#__PURE__*/jsxs("svg", {
502
+ xmlns: "http://www.w3.org/2000/svg",
503
+ viewBox: "0 0 24 24",
504
+ fill: "currentColor",
505
+ "aria-hidden": "true",
506
+ className: className,
507
+ style: style,
508
+ role: "img",
509
+ children: [/*#__PURE__*/jsx("title", {
510
+ children: title
511
+ }), /*#__PURE__*/jsx("path", {
512
+ d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5A2.5 2.5 0 1112 6.5a2.5 2.5 0 010 5z"
513
+ })]
514
+ });
515
+
516
+ const UserIcon = ({
517
+ className,
518
+ style,
519
+ title = "User"
520
+ }) => /*#__PURE__*/jsxs("svg", {
521
+ xmlns: "http://www.w3.org/2000/svg",
522
+ viewBox: "0 0 24 24",
523
+ fill: "currentColor",
524
+ "aria-hidden": "true",
525
+ className: className,
526
+ style: style,
527
+ role: "img",
528
+ children: [/*#__PURE__*/jsx("title", {
529
+ children: title
530
+ }), /*#__PURE__*/jsx("path", {
531
+ d: "M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5z"
532
+ })]
533
+ });
534
+
535
+ const StarIcon = ({
536
+ className,
537
+ style,
538
+ title = "Star"
539
+ }) => /*#__PURE__*/jsxs("svg", {
540
+ xmlns: "http://www.w3.org/2000/svg",
541
+ viewBox: "0 0 24 24",
542
+ fill: "currentColor",
543
+ "aria-hidden": "true",
544
+ className: className,
545
+ style: style,
546
+ role: "img",
547
+ children: [/*#__PURE__*/jsx("title", {
548
+ children: title
549
+ }), /*#__PURE__*/jsx("path", {
550
+ d: "M12 .587l3.668 7.431L23.6 9.75l-5.8 5.655L19.335 24 12 20.09 4.665 24 6.2 15.405 0.4 9.75l7.932-1.732L12 .587z"
551
+ })]
552
+ });
553
+
554
+ const FacebookIcon = ({
555
+ className,
556
+ style
557
+ }) => /*#__PURE__*/jsx("svg", {
558
+ xmlns: "http://www.w3.org/2000/svg",
559
+ viewBox: "0 0 24 24",
560
+ width: "1em",
561
+ height: "1em",
562
+ fill: "currentColor",
563
+ className: className,
564
+ style: style,
565
+ "aria-hidden": "true",
566
+ children: /*#__PURE__*/jsx("path", {
567
+ d: "M22 12.07C22 6.48 17.52 2 11.93 2S2 6.48 2 12.07c0 4.99 3.66 9.128 8.438 9.878v-6.99H7.897v-2.888h2.541V9.845c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.196 2.238.196v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562v1.875h2.773l-.443 2.888h-2.33v6.99C18.34 21.198 22 17.062 22 12.07z"
568
+ })
569
+ });
570
+
571
+ const InstagramIcon = ({
572
+ className,
573
+ style
574
+ }) => /*#__PURE__*/jsx("svg", {
575
+ xmlns: "http://www.w3.org/2000/svg",
576
+ viewBox: "0 0 24 24",
577
+ width: "1em",
578
+ height: "1em",
579
+ fill: "currentColor",
580
+ className: className,
581
+ style: style,
582
+ "aria-hidden": "true",
583
+ children: /*#__PURE__*/jsx("path", {
584
+ d: "M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm10 3a1 1 0 110 2 1 1 0 010-2zM12 7a5 5 0 110 10 5 5 0 010-10z"
585
+ })
586
+ });
587
+
588
+ const YoutubeIcon = ({
589
+ className,
590
+ style
591
+ }) => /*#__PURE__*/jsx("svg", {
592
+ xmlns: "http://www.w3.org/2000/svg",
593
+ viewBox: "0 0 24 24",
594
+ width: "1em",
595
+ height: "1em",
596
+ fill: "currentColor",
597
+ className: className,
598
+ style: style,
599
+ "aria-hidden": "true",
600
+ children: /*#__PURE__*/jsx("path", {
601
+ d: "M23 7.001a2.9 2.9 0 00-2.042-2.05C19.24 4.5 12 4.5 12 4.5s-7.241 0-8.958.451A2.9 2.9 0 001 7.001 29.24 29.24 0 001 12a29.24 29.24 0 00.042 4.999 2.9 2.9 0 002.042 2.05C4.759 19.5 12 19.5 12 19.5s7.241 0 8.958-.451A2.9 2.9 0 0023 16.999 29.24 29.24 0 0023 12a29.24 29.24 0 00-.042-4.999zM10 15.5v-7l6 3.5-6 3.5z"
602
+ })
603
+ });
604
+
605
+ // src/components/icons/ReFreshIcon.jsx
606
+ const ReFreshIcon = ({
607
+ className,
608
+ style
609
+ }) => /*#__PURE__*/jsxs("svg", {
610
+ xmlns: "http://www.w3.org/2000/svg",
611
+ viewBox: "0 0 24 24",
612
+ width: "1em",
613
+ height: "1em",
614
+ "aria-hidden": "true",
615
+ className: className,
616
+ style: style,
617
+ children: [/*#__PURE__*/jsx("path", {
618
+ d: "M4 12a8 8 0 0113-6",
619
+ fill: "none",
620
+ stroke: "currentColor",
621
+ strokeWidth: "2.2",
622
+ strokeLinecap: "round"
623
+ }), /*#__PURE__*/jsx("path", {
624
+ d: "M17 6 l2-2 l-1 4",
625
+ fill: "none",
626
+ stroke: "currentColor",
627
+ strokeWidth: "2.2",
628
+ strokeLinecap: "round",
629
+ strokeLinejoin: "round"
630
+ }), /*#__PURE__*/jsx("path", {
631
+ d: "M20 12a8 8 0 01-13 6",
632
+ fill: "none",
633
+ stroke: "currentColor",
634
+ strokeWidth: "2.2",
635
+ strokeLinecap: "round"
636
+ }), /*#__PURE__*/jsx("path", {
637
+ d: "M7 18 l-2 2 l1-4",
638
+ fill: "none",
639
+ stroke: "currentColor",
640
+ strokeWidth: "2.2",
641
+ strokeLinecap: "round",
642
+ strokeLinejoin: "round"
643
+ })]
644
+ });
645
+
646
+ const ChevronDown = ({
647
+ className,
648
+ style,
649
+ title = "Open"
650
+ }) => /*#__PURE__*/jsxs("svg", {
651
+ xmlns: "http://www.w3.org/2000/svg",
652
+ viewBox: "0 0 24 24",
653
+ width: "1em",
654
+ height: "1em",
655
+ fill: "currentColor",
656
+ "aria-hidden": "true",
657
+ className: className,
658
+ style: style,
659
+ role: "img",
660
+ children: [/*#__PURE__*/jsx("title", {
661
+ children: title
662
+ }), /*#__PURE__*/jsx("path", {
663
+ d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z"
664
+ })]
665
+ });
666
+
667
+ const TwitterIcon = ({
668
+ className,
669
+ style
670
+ }) => /*#__PURE__*/jsx("svg", {
671
+ xmlns: "http://www.w3.org/2000/svg",
672
+ viewBox: "0 0 24 24",
673
+ width: "1em",
674
+ height: "1em",
675
+ fill: "currentColor",
676
+ className: className,
677
+ style: style,
678
+ "aria-hidden": "true",
679
+ children: /*#__PURE__*/jsx("path", {
680
+ d: "M22.46 6c-.77.35-1.6.58-2.46.69a4.3 4.3 0 001.88-2.37 8.59 8.59 0 01-2.72 1.04 4.28 4.28 0 00-7.29 3.9A12.14 12.14 0 013 4.79a4.28 4.28 0 001.33 5.71c-.66-.02-1.28-.2-1.82-.5v.05c0 2.04 1.45 3.74 3.37 4.12-.35.1-.72.15-1.1.15-.27 0-.53-.03-.78-.07a4.29 4.29 0 003.99 2.98A8.6 8.6 0 012 19.54a12.13 12.13 0 006.56 1.92c7.87 0 12.18-6.52 12.18-12.18v-.56A8.7 8.7 0 0022.46 6z"
681
+ })
682
+ });
683
+
684
+ const WhatsappIcon = ({
685
+ className,
686
+ style
687
+ }) => /*#__PURE__*/jsx("svg", {
688
+ xmlns: "http://www.w3.org/2000/svg",
689
+ viewBox: "0 0 24 24",
690
+ width: "1em",
691
+ height: "1em",
692
+ fill: "currentColor",
693
+ className: className,
694
+ style: style,
695
+ "aria-hidden": "true",
696
+ children: /*#__PURE__*/jsx("path", {
697
+ d: "M20.52 3.48A11.93 11.93 0 0012 .5 11.94 11.94 0 003.48 3.48 11.94 11.94 0 000 12c0 2.1.55 4.16 1.6 5.98L0 24l6.32-1.66A11.94 11.94 0 0012 24c2.1 0 4.16-.55 5.98-1.6A11.94 11.94 0 0024 12a11.93 11.93 0 00-3.48-8.52zM12 21.5c-1.55 0-3.07-.38-4.42-1.12l-.32-.18-3.76 1 1.02-3.67-.21-.36A8.45 8.45 0 013.5 12c0-4.69 3.81-8.5 8.5-8.5S20.5 7.31 20.5 12 16.69 21.5 12 21.5zM16.5 14.5c-.27-.13-1.6-.79-1.85-.88-.25-.09-.43-.13-.62.13s-.71.88-.87 1.06c-.16.18-.32.2-.6.07-.27-.13-1.13-.42-2.15-1.33-.79-.71-1.32-1.58-1.48-1.86-.16-.28-.02-.43.12-.56.12-.12.27-.32.4-.48.13-.16.17-.27.27-.45.09-.18.05-.34-.02-.47-.07-.13-.62-1.5-.85-2.05-.22-.53-.45-.46-.62-.47l-.53-.01c-.18 0-.47.07-.72.34-.25.27-.96.94-.96 2.29 0 1.35.98 2.66 1.12 2.85.14.18 1.95 3.02 4.73 4.24 3.28 1.5 3.28 1 3.87.94.59-.07 1.92-.78 2.19-1.53.27-.75.27-1.39.19-1.53-.08-.14-.52-.22-.79-.35z"
698
+ })
699
+ });
700
+
701
+ function FaKeyboard(props) {
702
+ return /*#__PURE__*/jsx("svg", {
703
+ viewBox: "0 0 640 512",
704
+ width: "1em",
705
+ height: "1em",
706
+ fill: "currentColor",
707
+ ...props,
708
+ children: /*#__PURE__*/jsx("path", {
709
+ d: "M0 96v320a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V96a32 32 0 0 0-32-32H32A32 32 0 0 0 0 96zm96 96h64v64H96v-64zm96 0h64v64h-64v-64zm96 0h64v64h-64v-64zm96 0h64v64h-64v-64zm96 0h64v64h-64v-64zM96 256h64v64H96v-64zm96 0h64v64h-64v-64z"
710
+ })
711
+ });
712
+ }
713
+
714
+ const LinkedInIcon = ({
715
+ className,
716
+ style
717
+ }) => /*#__PURE__*/jsx("svg", {
718
+ xmlns: "http://www.w3.org/2000/svg",
719
+ viewBox: "0 0 24 24",
720
+ width: "1em",
721
+ height: "1em",
722
+ fill: "currentColor",
723
+ className: className,
724
+ style: style,
725
+ "aria-hidden": "true",
726
+ children: /*#__PURE__*/jsx("path", {
727
+ d: "M4.98 3.5C4.98 4.88 3.86 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.5 8h4V24h-4V8zM8.5 8h3.83v2.18h.05c.53-1 1.83-2.18 3.77-2.18 4.03 0 4.77 2.65 4.77 6.1V24h-4v-7.1c0-1.69-.03-3.87-2.36-3.87-2.36 0-2.72 1.84-2.72 3.74V24h-4V8z"
728
+ })
729
+ });
730
+
731
+ const TelegramIcon = ({
732
+ className,
733
+ style
734
+ }) => /*#__PURE__*/jsx("svg", {
735
+ xmlns: "http://www.w3.org/2000/svg",
736
+ viewBox: "0 0 24 24",
737
+ width: "1em",
738
+ height: "1em",
739
+ fill: "currentColor",
740
+ className: className,
741
+ style: style,
742
+ "aria-hidden": "true",
743
+ children: /*#__PURE__*/jsx("path", {
744
+ d: "M9.036 15.803l-.377 5.313c.54 0 .774-.232 1.054-.51l2.53-2.422 5.24 3.842c.961.53 1.643.25 1.906-.891l3.454-16.158c.352-1.643-.629-2.281-1.644-1.877L1.12 10.177C-.485 10.83-.46 11.742.848 12.144l5.87 1.83L18.92 6.38c.553-.362 1.058-.162.644.2"
745
+ })
746
+ });
747
+
748
+ const HalfMoonIcon = ({
749
+ className,
750
+ style
751
+ }) => /*#__PURE__*/jsx("svg", {
752
+ xmlns: "http://www.w3.org/2000/svg",
753
+ viewBox: "0 0 24 24",
754
+ width: "1em",
755
+ height: "1em",
756
+ fill: "currentColor",
757
+ "aria-hidden": "true",
758
+ className: className,
759
+ style: style,
760
+ children: /*#__PURE__*/jsx("path", {
761
+ d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79Z"
762
+ })
763
+ });
764
+
765
+ const EmailIcon = ({
766
+ className,
767
+ style
768
+ }) => /*#__PURE__*/jsx("svg", {
769
+ xmlns: "http://www.w3.org/2000/svg",
770
+ viewBox: "0 0 24 24",
771
+ width: "1em",
772
+ height: "1em",
773
+ fill: "currentColor",
774
+ className: className,
775
+ style: style,
776
+ "aria-hidden": "true",
777
+ children: /*#__PURE__*/jsx("path", {
778
+ d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"
779
+ })
780
+ });
781
+
782
+ export { FaTag as A, BellIcon as B, ChevronDown as C, FaThumbsDown as D, EmailIcon as E, FaAngleDown as F, FaThumbsUp as G, FaTrash as H, FaUser as I, FaUserCircle as J, FacebookIcon as K, HalfMoonIcon as L, HeartIcon as M, InstagramIcon as N, LinkedInIcon as O, MapMarkerIcon as P, MdWbSunny as Q, ReFreshIcon as R, SearchIcon as S, StarIcon as T, TelegramIcon as U, TwitterIcon as V, UserIcon as W, WhatsappIcon as X, YoutubeIcon as Y, FaAngleRight as a, FaArrowDown as b, FaArrowLeft as c, FaArrowUp as d, FaBell as e, FaBullhorn as f, FaCalendarAlt as g, FaCheck as h, FaCheckCircle as i, FaCheckDouble as j, FaChevronDown as k, FaChevronRight as l, FaCircle as m, FaComments as n, FaEye as o, FaEyeSlash as p, FaHome as q, FaKeyboard as r, FaLocationArrow as s, FaMapMarkerAlt as t, FaMoon as u, FaPaperPlane as v, FaPaperclip as w, FaSignInAlt as x, FaSmile as y, FaStar as z };