mado-ui 0.1.1 → 0.2.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.
- package/css/index.css +161 -88
- package/dist/components/button.d.ts +1 -1
- package/dist/components/form/index.d.ts +2 -1
- package/dist/components/form/input/index.d.ts +4 -4
- package/dist/components/form/submit-button.d.ts +1 -1
- package/dist/components/form/textarea.d.ts +18 -0
- package/dist/components/heading.d.ts +9 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/link.d.ts +6 -11
- package/dist/index.d.ts +5 -2
- package/dist/index.esm.js +1160 -149
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1300 -147
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/utils.d.ts +4 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6,6 +6,186 @@ var react = require('react');
|
|
|
6
6
|
var react$1 = require('@headlessui/react');
|
|
7
7
|
var reactDom = require('react-dom');
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* ### Has Class
|
|
11
|
+
* - Returns a boolean based on whether the specified element has the specified class
|
|
12
|
+
* @param {HTMLElement} element Any HTML Element
|
|
13
|
+
* @param {string} className A string of any class to check for
|
|
14
|
+
* @returns {boolean} true if the specified element has the specified class, else false
|
|
15
|
+
*/
|
|
16
|
+
function hasClass(element, className) {
|
|
17
|
+
return element.classList.contains(className);
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* ### Add Class
|
|
21
|
+
* - Adds the specified classes to the specified elements
|
|
22
|
+
* @param {Element|HTMLElement|HTMLElement[]|NodeList|string|undefined} elements An HTML Element, an array of HTML Elements, a Node List, a string (as a selector for a querySelector)
|
|
23
|
+
* @param {string|string[]} classList A string or an array of classes to add to each element
|
|
24
|
+
*/
|
|
25
|
+
function addClass(elements, classList) {
|
|
26
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
27
|
+
let elementList, classListGroup;
|
|
28
|
+
// & Convert elements to array
|
|
29
|
+
switch (elementsType) {
|
|
30
|
+
// Selector
|
|
31
|
+
case 'String':
|
|
32
|
+
if (elementsIsString)
|
|
33
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
34
|
+
break;
|
|
35
|
+
// Multiple HTML Elements
|
|
36
|
+
case 'NodeList':
|
|
37
|
+
if (!elementsIsString)
|
|
38
|
+
elementList = Array.from(elements);
|
|
39
|
+
break;
|
|
40
|
+
// Array of Elements
|
|
41
|
+
case 'Array':
|
|
42
|
+
if (!elementsIsString)
|
|
43
|
+
elementList = elements;
|
|
44
|
+
break;
|
|
45
|
+
// Single HTML Element
|
|
46
|
+
default:
|
|
47
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
48
|
+
elementList = [elements];
|
|
49
|
+
}
|
|
50
|
+
// & Convert classList to array
|
|
51
|
+
switch (classListType) {
|
|
52
|
+
case 'String':
|
|
53
|
+
if (classListIsString)
|
|
54
|
+
if (classList.split(' ').length >= 2) {
|
|
55
|
+
classListGroup = classList.split(' ');
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
classListGroup = [classList];
|
|
59
|
+
}
|
|
60
|
+
break;
|
|
61
|
+
case 'Array':
|
|
62
|
+
if (!classListIsString)
|
|
63
|
+
classListGroup = classList;
|
|
64
|
+
break;
|
|
65
|
+
}
|
|
66
|
+
if (!elementList || elementList.length < 1)
|
|
67
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
68
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
69
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
70
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
71
|
+
if (hasClass(element, classItem))
|
|
72
|
+
return;
|
|
73
|
+
element.classList.add(classItem);
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* ### Remove Class
|
|
78
|
+
* - Removes the specified classes from the specified elements
|
|
79
|
+
* @param {HTMLElement|HTMLElement[]|NodeList|string|undefined} elements An HTML Element, an array of HTML Elements, a Node List, a string (as a selector for a querySelector)
|
|
80
|
+
* @param {string|string[]} classList A string or an array of classes to remove from each element
|
|
81
|
+
*/
|
|
82
|
+
function removeClass(elements, classList) {
|
|
83
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
84
|
+
let elementList, classListGroup;
|
|
85
|
+
// & Convert elements to array
|
|
86
|
+
switch (elementsType) {
|
|
87
|
+
// Selector
|
|
88
|
+
case 'String':
|
|
89
|
+
if (elementsIsString)
|
|
90
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
91
|
+
break;
|
|
92
|
+
// Multiple HTML Elements
|
|
93
|
+
case 'NodeList':
|
|
94
|
+
if (!elementsIsString)
|
|
95
|
+
elementList = Array.from(elements);
|
|
96
|
+
break;
|
|
97
|
+
// Array of Elements
|
|
98
|
+
case 'Array':
|
|
99
|
+
if (!elementsIsString)
|
|
100
|
+
elementList = elements;
|
|
101
|
+
break;
|
|
102
|
+
// Single HTML Element
|
|
103
|
+
default:
|
|
104
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
105
|
+
elementList = [elements];
|
|
106
|
+
}
|
|
107
|
+
// & Convert classList to array
|
|
108
|
+
switch (classListType) {
|
|
109
|
+
case 'String':
|
|
110
|
+
if (classListIsString)
|
|
111
|
+
if (classList.split(' ').length >= 2) {
|
|
112
|
+
classListGroup = classList.split(' ');
|
|
113
|
+
}
|
|
114
|
+
else {
|
|
115
|
+
classListGroup = [classList];
|
|
116
|
+
}
|
|
117
|
+
break;
|
|
118
|
+
case 'Array':
|
|
119
|
+
if (!classListIsString)
|
|
120
|
+
classListGroup = classList;
|
|
121
|
+
break;
|
|
122
|
+
}
|
|
123
|
+
if (!elementList || elementList.length < 1)
|
|
124
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
125
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
126
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
127
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
128
|
+
if (!hasClass(element, classItem))
|
|
129
|
+
return;
|
|
130
|
+
element.classList.remove(classItem);
|
|
131
|
+
}));
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* ### Toggle Class
|
|
135
|
+
* - Toggles the specified classes on the specified elements
|
|
136
|
+
* @param {HTMLElement|HTMLElement[]|NodeList|string|undefined} elements An HTML Element, an array of HTML Elements, a Node List, a string (as a selector for a querySelector)
|
|
137
|
+
* @param {string|string[]} classList A string or an array of classes to toggle on each element
|
|
138
|
+
*/
|
|
139
|
+
function toggleClass(elements, classList) {
|
|
140
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
141
|
+
let elementList, classListGroup;
|
|
142
|
+
// & Convert elements to array
|
|
143
|
+
switch (elementsType) {
|
|
144
|
+
// Selector
|
|
145
|
+
case 'String':
|
|
146
|
+
if (elementsIsString)
|
|
147
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
148
|
+
break;
|
|
149
|
+
// Multiple HTML Elements
|
|
150
|
+
case 'NodeList':
|
|
151
|
+
if (!elementsIsString)
|
|
152
|
+
elementList = Array.from(elements);
|
|
153
|
+
break;
|
|
154
|
+
// Array of Elements
|
|
155
|
+
case 'Array':
|
|
156
|
+
if (!elementsIsString)
|
|
157
|
+
elementList = elements;
|
|
158
|
+
break;
|
|
159
|
+
// Single HTML Element
|
|
160
|
+
default:
|
|
161
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
162
|
+
elementList = [elements];
|
|
163
|
+
}
|
|
164
|
+
// & Convert classList to array
|
|
165
|
+
switch (classListType) {
|
|
166
|
+
case 'String':
|
|
167
|
+
if (classListIsString)
|
|
168
|
+
if (classList.split(' ').length >= 2) {
|
|
169
|
+
classListGroup = classList.split(' ');
|
|
170
|
+
}
|
|
171
|
+
else {
|
|
172
|
+
classListGroup = [classList];
|
|
173
|
+
}
|
|
174
|
+
break;
|
|
175
|
+
case 'Array':
|
|
176
|
+
if (!classListIsString)
|
|
177
|
+
classListGroup = classList;
|
|
178
|
+
break;
|
|
179
|
+
}
|
|
180
|
+
if (!elementList || elementList.length < 1)
|
|
181
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
182
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
183
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
184
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
185
|
+
element.classList.toggle(classItem);
|
|
186
|
+
}));
|
|
187
|
+
}
|
|
188
|
+
|
|
9
189
|
const integerList = Array.from({ length: 100 }, (_, i) => `${i + 1}`);
|
|
10
190
|
const twMerge = tailwindMerge.extendTailwindMerge({
|
|
11
191
|
extend: {
|
|
@@ -82,13 +262,105 @@ const twMerge = tailwindMerge.extendTailwindMerge({
|
|
|
82
262
|
},
|
|
83
263
|
},
|
|
84
264
|
});
|
|
265
|
+
function extendMadoTailwindMerge(configExtension) {
|
|
266
|
+
const extend = configExtension.extend || {};
|
|
267
|
+
const theme = extend.theme || {};
|
|
268
|
+
const color = 'color' in theme ? theme.color : [];
|
|
269
|
+
const classGroups = extend.classGroups || {};
|
|
270
|
+
const themeRest = { ...theme };
|
|
271
|
+
if ('color' in themeRest)
|
|
272
|
+
delete themeRest.color;
|
|
273
|
+
const extendRest = { ...extend };
|
|
274
|
+
delete extendRest.theme;
|
|
275
|
+
delete extendRest.classGroups;
|
|
276
|
+
return tailwindMerge.extendTailwindMerge({
|
|
277
|
+
extend: {
|
|
278
|
+
theme: {
|
|
279
|
+
color: [
|
|
280
|
+
{
|
|
281
|
+
ui: [
|
|
282
|
+
'red',
|
|
283
|
+
'orange',
|
|
284
|
+
'yellow',
|
|
285
|
+
'green',
|
|
286
|
+
'sky-blue',
|
|
287
|
+
'blue',
|
|
288
|
+
'violet',
|
|
289
|
+
'magenta',
|
|
290
|
+
'purple',
|
|
291
|
+
'brown',
|
|
292
|
+
'grey',
|
|
293
|
+
'pink',
|
|
294
|
+
],
|
|
295
|
+
},
|
|
296
|
+
...color,
|
|
297
|
+
],
|
|
298
|
+
...themeRest,
|
|
299
|
+
},
|
|
300
|
+
classGroups: {
|
|
301
|
+
animate: [
|
|
302
|
+
{
|
|
303
|
+
animate: [
|
|
304
|
+
'bounce',
|
|
305
|
+
'double-spin',
|
|
306
|
+
'drop-in',
|
|
307
|
+
'flip',
|
|
308
|
+
'flip-again',
|
|
309
|
+
'grid-rows',
|
|
310
|
+
'heartbeat',
|
|
311
|
+
'ping',
|
|
312
|
+
'pulse',
|
|
313
|
+
'slide-up',
|
|
314
|
+
'spin',
|
|
315
|
+
'wave',
|
|
316
|
+
],
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
'animation-direction': [
|
|
320
|
+
{
|
|
321
|
+
'animation-direction': ['normal', 'reverse', 'alternate', 'alternate-reverse'],
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
'animation-fill': [
|
|
325
|
+
{
|
|
326
|
+
'animation-fill': ['none', 'forwards', 'backwards', 'both'],
|
|
327
|
+
},
|
|
328
|
+
],
|
|
329
|
+
'animation-iteration': [
|
|
330
|
+
{
|
|
331
|
+
'animation-iteration': [...integerList, 'infinite'],
|
|
332
|
+
},
|
|
333
|
+
],
|
|
334
|
+
'animation-state': [
|
|
335
|
+
{
|
|
336
|
+
'animation-state': ['running', 'paused'],
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
'grid-cols': [
|
|
340
|
+
{
|
|
341
|
+
'grid-cols': ['0fr', '1fr'],
|
|
342
|
+
},
|
|
343
|
+
],
|
|
344
|
+
'grid-rows': [
|
|
345
|
+
{
|
|
346
|
+
'grid-rows': ['0fr', '1fr'],
|
|
347
|
+
},
|
|
348
|
+
],
|
|
349
|
+
transition: ['transition-rows'],
|
|
350
|
+
...classGroups,
|
|
351
|
+
},
|
|
352
|
+
...extendRest,
|
|
353
|
+
},
|
|
354
|
+
...configExtension,
|
|
355
|
+
});
|
|
356
|
+
}
|
|
85
357
|
|
|
86
358
|
/** The current date as a Date object */
|
|
87
359
|
const d = new Date();
|
|
88
360
|
/** The current minute of the current hour */
|
|
89
361
|
const minutes = d.getMinutes();
|
|
90
362
|
/** The current year */
|
|
91
|
-
d.getFullYear();
|
|
363
|
+
const year = d.getFullYear();
|
|
92
364
|
/** An array of the names of month in order */
|
|
93
365
|
const monthNamesList = [
|
|
94
366
|
'January',
|
|
@@ -115,9 +387,29 @@ const weekdayNamesList = [
|
|
|
115
387
|
'Saturday',
|
|
116
388
|
];
|
|
117
389
|
/** The name of the current month */
|
|
118
|
-
getMonthName();
|
|
390
|
+
const currentMonthName = getMonthName();
|
|
119
391
|
/** The name of the current day of the week */
|
|
120
|
-
getWeekdayName();
|
|
392
|
+
const currentWeekdayName = getWeekdayName();
|
|
393
|
+
/**
|
|
394
|
+
* ### Days In Month
|
|
395
|
+
* - Returns the number of days in the specified month.
|
|
396
|
+
* @param {Date} date A Date object representing the month to get the number of days for. (Preset to the current date)
|
|
397
|
+
* @returns {number} The number of days in the specified month.
|
|
398
|
+
*/
|
|
399
|
+
function daysInMonth(date = d) {
|
|
400
|
+
const selectedYear = date.getFullYear(), selectedMonth = date.getMonth() + 1;
|
|
401
|
+
return new Date(selectedYear, selectedMonth, 0).getDate();
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* ### First of Month
|
|
405
|
+
* - Returns the first day of the specified month.
|
|
406
|
+
* @param {Date} date A Date object representing the month to get the first day for. (Preset to current date)
|
|
407
|
+
* @returns {Date} A Date object of the given month, with the first day.
|
|
408
|
+
*/
|
|
409
|
+
function firstOfMonth(date = d) {
|
|
410
|
+
// Return a new Date object with the first of the month selected
|
|
411
|
+
return new Date(date.getFullYear(), date.getMonth(), 1);
|
|
412
|
+
}
|
|
121
413
|
/**
|
|
122
414
|
* ### Get Date
|
|
123
415
|
* - Returns the date with two digits
|
|
@@ -146,6 +438,32 @@ function getHours(hours = d) {
|
|
|
146
438
|
formattedHours = `0${formattedHours}`;
|
|
147
439
|
return formattedHours;
|
|
148
440
|
}
|
|
441
|
+
/**
|
|
442
|
+
* ### Get Hours in 12
|
|
443
|
+
* - Returns the hour based on the specified 24 hour value in a 12 hour format
|
|
444
|
+
* @param {number|Date} hour The hour to be converted to 12 hour format
|
|
445
|
+
* @returns {number} The hour in a 12 hour format
|
|
446
|
+
*/
|
|
447
|
+
function getHoursIn12(hour = d) {
|
|
448
|
+
if (typeof hour !== 'number')
|
|
449
|
+
hour = hour.getHours();
|
|
450
|
+
if (hour > 12)
|
|
451
|
+
return hour - 12;
|
|
452
|
+
return hour;
|
|
453
|
+
}
|
|
454
|
+
/**
|
|
455
|
+
* ### Get Meridian from Hour
|
|
456
|
+
* - Returns either 'pm' or 'am' based on the specified 24 hour value
|
|
457
|
+
* @param {number|Date} hour The hour to get the meridian from
|
|
458
|
+
* @returns {'am'|'pm'} The meridian for the given hour
|
|
459
|
+
*/
|
|
460
|
+
function getMeridianFromHour(hour = d) {
|
|
461
|
+
if (typeof hour !== 'number')
|
|
462
|
+
hour = hour.getHours();
|
|
463
|
+
if (hour >= 12)
|
|
464
|
+
return 'pm';
|
|
465
|
+
return 'am';
|
|
466
|
+
}
|
|
149
467
|
/**
|
|
150
468
|
* ### Get Milliseconds
|
|
151
469
|
* - Returns the milliseconds with two digits
|
|
@@ -188,6 +506,9 @@ function getMonth(month = d) {
|
|
|
188
506
|
formattedMonth = `0${formattedMonth}`;
|
|
189
507
|
return formattedMonth;
|
|
190
508
|
}
|
|
509
|
+
function getMonthIndexFromName(name) {
|
|
510
|
+
return monthNamesList.findIndex(monthName => monthName === name);
|
|
511
|
+
}
|
|
191
512
|
/**
|
|
192
513
|
* ### Get Month Name
|
|
193
514
|
* - Returns the name of the specified month
|
|
@@ -199,6 +520,28 @@ function getMonthName(date = d) {
|
|
|
199
520
|
return monthNamesList[date];
|
|
200
521
|
return monthNamesList[date.getMonth()];
|
|
201
522
|
}
|
|
523
|
+
/**
|
|
524
|
+
* ### Get Next Month
|
|
525
|
+
* - Returns the number of the following month from the specified month
|
|
526
|
+
* @param {Date} date The Date object representing the month to get the following month from (Preset to current date)
|
|
527
|
+
* @returns {number} The indexed month of the following month
|
|
528
|
+
*/
|
|
529
|
+
function getNextMonth(date = d) {
|
|
530
|
+
const givenMonth = date.getMonth(); // Get the month from date
|
|
531
|
+
// Return the indexed month. min 0, max 11
|
|
532
|
+
return givenMonth === 11 ? 0 : givenMonth + 1;
|
|
533
|
+
}
|
|
534
|
+
/**
|
|
535
|
+
* ### Get Previous Month
|
|
536
|
+
* - Returns the number of the previous month from the specified month
|
|
537
|
+
* @param {Date} date The Date object representing the month to get the previous month from (Preset to current date)
|
|
538
|
+
* @returns {number} The indexed month of the previous month
|
|
539
|
+
*/
|
|
540
|
+
function getPreviousMonth(date = d) {
|
|
541
|
+
const givenMonth = date.getMonth(); // Get the month from date
|
|
542
|
+
// Return the indexed month. min 0, max 11
|
|
543
|
+
return givenMonth === 0 ? 11 : givenMonth - 1;
|
|
544
|
+
}
|
|
202
545
|
/**
|
|
203
546
|
* ### Get Seconds
|
|
204
547
|
* - Returns the seconds with two digits
|
|
@@ -213,6 +556,31 @@ function getSeconds(seconds = d) {
|
|
|
213
556
|
formattedSeconds = `0${formattedSeconds}`;
|
|
214
557
|
return formattedSeconds;
|
|
215
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* ### Get User Readable Date
|
|
561
|
+
* - Returns a string of the current date in a user-friendly way
|
|
562
|
+
* - Includes `'Yesterday'`, '`Today'`, and `'Tomorrow'`
|
|
563
|
+
* @param date (default: `new Date()`)
|
|
564
|
+
* @returns {'Today'|'Tomorrow'|'Yesterday'|string} `'weekday, month day, year'` | `'Yesterday'` | `'Today'` | `'Tomorrow'`
|
|
565
|
+
*/
|
|
566
|
+
function getUserReadableDate(date = d) {
|
|
567
|
+
const dateTime = date.getTime();
|
|
568
|
+
const today = new Date(), isToday = dateTime === today.getTime();
|
|
569
|
+
if (isToday)
|
|
570
|
+
return 'Today';
|
|
571
|
+
const yesterday = new Date(today.getDate() - 1), isYesterday = dateTime === yesterday.getTime();
|
|
572
|
+
if (isYesterday)
|
|
573
|
+
return 'Yesterday';
|
|
574
|
+
const tomorrow = new Date(today.getDate() + 1), isTomorrow = dateTime === tomorrow.getTime();
|
|
575
|
+
if (isTomorrow)
|
|
576
|
+
return 'Tomorrow';
|
|
577
|
+
const thisYear = today.getFullYear(), isSameYear = date.getFullYear() === thisYear;
|
|
578
|
+
const fullDateString = toFullDateString(date, {
|
|
579
|
+
weekday: 'code',
|
|
580
|
+
year: !isSameYear,
|
|
581
|
+
});
|
|
582
|
+
return fullDateString;
|
|
583
|
+
}
|
|
216
584
|
/**
|
|
217
585
|
* ### Get Weekday Name
|
|
218
586
|
* - Returns the weekday name of the specified day
|
|
@@ -225,6 +593,80 @@ function getWeekdayName(weekday = d) {
|
|
|
225
593
|
// Return the name of the day of the week
|
|
226
594
|
return weekdayNamesList[weekday.getDay()];
|
|
227
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* ### Get Years in Range
|
|
598
|
+
* - Returns an array of years in between the specified minimum and maximum years
|
|
599
|
+
* @param {number} minYear The minimum year
|
|
600
|
+
* @param {number} maxYear The maximum year
|
|
601
|
+
* @returns {number[]} Array of years
|
|
602
|
+
*/
|
|
603
|
+
function getYearsInRange(minYear = 0, maxYear = year) {
|
|
604
|
+
const yearList = [];
|
|
605
|
+
for (let selectedYear = minYear; selectedYear <= maxYear; selectedYear++) {
|
|
606
|
+
yearList.push(selectedYear);
|
|
607
|
+
}
|
|
608
|
+
return yearList;
|
|
609
|
+
}
|
|
610
|
+
/**
|
|
611
|
+
* ### To Full Date String
|
|
612
|
+
* - Returns a formatted string to display the date
|
|
613
|
+
* @param {Date} date (default: `new Date()`)
|
|
614
|
+
* @param {ToFullDateStringOptionsProps} options Change how to display the weekday, month name, day of the month, and year.
|
|
615
|
+
* @returns {string} '`weekday`, `month` `day`, `year`'
|
|
616
|
+
*/
|
|
617
|
+
function toFullDateString(date = d, options) {
|
|
618
|
+
let weekdayName = getWeekdayName(date), monthName = getMonthName(date), dayOfMonth = date.getDate(), year = date.getFullYear().toString();
|
|
619
|
+
if (options) {
|
|
620
|
+
const includesWeekday = options.weekday !== false, includesDay = options.day !== false, includesMonth = options.month !== false, includesYear = options.year !== false;
|
|
621
|
+
if (includesWeekday) {
|
|
622
|
+
if (options.weekday === 'code')
|
|
623
|
+
weekdayName = weekdayName.slice(0, 3);
|
|
624
|
+
if (includesMonth || includesDay || includesYear)
|
|
625
|
+
weekdayName += ', ';
|
|
626
|
+
}
|
|
627
|
+
else {
|
|
628
|
+
weekdayName = '';
|
|
629
|
+
}
|
|
630
|
+
if (includesMonth) {
|
|
631
|
+
if (options.month === 'code')
|
|
632
|
+
monthName = monthName.slice(0, 3);
|
|
633
|
+
if (includesDay)
|
|
634
|
+
monthName += ' ';
|
|
635
|
+
}
|
|
636
|
+
else {
|
|
637
|
+
monthName = '';
|
|
638
|
+
}
|
|
639
|
+
if (!includesDay)
|
|
640
|
+
dayOfMonth = '';
|
|
641
|
+
if (includesYear) {
|
|
642
|
+
if (options.year === 'code')
|
|
643
|
+
year = year.slice(-2);
|
|
644
|
+
if (includesMonth || includesDay)
|
|
645
|
+
year = ', ' + year;
|
|
646
|
+
}
|
|
647
|
+
else {
|
|
648
|
+
year = '';
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
return weekdayName + monthName + dayOfMonth + year;
|
|
652
|
+
}
|
|
653
|
+
/**
|
|
654
|
+
* ### Get User Readable Date From Timestampz
|
|
655
|
+
* - Returns a string of the current date in a user-friendly way
|
|
656
|
+
* - Includes `'Yesterday'`, '`Today'`, and `'Tomorrow'`
|
|
657
|
+
* @param string
|
|
658
|
+
* @returns {'Today'|'Tomorrow'|'Yesterday'|string} `'weekday, month day, year'` | `'Yesterday'` | `'Today'` | `'Tomorrow'`
|
|
659
|
+
*/
|
|
660
|
+
function getUserReadableDateFromTimestampz(timestampz) {
|
|
661
|
+
const [date, time] = timestampz.split('T') || [];
|
|
662
|
+
const [year, month, day] = date?.split('-').map(string => Number(string)) || [];
|
|
663
|
+
const timezoneIsAheadOfUTC = time?.includes('+');
|
|
664
|
+
const [hms, _timezone] = timezoneIsAheadOfUTC ? time?.split('+') : time?.split('-') || [];
|
|
665
|
+
const [hours, minutes, seconds] = hms?.split(':').map(string => Number(string)) || [];
|
|
666
|
+
// const [timezoneHours, timezoneMinutes] = timezone?.split(':').map(string => Number(string)) || []
|
|
667
|
+
const dateAndTime = new Date(year, month - 1, day, hours, minutes, seconds), userReadableDateAndTime = getUserReadableDate(dateAndTime);
|
|
668
|
+
return userReadableDateAndTime;
|
|
669
|
+
}
|
|
228
670
|
|
|
229
671
|
function findComponentByType(children, componentType) {
|
|
230
672
|
const childrenArray = react.Children.toArray(children);
|
|
@@ -276,6 +718,23 @@ function isPhoneNumber(tel) {
|
|
|
276
718
|
* @param {string} string
|
|
277
719
|
* @returns {string} string formatted (000) 000-0000
|
|
278
720
|
*/
|
|
721
|
+
function formatPhoneNumber(string, countryCode) {
|
|
722
|
+
return (`${countryCode ? `+${countryCode} ` : ''}` +
|
|
723
|
+
string
|
|
724
|
+
.replace(/\D/g, '')
|
|
725
|
+
.slice(-10)
|
|
726
|
+
.split('')
|
|
727
|
+
.map((char, index) => {
|
|
728
|
+
if (index === 0)
|
|
729
|
+
return `(${char}`;
|
|
730
|
+
if (index === 2)
|
|
731
|
+
return `${char}) `;
|
|
732
|
+
if (index === 5)
|
|
733
|
+
return `${char}-`;
|
|
734
|
+
return char;
|
|
735
|
+
})
|
|
736
|
+
.join(''));
|
|
737
|
+
}
|
|
279
738
|
/**
|
|
280
739
|
* # To Lower Case
|
|
281
740
|
* Converts a string to lowercase, and offers easy string replacements for creating snake case, kebab case, or your own.
|
|
@@ -310,15 +769,15 @@ function Anchor({ className, disabled, href, onClick, ref, target, rel, ...props
|
|
|
310
769
|
: 'prefetch' }));
|
|
311
770
|
}
|
|
312
771
|
// * Styles
|
|
313
|
-
const baseClasses = twSort('
|
|
314
|
-
const lineStaticClasses = tailwindMerge.twJoin(baseClasses, '
|
|
315
|
-
const lineClasses = tailwindMerge.twJoin(lineStaticClasses, '
|
|
772
|
+
const baseClasses = twSort('isolate inline-block cursor-pointer duration-300 ease-exponential after:absolute after:left-1/2 after:-z-10 after:-translate-x-1/2 after:duration-500 active:scale-95 active:after:opacity-100');
|
|
773
|
+
const lineStaticClasses = tailwindMerge.twJoin(baseClasses, 'whitespace-nowrap after:-bottom-0.5 after:w-[calc(100%+0.15rem)] after:rounded-full after:border-1 after:border-current');
|
|
774
|
+
const lineClasses = tailwindMerge.twJoin(lineStaticClasses, 'whitespace-nowrap transition-transform after:transition-transform after:ease-exponential');
|
|
316
775
|
const scaleXClasses = 'after:scale-x-0 pointer-fine:hover:after:scale-x-100 active:after:scale-x-100';
|
|
317
776
|
const scaleYClasses = 'after:scale-y-0 pointer-fine:hover:after:scale-y-100 active:after:scale-y-100';
|
|
318
777
|
const lineNormalClasses = tailwindMerge.twJoin([
|
|
319
778
|
lineClasses,
|
|
320
779
|
scaleYClasses,
|
|
321
|
-
'
|
|
780
|
+
'after:origin-bottom after:translate-y-0.5 active:after:translate-y-0 pointer-fine:hover:after:translate-y-0',
|
|
322
781
|
]);
|
|
323
782
|
const lineLtrClasses = tailwindMerge.twJoin([lineClasses, scaleXClasses, 'after:origin-left']);
|
|
324
783
|
const lineRtlClasses = tailwindMerge.twJoin([lineClasses, scaleXClasses, 'after:origin-right']);
|
|
@@ -326,160 +785,151 @@ const lineCenterClasses = tailwindMerge.twJoin([lineClasses, scaleXClasses]);
|
|
|
326
785
|
const lineLiftClasses = tailwindMerge.twJoin([
|
|
327
786
|
lineClasses,
|
|
328
787
|
scaleYClasses,
|
|
329
|
-
'
|
|
788
|
+
'after:origin-bottom after:translate-y-1 after:scale-x-75 active:after:translate-y-0 active:after:scale-x-100 pointer-fine:hover:after:translate-y-0 pointer-fine:hover:after:scale-x-100',
|
|
330
789
|
]);
|
|
331
|
-
const fillClasses = tailwindMerge.twJoin(baseClasses, '
|
|
790
|
+
const fillClasses = tailwindMerge.twJoin(baseClasses, 'whitespace-nowrap transition-[transform_color] after:top-1/2 after:h-[calc(100%+0.05rem)] after:w-[calc(100%+0.25rem)] after:-translate-y-1/2 after:rounded after:ease-exponential active:text-zinc-50 pointer-fine:hover:text-zinc-50');
|
|
332
791
|
// Define theme-specific fill color transition classes
|
|
333
792
|
const getFillColorTransitionClasses = (theme = 'blue') => {
|
|
334
793
|
switch (theme) {
|
|
335
794
|
case 'brown':
|
|
336
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-brown contrast-more:after:bg-ui-brown
|
|
795
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-brown after:transition-transform contrast-more:after:bg-ui-brown');
|
|
337
796
|
case 'green':
|
|
338
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-green contrast-more:after:bg-ui-green
|
|
797
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-green after:transition-transform contrast-more:after:bg-ui-green');
|
|
339
798
|
case 'grey':
|
|
340
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-grey contrast-more:after:bg-ui-grey
|
|
799
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-grey after:transition-transform contrast-more:after:bg-ui-grey');
|
|
341
800
|
case 'sky-blue':
|
|
342
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-sky-blue contrast-more:after:bg-ui-sky-blue
|
|
801
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-sky-blue after:transition-transform contrast-more:after:bg-ui-sky-blue');
|
|
343
802
|
case 'magenta':
|
|
344
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-magenta contrast-more:after:bg-ui-magenta
|
|
803
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-magenta after:transition-transform contrast-more:after:bg-ui-magenta');
|
|
345
804
|
case 'neutral':
|
|
346
805
|
return tailwindMerge.twJoin(fillClasses, 'after:bg-zinc-700 after:transition-transform contrast-more:after:bg-zinc-700 dark:after:bg-zinc-300 dark:contrast-more:after:bg-zinc-300');
|
|
347
806
|
case 'orange':
|
|
348
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-orange contrast-more:after:bg-ui-orange
|
|
807
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-orange after:transition-transform contrast-more:after:bg-ui-orange');
|
|
349
808
|
case 'pink':
|
|
350
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-pink contrast-more:after:bg-ui-pink
|
|
351
|
-
case 'primary':
|
|
352
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-primary-500 contrast-more:after:bg-primary-500 after:transition-transform');
|
|
809
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-pink after:transition-transform contrast-more:after:bg-ui-pink');
|
|
353
810
|
case 'purple':
|
|
354
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-purple contrast-more:after:bg-ui-purple
|
|
811
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-purple after:transition-transform contrast-more:after:bg-ui-purple');
|
|
355
812
|
case 'red':
|
|
356
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-red contrast-more:after:bg-ui-red
|
|
813
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-red after:transition-transform contrast-more:after:bg-ui-red');
|
|
357
814
|
case 'violet':
|
|
358
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-violet contrast-more:after:bg-ui-violet
|
|
815
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-violet after:transition-transform contrast-more:after:bg-ui-violet');
|
|
359
816
|
case 'yellow':
|
|
360
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-yellow contrast-more:after:bg-ui-yellow
|
|
817
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-yellow after:transition-transform contrast-more:after:bg-ui-yellow');
|
|
361
818
|
case 'blue':
|
|
362
819
|
default:
|
|
363
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-blue contrast-more:after:bg-ui-blue
|
|
820
|
+
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-blue after:transition-transform contrast-more:after:bg-ui-blue');
|
|
364
821
|
}
|
|
365
822
|
};
|
|
366
823
|
// Define theme-specific fill center classes
|
|
367
824
|
const getFillCenterClasses = (theme = 'blue') => {
|
|
368
825
|
switch (theme) {
|
|
369
826
|
case 'brown':
|
|
370
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-brown/0
|
|
827
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-brown/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-brown pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-brown');
|
|
371
828
|
case 'green':
|
|
372
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-green/0
|
|
829
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-green/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-green pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-green');
|
|
373
830
|
case 'grey':
|
|
374
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-grey/0
|
|
831
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-grey/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-grey pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-grey');
|
|
375
832
|
case 'sky-blue':
|
|
376
|
-
return tailwindMerge.twJoin(fillClasses, 'after:
|
|
833
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-sky-blue/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-sky-blue pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-sky-blue');
|
|
377
834
|
case 'magenta':
|
|
378
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-magenta/0
|
|
835
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-magenta/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-magenta pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-magenta');
|
|
379
836
|
case 'neutral':
|
|
380
|
-
return tailwindMerge.twJoin(fillClasses, '
|
|
837
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-zinc-700/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-zinc-700 dark:after:bg-zinc-300/0 dark:active:after:bg-zinc-300 pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-zinc-700 dark:pointer-fine:hover:after:bg-zinc-300');
|
|
381
838
|
case 'orange':
|
|
382
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-orange/0
|
|
839
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-orange/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-orange pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-orange');
|
|
383
840
|
case 'pink':
|
|
384
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-pink/0
|
|
385
|
-
case 'primary':
|
|
386
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-primary-500/0 active:after:bg-primary-500 pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-primary-500 after:scale-x-50 after:scale-y-[0.25] after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100');
|
|
841
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-pink/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-pink pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-pink');
|
|
387
842
|
case 'purple':
|
|
388
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-purple/0
|
|
843
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-purple/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-purple pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-purple');
|
|
389
844
|
case 'red':
|
|
390
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-red/0
|
|
845
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-red/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-red pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-red');
|
|
391
846
|
case 'violet':
|
|
392
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-violet/0
|
|
847
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-violet/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-violet pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-violet');
|
|
393
848
|
case 'yellow':
|
|
394
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-yellow/0
|
|
849
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-yellow/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-yellow pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-yellow');
|
|
395
850
|
case 'blue':
|
|
396
851
|
default:
|
|
397
|
-
return tailwindMerge.twJoin(fillClasses, 'after:bg-ui-blue/0
|
|
852
|
+
return tailwindMerge.twJoin(fillClasses, 'after:scale-x-50 after:scale-y-[0.25] after:bg-ui-blue/0 after:transition-[transform_background-color] active:after:scale-x-100 active:after:scale-y-100 active:after:bg-ui-blue pointer-fine:hover:after:scale-x-100 pointer-fine:hover:after:scale-y-100 pointer-fine:hover:after:bg-ui-blue');
|
|
398
853
|
}
|
|
399
854
|
};
|
|
400
855
|
const multilineBaseClasses = twSort('bg-linear-to-r from-current to-current bg-no-repeat active:scale-95');
|
|
401
856
|
const multilineLineStaticClasses = 'underline';
|
|
402
|
-
const multilineNormalClasses = twSort('
|
|
403
|
-
const multilineClasses = tailwindMerge.twJoin(multilineBaseClasses, 'ease-exponential
|
|
857
|
+
const multilineNormalClasses = twSort('underline-offset-1 active:underline pointer-fine:hover:underline');
|
|
858
|
+
const multilineClasses = tailwindMerge.twJoin(multilineBaseClasses, 'duration-500 ease-exponential');
|
|
404
859
|
const multilineLineClasses = tailwindMerge.twJoin(multilineClasses, 'bg-[position:0%_100%] px-px pb-px transition-[background-size]');
|
|
405
|
-
const multilineXClasses = tailwindMerge.twJoin(multilineLineClasses, '
|
|
860
|
+
const multilineXClasses = tailwindMerge.twJoin(multilineLineClasses, 'bg-[size:0%_2px] focus-visible:bg-[size:100%_2px] active:bg-[size:100%_2px] pointer-fine:hover:bg-[size:100%_2px]');
|
|
406
861
|
const multilineLineRtlClasses = tailwindMerge.twJoin([multilineXClasses, 'bg-[position:100%_100%]']);
|
|
407
862
|
const multilineLineCenterClasses = tailwindMerge.twJoin([multilineXClasses, 'bg-[position:50%_100%]']);
|
|
408
|
-
const multilineLineLiftClasses = tailwindMerge.twJoin(multilineLineClasses, '
|
|
409
|
-
const multilineFillBaseClasses = tailwindMerge.twJoin(multilineBaseClasses, 'py-0.75
|
|
410
|
-
// Define theme-specific multiline fill color classes
|
|
863
|
+
const multilineLineLiftClasses = tailwindMerge.twJoin(multilineLineClasses, 'bg-[size:auto_0px] focus-visible:bg-[size:auto_2px] active:bg-[size:auto_2px] pointer-fine:hover:bg-[size:auto_2px]');
|
|
864
|
+
const multilineFillBaseClasses = tailwindMerge.twJoin(multilineBaseClasses, 'rounded px-0.5 py-0.75 focus-visible:text-zinc-50 active:text-zinc-50 pointer-fine:hover:text-zinc-50');
|
|
411
865
|
const getMultilineFillColorClasses = (theme = 'blue') => {
|
|
412
866
|
switch (theme) {
|
|
413
867
|
case 'brown':
|
|
414
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-brown to-ui-brown contrast-more:from-ui-brown contrast-more:to-ui-brown
|
|
868
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-brown to-ui-brown transition-[background-size_color] contrast-more:from-ui-brown contrast-more:to-ui-brown');
|
|
415
869
|
case 'green':
|
|
416
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-green to-ui-green contrast-more:from-ui-green contrast-more:to-ui-green
|
|
870
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-green to-ui-green transition-[background-size_color] contrast-more:from-ui-green contrast-more:to-ui-green');
|
|
417
871
|
case 'grey':
|
|
418
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-grey to-ui-grey contrast-more:from-ui-grey contrast-more:to-ui-grey
|
|
872
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-grey to-ui-grey transition-[background-size_color] contrast-more:from-ui-grey contrast-more:to-ui-grey');
|
|
419
873
|
case 'sky-blue':
|
|
420
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-sky-blue to-ui-sky-blue contrast-more:from-ui-sky-blue contrast-more:to-ui-sky-blue
|
|
874
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-sky-blue to-ui-sky-blue transition-[background-size_color] contrast-more:from-ui-sky-blue contrast-more:to-ui-sky-blue');
|
|
421
875
|
case 'magenta':
|
|
422
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-magenta to-ui-magenta contrast-more:from-ui-magenta contrast-more:to-ui-magenta
|
|
876
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-magenta to-ui-magenta transition-[background-size_color] contrast-more:from-ui-magenta contrast-more:to-ui-magenta');
|
|
423
877
|
case 'neutral':
|
|
424
878
|
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-zinc-700 to-zinc-700 transition-[background-size_color] contrast-more:from-zinc-700 contrast-more:to-zinc-700 dark:from-zinc-300 dark:to-zinc-300 dark:contrast-more:from-zinc-300 dark:contrast-more:to-zinc-300');
|
|
425
879
|
case 'orange':
|
|
426
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-orange to-ui-orange contrast-more:from-ui-orange contrast-more:to-ui-orange
|
|
880
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-orange to-ui-orange transition-[background-size_color] contrast-more:from-ui-orange contrast-more:to-ui-orange');
|
|
427
881
|
case 'pink':
|
|
428
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-pink to-ui-pink contrast-more:from-ui-pink contrast-more:to-ui-pink
|
|
429
|
-
case 'primary':
|
|
430
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-primary-500 to-primary-500 contrast-more:from-primary-500 contrast-more:to-primary-500 transition-[background-size_color]');
|
|
882
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-pink to-ui-pink transition-[background-size_color] contrast-more:from-ui-pink contrast-more:to-ui-pink');
|
|
431
883
|
case 'purple':
|
|
432
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-purple to-ui-purple contrast-more:from-ui-purple contrast-more:to-ui-purple
|
|
884
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-purple to-ui-purple transition-[background-size_color] contrast-more:from-ui-purple contrast-more:to-ui-purple');
|
|
433
885
|
case 'red':
|
|
434
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-red to-ui-red contrast-more:from-ui-red contrast-more:to-ui-red
|
|
886
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-red to-ui-red transition-[background-size_color] contrast-more:from-ui-red contrast-more:to-ui-red');
|
|
435
887
|
case 'violet':
|
|
436
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-violet to-ui-violet contrast-more:from-ui-violet contrast-more:to-ui-violet
|
|
888
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-violet to-ui-violet transition-[background-size_color] contrast-more:from-ui-violet contrast-more:to-ui-violet');
|
|
437
889
|
case 'yellow':
|
|
438
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-yellow to-ui-yellow contrast-more:from-ui-yellow contrast-more:to-ui-yellow
|
|
890
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-yellow to-ui-yellow transition-[background-size_color] contrast-more:from-ui-yellow contrast-more:to-ui-yellow');
|
|
439
891
|
case 'blue':
|
|
440
892
|
default:
|
|
441
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-blue to-ui-blue contrast-more:from-ui-blue contrast-more:to-ui-blue
|
|
893
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-blue to-ui-blue transition-[background-size_color] contrast-more:from-ui-blue contrast-more:to-ui-blue');
|
|
442
894
|
}
|
|
443
895
|
};
|
|
444
896
|
// Define theme-specific multiline fill classes
|
|
445
897
|
const getMultilineFillClasses = (theme = 'blue') => {
|
|
446
898
|
switch (theme) {
|
|
447
899
|
case 'brown':
|
|
448
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-brown/0 to-ui-brown/0 focus-visible:from-ui-brown focus-visible:to-ui-brown active:from-ui-brown active:to-ui-brown contrast-more:from-ui-brown/0 contrast-more:to-ui-brown/0 focus-visible:contrast-more:from-ui-brown focus-visible:contrast-more:to-ui-brown active:contrast-more:from-ui-brown active:contrast-more:to-ui-brown pointer-fine:hover:from-ui-brown pointer-fine:hover:to-ui-brown pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-brown pointer-fine:hover:contrast-more:to-ui-brown
|
|
900
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-brown/0 to-ui-brown/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-brown focus-visible:to-ui-brown focus-visible:bg-[size:100%_100%] active:from-ui-brown active:to-ui-brown active:bg-[size:100%_100%] contrast-more:from-ui-brown/0 contrast-more:to-ui-brown/0 focus-visible:contrast-more:from-ui-brown focus-visible:contrast-more:to-ui-brown active:contrast-more:from-ui-brown active:contrast-more:to-ui-brown pointer-fine:hover:from-ui-brown pointer-fine:hover:to-ui-brown pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-brown pointer-fine:hover:contrast-more:to-ui-brown');
|
|
449
901
|
case 'green':
|
|
450
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-green/0 to-ui-green/0 focus-visible:from-ui-green focus-visible:to-ui-green active:from-ui-green active:to-ui-green contrast-more:from-ui-green/0 contrast-more:to-ui-green/0 focus-visible:contrast-more:from-ui-green focus-visible:contrast-more:to-ui-green active:contrast-more:from-ui-green active:contrast-more:to-ui-green pointer-fine:hover:from-ui-green pointer-fine:hover:to-ui-green pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-green pointer-fine:hover:contrast-more:to-ui-green
|
|
902
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-green/0 to-ui-green/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-green focus-visible:to-ui-green focus-visible:bg-[size:100%_100%] active:from-ui-green active:to-ui-green active:bg-[size:100%_100%] contrast-more:from-ui-green/0 contrast-more:to-ui-green/0 focus-visible:contrast-more:from-ui-green focus-visible:contrast-more:to-ui-green active:contrast-more:from-ui-green active:contrast-more:to-ui-green pointer-fine:hover:from-ui-green pointer-fine:hover:to-ui-green pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-green pointer-fine:hover:contrast-more:to-ui-green');
|
|
451
903
|
case 'grey':
|
|
452
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-grey/0 to-ui-grey/0 focus-visible:from-ui-grey focus-visible:to-ui-grey active:from-ui-grey active:to-ui-grey contrast-more:from-ui-grey/0 contrast-more:to-ui-grey/0 focus-visible:contrast-more:from-ui-grey focus-visible:contrast-more:to-ui-grey active:contrast-more:from-ui-grey active:contrast-more:to-ui-grey pointer-fine:hover:from-ui-grey pointer-fine:hover:to-ui-grey pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-grey pointer-fine:hover:contrast-more:to-ui-grey
|
|
904
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-grey/0 to-ui-grey/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-grey focus-visible:to-ui-grey focus-visible:bg-[size:100%_100%] active:from-ui-grey active:to-ui-grey active:bg-[size:100%_100%] contrast-more:from-ui-grey/0 contrast-more:to-ui-grey/0 focus-visible:contrast-more:from-ui-grey focus-visible:contrast-more:to-ui-grey active:contrast-more:from-ui-grey active:contrast-more:to-ui-grey pointer-fine:hover:from-ui-grey pointer-fine:hover:to-ui-grey pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-grey pointer-fine:hover:contrast-more:to-ui-grey');
|
|
453
905
|
case 'sky-blue':
|
|
454
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-sky-blue/0 to-ui-sky-blue/0 focus-visible:from-ui-sky-blue focus-visible:to-ui-sky-blue active:from-ui-sky-blue active:to-ui-sky-blue contrast-more:from-ui-sky-blue/0 contrast-more:to-ui-sky-blue/0 focus-visible:contrast-more:from-ui-sky-blue focus-visible:contrast-more:to-ui-sky-blue active:contrast-more:from-ui-sky-blue active:contrast-more:to-ui-sky-blue pointer-fine:hover:from-ui-sky-blue pointer-fine:hover:to-ui-sky-blue pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-sky-blue pointer-fine:hover:contrast-more:to-ui-sky-blue
|
|
906
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-sky-blue/0 to-ui-sky-blue/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-sky-blue focus-visible:to-ui-sky-blue focus-visible:bg-[size:100%_100%] active:from-ui-sky-blue active:to-ui-sky-blue active:bg-[size:100%_100%] contrast-more:from-ui-sky-blue/0 contrast-more:to-ui-sky-blue/0 focus-visible:contrast-more:from-ui-sky-blue focus-visible:contrast-more:to-ui-sky-blue active:contrast-more:from-ui-sky-blue active:contrast-more:to-ui-sky-blue pointer-fine:hover:from-ui-sky-blue pointer-fine:hover:to-ui-sky-blue pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-sky-blue pointer-fine:hover:contrast-more:to-ui-sky-blue');
|
|
455
907
|
case 'magenta':
|
|
456
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-magenta/0 to-ui-magenta/0 focus-visible:from-ui-magenta focus-visible:to-ui-magenta active:from-ui-magenta active:to-ui-magenta contrast-more:from-ui-magenta/0 contrast-more:to-ui-magenta/0 focus-visible:contrast-more:from-ui-magenta focus-visible:contrast-more:to-ui-magenta active:contrast-more:from-ui-magenta active:contrast-more:to-ui-magenta pointer-fine:hover:from-ui-magenta pointer-fine:hover:to-ui-magenta pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-magenta pointer-fine:hover:contrast-more:to-ui-magenta
|
|
908
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-magenta/0 to-ui-magenta/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-magenta focus-visible:to-ui-magenta focus-visible:bg-[size:100%_100%] active:from-ui-magenta active:to-ui-magenta active:bg-[size:100%_100%] contrast-more:from-ui-magenta/0 contrast-more:to-ui-magenta/0 focus-visible:contrast-more:from-ui-magenta focus-visible:contrast-more:to-ui-magenta active:contrast-more:from-ui-magenta active:contrast-more:to-ui-magenta pointer-fine:hover:from-ui-magenta pointer-fine:hover:to-ui-magenta pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-magenta pointer-fine:hover:contrast-more:to-ui-magenta');
|
|
457
909
|
case 'neutral':
|
|
458
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, '
|
|
910
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-zinc-700/0 to-zinc-700/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-zinc-700 focus-visible:to-zinc-700 focus-visible:bg-[size:100%_100%] active:from-zinc-700 active:to-zinc-700 active:bg-[size:100%_100%] contrast-more:from-zinc-700/0 contrast-more:to-zinc-700/0 focus-visible:contrast-more:from-zinc-700 focus-visible:contrast-more:to-zinc-700 active:contrast-more:from-zinc-700 active:contrast-more:to-zinc-700 dark:from-zinc-300/0 dark:to-zinc-300/0 dark:focus-visible:from-zinc-300 dark:focus-visible:to-zinc-300 dark:active:from-zinc-300 dark:active:to-zinc-300 dark:contrast-more:from-zinc-300/0 dark:contrast-more:to-zinc-300/0 dark:focus-visible:contrast-more:from-zinc-300 dark:focus-visible:contrast-more:to-zinc-300 dark:active:contrast-more:from-zinc-300 dark:active:contrast-more:to-zinc-300 pointer-fine:hover:from-zinc-700 pointer-fine:hover:to-zinc-700 pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-zinc-700 pointer-fine:hover:contrast-more:to-zinc-700 dark:pointer-fine:hover:from-zinc-300 dark:pointer-fine:hover:to-zinc-300 dark:pointer-fine:hover:contrast-more:from-zinc-300 dark:pointer-fine:hover:contrast-more:to-zinc-300');
|
|
459
911
|
case 'orange':
|
|
460
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-orange/0 to-ui-orange/0 focus-visible:from-ui-orange focus-visible:to-ui-orange active:from-ui-orange active:to-ui-orange contrast-more:from-ui-orange/0 contrast-more:to-ui-orange/0 focus-visible:contrast-more:from-ui-orange focus-visible:contrast-more:to-ui-orange active:contrast-more:from-ui-orange active:contrast-more:to-ui-orange pointer-fine:hover:from-ui-orange pointer-fine:hover:to-ui-orange pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-orange pointer-fine:hover:contrast-more:to-ui-orange
|
|
912
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-orange/0 to-ui-orange/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-orange focus-visible:to-ui-orange focus-visible:bg-[size:100%_100%] active:from-ui-orange active:to-ui-orange active:bg-[size:100%_100%] contrast-more:from-ui-orange/0 contrast-more:to-ui-orange/0 focus-visible:contrast-more:from-ui-orange focus-visible:contrast-more:to-ui-orange active:contrast-more:from-ui-orange active:contrast-more:to-ui-orange pointer-fine:hover:from-ui-orange pointer-fine:hover:to-ui-orange pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-orange pointer-fine:hover:contrast-more:to-ui-orange');
|
|
461
913
|
case 'pink':
|
|
462
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-pink/0 to-ui-pink/0 focus-visible:from-ui-pink focus-visible:to-ui-pink active:from-ui-pink active:to-ui-pink contrast-more:from-ui-pink/0 contrast-more:to-ui-pink/0 focus-visible:contrast-more:from-ui-pink focus-visible:contrast-more:to-ui-pink active:contrast-more:from-ui-pink active:contrast-more:to-ui-pink pointer-fine:hover:from-ui-pink pointer-fine:hover:to-ui-pink pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-pink pointer-fine:hover:contrast-more:to-ui-pink
|
|
463
|
-
case 'primary':
|
|
464
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-primary-500/0 to-primary-500/0 focus-visible:from-primary-500 focus-visible:to-primary-500 active:from-primary-500 active:to-primary-500 contrast-more:from-primary-500/0 contrast-more:to-primary-500/0 focus-visible:contrast-more:from-primary-500 focus-visible:contrast-more:to-primary-500 active:contrast-more:from-primary-500 active:contrast-more:to-primary-500 pointer-fine:hover:from-primary-500 pointer-fine:hover:to-primary-500 pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-primary-500 pointer-fine:hover:contrast-more:to-primary-500 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:bg-[size:100%_100%] active:bg-[size:100%_100%]');
|
|
914
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-pink/0 to-ui-pink/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-pink focus-visible:to-ui-pink focus-visible:bg-[size:100%_100%] active:from-ui-pink active:to-ui-pink active:bg-[size:100%_100%] contrast-more:from-ui-pink/0 contrast-more:to-ui-pink/0 focus-visible:contrast-more:from-ui-pink focus-visible:contrast-more:to-ui-pink active:contrast-more:from-ui-pink active:contrast-more:to-ui-pink pointer-fine:hover:from-ui-pink pointer-fine:hover:to-ui-pink pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-pink pointer-fine:hover:contrast-more:to-ui-pink');
|
|
465
915
|
case 'purple':
|
|
466
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-purple/0 to-ui-purple/0 focus-visible:from-ui-purple focus-visible:to-ui-purple active:from-ui-purple active:to-ui-purple contrast-more:from-ui-purple/0 contrast-more:to-ui-purple/0 focus-visible:contrast-more:from-ui-purple focus-visible:contrast-more:to-ui-purple active:contrast-more:from-ui-purple active:contrast-more:to-ui-purple pointer-fine:hover:from-ui-purple pointer-fine:hover:to-ui-purple pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-purple pointer-fine:hover:contrast-more:to-ui-purple
|
|
916
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-purple/0 to-ui-purple/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-purple focus-visible:to-ui-purple focus-visible:bg-[size:100%_100%] active:from-ui-purple active:to-ui-purple active:bg-[size:100%_100%] contrast-more:from-ui-purple/0 contrast-more:to-ui-purple/0 focus-visible:contrast-more:from-ui-purple focus-visible:contrast-more:to-ui-purple active:contrast-more:from-ui-purple active:contrast-more:to-ui-purple pointer-fine:hover:from-ui-purple pointer-fine:hover:to-ui-purple pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-purple pointer-fine:hover:contrast-more:to-ui-purple');
|
|
467
917
|
case 'red':
|
|
468
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-red/0 to-ui-red/0 focus-visible:from-ui-red focus-visible:to-ui-red active:from-ui-red active:to-ui-red contrast-more:from-ui-red/0 contrast-more:to-ui-red/0 focus-visible:contrast-more:from-ui-red focus-visible:contrast-more:to-ui-red active:contrast-more:from-ui-red active:contrast-more:to-ui-red pointer-fine:hover:from-ui-red pointer-fine:hover:to-ui-red pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-red pointer-fine:hover:contrast-more:to-ui-red
|
|
918
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-red/0 to-ui-red/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-red focus-visible:to-ui-red focus-visible:bg-[size:100%_100%] active:from-ui-red active:to-ui-red active:bg-[size:100%_100%] contrast-more:from-ui-red/0 contrast-more:to-ui-red/0 focus-visible:contrast-more:from-ui-red focus-visible:contrast-more:to-ui-red active:contrast-more:from-ui-red active:contrast-more:to-ui-red pointer-fine:hover:from-ui-red pointer-fine:hover:to-ui-red pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-red pointer-fine:hover:contrast-more:to-ui-red');
|
|
469
919
|
case 'violet':
|
|
470
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-violet/0 to-ui-violet/0 focus-visible:from-ui-violet focus-visible:to-ui-violet active:from-ui-violet active:to-ui-violet contrast-more:from-ui-violet/0 contrast-more:to-ui-violet/0 focus-visible:contrast-more:from-ui-violet focus-visible:contrast-more:to-ui-violet active:contrast-more:from-ui-violet active:contrast-more:to-ui-violet pointer-fine:hover:from-ui-violet pointer-fine:hover:to-ui-violet pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-violet pointer-fine:hover:contrast-more:to-ui-violet
|
|
920
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-violet/0 to-ui-violet/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-violet focus-visible:to-ui-violet focus-visible:bg-[size:100%_100%] active:from-ui-violet active:to-ui-violet active:bg-[size:100%_100%] contrast-more:from-ui-violet/0 contrast-more:to-ui-violet/0 focus-visible:contrast-more:from-ui-violet focus-visible:contrast-more:to-ui-violet active:contrast-more:from-ui-violet active:contrast-more:to-ui-violet pointer-fine:hover:from-ui-violet pointer-fine:hover:to-ui-violet pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-violet pointer-fine:hover:contrast-more:to-ui-violet');
|
|
471
921
|
case 'yellow':
|
|
472
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-yellow/0 to-ui-yellow/0 focus-visible:from-ui-yellow focus-visible:to-ui-yellow active:from-ui-yellow active:to-ui-yellow contrast-more:from-ui-yellow/0 contrast-more:to-ui-yellow/0 focus-visible:contrast-more:from-ui-yellow focus-visible:contrast-more:to-ui-yellow active:contrast-more:from-ui-yellow active:contrast-more:to-ui-yellow pointer-fine:hover:from-ui-yellow pointer-fine:hover:to-ui-yellow pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-yellow pointer-fine:hover:contrast-more:to-ui-yellow
|
|
922
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-yellow/0 to-ui-yellow/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-yellow focus-visible:to-ui-yellow focus-visible:bg-[size:100%_100%] active:from-ui-yellow active:to-ui-yellow active:bg-[size:100%_100%] contrast-more:from-ui-yellow/0 contrast-more:to-ui-yellow/0 focus-visible:contrast-more:from-ui-yellow focus-visible:contrast-more:to-ui-yellow active:contrast-more:from-ui-yellow active:contrast-more:to-ui-yellow pointer-fine:hover:from-ui-yellow pointer-fine:hover:to-ui-yellow pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-yellow pointer-fine:hover:contrast-more:to-ui-yellow');
|
|
473
923
|
case 'blue':
|
|
474
924
|
default:
|
|
475
|
-
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-blue/0 to-ui-blue/0 focus-visible:from-ui-blue focus-visible:to-ui-blue active:from-ui-blue active:to-ui-blue contrast-more:from-ui-blue/0 contrast-more:to-ui-blue/0 focus-visible:contrast-more:from-ui-blue focus-visible:contrast-more:to-ui-blue active:contrast-more:from-ui-blue active:contrast-more:to-ui-blue pointer-fine:hover:from-ui-blue pointer-fine:hover:to-ui-blue pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-blue pointer-fine:hover:contrast-more:to-ui-blue
|
|
925
|
+
return tailwindMerge.twJoin(multilineFillBaseClasses, 'from-ui-blue/0 to-ui-blue/0 bg-[size:50%_0px] bg-[position:50%_50%] transition-[background-size_background-image_color] focus-visible:from-ui-blue focus-visible:to-ui-blue focus-visible:bg-[size:100%_100%] active:from-ui-blue active:to-ui-blue active:bg-[size:100%_100%] contrast-more:from-ui-blue/0 contrast-more:to-ui-blue/0 focus-visible:contrast-more:from-ui-blue focus-visible:contrast-more:to-ui-blue active:contrast-more:from-ui-blue active:contrast-more:to-ui-blue pointer-fine:hover:from-ui-blue pointer-fine:hover:to-ui-blue pointer-fine:hover:bg-[size:100%_100%] pointer-fine:hover:contrast-more:from-ui-blue pointer-fine:hover:contrast-more:to-ui-blue');
|
|
476
926
|
}
|
|
477
927
|
};
|
|
478
928
|
const getMultilineFillLiftClasses = (theme = 'blue') => {
|
|
479
|
-
return tailwindMerge.twJoin(getMultilineFillColorClasses(theme), '
|
|
929
|
+
return tailwindMerge.twJoin(getMultilineFillColorClasses(theme), 'bg-[size:auto_0px] bg-[position:50%_100%] focus-visible:bg-[size:auto_100%] active:bg-[size:auto_100%] pointer-fine:hover:bg-[size:auto_100%]');
|
|
480
930
|
};
|
|
481
931
|
const getMultilineFillXClasses = (theme = 'blue') => {
|
|
482
|
-
return tailwindMerge.twJoin(getMultilineFillColorClasses(theme), '
|
|
932
|
+
return tailwindMerge.twJoin(getMultilineFillColorClasses(theme), 'bg-[size:0%_100%] focus-visible:bg-[size:100%_100%] active:bg-[size:100%_100%] pointer-fine:hover:bg-[size:100%_100%]');
|
|
483
933
|
};
|
|
484
934
|
const getMultilineFillRtlClasses = (theme = 'blue') => {
|
|
485
935
|
return tailwindMerge.twJoin(getMultilineFillXClasses(theme), 'bg-[position:100%_auto]');
|
|
@@ -516,7 +966,7 @@ const getMultilineFillCenterClasses = (theme = 'blue') => {
|
|
|
516
966
|
* @example
|
|
517
967
|
* <Link href='/about' type='fill-ltr' theme='red' title='About Us'>Learn more about our company</Link>
|
|
518
968
|
*/
|
|
519
|
-
function Link({
|
|
969
|
+
function Link({ as, className, ref, theme = 'blue', type, ...props }) {
|
|
520
970
|
const getLinkClasses = () => {
|
|
521
971
|
switch (type) {
|
|
522
972
|
case 'static':
|
|
@@ -564,14 +1014,15 @@ function Link({ type, theme = 'blue', className, ref, ...props }) {
|
|
|
564
1014
|
}
|
|
565
1015
|
};
|
|
566
1016
|
const linkClasses = getLinkClasses();
|
|
567
|
-
|
|
1017
|
+
const LinkElement = as || Anchor;
|
|
1018
|
+
return jsxRuntime.jsx(LinkElement, { ...props, className: twMerge(linkClasses, className), ref: ref });
|
|
568
1019
|
}
|
|
569
1020
|
|
|
570
1021
|
/**
|
|
571
1022
|
* # Button
|
|
572
1023
|
* - A pre-styled button with utility props for easy customization depending on use case.
|
|
573
1024
|
*/
|
|
574
|
-
function Button({ className, padding = 'md', rounded = 'lg', theme = '
|
|
1025
|
+
function Button({ className, padding = 'md', rounded = 'lg', theme = 'blue', ref, ...props }) {
|
|
575
1026
|
const getPaddingClasses = () => {
|
|
576
1027
|
switch (padding) {
|
|
577
1028
|
case 'xs':
|
|
@@ -603,71 +1054,92 @@ function Button({ className, padding = 'md', rounded = 'lg', theme = 'primary',
|
|
|
603
1054
|
}
|
|
604
1055
|
};
|
|
605
1056
|
const getThemeClasses = () => {
|
|
1057
|
+
const classList = [];
|
|
606
1058
|
switch (theme) {
|
|
607
1059
|
case 'blue':
|
|
608
|
-
|
|
1060
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-blue/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-blue before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1061
|
+
break;
|
|
609
1062
|
case 'blue-gradient':
|
|
610
|
-
|
|
1063
|
+
classList.push(twSort('bg-ui-blue text-white shadow-lg shadow-ui-blue/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1064
|
+
break;
|
|
611
1065
|
case 'brown':
|
|
612
|
-
|
|
1066
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-brown/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-brown before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1067
|
+
break;
|
|
613
1068
|
case 'brown-gradient':
|
|
614
|
-
|
|
1069
|
+
classList.push(twSort('bg-ui-brown text-white shadow-lg shadow-ui-brown/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1070
|
+
break;
|
|
615
1071
|
case 'green':
|
|
616
|
-
|
|
1072
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-green/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-green before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1073
|
+
break;
|
|
617
1074
|
case 'green-gradient':
|
|
618
|
-
|
|
1075
|
+
classList.push(twSort('bg-ui-green text-white shadow-lg shadow-ui-green/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1076
|
+
break;
|
|
619
1077
|
case 'grey':
|
|
620
|
-
|
|
1078
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-grey/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-grey before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1079
|
+
break;
|
|
621
1080
|
case 'grey-gradient':
|
|
622
|
-
|
|
1081
|
+
classList.push(twSort('bg-ui-grey text-white shadow-lg shadow-ui-grey/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1082
|
+
break;
|
|
623
1083
|
case 'sky-blue':
|
|
624
|
-
|
|
1084
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-sky-blue/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-sky-blue before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1085
|
+
break;
|
|
625
1086
|
case 'sky-blue-gradient':
|
|
626
|
-
|
|
1087
|
+
classList.push(twSort('bg-ui-sky-blue text-white shadow-lg shadow-ui-sky-blue/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1088
|
+
break;
|
|
627
1089
|
case 'magenta':
|
|
628
|
-
|
|
1090
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-magenta/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-magenta before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1091
|
+
break;
|
|
629
1092
|
case 'magenta-gradient':
|
|
630
|
-
|
|
1093
|
+
classList.push(twSort('bg-ui-magenta text-white shadow-lg shadow-ui-magenta/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1094
|
+
break;
|
|
631
1095
|
case 'neutral':
|
|
632
|
-
|
|
1096
|
+
classList.push(twSort('pointer-fine:active:before:brightness-90text-white dark bg-zinc-200 text-black before:absolute before:inset-0 before:rounded-[inherit] before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 dark:bg-zinc-800 pointer-fine:hover:before:brightness-110'));
|
|
1097
|
+
break;
|
|
633
1098
|
case 'neutral-gradient':
|
|
634
|
-
|
|
1099
|
+
classList.push(twSort('dark bg-linear-to-t from-zinc-300 via-zinc-200 to-zinc-100 text-black before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 dark:from-zinc-900 dark:via-zinc-800 dark:to-zinc-700 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1100
|
+
break;
|
|
635
1101
|
case 'orange':
|
|
636
|
-
|
|
1102
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-orange/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-orange before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1103
|
+
break;
|
|
637
1104
|
case 'orange-gradient':
|
|
638
|
-
|
|
1105
|
+
classList.push(twSort('bg-ui-orange text-white shadow-lg shadow-ui-orange/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1106
|
+
break;
|
|
639
1107
|
case 'pink':
|
|
640
|
-
|
|
1108
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-pink/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-pink before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1109
|
+
break;
|
|
641
1110
|
case 'pink-gradient':
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
return twSort('bg-primary-50 text-primary-600 active:bg-primary-600 active:text-primary-50 pointer-fine:hover:bg-primary-600 pointer-fine:hover:text-primary-50 pointer-fine:active:bg-primary-700 transition-[transform_background-color_color_box-shadow]');
|
|
645
|
-
case 'primary-gradient':
|
|
646
|
-
return twSort('bg-linear-to-t from-primary-700 via-primary-500 to-primary-300 bg-size-y-[200%] shadow-primary-600/25 pointer-fine:hover:[background-position:50%_0%] transition-[transform_background-position] [background-position:50%_50%] active:[background-position:50%_75%]');
|
|
1111
|
+
classList.push(twSort('before:to-white/75/75 bg-ui-pink text-white shadow-lg shadow-ui-pink/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1112
|
+
break;
|
|
647
1113
|
case 'purple':
|
|
648
|
-
|
|
1114
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-purple/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-purple before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1115
|
+
break;
|
|
649
1116
|
case 'purple-gradient':
|
|
650
|
-
|
|
1117
|
+
classList.push(twSort('bg-ui-purple text-white shadow-lg shadow-ui-purple/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1118
|
+
break;
|
|
651
1119
|
case 'red':
|
|
652
|
-
|
|
1120
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-red/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-red before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1121
|
+
break;
|
|
653
1122
|
case 'red-gradient':
|
|
654
|
-
|
|
1123
|
+
classList.push(twSort('bg-ui-red text-white shadow-lg shadow-ui-red/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1124
|
+
break;
|
|
655
1125
|
case 'violet':
|
|
656
|
-
|
|
1126
|
+
classList.push(twSort('text-white shadow-lg shadow-ui-violet/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-violet before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1127
|
+
break;
|
|
657
1128
|
case 'violet-gradient':
|
|
658
|
-
|
|
1129
|
+
classList.push(twSort('bg-ui-violet text-white shadow-lg shadow-ui-violet/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black/75 before:via-transparent before:to-white/75 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1130
|
+
break;
|
|
659
1131
|
case 'yellow':
|
|
660
|
-
|
|
1132
|
+
classList.push(twSort('text-black shadow-lg shadow-ui-yellow/25 transition-transform before:absolute before:inset-0 before:-z-10 before:rounded-[inherit] before:bg-ui-yellow before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1133
|
+
break;
|
|
661
1134
|
case 'yellow-gradient':
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
default:
|
|
665
|
-
return twSort('bg-primary-500 shadow-primary-700/25 active:bg-primary-600 pointer-fine:hover:bg-primary-400 pointer-fine:active:bg-primary-600 text-white shadow-lg transition-[transform_background-color_box-shadow]');
|
|
1135
|
+
classList.push(twSort('bg-ui-yellow text-black shadow-lg shadow-ui-yellow/25 transition-transform before:absolute before:inset-0 before:rounded-[inherit] before:bg-linear-to-t before:from-black before:via-black/50 before:to-white/50 before:opacity-75 before:mix-blend-soft-light before:transition-[filter] before:duration-300 before:ease-exponential active:before:brightness-90 pointer-fine:hover:before:brightness-110 pointer-fine:active:before:brightness-90'));
|
|
1136
|
+
break;
|
|
666
1137
|
}
|
|
1138
|
+
return classList.join(' ');
|
|
667
1139
|
};
|
|
668
1140
|
const paddingClasses = getPaddingClasses(), roundedClasses = getRoundedClasses(), themeClasses = getThemeClasses();
|
|
669
1141
|
const buttonClasses = twMerge([
|
|
670
|
-
'ease-exponential focus-visible:scale-101 pointer-fine:hover:scale-101 pointer-fine:active:scale-99
|
|
1142
|
+
'block w-fit min-w-fit text-center font-semibold duration-300 ease-exponential focus-visible:scale-101 active:scale-95 pointer-fine:hover:scale-101 pointer-fine:active:scale-99',
|
|
671
1143
|
paddingClasses,
|
|
672
1144
|
roundedClasses,
|
|
673
1145
|
themeClasses,
|
|
@@ -744,7 +1216,7 @@ function useFormStatus() {
|
|
|
744
1216
|
return useStore(store => store);
|
|
745
1217
|
}
|
|
746
1218
|
|
|
747
|
-
function validateField(value, { required, type }) {
|
|
1219
|
+
function validateField$1(value, { required, type }) {
|
|
748
1220
|
const noValue = !value || value === '';
|
|
749
1221
|
if (!required && noValue)
|
|
750
1222
|
return true;
|
|
@@ -761,8 +1233,8 @@ function validateField(value, { required, type }) {
|
|
|
761
1233
|
return true;
|
|
762
1234
|
}
|
|
763
1235
|
}
|
|
764
|
-
function Input({ checked, className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onChange, placeholder, ref, required = true, type, value, ...props }) {
|
|
765
|
-
const [formContext, setFormContext] = useFormContext()
|
|
1236
|
+
function Input({ checked, className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onBlur, onChange, placeholder, ref, required = true, type, value, ...props }) {
|
|
1237
|
+
const [formContext, setFormContext] = useFormContext();
|
|
766
1238
|
if (placeholder === '*')
|
|
767
1239
|
placeholder = name + (required && !label ? '*' : '');
|
|
768
1240
|
if (label === '*')
|
|
@@ -787,7 +1259,7 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
787
1259
|
}
|
|
788
1260
|
};
|
|
789
1261
|
const fieldContextType = getFieldContextType();
|
|
790
|
-
const
|
|
1262
|
+
const initialFieldContext = defineField({
|
|
791
1263
|
type: fieldContextType,
|
|
792
1264
|
id: fieldContextID,
|
|
793
1265
|
invalid,
|
|
@@ -799,13 +1271,14 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
799
1271
|
if (!setFormContext)
|
|
800
1272
|
return;
|
|
801
1273
|
setFormContext(prevContext => {
|
|
802
|
-
const otherFields = (prevContext || []).filter(field => field.id !==
|
|
803
|
-
return [...otherFields,
|
|
1274
|
+
const otherFields = (prevContext || []).filter(field => field.id !== initialFieldContext.id);
|
|
1275
|
+
return [...otherFields, initialFieldContext];
|
|
804
1276
|
});
|
|
805
1277
|
return () => {
|
|
806
|
-
setFormContext(prevContext => (prevContext || []).filter(field => field.id !==
|
|
1278
|
+
setFormContext(prevContext => (prevContext || []).filter(field => field.id !== initialFieldContext.id));
|
|
807
1279
|
};
|
|
808
1280
|
}, [setFormContext]);
|
|
1281
|
+
const fieldContext = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id) || initialFieldContext;
|
|
809
1282
|
const debounceTimerRef = react.useRef(undefined);
|
|
810
1283
|
const handleChange = e => {
|
|
811
1284
|
if (disabled) {
|
|
@@ -817,32 +1290,66 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
817
1290
|
setFormContext?.(prevContext => {
|
|
818
1291
|
if (!prevContext)
|
|
819
1292
|
return [];
|
|
820
|
-
const field = prevContext.find(({ id: fieldID }) => fieldID ===
|
|
1293
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
821
1294
|
if (!field)
|
|
822
|
-
throw new Error(`Field with id "${
|
|
823
|
-
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !==
|
|
1295
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1296
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
824
1297
|
const updatedField = { ...field, value: newValue };
|
|
825
1298
|
return [...otherFields, updatedField];
|
|
826
1299
|
});
|
|
827
1300
|
debounceTimerRef.current = setTimeout(() => {
|
|
828
|
-
const field = formContext?.find(({ id: fieldID }) => fieldID ===
|
|
1301
|
+
const field = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
829
1302
|
if (!field)
|
|
830
1303
|
return;
|
|
831
|
-
const invalid = validateField(newValue, field) === false;
|
|
1304
|
+
const invalid = validateField$1(newValue, field) === false;
|
|
832
1305
|
if (invalid !== field.invalid)
|
|
833
1306
|
setFormContext?.(prevContext => {
|
|
834
1307
|
if (!prevContext)
|
|
835
1308
|
return [];
|
|
836
|
-
const field = prevContext.find(({ id: fieldID }) => fieldID ===
|
|
1309
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
837
1310
|
if (!field)
|
|
838
|
-
throw new Error(`Field with id "${
|
|
839
|
-
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !==
|
|
1311
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1312
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
840
1313
|
const updatedField = { ...field, invalid };
|
|
841
1314
|
return [...otherFields, updatedField];
|
|
842
1315
|
});
|
|
843
1316
|
}, 500);
|
|
844
1317
|
onChange?.(e);
|
|
845
1318
|
};
|
|
1319
|
+
const handleBlur = e => {
|
|
1320
|
+
if (disabled) {
|
|
1321
|
+
e.preventDefault();
|
|
1322
|
+
return;
|
|
1323
|
+
}
|
|
1324
|
+
const { currentTarget } = e, { value: newValue } = currentTarget;
|
|
1325
|
+
switch (type) {
|
|
1326
|
+
case 'email':
|
|
1327
|
+
setFormContext?.(prevContext => {
|
|
1328
|
+
if (!prevContext)
|
|
1329
|
+
return [];
|
|
1330
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1331
|
+
if (!field)
|
|
1332
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1333
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1334
|
+
const updatedField = { ...field, value: newValue.toLowerCase() };
|
|
1335
|
+
return [...otherFields, updatedField];
|
|
1336
|
+
});
|
|
1337
|
+
break;
|
|
1338
|
+
case 'tel':
|
|
1339
|
+
setFormContext?.(prevContext => {
|
|
1340
|
+
if (!prevContext)
|
|
1341
|
+
return [];
|
|
1342
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1343
|
+
if (!field)
|
|
1344
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1345
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1346
|
+
const updatedField = { ...field, value: formatPhoneNumber(newValue, '1') };
|
|
1347
|
+
return [...otherFields, updatedField];
|
|
1348
|
+
});
|
|
1349
|
+
break;
|
|
1350
|
+
}
|
|
1351
|
+
onBlur?.(e);
|
|
1352
|
+
};
|
|
846
1353
|
const restFieldProps = fieldProps
|
|
847
1354
|
? Object.fromEntries(Object.entries(fieldProps).filter(([key]) => key !== 'className'))
|
|
848
1355
|
: {};
|
|
@@ -852,25 +1359,25 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
852
1359
|
const restDescriptionProps = descriptionProps
|
|
853
1360
|
? Object.fromEntries(Object.entries(descriptionProps).filter(([key]) => key !== 'className'))
|
|
854
1361
|
: {};
|
|
855
|
-
return (jsxRuntime.jsxs(react$1.Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsxRuntime.jsx(react$1.Label, { ...restLabelProps, className: bag => twMerge('text-sm font-medium', required ? 'after:text-ui-red after:content-["_*"]' : '', typeof labelProps?.className === 'function' ? labelProps?.className(bag) : labelProps?.className), children: label })), jsxRuntime.jsx(react$1.Input, { ...props, className: bag => twMerge(
|
|
1362
|
+
return (jsxRuntime.jsxs(react$1.Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsxRuntime.jsx(react$1.Label, { ...restLabelProps, className: bag => twMerge('text-sm font-medium', required ? 'after:text-ui-red after:content-["_*"]' : '', typeof labelProps?.className === 'function' ? labelProps?.className(bag) : labelProps?.className), children: label })), jsxRuntime.jsx(react$1.Input, { ...props, className: bag => twMerge(
|
|
1363
|
+
// Base styles
|
|
1364
|
+
'rounded-xl border-1 border-neutral-500/50 bg-neutral-100 py-1 pl-2 text-neutral-950 outline-offset-1 outline-ui-sky-blue/95 transition-[background-color] duration-300 ease-exponential dark:bg-neutral-700 dark:text-neutral-50',
|
|
1365
|
+
// Pseudo styles
|
|
1366
|
+
'focus-visible:bg-neutral-50 focus-visible:outline-3 active:bg-neutral-200 dark:focus-visible:bg-neutral-600 dark:active:bg-neutral-800 pointer-fine:hover:bg-neutral-50 pointer-fine:active:bg-neutral-200 dark:pointer-fine:hover:bg-neutral-600 dark:pointer-fine:active:bg-neutral-800',
|
|
1367
|
+
// user-invalid styles
|
|
1368
|
+
'user-invalid:border-ui-red user-invalid:bg-[color-mix(in_oklab,var(--color-ui-red)_20%,var(--color-neutral-100))] user-invalid:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-100))] user-invalid:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-100))] dark:user-invalid:bg-[color-mix(in_oklab,var(--color-ui-red)_20%,var(--color-neutral-800))] dark:user-invalid:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-800))] dark:user-invalid:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-800))] user-invalid:pointer-fine:hover:bg-[color-mix(in_oklab,var(--color-ui-red)_10%,var(--color-neutral-100))] user-invalid:pointer-fine:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-100))] user-invalid:pointer-fine:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-100))] dark:user-invalid:pointer-fine:hover:bg-[color-mix(in_oklab,var(--color-ui-red)_10%,var(--color-neutral-800))] dark:user-invalid:pointer-fine:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-800))] dark:user-invalid:pointer-fine:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-800))]',
|
|
1369
|
+
// Custom styles
|
|
1370
|
+
typeof className === 'function' ? className(bag) : className), id: fieldContext?.id, invalid: invalid, onBlur: handleBlur, onChange: handleChange, placeholder: placeholder, ref: ref, required: required, type: type, value: fieldContext?.value }), description && (jsxRuntime.jsx(react$1.Description, { ...restDescriptionProps, className: bag => twMerge('text-xs', typeof descriptionProps?.className === 'function'
|
|
856
1371
|
? descriptionProps?.className(bag)
|
|
857
1372
|
: descriptionProps?.className), children: description }))] }));
|
|
858
1373
|
}
|
|
859
1374
|
|
|
860
|
-
function SubmitButton({ children, className,
|
|
1375
|
+
function SubmitButton({ children, className, error, incomplete, loading, success, theme, type = 'submit', ref, ...props }) {
|
|
861
1376
|
const [formStatus] = useFormStatus();
|
|
862
|
-
const getDisabledStatus = () => {
|
|
863
|
-
if (ariaDisabled !== undefined)
|
|
864
|
-
return ariaDisabled;
|
|
865
|
-
if (formStatus !== 'ready')
|
|
866
|
-
return 'true';
|
|
867
|
-
return 'false';
|
|
868
|
-
};
|
|
869
|
-
const disabled = getDisabledStatus();
|
|
870
1377
|
const getFormStatusButtonClasses = () => {
|
|
871
1378
|
switch (formStatus) {
|
|
872
1379
|
case 'loading':
|
|
873
|
-
return twSort('animate-pulse cursor-wait text-lg font-black
|
|
1380
|
+
return twSort('animate-pulse cursor-wait text-lg leading-6 font-black tracking-widest');
|
|
874
1381
|
case 'error':
|
|
875
1382
|
case 'success':
|
|
876
1383
|
return 'cursor-not-allowed';
|
|
@@ -899,7 +1406,7 @@ function SubmitButton({ children, className, 'aria-disabled': ariaDisabled, erro
|
|
|
899
1406
|
case 'incomplete':
|
|
900
1407
|
return incomplete || 'Complete Form';
|
|
901
1408
|
case 'loading':
|
|
902
|
-
return (loading || (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("span", { className: 'animate-wave animation-delay-300
|
|
1409
|
+
return (loading || (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("span", { className: 'inline-block animate-wave animation-delay-300', children: "\u2022" }), jsxRuntime.jsx("span", { className: 'inline-block animate-wave animation-delay-150', children: "\u2022" }), jsxRuntime.jsx("span", { className: 'inline-block animate-wave', children: "\u2022" })] })));
|
|
903
1410
|
case 'error':
|
|
904
1411
|
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [error || 'Error', ' ', jsxRuntime.jsx("span", { className: 'absolute top-1/2 ml-1.5 translate-y-[calc(-50%-1.5px)] text-2xl', children: "\u00D7" })] }));
|
|
905
1412
|
case 'success':
|
|
@@ -909,7 +1416,103 @@ function SubmitButton({ children, className, 'aria-disabled': ariaDisabled, erro
|
|
|
909
1416
|
}
|
|
910
1417
|
};
|
|
911
1418
|
const buttonText = getButtonText();
|
|
912
|
-
return (jsxRuntime.jsx(Button, { ...props,
|
|
1419
|
+
return (jsxRuntime.jsx(Button, { ...props, className: twMerge([formStatusButtonClasses, 'w-full', className]), ref: ref, theme: formStatusButtonTheme, type: type, children: buttonText }));
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
function validateField(value, { required }) {
|
|
1423
|
+
const noValue = !value || value === '';
|
|
1424
|
+
if (!required && noValue)
|
|
1425
|
+
return true;
|
|
1426
|
+
if (noValue)
|
|
1427
|
+
return false;
|
|
1428
|
+
return true;
|
|
1429
|
+
}
|
|
1430
|
+
function Textarea({ className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onBlur, onChange, placeholder, ref, required = true, value, ...props }) {
|
|
1431
|
+
const [formContext, setFormContext] = useFormContext();
|
|
1432
|
+
if (placeholder === '*')
|
|
1433
|
+
placeholder = name + (required && !label ? '*' : '');
|
|
1434
|
+
if (label === '*')
|
|
1435
|
+
label = name;
|
|
1436
|
+
const uniqueID = react.useId(), fieldContextID = toLowerCase(name, [, '_']) + '§' + uniqueID;
|
|
1437
|
+
if (Boolean(formContext?.find(field => field.id === fieldContextID)?.invalid))
|
|
1438
|
+
invalid = true;
|
|
1439
|
+
const initialFieldContext = defineField({
|
|
1440
|
+
type: 'textarea',
|
|
1441
|
+
id: fieldContextID,
|
|
1442
|
+
invalid,
|
|
1443
|
+
name,
|
|
1444
|
+
required,
|
|
1445
|
+
value: value ? `${value}` : defaultValue ? `${defaultValue}` : '',
|
|
1446
|
+
});
|
|
1447
|
+
react.useEffect(() => {
|
|
1448
|
+
if (!setFormContext)
|
|
1449
|
+
return;
|
|
1450
|
+
setFormContext(prevContext => {
|
|
1451
|
+
const otherFields = (prevContext || []).filter(field => field.id !== initialFieldContext.id);
|
|
1452
|
+
return [...otherFields, initialFieldContext];
|
|
1453
|
+
});
|
|
1454
|
+
return () => {
|
|
1455
|
+
setFormContext(prevContext => (prevContext || []).filter(field => field.id !== initialFieldContext.id));
|
|
1456
|
+
};
|
|
1457
|
+
}, [setFormContext]);
|
|
1458
|
+
const fieldContext = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id) || initialFieldContext;
|
|
1459
|
+
const debounceTimerRef = react.useRef(undefined);
|
|
1460
|
+
const handleChange = e => {
|
|
1461
|
+
if (disabled) {
|
|
1462
|
+
e.preventDefault();
|
|
1463
|
+
return;
|
|
1464
|
+
}
|
|
1465
|
+
clearTimeout(debounceTimerRef.current);
|
|
1466
|
+
const { currentTarget } = e, { value: newValue } = currentTarget;
|
|
1467
|
+
setFormContext?.(prevContext => {
|
|
1468
|
+
if (!prevContext)
|
|
1469
|
+
return [];
|
|
1470
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1471
|
+
if (!field)
|
|
1472
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1473
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1474
|
+
const updatedField = { ...field, value: newValue };
|
|
1475
|
+
return [...otherFields, updatedField];
|
|
1476
|
+
});
|
|
1477
|
+
debounceTimerRef.current = setTimeout(() => {
|
|
1478
|
+
const field = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1479
|
+
if (!field)
|
|
1480
|
+
return;
|
|
1481
|
+
const invalid = validateField(newValue, field) === false;
|
|
1482
|
+
if (invalid !== field.invalid)
|
|
1483
|
+
setFormContext?.(prevContext => {
|
|
1484
|
+
if (!prevContext)
|
|
1485
|
+
return [];
|
|
1486
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1487
|
+
if (!field)
|
|
1488
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1489
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1490
|
+
const updatedField = { ...field, invalid };
|
|
1491
|
+
return [...otherFields, updatedField];
|
|
1492
|
+
});
|
|
1493
|
+
}, 500);
|
|
1494
|
+
onChange?.(e);
|
|
1495
|
+
};
|
|
1496
|
+
const restFieldProps = fieldProps
|
|
1497
|
+
? Object.fromEntries(Object.entries(fieldProps).filter(([key]) => key !== 'className'))
|
|
1498
|
+
: {};
|
|
1499
|
+
const restLabelProps = labelProps
|
|
1500
|
+
? Object.fromEntries(Object.entries(labelProps).filter(([key]) => key !== 'className'))
|
|
1501
|
+
: {};
|
|
1502
|
+
const restDescriptionProps = descriptionProps
|
|
1503
|
+
? Object.fromEntries(Object.entries(descriptionProps).filter(([key]) => key !== 'className'))
|
|
1504
|
+
: {};
|
|
1505
|
+
return (jsxRuntime.jsxs(react$1.Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsxRuntime.jsx(react$1.Label, { ...restLabelProps, className: bag => twMerge('text-sm font-medium', required ? 'after:text-ui-red after:content-["_*"]' : '', typeof labelProps?.className === 'function' ? labelProps?.className(bag) : labelProps?.className), children: label })), jsxRuntime.jsx(react$1.Textarea, { ...props, className: bag => twMerge(
|
|
1506
|
+
// Base styles
|
|
1507
|
+
'field-sizing-content resize-none rounded-xl border-1 border-neutral-500/50 bg-neutral-100 py-1 pl-2 text-neutral-950 outline-offset-1 outline-ui-sky-blue/95 transition-[background-color] duration-300 ease-exponential dark:bg-neutral-700 dark:text-neutral-50',
|
|
1508
|
+
// Pseudo styles
|
|
1509
|
+
'focus-visible:bg-neutral-50 focus-visible:outline-3 active:bg-neutral-200 dark:focus-visible:bg-neutral-600 dark:active:bg-neutral-800 pointer-fine:hover:bg-neutral-50 pointer-fine:active:bg-neutral-200 dark:pointer-fine:hover:bg-neutral-600 dark:pointer-fine:active:bg-neutral-800',
|
|
1510
|
+
// user-invalid styles
|
|
1511
|
+
'user-invalid:border-ui-red user-invalid:bg-[color-mix(in_oklab,var(--color-ui-red)_20%,var(--color-neutral-100))] user-invalid:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-100))] user-invalid:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-100))] dark:user-invalid:bg-[color-mix(in_oklab,var(--color-ui-red)_20%,var(--color-neutral-800))] dark:user-invalid:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-800))] dark:user-invalid:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-800))] user-invalid:pointer-fine:hover:bg-[color-mix(in_oklab,var(--color-ui-red)_10%,var(--color-neutral-100))] user-invalid:pointer-fine:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-100))] user-invalid:pointer-fine:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-100))] dark:user-invalid:pointer-fine:hover:bg-[color-mix(in_oklab,var(--color-ui-red)_10%,var(--color-neutral-800))] dark:user-invalid:pointer-fine:focus-visible:bg-[color-mix(in_oklab,var(--color-ui-red)_1%,var(--color-neutral-800))] dark:user-invalid:pointer-fine:active:bg-[color-mix(in_oklab,var(--color-ui-red)_25%,var(--color-neutral-800))]',
|
|
1512
|
+
// Custom styles
|
|
1513
|
+
typeof className === 'function' ? className(bag) : className), id: fieldContext?.id, invalid: invalid, onChange: handleChange, placeholder: placeholder, ref: ref, required: required, value: fieldContext?.value }), description && (jsxRuntime.jsx(react$1.Description, { ...restDescriptionProps, className: bag => twMerge('text-xs', typeof descriptionProps?.className === 'function'
|
|
1514
|
+
? descriptionProps?.className(bag)
|
|
1515
|
+
: descriptionProps?.className), children: description }))] }));
|
|
913
1516
|
}
|
|
914
1517
|
|
|
915
1518
|
// import { findComponentByType } from '../../utils'
|
|
@@ -969,29 +1572,437 @@ function getTextFromChildren(children) {
|
|
|
969
1572
|
* A heading component that renders HTML heading elements (h1-h6) with appropriate styling.
|
|
970
1573
|
* Automatically generates an ID for the heading based on its content if none is provided.
|
|
971
1574
|
*/
|
|
972
|
-
function Heading({ as = 'h2', children, className, id, ref, ...props }) {
|
|
1575
|
+
function Heading({ as = 'h2', children, customize, className, id, ref, ...props }) {
|
|
973
1576
|
const H = as;
|
|
974
1577
|
const targetableID = id || getTextFromChildren(children).replace(/\s+/g, '-').toLowerCase();
|
|
975
1578
|
const getBaseClasses = () => {
|
|
976
1579
|
switch (as) {
|
|
977
1580
|
case 'h1':
|
|
978
|
-
return twSort('pb-2.5 text-6xl font-black last:pb-0');
|
|
1581
|
+
return customize?.h1 || twSort('pb-2.5 text-6xl font-black last:pb-0');
|
|
979
1582
|
case 'h3':
|
|
980
|
-
return twSort('pb-2 text-4xl font-extralight last:pb-0');
|
|
1583
|
+
return customize?.h3 || twSort('pb-2 text-4xl font-extralight last:pb-0');
|
|
981
1584
|
case 'h4':
|
|
982
|
-
return twSort('pb-2 text-3xl font-extrabold last:pb-0');
|
|
1585
|
+
return customize?.h4 || twSort('pb-2 text-3xl font-extrabold last:pb-0');
|
|
983
1586
|
case 'h5':
|
|
984
|
-
return twSort('pb-1.5 text-2xl font-semibold last:pb-0');
|
|
1587
|
+
return customize?.h5 || twSort('pb-1.5 text-2xl font-semibold last:pb-0');
|
|
985
1588
|
case 'h6':
|
|
986
|
-
return twSort('pb-1 text-xl font-bold last:pb-0');
|
|
1589
|
+
return customize?.h6 || twSort('pb-1 text-xl font-bold last:pb-0');
|
|
987
1590
|
default:
|
|
988
|
-
return twSort('pb-2.5 text-5xl font-medium last:pb-0');
|
|
1591
|
+
return customize?.h2 || twSort('pb-2.5 text-5xl font-medium last:pb-0');
|
|
989
1592
|
}
|
|
990
1593
|
};
|
|
991
1594
|
const baseClasses = getBaseClasses();
|
|
992
1595
|
return (jsxRuntime.jsx(H, { ref: ref, id: targetableID, ...props, className: twMerge(baseClasses, className), children: children }));
|
|
993
1596
|
}
|
|
994
1597
|
|
|
1598
|
+
function Airplane(props) {
|
|
1599
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 63.9', ...props, children: jsxRuntime.jsx("path", { d: 'M62.7,1.3c-0.9-0.9-2-1.3-3.4-1.2c-1.4,0.1-3,0.5-4.5,1.2c-1.6,0.8-3.2,1.9-4.6,3.4L41,13.7c-0.7,0.7-1.2,1.1-1.6,1.2 c-0.5,0.2-1.1,0.3-1.9,0.2L5.5,13.8c-1.1-0.1-1.9,0.3-2.6,0.9l-2.6,2.6C0.1,17.6,0,18,0,18.4c0.1,0.4,0.3,0.7,0.9,0.8l25.3,9.5 L15.9,41.5L4.3,38.1c-0.9-0.3-1.6,0-2.4,0.7l-1,1c-0.3,0.3-0.5,0.6-0.5,1c0,0.4,0.1,0.7,0.5,1l21.3,21.3c0.3,0.3,0.6,0.5,1,0.4 c0.4-0.1,0.7-0.1,1-0.5l1-1c0.7-0.7,1-1.5,0.7-2.4L22.5,48l12.8-10.2l9.5,25.3c0.2,0.5,0.5,0.7,0.8,0.9c0.4,0.1,0.7,0,1-0.3l2.6-2.6 c0.7-0.7,1-1.5,0.9-2.6l-1.4-31.9c-0.1-0.8,0-1.4,0.2-1.9c0.2-0.5,0.6-1,1.2-1.6l9.1-9.1c1.4-1.4,2.6-3,3.4-4.6 C63.5,7.6,64,6.1,64,4.7S63.5,2.2,62.7,1.3z' }) }));
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
function ArrowTriangle2CirclepathCircle(props) {
|
|
1603
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.5,19.6c-1.7-3.9-4-7.3-6.9-10.2c-3-3-6.4-5.3-10.2-6.9C40.5,0.8,36.3,0,31.9,0c-4.4,0-8.5,0.8-12.3,2.5 c-3.9,1.7-7.3,4-10.2,6.9c-2.9,3-5.2,6.4-6.9,10.2C0.8,23.5,0,27.6,0,32c0,4.4,0.8,8.5,2.5,12.3c1.7,3.9,4,7.3,6.9,10.2 c2.9,3,6.3,5.3,10.2,6.9c3.9,1.7,8,2.5,12.3,2.5c4.4,0,8.5-0.8,12.4-2.5c3.9-1.7,7.3-4,10.2-6.9c2.9-3,5.3-6.4,6.9-10.2 S64,36.3,64,32C64,27.6,63.2,23.5,61.5,19.6z M56.6,42.4c-1.4,3.2-3.3,6.1-5.7,8.5c-2.4,2.4-5.3,4.4-8.5,5.7 c-3.2,1.4-6.7,2.1-10.4,2.1c-3.7,0-7.1-0.7-10.4-2.1c-3.2-1.4-6-3.3-8.5-5.7c-2.4-2.4-4.3-5.3-5.7-8.5C6.1,39.1,5.4,35.7,5.4,32 s0.7-7.1,2-10.4s3.3-6.1,5.7-8.5c2.4-2.4,5.3-4.4,8.5-5.7c3.2-1.4,6.7-2.1,10.4-2.1c3.7,0,7.2,0.7,10.4,2.1c3.2,1.4,6.1,3.3,8.5,5.7 c2.4,2.4,4.4,5.3,5.7,8.5s2.1,6.7,2.1,10.4S58,39.1,56.6,42.4z' }), jsxRuntime.jsx("path", { d: 'M32.1,49.5c2,0,3.9-0.3,5.7-1c1.9-0.6,3.5-1.5,4.8-2.6c0.7-0.6,1.2-1.3,1.3-2c0.2-0.7,0-1.4-0.6-2c-0.6-0.6-1.2-0.9-1.9-0.8 c-0.7,0-1.3,0.3-1.9,0.7c-1.1,0.9-2.3,1.6-3.5,2c-1.2,0.5-2.6,0.7-4.1,0.7c-2.1,0-4-0.4-5.8-1.3s-3.3-2-4.5-3.5 c-1.2-1.5-2.1-3.1-2.5-5h3.3c0.7,0,1.2-0.3,1.3-0.8c0.2-0.6,0-1.1-0.3-1.7l-5.1-7.1c-0.4-0.6-1-0.9-1.6-0.9c-0.6,0-1.2,0.3-1.6,0.9 l-5,7.1c-0.4,0.6-0.5,1.1-0.4,1.7s0.6,0.8,1.3,0.8h3.3c0.5,2.9,1.6,5.4,3.2,7.7c1.6,2.2,3.7,3.9,6.1,5.2 C26.4,48.9,29.1,49.5,32.1,49.5z' }), jsxRuntime.jsx("path", { d: 'M32,14.4c-2,0-3.9,0.3-5.7,1c-1.9,0.6-3.5,1.5-4.8,2.7c-0.8,0.6-1.2,1.2-1.4,2c-0.1,0.7,0.1,1.4,0.6,2 c0.5,0.6,1.1,0.9,1.8,0.8c0.7,0,1.3-0.3,1.9-0.8c1.1-0.9,2.3-1.5,3.5-2c1.2-0.5,2.6-0.7,4.1-0.7c2.1,0,4,0.4,5.8,1.3 c1.8,0.9,3.3,2,4.5,3.5c1.2,1.5,2.1,3.1,2.6,5h-3.5c-0.7,0-1.2,0.3-1.3,0.8c-0.2,0.6-0.1,1.1,0.4,1.7l5.1,7.1 c0.4,0.6,0.9,0.9,1.6,0.9c0.6,0,1.2-0.3,1.6-0.9l5-7.1c0.4-0.6,0.5-1.1,0.4-1.7c-0.2-0.6-0.6-0.8-1.3-0.8h-3.1 c-0.5-2.9-1.6-5.5-3.2-7.7s-3.7-3.9-6.2-5.2C37.8,15,35,14.4,32,14.4z' })] }));
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
function ArrowTriangle2CirclepathCircleFill(props) {
|
|
1607
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M61.5,19.6c-1.7-3.9-4-7.3-6.9-10.2c-3-3-6.4-5.3-10.2-6.9C40.5,0.8,36.3,0,31.9,0c-4.4,0-8.5,0.8-12.3,2.5 c-3.9,1.7-7.3,4-10.2,6.9c-2.9,3-5.2,6.4-6.9,10.2C0.8,23.5,0,27.6,0,32s0.8,8.5,2.5,12.3c1.7,3.9,4,7.3,6.9,10.2 c2.9,3,6.3,5.3,10.2,6.9c3.9,1.7,8,2.5,12.3,2.5c4.4,0,8.5-0.8,12.4-2.5c3.9-1.7,7.3-4,10.2-6.9c2.9-3,5.3-6.4,6.9-10.2 S64,36.3,64,32S63.2,23.5,61.5,19.6z M44.5,44.2c-0.2,0.8-0.6,1.5-1.4,2.1c-1.4,1.1-3,2-4.9,2.7c-1.9,0.7-3.9,1-5.9,1 c-3.1,0-5.9-0.6-8.4-1.9c-2.5-1.3-4.6-3.1-6.3-5.3c-1.7-2.3-2.8-4.9-3.3-7.9h-3.4c-0.8,0-1.2-0.3-1.4-0.9c-0.2-0.6,0-1.2,0.4-1.7 l5.1-7.3c0.5-0.6,1-0.9,1.7-0.9c0.7,0,1.2,0.3,1.6,0.9l5.2,7.3c0.4,0.6,0.6,1.2,0.4,1.7s-0.6,0.9-1.4,0.9H19 c0.7,2.9,2.3,5.3,4.7,7.2c2.4,1.9,5.3,2.9,8.5,2.9c1.6,0,3-0.2,4.2-0.7s2.4-1.2,3.6-2.1c0.6-0.5,1.3-0.7,2-0.8 c0.7-0.1,1.3,0.2,1.9,0.8C44.4,42.8,44.6,43.5,44.5,44.2z M54.4,31.6l-5.2,7.3c-0.5,0.7-1,1-1.7,0.9c-0.7,0-1.2-0.3-1.6-0.9 l-5.3-7.3c-0.4-0.6-0.5-1.2-0.4-1.7c0.2-0.6,0.6-0.9,1.4-0.9h3.6c-0.7-2.9-2.3-5.3-4.7-7.2c-2.4-1.9-5.2-2.9-8.4-2.9 c-1.6,0-3,0.2-4.2,0.7s-2.4,1.2-3.6,2.1c-0.6,0.5-1.3,0.7-2,0.8c-0.7,0-1.3-0.2-1.9-0.8c-0.6-0.6-0.8-1.3-0.6-2 c0.2-0.8,0.6-1.5,1.4-2.1c1.4-1.1,3-2,4.9-2.7c1.9-0.7,3.9-1,5.9-1c3.1,0,5.9,0.6,8.4,1.9c2.5,1.3,4.6,3.1,6.3,5.3s2.8,4.9,3.3,7.9 h3.2c0.8,0,1.2,0.3,1.4,0.9S54.8,31,54.4,31.6z' }) }));
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
function BagFill(props) {
|
|
1611
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 55.6 64', ...props, children: jsxRuntime.jsx("path", { d: 'M53.1,14.6c-1.6-1.6-4.1-2.4-7.4-2.4h-5c-0.1-2.2-0.7-4.2-1.9-6s-2.7-3.3-4.7-4.4C32.3,0.6,30.1,0,27.8,0 c-2.3,0-4.5,0.6-6.4,1.7c-1.9,1.1-3.5,2.6-4.7,4.4c-1.2,1.8-1.8,3.9-1.9,6h-5c-3.3,0-5.7,0.8-7.4,2.4C0.8,16.2,0,18.7,0,21.9v32.4 c0,3.2,0.8,5.7,2.5,7.3S6.6,64,9.8,64h36.8c2.8,0,5-0.8,6.6-2.4c1.6-1.6,2.3-4.1,2.3-7.3V21.9C55.6,18.7,54.7,16.2,53.1,14.6z M19.8,12.2c0-1.4,0.4-2.6,1.1-3.7c0.7-1.1,1.6-2,2.8-2.7c1.2-0.7,2.5-1,4-1c1.5,0,2.8,0.3,4,1c1.2,0.7,2.1,1.6,2.8,2.7 c0.7,1.1,1.1,2.4,1.1,3.7H19.8z' }) }));
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
function Banknote(props) {
|
|
1615
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 40.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.1,0H1.9C0.8,0,0,0.8,0,1.9v36.2c0,1.2,0.8,2,1.9,2h60.1c1.2,0,1.9-0.8,1.9-2V1.9C64,0.8,63.2,0,62.1,0z M60.1,35.5 c0,0.5-0.2,0.7-0.7,0.7H4.6c-0.5,0-0.7-0.2-0.7-0.7V4.6c0-0.5,0.2-0.7,0.7-0.7h54.8c0.5,0,0.7,0.2,0.7,0.7V35.5z' }), jsxRuntime.jsx("path", { d: 'M56.1,6.5H7.9C7,6.5,6.5,7,6.5,7.9v24.2c0,0.9,0.5,1.4,1.4,1.4h48.2c0.9,0,1.4-0.5,1.4-1.4V7.9C57.5,7,57,6.5,56.1,6.5z M55,30.5c0,0.4-0.2,0.6-0.5,0.6h-45c-0.4,0-0.5-0.2-0.5-0.6v-21c0-0.4,0.2-0.6,0.5-0.6h45c0.4,0,0.5,0.2,0.5,0.6V30.5z' }), jsxRuntime.jsx("path", { d: 'M31.9,6.5c-5.1,0-9.2,5.2-9.2,13.5c0,8.3,4.1,13.5,9.2,13.5c5.2,0,9.4-5.2,9.4-13.5C41.3,11.7,37.1,6.5,31.9,6.5z M31.9,30.7c-3.5,0-6.4-4.1-6.4-10.7c0-6.6,2.9-10.6,6.4-10.6c3.6,0,6.6,4.1,6.6,10.6C38.5,26.6,35.5,30.7,31.9,30.7z' })] }));
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
function BellFill(props) {
|
|
1619
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 57.4 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M4.6,51.9h48.2c1.4,0,2.6-0.3,3.4-1c0.8-0.7,1.2-1.6,1.2-2.7c0-1.5-0.6-3-1.9-4.4c-1.3-1.4-2.5-2.8-3.8-4.1 c-0.7-0.7-1.2-1.6-1.6-2.7c-0.4-1.1-0.7-2.3-0.8-3.6s-0.3-2.5-0.4-3.6c-0.1-5.8-1-10.7-2.7-14.6c-1.7-3.9-4.6-6.6-8.7-8.1 c-0.6-2-1.6-3.6-3.1-5C32.8,0.7,31,0,28.7,0c-2.2,0-4.1,0.7-5.7,2.1c-1.5,1.4-2.6,3-3.1,5c-4.1,1.5-6.9,4.2-8.7,8.1 C9.5,19,8.6,23.9,8.5,29.7c-0.1,1.2-0.2,2.4-0.4,3.6c-0.2,1.3-0.5,2.4-0.8,3.6c-0.4,1.1-0.9,2-1.6,2.7c-1.3,1.3-2.6,2.7-3.9,4.1 C0.6,45.2,0,46.6,0,48.1c0,1.1,0.4,2,1.2,2.7C2,51.5,3.2,51.9,4.6,51.9z' }), jsxRuntime.jsx("path", { d: 'M28.7,64c2.6,0,4.7-0.8,6.4-2.4c1.7-1.6,2.7-3.5,2.9-5.6H19.4c0.2,2.1,1.1,4,2.9,5.6C24,63.2,26.1,64,28.7,64z' })] }));
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
function BoltCar(props) {
|
|
1623
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 50.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M60.5,20.6l-2.3-3c-1-4.9-2.8-10-3.7-12c-1.4-3-4.3-4.9-7.8-5.3C44.9,0.1,39-0.1,32-0.1S19.1,0.1,17.3,0.3 c-3.6,0.4-6.4,2.3-7.8,5.3c-0.9,2-2.7,7.1-3.7,12l-2.3,3C1,23.8,0.1,26.5,0.1,31.1v4.8c0,3.5,2.1,5.5,5.7,5.9c4.9,0.6,17,1,26.1,1 s21.2-0.4,26.3-1c3.7-0.4,5.7-2.4,5.7-5.9v-4.8C63.9,26.5,63,24,60.5,20.6z M60.4,34.9c0,2.1-0.8,3.3-3.1,3.5 c-4.4,0.5-16.2,0.9-25.4,0.9s-21-0.4-25.3-0.9c-2.3-0.3-3.1-1.5-3.1-3.5v-3.7c0-3.7,0.6-5.4,2.7-8.2L9,19.4 c0.7-3.9,2.5-9.4,3.6-11.9c0.9-1.9,2.6-3,5.1-3.3C19.4,4,24.9,3.7,32,3.7c7.1,0,12.7,0.3,14.2,0.5c2.6,0.3,4.2,1.5,5.1,3.3 c1.2,2.5,2.9,8,3.6,11.9l2.8,3.6c2.1,2.7,2.7,4.5,2.7,8.2V34.9z' }), jsxRuntime.jsx("path", { d: 'M4.8,50.2H8c2,0,3.6-1.5,3.6-3.5v-6.4L1.2,38.8v7.9C1.3,48.7,2.8,50.2,4.8,50.2z' }), jsxRuntime.jsx("path", { d: 'M55.7,50.2h3.2c2,0,3.6-1.5,3.6-3.5v-7.9l-10.4,1.5v6.4C52.1,48.7,53.7,50.2,55.7,50.2z' }), jsxRuntime.jsx("path", { d: 'M23.3,23.1c0,0.5,0.4,0.9,0.9,0.9h6.7l-3.6,9.6c-0.5,1.3,0.9,2,1.7,0.9l10.8-13.6c0.2-0.2,0.4-0.5,0.4-0.8 c0-0.5-0.4-0.9-0.9-0.9h-6.7l3.5-9.6c0.5-1.3-0.9-2-1.7-0.9L23.6,22.3C23.4,22.6,23.3,22.8,23.3,23.1z' })] }));
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
function BoltFill(props) {
|
|
1627
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 40.3 64', ...props, children: jsxRuntime.jsx("path", { d: 'M0,35.6c0,0.5,0.2,1,0.6,1.4C1,37.3,1.5,37.5,2,37.5h16.2L9.7,60.7c-0.4,1-0.3,1.8,0.1,2.4c0.4,0.6,1,0.9,1.7,0.9 c0.7,0,1.4-0.4,2.1-1.2l26-32.5c0.5-0.6,0.7-1.3,0.7-1.8c0-0.5-0.2-1-0.6-1.4c-0.4-0.4-0.9-0.6-1.5-0.6H22.1l8.6-23.2 c0.4-1,0.3-1.8-0.1-2.4c-0.4-0.6-1-0.9-1.7-0.9c-0.8,0-1.5,0.4-2.1,1.2l-26,32.5C0.2,34.4,0,35,0,35.6z' }) }));
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
function BoltRingClosed(props) {
|
|
1631
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M0,32c0,17.7,14.4,32,32,32c17.7,0,32-14.3,32-32C64,16,52.2,2.7,36.8,0.4c0.6,0.9,1,2,1,3.3c0,1.6-0.6,2.9-1.6,4 c11.6,2,20.5,12.2,20.5,24.4c0,13.6-11.1,24.7-24.7,24.7C18.4,56.7,7.3,45.6,7.3,32C7.3,18.4,18.4,7.3,32,7.3c2,0,3.6-1.6,3.6-3.6 C35.6,1.6,34,0,32,0C14.4,0,0,14.3,0,32z' }), jsxRuntime.jsx("path", { d: 'M19.1,34c0,0.7,0.6,1.3,1.4,1.3h9.9l-5.3,14.1c-0.7,1.9,1.3,2.9,2.5,1.4l16-20.1c0.3-0.4,0.5-0.8,0.5-1.1 c0-0.8-0.6-1.3-1.4-1.3h-9.9l5.3-14.2c0.7-1.9-1.3-2.9-2.5-1.4l-16,20.1C19.3,33.2,19.1,33.6,19.1,34z' })] }));
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
function BoltTrianglebadgeExclamationmark(props) {
|
|
1635
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 55.8 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M38.1,25.5H22l8.5-22.2c1.1-3-2-4.5-3.9-2.1L0.7,34.5C0.2,35.2,0,35.7,0,36.4c0,1.1,0.8,2,2,2h16.1L9.7,60.5 c-1.1,3,2,4.5,3.9,2.1l12.5-16.1l6.8-12.3c1.2-2.2,3.4-3.5,5.6-3.8l0.9-1.2c0.5-0.6,0.8-1.2,0.8-1.8C40.2,26.3,39.3,25.5,38.1,25.5z M17.2,50.8l7.5-16.7H7.1L23,13l-7.5,16.7h17.6L17.2,50.8z' }), jsxRuntime.jsx("path", { d: 'M55.3,58.3L42.9,36.2c-0.7-1.3-2-2-3.3-2c-1.3,0-2.6,0.6-3.4,2L23.9,58.3c-0.4,0.6-0.5,1.2-0.5,1.9c0,2.2,1.5,3.9,3.8,3.9 H52c2.4,0,3.9-1.7,3.9-3.9C55.8,59.5,55.7,58.9,55.3,58.3z M39.6,41.1c1.2,0,2,0.8,2,2l-0.2,8.1c0,1-0.7,1.7-1.7,1.7 c-1,0-1.7-0.7-1.7-1.7L37.7,43C37.6,41.9,38.4,41.1,39.6,41.1z M39.6,59.7c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4 c1.3,0,2.4,1.1,2.4,2.4C42,58.6,40.9,59.7,39.6,59.7z' })] }));
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
function BookFill(props) {
|
|
1639
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 51', ...props, children: [jsxRuntime.jsx("path", { d: 'M15.7,0c-2.1,0-4.1,0.3-6.1,0.9c-2,0.6-3.8,1.5-5.4,2.6C2.6,4.7,1.3,6.1,0.3,7.7C0.2,8,0.1,8.3,0,8.5c0,0.3,0,0.6,0,1.2 v39.2c0,0.6,0.2,1.1,0.6,1.5C1,50.8,1.5,51,2.2,51c0.3,0,0.7-0.1,1-0.2s0.6-0.3,0.9-0.5c1.7-1.5,3.7-2.6,5.9-3.4 c2.2-0.8,4.5-1.1,6.8-1.1c2.2,0,4.2,0.4,6.2,1.1c1.9,0.7,3.6,1.7,5.1,3c0.3,0.3,0.6,0.4,1,0.4c0.3,0,0.6-0.1,0.8-0.3 c0.2-0.2,0.3-0.5,0.3-0.8V7.9c0-0.4,0-0.6-0.1-0.8c-0.1-0.2-0.2-0.5-0.5-0.8c-1.3-2-3.3-3.5-5.8-4.6S18.6,0,15.7,0z' }), jsxRuntime.jsx("path", { d: 'M48.3,0c-2.9,0-5.6,0.6-8.1,1.7c-2.5,1.1-4.4,2.6-5.8,4.6c-0.3,0.4-0.5,0.7-0.5,0.8c-0.1,0.2-0.1,0.4-0.1,0.8V49 c0,0.4,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.4,0,0.7-0.1,1-0.4c1.5-1.3,3.2-2.2,5.1-3c1.9-0.7,4-1.1,6.2-1.1 c2.3,0,4.6,0.4,6.8,1.1c2.2,0.8,4.2,1.9,5.9,3.4c0.3,0.2,0.6,0.4,0.9,0.5c0.3,0.1,0.6,0.2,1,0.2c0.7,0,1.2-0.2,1.6-0.6 c0.4-0.4,0.6-0.9,0.6-1.5V9.7c0-0.5,0-0.9,0-1.2c0-0.3-0.1-0.5-0.3-0.8c-1-1.6-2.3-3-3.9-4.2c-1.6-1.2-3.4-2-5.4-2.6 C52.4,0.3,50.4,0,48.3,0z' })] }));
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
function BookmarkFill(props) {
|
|
1643
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 40.2 64', ...props, children: jsxRuntime.jsx("path", { d: 'M3.2,64c0.7,0,1.4-0.2,2-0.7c0.6-0.5,1.6-1.4,3-2.7l11.7-11.5c0.2-0.2,0.4-0.2,0.5,0L32,60.6c1.4,1.3,2.3,2.2,3,2.7 c0.6,0.5,1.3,0.7,2.1,0.7c1,0,1.8-0.3,2.3-0.9c0.5-0.6,0.8-1.5,0.8-2.7V8.5c0-2.8-0.7-5-2.1-6.4C36.7,0.7,34.6,0,31.8,0H8.4 C5.6,0,3.5,0.7,2.1,2.2C0.7,3.6,0,5.7,0,8.5v51.8c0,1.2,0.3,2.1,0.8,2.7C1.4,63.7,2.2,64,3.2,64z' }) }));
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
function BriefcaseFill(props) {
|
|
1647
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 55.7', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.8,12.4c-1.5-1.5-3.7-2.2-6.7-2.2h-8.5V7.9c0-2.7-0.7-4.7-2.1-6S41.1,0,38.5,0H25.5c-2.5,0-4.4,0.6-5.8,1.9 s-2.2,3.3-2.2,6v2.3H8.9c-3,0-5.2,0.7-6.7,2.2C0.7,13.8,0,16,0,18.9v2.3c3.5,1.4,7,2.6,10.5,3.5c3.5,0.9,7,1.5,10.6,1.9 c3.6,0.4,7.2,0.6,10.9,0.6c3.7,0,7.4-0.2,10.9-0.6c3.6-0.4,7.1-1,10.6-1.9c3.5-0.9,7-2,10.5-3.5v-2.3C64,16,63.3,13.8,61.8,12.4z M42.1,10.2H21.9V7.6c0-1.1,0.3-1.9,0.9-2.5c0.6-0.6,1.5-0.9,2.6-0.9h13.2c1.1,0,2,0.3,2.6,0.9c0.6,0.6,0.9,1.4,0.9,2.5V10.2z' }), jsxRuntime.jsx("path", { d: 'M8.9,55.7h46.2c3,0,5.2-0.7,6.7-2.2c1.5-1.5,2.2-3.7,2.2-6.6V26c-4.2,1.5-8.3,2.7-12.3,3.5c-4,0.8-8,1.3-12,1.6v2.3 c0,2.1-1.1,3.1-3.2,3.1h-8.9c-2.1,0-3.2-1-3.2-3.1v-2.3c-4-0.3-8-0.8-12-1.6c-4-0.8-8.1-2-12.3-3.5v20.9c0,2.9,0.7,5.1,2.2,6.6 C3.7,54.9,5.9,55.7,8.9,55.7z' })] }));
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
function BubbleLeftFill(props) {
|
|
1651
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 60.3', ...props, children: jsxRuntime.jsx("path", { d: 'M17.3,60.3c0.6,0,1.1-0.2,1.6-0.5c0.5-0.3,1.1-0.8,1.7-1.4l10.5-9.6l19.6,0c2.9,0,5.3-0.5,7.3-1.5c2-1,3.5-2.5,4.5-4.5 c1-2,1.5-4.4,1.5-7.2V13.3c0-2.8-0.5-5.2-1.5-7.2c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6 c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2v22.3c0,2.8,0.5,5.2,1.5,7.2c1,2,2.5,3.5,4.5,4.5c2,1,4.4,1.5,7.3,1.5h1.3v8.5 c0,0.9,0.2,1.6,0.7,2.2C15.8,60,16.4,60.3,17.3,60.3z' }) }));
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
function Building2Fill(props) {
|
|
1655
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 58', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.8,14.7c-0.8-0.9-1.9-1.3-3.3-1.3H45.1V53c0,0.9-0.1,1.8-0.3,2.6c-0.2,0.8-0.5,1.6-1,2.3h15.7c1.4,0,2.5-0.4,3.3-1.3 c0.8-0.9,1.2-2.1,1.2-3.6V18.3C64,16.8,63.6,15.6,62.8,14.7z M57.7,48.6c0,0.6-0.3,1-0.9,1h-4.5c-0.6,0-1-0.3-1-1v-4.3 c0-0.7,0.3-1,1-1h4.5c0.6,0,0.9,0.3,0.9,1V48.6z M57.7,37.9c0,0.6-0.3,0.9-0.9,0.9h-4.5c-0.6,0-1-0.3-1-0.9v-4.4 c0-0.6,0.3-0.9,1-0.9h4.5c0.6,0,0.9,0.3,0.9,0.9V37.9z M57.7,27.1c0,0.7-0.3,1-0.9,1h-4.5c-0.6,0-1-0.3-1-1v-4.3c0-0.6,0.3-1,1-1 h4.5c0.6,0,0.9,0.3,0.9,1V27.1z' }), jsxRuntime.jsx("path", { d: 'M40.2,1.3C39.4,0.4,38.3,0,36.9,0H4.5C3.1,0,2,0.4,1.2,1.3C0.4,2.2,0,3.4,0,4.9V53c0,1.5,0.4,2.7,1.2,3.6 C2,57.5,3.1,58,4.5,58h32.4c1.4,0,2.5-0.4,3.3-1.3c0.8-0.9,1.2-2.1,1.2-3.6V4.9C41.4,3.4,41,2.2,40.2,1.3z M10.4,9.3 c0-0.8,0.4-1.2,1.1-1.2H17c0.8,0,1.2,0.4,1.2,1.2v5.3c0,0.8-0.4,1.2-1.2,1.2h-5.4c-0.8,0-1.1-0.4-1.1-1.2V9.3z M10.4,20.4 c0-0.8,0.4-1.2,1.1-1.2H17c0.8,0,1.2,0.4,1.2,1.2v5.2c0,0.8-0.4,1.2-1.2,1.2h-5.4c-0.8,0-1.1-0.4-1.1-1.2V20.4z M10.4,36.8v-5.2 c0-0.8,0.4-1.2,1.1-1.2H17c0.8,0,1.2,0.4,1.2,1.2v5.2c0,0.8-0.4,1.2-1.2,1.2h-5.4C10.8,38,10.4,37.6,10.4,36.8z M30.4,53.6H11.3 v-8.8c0-0.6,0.2-1.1,0.6-1.5c0.4-0.4,0.9-0.6,1.5-0.6h14.9c1.4,0,2.1,0.7,2.1,2.1V53.6z M31.3,36.8c0,0.8-0.4,1.2-1.2,1.2h-5.4 c-0.8,0-1.1-0.4-1.1-1.2v-5.2c0-0.8,0.4-1.2,1.1-1.2h5.4c0.8,0,1.2,0.4,1.2,1.2V36.8z M31.3,25.7c0,0.8-0.4,1.2-1.2,1.2h-5.4 c-0.8,0-1.1-0.4-1.1-1.2v-5.2c0-0.8,0.4-1.2,1.1-1.2h5.4c0.8,0,1.2,0.4,1.2,1.2V25.7z M31.3,14.6c0,0.8-0.4,1.2-1.2,1.2h-5.4 c-0.8,0-1.1-0.4-1.1-1.2V9.3c0-0.8,0.4-1.2,1.1-1.2h5.4c0.8,0,1.2,0.4,1.2,1.2V14.6z' })] }));
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
function Calendar(props) {
|
|
1659
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 97.4 90', ...props, children: [jsxRuntime.jsx("path", { d: 'M93.6,3.8c-2.6-2.5-6.4-3.8-11.5-3.8H15.4C10.3,0,6.5,1.3,3.9,3.8,1.3,6.3,0,10.1,0,15.2v59.6c0,5,1.3,8.8,3.9,11.4,2.6,2.5,6.4,3.8,11.5,3.8h66.7c5.1,0,8.9-1.3,11.5-3.8,2.6-2.5,3.8-6.3,3.8-11.4V15.2c0-5-1.3-8.8-3.8-11.4ZM89.5,75.3c0,2.3-.6,4-1.8,5.1-1.2,1.1-2.9,1.7-5,1.7H14.7c-2.2,0-3.8-.6-5-1.7-1.2-1.1-1.8-2.8-1.8-5.1V29.3c0-2.3.6-4,1.8-5.1,1.2-1.1,2.8-1.7,5-1.7h68c2.2,0,3.9.6,5,1.7,1.2,1.1,1.8,2.8,1.8,5.1v46Z' }), jsxRuntime.jsx("path", { d: 'M39.2,40h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8.3.3.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M55.4,40h2.9c.9,0,1.4-.2,1.8-.5.3-.3.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8.3.3.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M71.6,40h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.4.2-1.8.5-.3.3-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8.3.3.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M22.9,55.9h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.4.2-1.8.5-.3.3-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8.4.4,1,.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M39.2,55.9h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8s.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M55.4,55.9h2.9c.9,0,1.4-.2,1.8-.5.3-.3.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8s.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M71.6,55.9h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.4.2-1.8.5-.3.3-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8s.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M22.9,71.9h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.4.2-1.8.5-.3.3-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8.4.4,1,.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M39.2,71.9h2.9c.9,0,1.5-.2,1.8-.5s.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8s.9.5,1.8.5Z' }), jsxRuntime.jsx("path", { d: 'M55.4,71.9h2.9c.9,0,1.4-.2,1.8-.5.3-.3.5-.9.5-1.8v-2.9c0-.9-.2-1.4-.5-1.8-.3-.3-.9-.5-1.8-.5h-2.9c-.9,0-1.5.2-1.8.5s-.5.9-.5,1.8v2.9c0,.9.2,1.4.5,1.8s.9.5,1.8.5Z' })] }));
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
function CameraFill(props) {
|
|
1663
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 49.7', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.9,8.3c-1.4-1.3-3.4-2-6.1-2h-7.5c-1,0-1.8-0.1-2.3-0.4s-1-0.7-1.6-1.4l-2.1-2.3c-0.7-0.7-1.4-1.2-2.2-1.6 C39.5,0.2,38.4,0,37.1,0H26.7c-1.3,0-2.4,0.2-3.2,0.6s-1.5,0.9-2.1,1.6l-2.1,2.3c-0.6,0.6-1.1,1.1-1.6,1.3s-1.2,0.4-2.2,0.4H8.2 c-2.7,0-4.8,0.7-6.1,2C0.7,9.6,0,11.7,0,14.3v27.3c0,2.7,0.7,4.7,2.1,6.1c1.4,1.4,3.4,2,6.1,2h47.6c2.7,0,4.7-0.7,6.1-2 c1.4-1.4,2.1-3.4,2.1-6.1V14.3C64,11.7,63.3,9.6,61.9,8.3z M44.3,34.9c-1.3,2.2-3,3.9-5.1,5.1C37,41.4,34.6,42,32,42 c-2.6,0-5-0.6-7.2-1.9c-2.1-1.3-3.9-3-5.1-5.1c-1.3-2.2-1.9-4.6-1.9-7.2c0-2.7,0.6-5.1,1.9-7.2c1.3-2.1,3-3.9,5.1-5.1 c2.1-1.3,4.5-1.9,7.2-1.9s5,0.6,7.2,1.9c2.1,1.3,3.9,3,5.1,5.1c1.3,2.1,1.9,4.5,1.9,7.2C46.2,30.4,45.6,32.8,44.3,34.9z M53.7,20.5 c-0.7,0.7-1.4,1-2.3,1c-0.9,0-1.7-0.3-2.4-1c-0.7-0.7-1-1.4-1-2.4c0-0.9,0.3-1.7,1-2.3c0.7-0.7,1.5-1,2.4-1c0.9,0,1.7,0.3,2.3,1 c0.7,0.7,1,1.4,1,2.3C54.6,19.1,54.3,19.9,53.7,20.5z' }), jsxRuntime.jsx("path", { d: 'M32,38c1.9,0,3.6-0.5,5.2-1.4c1.6-0.9,2.8-2.2,3.7-3.7c0.9-1.6,1.4-3.3,1.4-5.2c0-1.9-0.5-3.6-1.4-5.2 c-0.9-1.6-2.2-2.8-3.7-3.7c-1.6-0.9-3.3-1.4-5.2-1.4c-1.9,0-3.6,0.5-5.2,1.4c-1.6,0.9-2.8,2.2-3.7,3.7c-0.9,1.6-1.4,3.3-1.4,5.2 c0,1.9,0.5,3.6,1.4,5.2c0.9,1.6,2.2,2.8,3.7,3.7C28.4,37.6,30.1,38,32,38z' })] }));
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
function CarFill(props) {
|
|
1667
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 50.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M63.2,25.3c-0.5-1.5-1.4-3.1-2.7-4.7l-2.3-3c-0.3-1.6-0.7-3.2-1.2-4.8s-0.9-3-1.4-4.3s-0.8-2.2-1.1-2.9 c-0.7-1.5-1.8-2.7-3.1-3.6c-1.4-0.9-2.9-1.5-4.7-1.7c-0.6-0.1-1.6-0.2-3.1-0.2c-1.4-0.1-3.1-0.1-5.2-0.1S34.3,0,32,0 c-2.3,0-4.5,0-6.5,0.1c-2,0-3.7,0.1-5.2,0.1c-1.4,0.1-2.5,0.1-3.1,0.2c-1.8,0.2-3.4,0.8-4.7,1.7C11.2,3,10.1,4.2,9.4,5.7 C9.1,6.4,8.7,7.3,8.3,8.6s-0.9,2.7-1.4,4.3c-0.5,1.6-0.9,3.2-1.2,4.8l-2.3,3c-1.3,1.6-2.1,3.2-2.7,4.7C0.3,26.8,0,28.7,0,31v4.8 c0,1.7,0.5,3.1,1.5,4.1c1,1,2.4,1.6,4.2,1.8c1.3,0.2,2.9,0.3,5,0.4c2,0.1,4.3,0.2,6.7,0.3s4.9,0.2,7.4,0.2c2.5,0,4.9,0.1,7.2,0.1 c2.3,0,4.7,0,7.2-0.1c2.5,0,5-0.1,7.4-0.2c2.4-0.1,4.7-0.2,6.7-0.3c2-0.1,3.7-0.3,5-0.4c1.8-0.2,3.2-0.8,4.2-1.8 c1-1,1.5-2.4,1.5-4.1V31C64,28.7,63.7,26.8,63.2,25.3z M15.6,34.2c-0.8,0.8-1.9,1.3-3.1,1.3c-1.2,0-2.3-0.4-3.1-1.3 c-0.8-0.8-1.2-1.9-1.2-3.1c0-1.2,0.4-2.3,1.2-3.1c0.8-0.8,1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3c0.8,0.8,1.3,1.9,1.3,3.1 C16.8,32.3,16.4,33.3,15.6,34.2z M41.4,33.5c-0.6,0.6-1.3,0.9-2.3,0.9H24.8c-0.9,0-1.7-0.3-2.2-0.9c-0.6-0.6-0.9-1.3-0.9-2.3 c0-0.9,0.3-1.7,0.9-2.3c0.6-0.6,1.3-0.9,2.2-0.9h14.3c0.9,0,1.7,0.3,2.3,0.9s0.9,1.3,0.9,2.3C42.3,32.1,42,32.9,41.4,33.5z M40.4,16.3c-2.4-0.1-5.2-0.1-8.4-0.1s-6.1,0-8.4,0.1c-2.4,0.1-4.5,0.1-6.3,0.2c-1.8,0.1-3.4,0.2-4.9,0.3c-0.5,0-0.9-0.1-1.1-0.3 c-0.2-0.2-0.2-0.6-0.1-1.1c0.2-1,0.5-2,0.8-3.1s0.7-2.1,1-3.1c0.4-0.9,0.7-1.7,1-2.2c0.4-0.6,0.8-1.1,1.2-1.4s1-0.5,1.8-0.6 c1-0.1,2.7-0.3,5.1-0.3c2.4-0.1,5.7-0.1,9.9-0.1c4.2,0,7.5,0,9.9,0.1C44.3,4.8,46,4.9,47,5c0.7,0.1,1.3,0.3,1.8,0.6 C49.2,6,49.6,6.4,50,7.1c0.3,0.5,0.6,1.2,1,2.2c0.4,0.9,0.7,2,1,3.1c0.3,1.1,0.6,2.1,0.9,3.1c0.1,0.5,0.1,0.9-0.1,1.1 c-0.2,0.2-0.6,0.3-1.1,0.3c-1.5-0.1-3.1-0.2-4.9-0.3C44.9,16.4,42.8,16.3,40.4,16.3z M54.6,34.2c-0.8,0.8-1.9,1.3-3.1,1.3 c-1.2,0-2.3-0.4-3.1-1.3s-1.2-1.9-1.2-3.1c0-1.2,0.4-2.3,1.2-3.1c0.8-0.8,1.9-1.3,3.1-1.3c1.2,0,2.3,0.4,3.1,1.3 c0.8,0.8,1.3,1.9,1.3,3.1C55.9,32.3,55.4,33.3,54.6,34.2z' }), jsxRuntime.jsx("path", { d: 'M3.6,50.1h3.2c1,0,1.9-0.3,2.6-1c0.7-0.7,1-1.5,1-2.5v-6.7L0,34.9v11.7c0,1,0.3,1.8,1,2.5C1.7,49.8,2.6,50.1,3.6,50.1z' }), jsxRuntime.jsx("path", { d: 'M57.2,50.1h3.2c1,0,1.9-0.3,2.6-1c0.7-0.7,1-1.5,1-2.5V34.9l-10.4,4.9v6.7c0,1,0.3,1.8,1,2.5C55.4,49.8,56.2,50.1,57.2,50.1 z' })] }));
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
function CartFill(props) {
|
|
1671
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 54.5', ...props, children: [jsxRuntime.jsx("path", { d: 'M0,2.1c0,0.6,0.2,1,0.6,1.5C1,3.9,1.5,4.2,2,4.2h9.4l4.4,30.5c0.3,2,1,3.5,2.1,4.7c1.1,1.1,2.6,1.7,4.6,1.7h32.4 c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.5c0-0.6-0.2-1.1-0.6-1.5c-0.4-0.4-0.9-0.6-1.4-0.6H23c-0.8,0-1.4-0.3-1.9-0.8 c-0.5-0.5-0.8-1.2-0.9-2l-0.5-2.9H55c2,0,3.6-0.6,4.6-1.7c1.1-1.2,1.8-2.7,2.1-4.7L63.9,10c0-0.2,0-0.4,0.1-0.6c0-0.2,0-0.4,0-0.5 c0-0.7-0.2-1.2-0.7-1.6c-0.5-0.4-1.1-0.6-1.8-0.6H16.2l-0.5-3.5c-0.2-1.1-0.5-1.9-1-2.4C14.2,0.3,13.2,0,11.8,0H2 C1.5,0,1,0.2,0.6,0.6C0.2,1,0,1.5,0,2.1z' }), jsxRuntime.jsx("path", { d: 'M20.2,50c0,1.2,0.4,2.3,1.3,3.2c0.9,0.9,1.9,1.3,3.2,1.3c1.3,0,2.3-0.4,3.2-1.3c0.9-0.9,1.3-1.9,1.3-3.2 c0-1.2-0.4-2.3-1.3-3.2C27,46,26,45.5,24.7,45.5c-1.3,0-2.3,0.4-3.2,1.3C20.7,47.7,20.2,48.8,20.2,50z' }), jsxRuntime.jsx("path", { d: 'M46.1,50c0,1.2,0.4,2.3,1.3,3.2c0.9,0.9,1.9,1.3,3.2,1.3c1.3,0,2.3-0.4,3.2-1.3c0.9-0.9,1.3-1.9,1.3-3.2 c0-1.2-0.4-2.3-1.3-3.2c-0.9-0.9-1.9-1.3-3.2-1.3c-1.3,0-2.3,0.4-3.2,1.3C46.6,47.7,46.1,48.8,46.1,50z' })] }));
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
function ChartBarDocHorizontal(props) {
|
|
1675
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.2 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M11,9.9c-0.6,0-1.1,0.2-1.4,0.6c-0.3,0.4-0.5,0.9-0.5,1.5v5c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.8,0.6,1.4,0.6h18.3 c0.6,0,1.1-0.2,1.4-0.6c0.3-0.4,0.5-0.9,0.5-1.5v-5c0-0.6-0.2-1.1-0.5-1.5c-0.3-0.4-0.8-0.6-1.4-0.6H11z' }), jsxRuntime.jsx("path", { d: 'M11,21.6c-0.6,0-1.1,0.2-1.4,0.5c-0.3,0.4-0.5,0.8-0.5,1.5v5c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.8,0.5,1.4,0.5h28.3 c0.6,0,1.1-0.2,1.4-0.5c0.3-0.4,0.5-0.9,0.5-1.5v-5c0-0.6-0.2-1.1-0.5-1.5c-0.3-0.4-0.8-0.5-1.4-0.5H11z' }), jsxRuntime.jsx("path", { d: 'M11,33.3c-0.6,0-1.1,0.2-1.4,0.5c-0.3,0.3-0.5,0.8-0.5,1.4v5c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.8,0.5,1.4,0.5h23.3 c0.6,0,1.1-0.2,1.4-0.5c0.3-0.4,0.5-0.8,0.5-1.5v-5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.4-0.5H11z' }), jsxRuntime.jsx("path", { d: 'M11,45c-0.6,0-1.1,0.2-1.4,0.5c-0.3,0.4-0.5,0.9-0.5,1.5v5c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.8,0.6,1.4,0.6h13.5 c0.6,0,1.1-0.2,1.4-0.6s0.5-0.9,0.5-1.5v-5c0-0.6-0.2-1.1-0.5-1.5c-0.3-0.4-0.8-0.5-1.4-0.5H11z' }), jsxRuntime.jsx("path", { d: 'M47.9,2.4C46.3,0.8,44,0,40.9,0H9.2C6.2,0,3.9,0.8,2.3,2.4S0,6.3,0,9.4v45.3c0,3.1,0.8,5.5,2.3,7S6.2,64,9.2,64h31.7 c3.1,0,5.4-0.8,6.9-2.3c1.5-1.6,2.3-3.9,2.3-7V9.4C50.2,6.3,49.4,3.9,47.9,2.4z M45.4,54.6c0,1.5-0.4,2.6-1.2,3.4 c-0.8,0.8-2,1.2-3.5,1.2H9.5C8,59.2,6.8,58.8,6,58c-0.8-0.8-1.2-1.9-1.2-3.4V9.4C4.8,8,5.2,6.8,6,6c0.8-0.8,2-1.2,3.5-1.2h31.2 c1.5,0,2.7,0.4,3.5,1.2C45,6.8,45.4,8,45.4,9.4V54.6z' })] }));
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
function Checkmark(props) {
|
|
1679
|
+
return (jsxRuntime.jsx("svg", { "aria-label": '\u2713', viewBox: '0 0 67.1 66.1', ...props, children: jsxRuntime.jsx("path", { d: 'M25.9,66.1c1.9,0,3.4-0.8,4.5-2.5L66,7.3c0.4-0.7,0.7-1.2,0.9-1.8C67,5,67.1,4.5,67.1,4c0-1.2-0.4-2.2-1.1-2.9 C65.3,0.4,64.3,0,63.1,0c-0.9,0-1.6,0.2-2.1,0.5c-0.6,0.3-1.1,0.9-1.7,1.8L25.7,56.2L8,32.4c-1-1.4-2.3-2.1-3.8-2.1 c-1.2,0-2.2,0.4-3,1.1c-0.8,0.8-1.2,1.8-1.2,3c0,0.5,0.1,1,0.3,1.6c0.2,0.5,0.5,1.1,1,1.6l20,25.9C22.6,65.3,24.1,66.1,25.9,66.1z' }) }));
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
function CheckmarkSeal(props) {
|
|
1683
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 110.9 110.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M106.1,46.5L98.7,39c-0.7-0.7-1-1.5-1-2.4V26c0-4.3-1-7.5-3.1-9.6s-5.3-3.1-9.7-3.1H74.4c-1,0-1.8-0.3-2.5-1l-7.5-7.5 c-3.1-3.1-6.1-4.6-9-4.6s-5.9,1.5-9,4.6l-7.5,7.5c-0.7,0.7-1.5,1-2.5,1H25.9c-4.4,0-7.6,1-9.7,3.1s-3.1,5.3-3.1,9.7v10.6 c0,0.9-0.3,1.8-1,2.4l-7.5,7.5c-3.1,3.1-4.6,6.1-4.6,9s1.5,5.9,4.6,9l7.5,7.5c0.7,0.7,1,1.5,1,2.5v10.5c0,4.4,1,7.6,3.1,9.7 c2.1,2,5.4,3,9.7,3h10.5c1,0,1.8,0.3,2.5,1l7.5,7.5c3.1,3.1,6.1,4.6,9,4.6s5.9-1.6,9-4.6l7.5-7.5c0.7-0.7,1.5-1,2.5-1h10.5 c4.4,0,7.6-1,9.7-3.1s3.1-5.3,3.1-9.7V74.5c0-1,0.3-1.8,1-2.5l7.4-7.5c3.1-3.1,4.7-6.1,4.7-9S109.2,49.6,106.1,46.5z M100.8,58.8 L91.6,68c-1,1-1.6,2.2-1.6,3.7v13.1c0,2.2-0.3,3.6-0.9,4.2s-2,0.9-4.2,0.9H71.8c-1.5,0-2.7,0.5-3.7,1.6l-9.2,9.2 c-1.6,1.5-2.7,2.3-3.5,2.3s-2-0.8-3.5-2.3l-9.2-9.2c-1-1-2.2-1.6-3.7-1.6H25.9V90c-2.2,0-3.6-0.3-4.2-0.9s-0.9-2-0.9-4.2V71.8 c0-1.4-0.5-2.7-1.5-3.7l-9.2-9.2c-1.6-1.6-2.3-2.8-2.3-3.6c0-0.8,0.8-2,2.3-3.6l9.2-9.2c1-1,1.5-2.3,1.5-3.7V25.7 c0-2.2,0.3-3.6,0.9-4.2s2-0.9,4.2-0.9H39c1.5,0,2.7-0.5,3.7-1.5l9.2-9.2c1.6-1.5,2.7-2.3,3.5-2.3s2,0.8,3.5,2.3l9.2,9.2 c1,1,2.2,1.5,3.7,1.5h13.1c2.2,0,3.6,0.3,4.2,0.9s0.9,2,0.9,4.1v13.1c0,1.4,0.5,2.7,1.6,3.7l9.2,9.2c1.5,1.6,2.3,2.8,2.3,3.6 C103.1,56,102.3,57.2,100.8,58.8z' }), jsxRuntime.jsx("path", { d: 'M50.2,78.6c1.7,0,3-0.7,4-2.2l22.3-35.2c0.3-0.5,0.6-1,0.8-1.5s0.4-1.1,0.4-1.6c0-1.1-0.4-1.9-1.2-2.6s-1.7-1-2.7-1 c-1.4,0-2.5,0.7-3.4,2.2L50.1,69.2l-9.6-12.5c-0.6-0.8-1.2-1.3-1.7-1.6c-0.6-0.3-1.2-0.4-1.9-0.4c-1,0-1.9,0.4-2.7,1.1 c-0.7,0.8-1.1,1.7-1.1,2.8c0,1,0.4,2,1.1,3l11.9,14.6c0.6,0.8,1.3,1.4,1.9,1.7C48.6,78.4,49.4,78.6,50.2,78.6z' })] }));
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
function ChevronCompactDown(props) {
|
|
1687
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 18', ...props, children: jsxRuntime.jsx("path", { d: 'M37.2,16.4L61.7,6.8C63.1,6.3 64,5 64,3.7C64,1.6 62.5,0 60.4,0C58.3,0 57.9,0.6 57,0.9L32,10.7L7,0.9C6.1,0.6 4.7,0 3.6,0C1.5,0 0,1.6 0,3.7C0,5.8 0.9,6.2 2.3,6.8L26.8,16.4C28.5,17 30.5,17.8 32,17.8C33.5,17.8 35.6,17 37.2,16.4Z' }) }));
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
function ChevronDown(props) {
|
|
1691
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 36', ...props, children: jsxRuntime.jsx("path", { d: 'M32,36c1,0,1.8-0.4,2.5-1.1L63,5.7c0.7-0.7,1-1.4,1-2.3c0-1-0.3-1.8-1-2.4c-0.6-0.7-1.4-1-2.3-1s-1.7,0.3-2.4,1L30,29.8H34 L5.7,1C5.1,0.3,4.3,0,3.4,0C2.4,0,1.6,0.3,1,1C0.3,1.6,0,2.4,0,3.4c0,0.9,0.3,1.7,1,2.3l28.5,29.2C30.3,35.7,31.1,36,32,36z' }) }));
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
function ChevronLeft(props) {
|
|
1695
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 36 64', ...props, children: jsxRuntime.jsx("path", { d: 'M0,32c0,1,0.4,1.8,1.1,2.5L30.3,63c0.7,0.7,1.4,1,2.3,1c1,0,1.8-0.3,2.4-1c0.7-0.6,1-1.4,1-2.3c0-0.9-0.3-1.7-1-2.4L6.2,30 v4L35,5.7c0.7-0.6,1-1.4,1-2.3c0-1-0.3-1.8-1-2.4c-0.6-0.7-1.4-1-2.4-1c-0.9,0-1.7,0.3-2.3,1L1.1,29.5C0.3,30.3,0,31.1,0,32z' }) }));
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
function ChevronLeftForwardslashChevronRight(props) {
|
|
1699
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 43.2', ...props, children: [jsxRuntime.jsx("path", { d: 'M0,21.6c0,0.6,0.3,1.3,0.8,1.7L16,37.1c1,0.9,2.3,0.9,3,0c0.8-0.9,0.7-2.2-0.2-3L5.1,21.6L18.8,9.1c0.9-0.8,1-2.1,0.2-3 s-2.1-0.9-3,0L0.8,19.9C0.3,20.3,0,20.9,0,21.6z' }), jsxRuntime.jsx("path", { d: 'M25.8,43.1c1.2,0.3,2.3-0.3,2.7-1.5l11.4-39c0.3-1.1-0.2-2.2-1.4-2.5c-1.2-0.3-2.2,0.2-2.6,1.6L24.6,40.5 C24.1,41.6,24.5,42.8,25.8,43.1z' }), jsxRuntime.jsx("path", { d: 'M64,21.6c0-0.6-0.3-1.3-0.8-1.7L47.9,6.1c-1-0.9-2.2-0.9-3,0s-0.7,2.2,0.2,3l13.8,12.5L45.1,34.1c-0.9,0.8-1,2.1-0.2,3 s2,0.9,3,0l15.3-13.8C63.8,22.8,64,22.2,64,21.6z' })] }));
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
function ChevronRight(props) {
|
|
1703
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 36 64', ...props, children: jsxRuntime.jsx("path", { d: 'M36,32c0-1-0.4-1.8-1.1-2.5L5.7,1C5,0.3,4.3,0,3.4,0C2.4,0,1.6,0.3,1,1C0.3,1.6,0,2.4,0,3.3S0.3,5,1,5.7L29.8,34v-4L1,58.3 c-0.7,0.6-1,1.4-1,2.3c0,1,0.3,1.8,1,2.4c0.6,0.7,1.4,1,2.4,1c0.9,0,1.7-0.3,2.3-1l29.2-28.5C35.7,33.7,36,32.9,36,32z' }) }));
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
function ChevronUpChevronDown(props) {
|
|
1707
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 55.592 64', ...props, children: [jsxRuntime.jsx("path", { d: 'm27.792,0c-.42,0-.826.083-1.22.249-.394.166-.808.429-1.243.787L.959,20.832c-.64.578-.959,1.373-.959,2.386,0,.931.313,1.717.94,2.358.626.642,1.423.963,2.389.963.373,0,.754-.079,1.143-.238.389-.158.8-.399,1.235-.721L27.8,7.585l22.085,17.995c.409.322.814.563,1.216.721.401.158.789.238,1.162.238.966,0,1.763-.321,2.389-.963.626-.642.939-1.428.939-2.358,0-1.012-.333-1.807-.998-2.386L30.247,1.028c-.435-.358-.854-.619-1.258-.783-.404-.164-.803-.246-1.197-.246Z' }), jsxRuntime.jsx("path", { d: 'm27.792,64c.394,0,.793-.082,1.197-.246.404-.164.823-.425,1.258-.783l24.347-19.804c.665-.578.998-1.373.998-2.386,0-.931-.313-1.717-.939-2.358-.626-.642-1.423-.962-2.389-.962-.373,0-.761.079-1.162.238-.401.158-.807.399-1.216.721l-22.085,17.995L5.707,38.42c-.435-.322-.846-.563-1.235-.721-.389-.158-.77-.238-1.143-.238-.966,0-1.763.321-2.389.962-.626.642-.94,1.428-.94,2.358,0,1.012.32,1.808.959,2.386l24.37,19.796c.435.358.849.62,1.243.787.394.166.801.249,1.22.249Z' })] }));
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
function CircleFill(props) {
|
|
1711
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("circle", { r: '32', cx: '32', cy: '32' }) }));
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
function ClockBadgeCheckmark(props) {
|
|
1715
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 54.2', ...props, children: [jsxRuntime.jsx("path", { d: 'M27,53.9c1.8,0,3.7-.2,5.5-.5,1.8-.4,3.5-.9,5.1-1.6-1-1.1-1.8-2.4-2.4-3.8-1.2.5-2.5.9-3.9,1.1s-2.8.4-4.2.4c-3.1,0-6-.6-8.7-1.7s-5.1-2.8-7.2-4.8c-2.1-2.1-3.6-4.4-4.8-7.2-1.1-2.7-1.7-5.6-1.7-8.7s.6-6,1.7-8.7c1.1-2.7,2.8-5.1,4.8-7.2,2.1-2.1,4.4-3.7,7.2-4.8,2.7-1.1,5.6-1.7,8.7-1.7,2.8-.1,5.5.4,8,1.4,2.5,1,4.8,2.3,6.8,4.1s3.6,3.8,4.9,6.2c1.3,2.3,2.1,4.9,2.5,7.6.7-.1,1.5-.1,2.3,0,.9,0,1.6.1,2.3.3-.4-3.4-1.3-6.5-2.9-9.4-1.5-3-3.5-5.5-5.9-7.7s-5.2-3.9-8.2-5.1C33.7.6,30.5,0,27,0s-7.2.7-10.4,2.1c-3.3,1.4-6.1,3.4-8.6,5.9s-4.4,5.3-5.9,8.6C.8,19.8,0,23.3,0,27s.7,7.2,2.1,10.4c1.4,3.3,3.4,6.1,5.9,8.6s5.4,4.4,8.6,5.9c3.3,1.4,6.7,2.1,10.4,2.1Z' }), jsxRuntime.jsx("path", { d: 'M13.2,29.8h13.8c.5,0,1-.2,1.3-.5.4-.3.5-.8.5-1.3V10.2c0-.5-.2-1-.5-1.3-.4-.4-.8-.5-1.3-.5s-.9.2-1.3.5c-.4.4-.5.8-.5,1.3v16h-12c-.5,0-1,.2-1.3.5s-.5.8-.5,1.3.2,1,.5,1.3c.4.3.8.5,1.3.5Z' }), jsxRuntime.jsx("path", { d: 'M62.2,34c-1.2-2.1-2.9-3.6-4.9-4.9-2.1-1.2-4.3-1.8-6.8-1.8s-4.7.6-6.7,1.8c-2.1,1.2-3.7,2.8-4.9,4.9-1.2,2.1-1.8,4.3-1.8,6.8s.6,4.7,1.8,6.8,2.9,3.6,4.9,4.9c2.1,1.1,4.3,1.8,6.7,1.8s4.7-.6,6.7-1.8,3.7-2.9,4.9-4.9c1.2-2.1,1.8-4.3,1.8-6.7s-.6-4.7-1.8-6.8ZM58.8,36.2c0,.2-.2.3-.3.5l-8.2,11.4c-.3.4-.8.6-1.4.6s-.5,0-.7-.2-.4-.2-.6-.4l-5.1-5.6c-.1-.1-.2-.3-.3-.5,0-.2-.1-.4-.1-.5,0-.5.2-.9.5-1.2s.7-.5,1.2-.5.5,0,.7.2c.2.1.4.3.5.4l3.7,4,7-9.7c.4-.5.8-.7,1.4-.7s.8.2,1.1.5.5.7.5,1.1,0,.3-.1.5Z' })] }));
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
function ClockFill(props) {
|
|
1719
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M61.5,19.6c-1.7-3.9-4-7.3-6.9-10.2s-6.4-5.3-10.2-6.9C40.5,0.8,36.3,0,32,0c-4.4,0-8.5,0.8-12.3,2.5 c-3.9,1.7-7.3,4-10.2,6.9c-2.9,3-5.2,6.4-6.9,10.2C0.8,23.5,0,27.6,0,32c0,4.4,0.8,8.5,2.5,12.3c1.7,3.9,4,7.3,6.9,10.2 c2.9,3,6.3,5.3,10.2,6.9c3.9,1.7,8,2.5,12.3,2.5c4.4,0,8.5-0.8,12.4-2.5c3.9-1.7,7.3-4,10.2-6.9s5.3-6.4,6.9-10.2 c1.7-3.9,2.5-8,2.5-12.3C64,27.6,63.2,23.5,61.5,19.6z M34.1,33.2c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-0.9,0.6-1.6,0.6H15.6 c-0.6,0-1.1-0.2-1.5-0.6c-0.4-0.4-0.6-0.9-0.6-1.5c0-0.6,0.2-1.1,0.6-1.5c0.4-0.4,0.9-0.6,1.5-0.6h14.2V12.1c0-0.6,0.2-1.1,0.6-1.6 c0.4-0.4,0.9-0.6,1.5-0.6c0.6,0,1.1,0.2,1.6,0.6c0.4,0.4,0.6,0.9,0.6,1.6V33.2z' }) }));
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
function CloudFill(props) {
|
|
1723
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 42.3', ...props, children: jsxRuntime.jsx("path", { d: 'M13.1,42.3H48c3,0,5.7-0.7,8.1-2.1s4.3-3.2,5.7-5.6c1.4-2.4,2.1-5,2.1-7.9s-0.7-5.6-2.2-7.9s-3.5-4.2-6-5.5s-5.4-2-8.6-2 c-1.8-3.6-4.2-6.3-7.4-8.4c-3.1-2-6.7-3-10.7-3c-3.5,0-6.7,0.8-9.6,2.5s-5.3,3.9-7.2,6.7c-1.9,2.8-3,6-3.2,9.5 c-2.7,0.7-4.8,2.2-6.5,4.3C0.8,25,0,27.5,0,30.3c0,2.3,0.5,4.4,1.6,6.2c1.1,1.8,2.6,3.2,4.6,4.2C8.2,41.8,10.5,42.3,13.1,42.3z' }) }));
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
function CubeFill(props) {
|
|
1727
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 59.7 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M29.8,30.3l27.7-15.7c-0.4-0.4-1-0.8-1.6-1.2L35.2,1.6c-1.8-1-3.6-1.6-5.4-1.6c-1.7,0-3.5,0.5-5.3,1.6L3.8,13.4 c-0.7,0.4-1.2,0.7-1.6,1.2L29.8,30.3z' }), jsxRuntime.jsx("path", { d: 'M27.8,64V33.8L0.2,18c-0.1,0.3-0.2,0.7-0.2,1C0,19.4,0,19.8,0,20.3v22.9c0,2.1,0.4,3.7,1.1,4.7c0.7,1,1.8,1.9,3.1,2.7 l23,13.1c0.1,0.1,0.2,0.1,0.3,0.1C27.6,63.9,27.7,64,27.8,64z' }), jsxRuntime.jsx("path", { d: 'M31.8,64c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.3-0.1l23-13.1c1.3-0.8,2.4-1.7,3.1-2.7c0.7-1,1.1-2.6,1.1-4.7V20.3 c0-0.4,0-0.8,0-1.2c0-0.4-0.1-0.7-0.2-1L31.8,33.8V64z' })] }));
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
function CurvePointLeft(props) {
|
|
1731
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 26.7 64', ...props, children: jsxRuntime.jsx("path", { d: 'M0,32c0,5.1,26.7,17.8,26.7,32V0C26.7,14.2,0,26.9,0,32z' }) }));
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
function DialHigh(props) {
|
|
1735
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 55.5', ...props, children: [jsxRuntime.jsx("path", { d: 'M32,12.7c-10.6,0-19.3,8.6-19.3,19.3c0,10.7,8.7,19.3,19.3,19.3S51.3,42.7,51.3,32C51.3,21.3,42.6,12.7,32,12.7z M32,46.9 c-8.3,0-15-6.7-15-15c0-8.2,6.8-15,15-15c8.3,0,15,6.8,15,15C47,40.2,40.3,46.9,32,46.9z' }), jsxRuntime.jsx("path", { d: 'M41.5,43.9l2.8-2.8l-11-11c-0.7-0.7-2.1-0.7-2.8,0c-0.8,0.9-0.8,2,0,2.8L41.5,43.9z' }), jsxRuntime.jsx("path", { d: 'M52.3,55.5c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3c-1.8,0-3.3,1.5-3.3,3.3C49.1,54,50.5,55.5,52.3,55.5z' }), jsxRuntime.jsx("path", { d: 'M60.7,35.3c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3c-1.8,0-3.3,1.5-3.3,3.3C57.4,33.8,58.8,35.3,60.7,35.3z' }), jsxRuntime.jsx("path", { d: 'M52.3,15.1c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3c-1.8,0-3.3,1.4-3.3,3.3C49.1,13.6,50.5,15.1,52.3,15.1z' }), jsxRuntime.jsx("path", { d: 'M32,6.6c1.8,0,3.3-1.4,3.3-3.3C35.3,1.5,33.9,0,32,0c-1.8,0-3.3,1.5-3.3,3.3C28.7,5.1,30.2,6.6,32,6.6z' }), jsxRuntime.jsx("path", { d: 'M11.7,15c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3c-1.8,0-3.3,1.4-3.3,3.3C8.4,13.6,9.8,15,11.7,15z' }), jsxRuntime.jsx("path", { d: 'M3.3,35.3c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3S0,30.1,0,32C0,33.8,1.5,35.3,3.3,35.3z' }), jsxRuntime.jsx("path", { d: 'M11.7,55.5c1.8,0,3.3-1.5,3.3-3.3c0-1.8-1.5-3.3-3.3-3.3c-1.8,0-3.3,1.5-3.3,3.3C8.4,54,9.9,55.5,11.7,55.5z' })] }));
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
function DocFill(props) {
|
|
1739
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.2 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M9.2,64h31.7c3.1,0,5.4-0.8,6.9-2.4c1.5-1.6,2.3-3.9,2.3-7V27.6H28.6c-3.8,0-5.6-1.9-5.6-5.7V0H9.2C6.2,0,3.9,0.8,2.3,2.4 C0.8,3.9,0,6.3,0,9.4v45.3c0,3.1,0.8,5.5,2.3,7C3.9,63.2,6.2,64,9.2,64z' }), jsxRuntime.jsx("path", { d: 'M28.7,23.5h21.2c-0.1-0.6-0.3-1.3-0.8-1.9c-0.4-0.6-1-1.3-1.7-2L30.9,2.8c-0.7-0.7-1.4-1.3-2-1.7c-0.6-0.4-1.3-0.7-1.9-0.8 v21.5C27,22.9,27.6,23.5,28.7,23.5z' })] }));
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
function DocOnClipboard(props) {
|
|
1743
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M50.1,2c-1.3-1.3-3.3-2-5.9-2H20.2c-2.6,0-4.6,0.7-5.9,2c-1.3,1.3-2,3.3-2,6v7.1h7.8l18.3,18.4v17.8h5.6 c2.6,0,4.6-0.7,5.9-2s2-3.3,2-6V8C52,5.3,51.4,3.3,50.1,2z M40,7.2c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.7,0.5-1.2,0.5H26 c-0.6,0-1-0.2-1.2-0.5c-0.3-0.3-0.4-0.7-0.4-1V6.7c0-0.4,0.1-0.7,0.4-1C25,5.3,25.4,5.2,26,5.2h12.4c0.5,0,1,0.2,1.2,0.5 c0.3,0.3,0.4,0.7,0.4,1V7.2z' }), jsxRuntime.jsx("path", { d: 'M39.3,32.3c-0.3-0.9-1-1.9-2-2.9l-14-14.3c-1-1-1.9-1.7-2.8-2s-2.1-0.5-3.5-0.5h-9c-2.6,0-4.6,0.7-5.9,2c-1.3,1.3-2,3.3-2,6 V56c0,2.7,0.7,4.7,2,6c1.3,1.3,3.3,2,5.9,2h23.9c2.6,0,4.6-0.7,5.9-2c1.3-1.3,2-3.3,2-6V36.2C39.7,34.5,39.6,33.2,39.3,32.3z M20.3,17.7l14.5,14.8H21.7c-1,0-1.4-0.5-1.4-1.4V17.7z M35.6,56c0,1.3-0.3,2.2-1,2.9c-0.7,0.7-1.7,1-3,1H8.1c-1.3,0-2.3-0.3-3-1 c-0.7-0.7-1-1.7-1-2.9V20.7c0-1.3,0.3-2.2,1-2.9c0.7-0.7,1.7-1,3-1h8.3v14.8c0,1.6,0.4,2.8,1.2,3.6c0.8,0.8,2,1.2,3.6,1.2h14.3V56z' })] }));
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
function DocOnDoc(props) {
|
|
1747
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M51.5,18.7c-0.4-1.1-1-2.1-2-3.1L36.6,2.5c-0.9-0.9-1.9-1.6-3-2C32.6,0.2,31.3,0,30,0h-9.8c-2.6,0-4.6,0.7-5.9,2 c-1.3,1.3-2,3.3-2,6v6.1h4.1V8c0-1.3,0.3-2.2,1-2.9c0.7-0.7,1.7-1,3-1h11.2v13c0,1.5,0.4,2.6,1.1,3.3c0.7,0.7,1.8,1.1,3.2,1.1h11.9 v21.8c0,1.3-0.3,2.2-1,2.9c-0.7,0.7-1.7,1-3,1h-5v4.1h5.2c2.6,0,4.6-0.7,5.9-2s2-3.3,2-6V22.7C52,21.1,51.8,19.8,51.5,18.7z M36.6,17.8c-0.8,0-1.3-0.4-1.3-1.3V6.1l11.5,11.7H36.6z' }), jsxRuntime.jsx("path", { d: 'M39.3,32.3c-0.3-0.9-1-1.9-2-2.9l-14-14.3c-1-1-1.9-1.7-2.8-2s-2.1-0.5-3.5-0.5h-9c-2.6,0-4.6,0.7-5.9,2c-1.3,1.3-2,3.3-2,6 V56c0,2.7,0.7,4.7,2,6c1.3,1.3,3.3,2,5.9,2h23.9c2.6,0,4.6-0.7,5.9-2c1.3-1.3,2-3.3,2-6V36.2C39.7,34.5,39.6,33.2,39.3,32.3z M20.3,17.7l14.5,14.8H21.7c-1,0-1.4-0.5-1.4-1.4V17.7z M35.6,56c0,1.3-0.3,2.2-1,2.9c-0.7,0.7-1.7,1-3,1H8.1c-1.3,0-2.3-0.3-3-1 c-0.7-0.7-1-1.7-1-2.9V20.7c0-1.3,0.3-2.2,1-2.9c0.7-0.7,1.7-1,3-1h8.3v14.8c0,1.6,0.4,2.8,1.2,3.6c0.8,0.8,2,1.2,3.6,1.2h14.3V56z' })] }));
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
function DocOnDocFill(props) {
|
|
1751
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M7.9,64h23.9c2.6,0,4.6-0.7,5.9-2c1.3-1.3,2-3.3,2-6V35.9H21.9c-1.6,0-2.8-0.4-3.6-1.2c-0.8-0.8-1.2-2-1.2-3.6V12.7H7.9 c-2.6,0-4.6,0.7-5.9,2c-1.3,1.3-2,3.3-2,6V56c0,2.7,0.7,4.7,2,6C3.3,63.3,5.3,64,7.9,64z' }), jsxRuntime.jsx("path", { d: 'M21.9,32.4h17.3c-0.1-0.5-0.3-1-0.7-1.5c-0.3-0.5-0.8-1-1.3-1.6L23.7,15.5c-0.6-0.6-1.1-1-1.6-1.4c-0.5-0.4-1-0.6-1.5-0.8 v17.8C20.6,32,21,32.4,21.9,32.4z' }), jsxRuntime.jsx("path", { d: 'M43.1,51.3h1c1.7,0,3.2-0.3,4.4-0.9c1.2-0.6,2.1-1.5,2.6-2.7c0.6-1.2,0.9-2.7,0.9-4.4V19.2H37.9c-1.3,0-2.3-0.4-3.1-1.1 c-0.7-0.7-1.1-1.7-1.1-3.1V0H20.2c-2.6,0-4.5,0.7-5.9,2c-1.3,1.3-2,3.3-2,5.8v1.4H16c1.8,0,3.4,0.3,4.9,0.8c1.5,0.5,2.9,1.5,4.4,2.9 l14.5,14.4c1.4,1.4,2.3,2.9,2.8,4.4c0.4,1.5,0.6,3.1,0.6,4.9V51.3z' }), jsxRuntime.jsx("path", { d: 'M38.4,16h13.3c-0.1-0.4-0.2-0.8-0.5-1.2c-0.3-0.4-0.6-0.8-1.1-1.2l-10.8-11c-0.4-0.4-0.8-0.8-1.2-1.1 C37.8,1.3,37.4,1.1,37,1l0,13.5C37,15.5,37.5,16,38.4,16z' })] }));
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
function DocOnMagnifyingglass(props) {
|
|
1755
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 51 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M8.5,58.9h15.1c-1.5-1.2-2.7-2.7-3.6-4.4H8.8c-2.8,0-4.3-1.5-4.3-4.2V8.7c0-2.7,1.5-4.3,4.3-4.3h28.7c2.7,0,4.3,1.5,4.3,4.3 v24c1.7,0.9,3.2,2.1,4.4,3.6V8.6c0-5.8-2.9-8.6-8.5-8.6H8.5C2.8,0,0,2.9,0,8.6v41.7C0,56.1,2.8,58.9,8.5,58.9z' }), jsxRuntime.jsx("path", { d: 'M12.7,15.6h20.8c1,0,1.7-0.8,1.7-1.7c0-0.9-0.7-1.7-1.7-1.7H12.7c-1,0-1.7,0.7-1.7,1.7C11,14.9,11.7,15.6,12.7,15.6z' }), jsxRuntime.jsx("path", { d: 'M12.7,25.2h20.8c1,0,1.7-0.8,1.7-1.7c0-0.9-0.7-1.7-1.7-1.7H12.7c-1,0-1.7,0.7-1.7,1.7C11,24.5,11.7,25.2,12.7,25.2z' }), jsxRuntime.jsx("path", { d: 'M33.9,34.2c-6.8,0-12.4,5.6-12.4,12.4c0,6.8,5.6,12.4,12.4,12.4s12.4-5.5,12.4-12.4C46.2,39.7,40.7,34.2,33.9,34.2z M33.9,55c-4.7,0-8.5-3.8-8.5-8.4c0-4.6,3.8-8.4,8.5-8.4c4.6,0,8.4,3.8,8.4,8.4C42.3,51.2,38.5,55,33.9,55z' }), jsxRuntime.jsx("path", { d: 'M48.8,64c1.3,0,2.2-1,2.2-2.4c0-0.6-0.3-1.2-0.8-1.7l-7.7-7.7l-3.5,3.1l7.8,7.7C47.5,63.8,48.1,64,48.8,64z' })] }));
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
function DollarSign(props) {
|
|
1759
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 468.96 820', ...props, children: jsxRuntime.jsx("path", { d: 'M270.718 358.763L270.718 176.564C309.694 183.138 346.445 199.131 377.865 223.149C384.128 227.444 391.478 229.774 399.087 229.877C423.466 229.877 443.343 210.259 443.601 185.88C443.652 175.425 439.563 165.383 432.214 157.93C386.819 119.056 329.882 96.1268 270.201 92.7106L270.201 31.6317C270.201 14.1874 256.07 0.0568293 238.626 0.0568293C238.264 0.00557919 237.9 0.00557919 237.539 0.00557919C219.836-0.253875 205.24 13.8783 204.98 31.6317L204.98 90.6398C88.5176 98.9215 9.32336 170.87 9.32336 266.628C9.32336 384.125 109.223 416.736 204.98 442.616L204.98 649.662C154.46 642.881 106.841 621.918 67.8125 589.102C60.463 583.253 51.3517 579.992 41.9312 579.785C18.0695 581.441-0.305258 601.421 0.00384275 625.335C-0.0474074 635.79 4.04139 645.832 11.391 653.286C64.8609 701.424 133.6 729.117 205.496 731.446L205.496 788.383C205.496 788.745 205.547 789.108 205.547 789.47C206.375 807.172 221.438 820.837 239.14 819.958C256.584 819.958 270.715 805.827 270.715 788.383L270.715 730.411C412.023 721.095 468.96 635.171 468.96 544.07C468.963 421.913 366.477 384.644 270.718 358.763ZM205.499 342.199C149.079 325.636 105.083 308.555 105.083 260.417C105.083 212.279 144.939 177.598 205.499 172.941L205.499 342.199ZM270.718 650.696L270.718 462.286C329.209 478.85 374.757 501.107 374.24 555.456C374.24 594.795 347.324 641.38 270.718 650.696Z' }) }));
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
function EllipsisCircle(props) {
|
|
1763
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.5,19.8c-1.7-3.9-4-7.3-6.9-10.2c-3-3-6.4-5.3-10.2-6.9C40.5,1,36.4,0.2,32,0.2S23.5,1,19.7,2.7s-7.3,4-10.2,6.9 c-2.9,3-5.2,6.4-6.9,10.2c-1.7,3.9-2.5,8-2.5,12.3c0,4.4,0.8,8.5,2.5,12.3c1.7,3.9,4,7.3,6.9,10.2c2.9,3,6.3,5.3,10.2,6.9 C23.5,63.1,27.6,64,32,64c4.4,0,8.5-0.8,12.4-2.5s7.3-4,10.2-6.9c2.9-3,5.3-6.4,6.9-10.2c1.7-3.9,2.5-8,2.5-12.3 C64,27.7,63.2,23.6,61.5,19.8z M56.5,42.3c-1.4,3.2-3.3,6.1-5.7,8.5c-2.4,2.4-5.3,4.4-8.5,5.7c-3.2,1.5-6.6,2.1-10.3,2.1 c-3.7,0-7.1-0.7-10.4-2.1c-3.2-1.4-6-3.3-8.5-5.7c-2.4-2.4-4.3-5.3-5.7-8.5C6,39.1,5.3,35.6,5.3,31.9c0-3.7,0.7-7.1,2-10.4 c1.4-3.2,3.3-6.1,5.7-8.5c2.4-2.4,5.3-4.4,8.5-5.7c3.2-1.4,6.7-2.1,10.4-2.1c3.7,0,7.2,0.7,10.4,2.1c3.2,1.4,6.1,3.3,8.5,5.7 c2.4,2.4,4.4,5.3,5.7,8.5c1.4,3.2,2.1,6.7,2.1,10.4C58.6,35.6,57.9,39,56.5,42.3z' }), jsxRuntime.jsx("path", { d: 'M17.3,36.5c1.2,0,2.3-0.4,3.2-1.3s1.3-2,1.3-3.2c0-1.3-0.4-2.3-1.3-3.2s-2-1.3-3.2-1.3c-1.3,0-2.3,0.4-3.2,1.3 s-1.3,2-1.3,3.2c0,1.3,0.4,2.3,1.3,3.2S16.1,36.5,17.3,36.5z' }), jsxRuntime.jsx("path", { d: 'M32,36.5c1.3,0,2.3-0.4,3.2-1.3c0.9-0.9,1.3-2,1.3-3.2c0-1.3-0.4-2.3-1.3-3.2c-0.9-0.9-2-1.3-3.2-1.3 c-1.3,0-2.3,0.4-3.2,1.3c-0.9,0.9-1.3,2-1.3,3.2c0,1.3,0.4,2.3,1.3,3.2C29.6,36.1,30.7,36.5,32,36.5z' }), jsxRuntime.jsx("path", { d: 'M46.6,36.5c1.3,0,2.3-0.4,3.2-1.3c0.9-0.9,1.3-2,1.3-3.2c0-1.3-0.4-2.3-1.3-3.2c-0.9-0.9-2-1.3-3.2-1.3 c-1.3,0-2.3,0.4-3.2,1.3s-1.3,2-1.3,3.2c0,1.3,0.4,2.3,1.3,3.2S45.3,36.5,46.6,36.5z' })] }));
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
function EllipsisCircleFill(props) {
|
|
1767
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M61.5,19.6c-1.7-3.9-4-7.3-6.9-10.2c-3-3-6.4-5.3-10.2-6.9C40.5,0.8,36.4,0,32,0c-4.4,0-8.5,0.8-12.3,2.5 c-3.9,1.7-7.3,4-10.2,6.9c-2.9,3-5.2,6.4-6.9,10.2C0.8,23.5,0,27.6,0,32s0.8,8.5,2.5,12.4c1.7,3.9,4,7.3,6.9,10.2 c2.9,3,6.3,5.3,10.2,6.9c3.9,1.7,8,2.5,12.3,2.5c4.4,0,8.5-0.8,12.4-2.5c3.9-1.7,7.3-4,10.2-6.9c2.9-3,5.3-6.4,6.9-10.2 c1.7-3.9,2.5-8,2.5-12.4S63.2,23.5,61.5,19.6z M20.5,35.4c-1,0.9-2.1,1.4-3.4,1.4c-1.3,0-2.5-0.5-3.4-1.4c-1-0.9-1.4-2.1-1.4-3.4 c0-1.3,0.5-2.5,1.4-3.4c1-0.9,2.1-1.4,3.4-1.4c1.3,0,2.5,0.5,3.4,1.4s1.4,2.1,1.4,3.4C21.9,33.3,21.4,34.5,20.5,35.4z M35.4,35.4 c-0.9,0.9-2.1,1.4-3.4,1.4c-1.3,0-2.5-0.5-3.5-1.4c-1-0.9-1.4-2.1-1.4-3.4c0-1.3,0.5-2.5,1.4-3.4c1-0.9,2.1-1.4,3.5-1.4 c1.3,0,2.5,0.5,3.4,1.4c0.9,0.9,1.4,2.1,1.4,3.4C36.9,33.3,36.4,34.5,35.4,35.4z M50.4,35.4c-1,0.9-2.1,1.4-3.4,1.4 c-1.3,0-2.5-0.5-3.4-1.4c-0.9-0.9-1.4-2.1-1.4-3.4c0-1.3,0.5-2.5,1.4-3.4c0.9-0.9,2.1-1.4,3.4-1.4c1.3,0,2.5,0.5,3.4,1.4 s1.4,2.1,1.4,3.4C51.8,33.3,51.3,34.5,50.4,35.4z' }) }));
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
function Envelope(props) {
|
|
1771
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 49.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.7,2.2C60.2,0.7,57.9,0,54.9,0H8.2C5.6,0,3.6,0.7,2.2,2.2C0.7,3.7,0,6,0,9v32c0,3,0.8,5.2,2.3,6.7s3.8,2.2,6.8,2.2h46.7 c2.6,0,4.6-0.7,6.1-2.2c1.4-1.5,2.2-3.7,2.2-6.7V9C64,6,63.2,3.7,61.7,2.2z M59.6,41c0,1.5-0.4,2.6-1.2,3.4 c-0.8,0.8-1.9,1.2-3.3,1.2H8.9c-1.4,0-2.6-0.4-3.3-1.2s-1.2-1.9-1.2-3.4V9c0-1.5,0.4-2.6,1.2-3.4s1.9-1.2,3.3-1.2H55 c1.4,0,2.5,0.4,3.3,1.2c0.8,0.8,1.2,1.9,1.2,3.4V41z' }), jsxRuntime.jsx("path", { d: 'M32.1,32.7c1,0,2-0.2,3-0.7c1-0.4,2-1.2,3-2.2L61.6,6.7l-3-3l-23,22.7c-0.6,0.6-1.2,1.1-1.8,1.4c-0.6,0.3-1.1,0.4-1.7,0.4 c-0.6,0-1.2-0.1-1.7-0.4c-0.6-0.3-1.2-0.7-1.8-1.4L5.4,3.6l-3,3L26,29.9c1,1,2,1.7,3,2.2C30,32.4,31,32.7,32.1,32.7z' }), jsxRuntime.jsx("polygon", { points: '58.3,46.1 61.3,43.1 42.6,24.6 39.6,27.6 ' }), jsxRuntime.jsx("polygon", { points: '2.7,43.1 5.8,46.2 24.5,27.6 21.5,24.6 ' })] }));
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
function EnvelopeFill(props) {
|
|
1775
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 49.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M32.1,28.3c1.2,0,2.4-0.6,3.6-1.8L60.8,1.5c-1.1-1-3.1-1.5-5.9-1.5H8.2C5.8,0,4.1,0.5,3.1,1.4l25.3,25.1 C29.7,27.7,30.9,28.3,32.1,28.3z' }), jsxRuntime.jsx("path", { d: 'M0.7,45.3L21.2,25L0.7,4.7C0.2,5.6,0,7,0,9v32C0,43,0.2,44.4,0.7,45.3z' }), jsxRuntime.jsx("path", { d: 'M9.1,49.9h46.7c2.4,0,4.1-0.5,5.1-1.4L40,27.9L38,29.8c-1.9,1.9-3.9,2.8-6,2.8c-2.1,0-4.1-0.9-6-2.8l-1.9-1.9L3.3,48.5 C4.4,49.5,6.3,49.9,9.1,49.9z' }), jsxRuntime.jsx("path", { d: 'M63.3,45.2C63.8,44.4,64,43,64,41V9c0-2-0.2-3.3-0.7-4.1L42.9,25L63.3,45.2z' })] }));
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
function Eye(props) {
|
|
1779
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 40.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M32,0C13.3,0,0,15.3,0,20.1c0,4.8,13.3,20.1,32,20.1c18.9,0,32-15.3,32-20.1C64,15.3,50.9,0,32,0z M32,36.4 c-15.4,0-27.9-13.1-27.9-16.4C4.1,17.3,16.6,3.7,32,3.7c15.4,0,27.9,13.6,27.9,16.4C59.9,23.4,47.4,36.4,32,36.4z' }), jsxRuntime.jsx("path", { d: 'M32,7c-7.3,0-13.2,5.8-13.2,13.1c0,7.1,5.8,13.1,13.2,13.1c7.3,0,13.1-6,13.1-13.1C45.1,12.7,39.3,7,32,7z M32,24.4 c-2.4,0-4.4-2-4.4-4.3c0-2.4,2-4.4,4.4-4.4c2.4,0,4.4,2,4.4,4.4C36.4,22.4,34.4,24.4,32,24.4z' })] }));
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
function ExclamationmarkOctagon(props) {
|
|
1783
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 61.6', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.4,16.8l-12.1-13.3C47.3,1.3,45.4,0,41.4,0h-18.9C18.6,0,16.7,1.3,14.7,3.5L2.6,16.8c-2,2.3-2.6,3.8-2.6,6.9v14.2c0,3.1.5,4.6,2.6,6.9l12.1,13.3c2,2.2,3.9,3.5,7.8,3.5h18.9c4,0,5.8-1.3,7.9-3.5l12.1-13.3c2.1-2.3,2.6-3.8,2.6-6.9v-14.2c0-3.1-.5-4.6-2.6-6.9ZM58.2,37.3c0,2.3-.3,3.1-1.5,4.4l-11.2,12.3c-1.7,1.9-2.6,2.5-5.8,2.5h-15.5c-3.1,0-4-.7-5.7-2.5l-11.2-12.3c-1.2-1.4-1.5-2.2-1.5-4.4v-13.1c0-2.3.3-3.1,1.5-4.4l11.2-12.3c1.7-1.9,2.6-2.5,5.7-2.5h15.5c3.1,0,4,.7,5.8,2.5l11.2,12.3c1.3,1.4,1.5,2.2,1.5,4.4v13.1Z' }), jsxRuntime.jsx("path", { d: 'M32,36.4c1.5,0,2.4-.9,2.4-2.5l.4-16.4c0-1.6-1.2-2.8-2.9-2.8s-2.9,1.1-2.8,2.7l.4,16.5c0,1.6.9,2.5,2.4,2.5Z' }), jsxRuntime.jsx("path", { d: 'M32,46.5c1.8,0,3.4-1.4,3.4-3.2s-1.5-3.2-3.4-3.2-3.3,1.4-3.3,3.2,1.5,3.2,3.3,3.2Z' })] }));
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
function FigureWaterFitness(props) {
|
|
1787
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 45.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M31.8,11.8c3.3,0,5.9-2.7,5.9-5.9c0-3.3-2.7-5.9-5.9-5.9c-3.3,0-5.9,2.6-5.9,5.9C25.9,9.2,28.5,11.8,31.8,11.8z' }), jsxRuntime.jsx("path", { d: 'M2.8,7.7l19.9,10.7c0.6,0.3,1,1,0.8,1.7l-1.9,7c5,1,6.7,4.1,10.4,4.1c1,0,1.9-0.3,2.7-0.7l2.6-9.7c0.3-1,0.5-1.5,1.5-2 L59.7,7.7c1.5-0.8,2.1-2.7,1.3-4.1c-0.9-1.5-2.7-2.1-4.2-1.3l-20.7,11c-3.3,1.7-6.3,1.9-10.2-0.1L5.7,2.3C4.2,1.5,2.3,2.1,1.5,3.6 C0.7,5.1,1.3,6.9,2.8,7.7z' }), jsxRuntime.jsx("path", { d: 'M1.5,38.4h2.8c7.2,0,8.9-4.5,13.9-4.5c5,0,6.7,4.5,13.9,4.5c7.2,0,8.9-4.5,13.9-4.5c5,0,6.7,4.5,13.9,4.5h2.8 c0.8,0,1.5-0.7,1.5-1.5c0-0.8-0.7-1.5-1.5-1.5h-2.8c-5.2,0-6.9-4.5-13.9-4.5c-6.9,0-8.7,4.5-13.9,4.5c-5.2,0-6.9-4.5-13.9-4.5 c-6.9,0-8.7,4.5-13.9,4.5H1.5c-0.8,0-1.5,0.7-1.5,1.5C0,37.8,0.7,38.4,1.5,38.4z' }), jsxRuntime.jsx("path", { d: 'M2.2,45.9c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C0.7,45.3,1.3,45.9,2.2,45.9z' }), jsxRuntime.jsx("path", { d: 'M7.3,45c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C5.7,44.3,6.4,45,7.3,45z' }), jsxRuntime.jsx("path", { d: 'M12,42.8c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C10.5,42.1,11.2,42.8,12,42.8z' }), jsxRuntime.jsx("path", { d: 'M17.2,41.6c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C15.6,40.9,16.3,41.6,17.2,41.6z' }), jsxRuntime.jsx("path", { d: 'M22.2,42.8c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C20.7,42.1,21.4,42.8,22.2,42.8z' }), jsxRuntime.jsx("path", { d: 'M27,45c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C25.5,44.3,26.2,45,27,45z' }), jsxRuntime.jsx("path", { d: 'M32,45.9c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C30.4,45.3,31.1,45.9,32,45.9z' }), jsxRuntime.jsx("path", { d: 'M37,45c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C35.5,44.3,36.1,45,37,45z' }), jsxRuntime.jsx("path", { d: 'M41.8,42.8c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C40.2,42.1,40.9,42.8,41.8,42.8z' }), jsxRuntime.jsx("path", { d: 'M46.9,41.6c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C45.3,40.9,46,41.6,46.9,41.6z' }), jsxRuntime.jsx("path", { d: 'M52,42.8c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C50.5,42.1,51.1,42.8,52,42.8z' }), jsxRuntime.jsx("path", { d: 'M56.8,45c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C55.2,44.3,55.9,45,56.8,45z' }), jsxRuntime.jsx("path", { d: 'M61.8,45.9c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6C60.2,45.3,60.9,45.9,61.8,45.9z' })] }));
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
function FlagFill(props) {
|
|
1791
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 57.9 64', ...props, children: jsxRuntime.jsx("path", { d: 'M2.5,64c0.7,0,1.3-0.2,1.7-0.7c0.5-0.5,0.7-1.1,0.7-1.7V43.4c0.4-0.2,1.4-0.5,2.9-0.9c1.5-0.4,3.4-0.6,5.8-0.6 c3,0,5.8,0.3,8.4,0.9c2.6,0.6,5,1.3,7.4,2.1c2.4,0.8,4.8,1.5,7.3,2.1c2.5,0.6,5.2,0.9,8,0.9c2.6,0,4.5-0.1,5.7-0.4 c1.3-0.3,2.5-0.7,3.8-1.3c1.1-0.5,2-1.2,2.7-2.1c0.7-0.9,1-2.1,1-3.6V7.3c0-0.9-0.3-1.6-1-2c-0.7-0.5-1.5-0.7-2.4-0.7 c-0.8,0-2,0.2-3.6,0.7c-1.6,0.5-3.8,0.7-6.6,0.7c-2.9,0-5.6-0.3-8-0.9C33.8,4.4,31.4,3.7,29,3c-2.4-0.8-4.9-1.5-7.4-2.1 C19,0.3,16.2,0,13.2,0c-2.6,0-4.5,0.1-5.7,0.4C6.2,0.7,5,1.1,3.7,1.7C2.6,2.2,1.7,2.9,1,3.8C0.3,4.7,0,5.9,0,7.4v54.2 c0,0.7,0.2,1.2,0.7,1.7C1.2,63.8,1.8,64,2.5,64z' }) }));
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
function FlameFill(props) {
|
|
1795
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 49.3 64', ...props, children: jsxRuntime.jsx("path", { d: 'M46.9,23.5c-1.6-4.1-3.8-7.6-6.5-10.6c-2.7-3-5.7-5.4-9.1-7.3C27.9,3.7,24.5,2.3,21,1.4C17.5,0.5,14.2,0,11.1,0 C9.7,0,8.6,0.2,7.8,0.7C6.9,1.2,6.5,1.9,6.5,2.9c0,0.7,0.3,1.5,1,2.2c1.8,2.1,3.4,4.4,4.8,6.9c1.5,2.5,2.2,5.2,2.3,8.1 c0,0.7-0.1,1.4-0.2,2c0,0.1,0,0.2-0.1,0.3c-0.4-0.8-0.8-1.5-1.3-2.2c-0.9-1.1-1.8-2-2.9-2.6c-1.1-0.6-2.1-1-3.2-1 c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.4-0.6,1-0.6,1.6c0,0.4,0,1,0.1,1.7c0.1,0.8,0.1,1.5,0.1,2.1c0,1.7-0.3,3.2-0.8,4.6 c-0.5,1.4-1.1,2.9-1.8,4.4c-0.7,1.5-1.3,3.3-1.8,5.2S0,41.2,0,43.9c0,4,1,7.6,2.9,10.6s4.6,5.4,8.1,7.1c3.5,1.7,7.6,2.5,12.2,2.5 c5.2,0,9.8-1.1,13.7-3.3c3.9-2.2,6.9-5.3,9.1-9.3c2.2-4,3.3-8.6,3.3-13.9C49.3,32.2,48.5,27.5,46.9,23.5z M33.2,50.1 c-0.8,1.7-1.9,3-3.5,4.1c-1.5,1-3.5,1.5-5.9,1.5c-2.8,0-5-0.8-6.7-2.3c-1.7-1.5-2.5-3.5-2.5-6c0-1.7,0.3-3.1,1-4.3 c0.6-1.1,1.3-2.2,2-3.1c0.7-0.9,1.1-1.9,1.3-3.1c0-0.1,0-0.2,0.1-0.3s0.2,0,0.3,0.1c0.7,0.6,1.3,1.3,1.7,2c0.5,0.7,0.9,1.5,1.2,2.4 c0.8-1.1,1.4-2.6,1.7-4.7s0.4-4.3,0.1-6.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3,0c2.2,1,4,2.4,5.4,4c1.5,1.7,2.5,3.5,3.3,5.4 c0.7,2,1.1,3.9,1.1,5.8C34.4,46.6,34,48.4,33.2,50.1z' }) }));
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
function Folder(props) {
|
|
1799
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 51.8', ...props, children: [jsxRuntime.jsx("path", { d: 'M54.9,5.1H28.2c-1.7,0-2.9-0.5-4.2-1.6l-1.8-1.4C20.3,0.5,18.7,0,16,0H8C3,0,0,2.9,0,8.9v33.9c0,6,3,9,9.1,9h46.8 c5.1,0,8.1-3,8.1-9V14.1C64,8.1,61,5.1,54.9,5.1z M58.9,42.5c0,2.7-1.5,4-4,4H9.2c-2.6,0-4-1.4-4-4.1V9.1c0-2.6,1.4-4,4-4h5.5 c1.7,0,2.9,0.5,4.2,1.6l1.8,1.4c1.8,1.5,3.4,2.1,6.1,2.1h28c2.6,0,4,1.4,4,4.1V42.5z' }), jsxRuntime.jsx("rect", { width: '57.7', height: '4.8', x: '3', y: '16' })] }));
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
function FolderFill(props) {
|
|
1803
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 51.6', ...props, children: [jsxRuntime.jsx("path", { d: 'M0,42.8c0,2.9,0.7,5.1,2.2,6.6c1.5,1.5,3.7,2.2,6.6,2.2H56c2.5,0,4.5-0.7,5.9-2.2c1.4-1.5,2.1-3.7,2.1-6.6V19.7H0V42.8z' }), jsxRuntime.jsx("path", { d: 'M0,16h64v-2.1c0-2.9-0.7-5.1-2.2-6.5c-1.5-1.5-3.7-2.2-6.6-2.2H28.1c-1,0-1.8-0.1-2.4-0.4c-0.6-0.3-1.3-0.7-2-1.3l-1.7-1.4 c-0.9-0.8-1.8-1.3-2.7-1.6c-0.9-0.3-2-0.5-3.4-0.5h-8C5.3,0,3.4,0.7,2,2.1C0.7,3.5,0,5.6,0,8.5V16z' })] }));
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
function Gearshape(props) {
|
|
1807
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 63.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M63,26.1c-0.6-0.8-1.5-1.4-2.7-1.7l-5.5-1.3l-0.4-0.9l3-4.9c0.6-1,0.9-2,0.7-3s-0.6-2-1.4-2.8l-4.2-4.2 c-0.8-0.8-1.7-1.3-2.8-1.4s-2.1,0.1-3,0.7l-4.9,3l-1-0.4l-1.3-5.6c-0.3-1.1-0.8-2-1.6-2.6c-0.8-0.6-1.8-1-3-1h-6c-1.2,0-2.1,0.3-3,1 c-0.8,0.6-1.4,1.5-1.6,2.6l-1.3,5.6l-1,0.4l-4.9-3c-1-0.6-2-0.8-3-0.7s-2,0.6-2.8,1.4l-4.2,4.2c-0.8,0.8-1.3,1.8-1.4,2.8 c-0.1,1.1,0.1,2.1,0.7,3l3,4.9l-0.4,0.9l-5.5,1.3c-1.1,0.3-2,0.8-2.6,1.7c-0.6,0.8-1,1.8-1,3V35c0,1.1,0.3,2.1,1,3 c0.7,0.8,1.5,1.4,2.6,1.7l5.6,1.3l0.3,0.9l-3,4.9c-0.6,1-0.9,2-0.7,3c0.1,1.1,0.6,2,1.4,2.8l4.2,4.2c0.8,0.8,1.8,1.3,2.8,1.4 c1.1,0.1,2.1-0.1,3-0.7l4.9-3l1,0.3l1.3,5.6c0.3,1.1,0.8,2,1.6,2.6c0.8,0.6,1.8,1,3,1h6c1.2,0,2.2-0.3,3-1c0.8-0.6,1.4-1.5,1.6-2.6 l1.3-5.6l1-0.3l4.8,3c1,0.6,2,0.9,3.1,0.7c1.1-0.1,2-0.6,2.8-1.4l4.2-4.2c0.8-0.8,1.3-1.8,1.4-2.8c0.1-1.1-0.1-2.1-0.7-3l-3-4.9 l0.3-0.9l5.6-1.3c1.1-0.3,2-0.8,2.6-1.7c0.7-0.8,1-1.8,1-3v-5.9C64,28,63.7,27,63,26.1z M59.3,34.5c0,0.5-0.2,0.8-0.7,0.8l-7.5,1.8 c-0.2,0.9-0.5,1.8-0.9,2.6c-0.4,0.8-0.7,1.5-1.1,2.2l4,6.5c0.3,0.4,0.2,0.8-0.1,1.1l-3.5,3.5c-0.4,0.4-0.7,0.4-1.1,0.1l-6.5-4 c-0.6,0.4-1.4,0.8-2.2,1.1s-1.7,0.6-2.6,0.9l-1.8,7.4c-0.1,0.5-0.4,0.7-0.8,0.7h-5.1c-0.5,0-0.8-0.2-0.8-0.7l-1.8-7.4 c-0.9-0.2-1.8-0.5-2.6-0.9c-0.8-0.3-1.6-0.7-2.2-1.1l-6.5,4c-0.4,0.3-0.7,0.2-1.1-0.1l-3.5-3.5c-0.3-0.3-0.4-0.7-0.1-1.1l4-6.5 c-0.3-0.6-0.7-1.3-1-2.2c-0.4-0.8-0.7-1.7-0.9-2.6l-7.4-1.8c-0.5-0.1-0.7-0.3-0.7-0.8v-5c0-0.5,0.2-0.8,0.7-0.9l7.4-1.8 c0.2-1,0.6-1.9,0.9-2.7c0.4-0.8,0.7-1.5,1-2.1l-3.9-6.5c-0.3-0.4-0.2-0.8,0.1-1.2l3.5-3.5c0.4-0.3,0.7-0.4,1.1-0.1l6.4,3.9 c0.6-0.4,1.4-0.7,2.3-1.1c0.9-0.4,1.7-0.7,2.6-0.9l1.8-7.4c0.1-0.5,0.4-0.7,0.8-0.7h5.1c0.5,0,0.8,0.2,0.8,0.7l1.8,7.5 c0.9,0.2,1.8,0.5,2.6,0.9s1.5,0.7,2.2,1.1l6.5-4c0.4-0.2,0.8-0.2,1.1,0.1l3.5,3.5c0.3,0.3,0.3,0.7,0.1,1.2l-4,6.5 c0.3,0.6,0.6,1.3,1,2.1s0.7,1.8,0.9,2.7l7.4,1.8c0.4,0.1,0.7,0.4,0.7,0.9V34.5z' }), jsxRuntime.jsx("path", { d: 'M41.9,26.3c-1-1.7-2.4-3.1-4.1-4.1c-1.7-1-3.6-1.5-5.7-1.5c-2.1,0-4,0.5-5.7,1.5c-1.7,1-3.1,2.4-4.1,4.1 c-1,1.7-1.6,3.6-1.6,5.7c0,2.1,0.5,4,1.6,5.7c1,1.7,2.4,3.1,4.1,4.1c1.7,1,3.6,1.5,5.7,1.5c2.1,0,4-0.5,5.7-1.5 c1.7-1,3.1-2.4,4.1-4.1c1-1.7,1.5-3.6,1.5-5.7S42.9,28,41.9,26.3z M37.8,35.3c-0.6,1-1.4,1.9-2.4,2.5c-1,0.6-2.1,0.9-3.3,0.9 c-1.2,0-2.4-0.3-3.4-0.9c-1-0.6-1.8-1.4-2.4-2.5s-0.9-2.2-0.9-3.4c0-1.2,0.3-2.3,0.9-3.4c0.6-1,1.4-1.8,2.4-2.5 c1-0.6,2.1-0.9,3.4-0.9c1.2,0,2.3,0.3,3.3,0.9c1,0.6,1.8,1.4,2.4,2.5c0.6,1,0.9,2.1,0.9,3.4C38.7,33.2,38.4,34.3,37.8,35.3z' })] }));
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
function GearshapeFill(props) {
|
|
1811
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M63.1,27.4c-0.4-0.5-1-0.9-1.8-1.1l-6.7-1.6c-0.2-0.6-0.4-1.2-0.7-1.8c-0.2-0.6-0.5-1.1-0.7-1.5l3.6-5.9 c0.4-0.7,0.6-1.4,0.6-2.1c-0.1-0.7-0.4-1.3-0.9-1.9l-4-3.9c-0.6-0.5-1.2-0.8-1.8-0.9s-1.3,0.1-2,0.4l-6,3.7c-0.5-0.2-1-0.5-1.6-0.7 s-1.2-0.4-1.8-0.6l-1.6-6.8c-0.2-0.8-0.6-1.4-1.1-1.9c-0.6-0.4-1.2-0.7-2-0.7H29c-0.8,0-1.5,0.2-2,0.7c-0.5,0.4-0.9,1.1-1.1,1.9 l-1.6,6.8c-0.6,0.2-1.2,0.4-1.7,0.6s-1.1,0.5-1.6,0.7l-6-3.7c-1.4-0.8-2.7-0.6-3.8,0.5l-4,3.9c-0.6,0.6-0.9,1.2-0.9,1.9 s0.1,1.4,0.6,2.1l3.6,5.9c-0.2,0.5-0.4,1-0.6,1.5c-0.2,0.6-0.4,1.2-0.6,1.8l-6.7,1.6c-0.8,0.2-1.4,0.5-1.8,1.1 c-0.4,0.5-0.7,1.2-0.7,2v5.5c0,0.8,0.2,1.5,0.7,2.1c0.4,0.5,1,0.9,1.8,1.1l6.8,1.6c0.2,0.5,0.3,1.1,0.6,1.6c0.2,0.6,0.5,1.1,0.7,1.6 l-3.6,5.8c-0.5,0.7-0.6,1.4-0.6,2.1c0.1,0.7,0.4,1.4,0.9,1.9l3.9,3.9c0.5,0.5,1.2,0.8,1.9,0.9c0.7,0.1,1.4-0.1,2.1-0.5l5.9-3.6 c0.5,0.2,1,0.5,1.6,0.7s1.2,0.4,1.7,0.6l1.6,6.7c0.2,0.8,0.5,1.4,1.1,1.9c0.5,0.5,1.1,0.7,1.9,0.7h5.6c0.8,0,1.5-0.2,2-0.7 c0.6-0.4,0.9-1.1,1.1-1.9l1.6-6.7c0.6-0.2,1.2-0.4,1.8-0.6c0.6-0.2,1.1-0.5,1.6-0.7l5.9,3.6c0.7,0.4,1.3,0.6,2,0.5s1.3-0.4,1.9-0.9 l3.9-3.9c0.6-0.6,0.9-1.2,0.9-1.9c0.1-0.7-0.1-1.4-0.6-2.1l-3.6-5.8c0.3-0.5,0.5-1.1,0.7-1.6c0.2-0.6,0.4-1.1,0.6-1.6l6.8-1.6 c0.8-0.2,1.4-0.5,1.8-1.1c0.4-0.5,0.6-1.2,0.6-2.1v-5.5C63.7,28.6,63.5,28,63.1,27.4z M41.3,37.4c-1,1.6-2.3,3-3.9,3.9 c-1.6,1-3.5,1.5-5.4,1.5c-2,0-3.8-0.5-5.4-1.5s-2.9-2.3-3.9-3.9s-1.5-3.5-1.5-5.4c0-2,0.5-3.8,1.5-5.4s2.3-2.9,3.9-3.9 s3.5-1.5,5.4-1.5c2,0,3.8,0.5,5.4,1.5s2.9,2.3,3.9,3.9s1.5,3.4,1.5,5.4S42.3,35.8,41.3,37.4z' }) }));
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
function GiftFill(props) {
|
|
1815
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 58.6 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M4.3,56.2c0,2.5,0.7,4.5,2.2,5.8s3.4,2,6,2h14.3V36.6H4.3V56.2z' }), jsxRuntime.jsx("path", { d: 'M31.8,64h14.3c2.5,0,4.5-0.7,6-2s2.1-3.3,2.1-5.8V36.6H31.8V64z' }), jsxRuntime.jsx("path", { d: 'M0,28.8c0,1.6,0.4,2.8,1.3,3.5c0.9,0.7,2.2,1,3.8,1h21.7V16.8h-4.7c-2.4,0-4.3-0.6-5.6-1.9c-1.3-1.3-2-2.8-2-4.4 c0-1.7,0.5-3,1.6-3.9c1.1-0.9,2.5-1.4,4.2-1.4c1.8,0,3.4,0.6,4.6,1.9c1.3,1.3,1.9,3.1,1.9,5.3v4.4h5v-4.4c0-2.3,0.6-4,1.9-5.3 c1.3-1.3,2.8-1.9,4.6-1.9c1.7,0,3.1,0.5,4.2,1.4c1.1,0.9,1.6,2.2,1.6,3.9c0,1.7-0.7,3.1-2,4.4c-1.3,1.3-3.2,1.9-5.6,1.9h-4.7v16.5 h21.7c1.7,0,2.9-0.3,3.8-1c0.9-0.7,1.3-1.9,1.3-3.5v-7.4c0-1.6-0.4-2.8-1.3-3.5c-0.9-0.7-2.1-1.1-3.8-1.1h-7.1 c0.9-0.8,1.6-1.8,2.1-3c0.5-1.1,0.8-2.4,0.8-3.7c0-2-0.5-3.7-1.4-5.2c-0.9-1.5-2.2-2.7-3.8-3.6C42.5,0.4,40.7,0,38.7,0 c-2.1,0-4.1,0.6-5.7,1.7c-1.7,1.1-2.9,2.7-3.7,4.8c-0.8-2-2-3.6-3.7-4.8C24,0.6,22.1,0,19.9,0c-2,0-3.7,0.4-5.3,1.3 c-1.6,0.9-2.9,2.1-3.8,3.6c-0.9,1.5-1.4,3.3-1.4,5.2c0,1.4,0.3,2.6,0.8,3.7c0.5,1.1,1.2,2.1,2.1,3H5.1c-1.6,0-2.8,0.4-3.7,1.1 C0.5,18.5,0,19.7,0,21.4V28.8z' })] }));
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
function GlobeAmericasFill(props) {
|
|
1819
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M33.2,55.7c0.8,0,1.8-0.5,3.1-1.5c1.3-1,2.6-2.3,3.9-3.9c1.4-1.6,2.7-3.3,3.9-5.1c1.2-1.8,2.2-3.5,3-5.2 c0.8-1.7,1.2-3,1.2-4.1c0-0.8-0.4-1.7-1.1-2.7c-0.7-1-1.6-2-2.7-3c-1.1-1-2.2-1.8-3.4-2.4c-1.2-0.6-2.2-0.9-3.1-0.9 c-0.5,0-1.1,0.2-1.8,0.5c-0.7,0.4-1.4,0.7-2.1,1.1c-0.7,0.4-1.4,0.6-2,0.6c-0.6,0-1.4-0.3-2.3-0.9c-0.9-0.6-1.7-1.3-2.4-2.1 c-0.7-0.8-1.1-1.5-1.1-2c0-0.4,0.2-0.7,0.5-1c0.3-0.2,0.7-0.4,1.1-0.4c0.5,0,1.1,0.2,1.8,0.6c0.7,0.4,1.4,0.9,2.2,1.3 c0.8,0.4,1.6,0.6,2.4,0.6c1,0,1.8-0.3,2.3-1c0.5-0.6,0.8-1.5,0.8-2.5c0-0.5-0.1-1.1-0.4-1.6c-0.3-0.6-0.6-1.2-1.1-1.9 c1.1-0.5,2.4-1.2,4-2.1c1.6-0.9,3.1-2,4.6-3.2c1.5-1.2,2.5-2.5,3.3-4c-1.2-1.8-3.2-3.3-6.1-4.4S35.6,3,31.9,3 c-2.7,0-5.3,0.4-7.8,1.1c-2.6,0.7-4.9,1.7-7,2.9c-2.1,1.2-3.8,2.5-5.1,4s-2.1,3-2.3,4.5c-0.2,1.7,0.3,3.4,1.5,5.2 c1.2,1.8,2.9,3.6,5.1,5.5l4.6,4c0.7,0.6,1.3,1.1,1.7,1.5c0.4,0.4,0.6,0.8,0.6,1.2c0,0.7-0.3,1.3-0.8,1.9c-0.5,0.6-0.8,1.3-0.8,2.2 c0,1.6,0.8,2.9,2.4,4.1c1.7,1.3,3,2.2,3.9,2.9c0.9,0.7,1.5,1.2,1.9,1.5c0.4,0.4,0.5,0.7,0.5,1.1c0,1-0.2,2-0.6,2.8 c-0.4,0.9-0.6,1.8-0.6,2.7c0,0.8,0.5,1.7,1.4,2.4C31.3,55.3,32.3,55.7,33.2,55.7z' }), jsxRuntime.jsx("path", { d: 'M61.5,19.6c-1.7-3.9-4-7.3-6.9-10.2s-6.4-5.3-10.2-6.9C40.5,0.8,36.3,0,32,0c-4.4,0-8.5,0.8-12.3,2.5 c-3.9,1.7-7.3,4-10.2,6.9c-2.9,3-5.2,6.4-6.9,10.2C0.8,23.5,0,27.6,0,32c0,4.4,0.8,8.5,2.5,12.3c1.7,3.9,4,7.3,6.9,10.2 c2.9,3,6.3,5.3,10.2,6.9c3.9,1.7,8,2.5,12.3,2.5c4.4,0,8.5-0.8,12.4-2.5c3.9-1.7,7.3-4,10.2-6.9s5.3-6.4,6.9-10.2 c1.7-3.9,2.5-8,2.5-12.3C64,27.6,63.2,23.5,61.5,19.6z M57.5,42.7c-1.5,3.4-3.5,6.3-6,8.9s-5.5,4.6-8.8,6c-3.3,1.5-6.9,2.2-10.7,2.2 c-3.8,0-7.3-0.7-10.7-2.2c-3.3-1.5-6.3-3.5-8.8-6s-4.6-5.5-6-8.9S4.3,35.8,4.3,32S5,24.6,6.4,21.3s3.4-6.3,6-8.9s5.5-4.6,8.8-6 C24.6,5,28.2,4.2,32,4.2c3.8,0,7.4,0.7,10.7,2.2c3.3,1.5,6.3,3.5,8.9,6c2.6,2.6,4.6,5.5,6,8.9s2.2,6.9,2.2,10.7S59,39.3,57.5,42.7z' })] }));
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
function HareFill(props) {
|
|
1823
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 46.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M18.1,46.1c2.1,0,3.8-0.2,5.1-0.6c1.3-0.4,2.5-0.9,3.6-1.6l-6.6-5.5c-0.1,0-0.3,0-0.5,0c-0.2,0-0.4,0-0.6,0 c-0.5,0-1.2,0-2-0.1c-0.8-0.1-1.6-0.1-2.6-0.1c-1.2,0-2.1,0.3-2.8,0.9s-1,1.4-1,2.3c0,1.4,0.7,2.6,2,3.5 C14,45.7,15.8,46.1,18.1,46.1z' }), jsxRuntime.jsx("path", { d: 'M63.1,20.9c-0.6-1.4-1.4-2.7-2.4-3.7c-1-1.1-2.2-1.9-3.6-2.5c-1.4-0.6-2.9-0.9-4.5-0.9l-5.7-7.6c-1.6-2.1-3.4-3.7-5.2-4.7 C39.9,0.5,38,0,36.1,0c-0.8,0-1.6,0.1-2.5,0.3S31.8,0.8,31,1.2c-0.8,0.4-1.5,0.8-2,1.4s-0.8,1.1-0.8,1.7c0,0.6,0.3,1.2,1,1.9 c0.7,0.7,1.5,1.4,2.4,2c0.9,0.7,1.9,1.3,2.8,1.8l12.3,7.5c-0.5,0.4-0.9,0.8-1.4,1c-0.5,0.2-0.9,0.4-1.5,0.4c-0.8,0-1.7-0.2-2.6-0.7 c-0.9-0.5-2-1.1-3.3-1.8c-1.6-1-3.2-1.9-4.7-2.7c-1.5-0.9-3-1.7-4.4-2.4c-1.5-0.7-3-1.2-4.5-1.7s-3.1-0.6-4.9-0.6 c-2.4,0-4.5,0.4-6.5,1.3s-3.7,2.2-5.2,4S5,18.5,4,21.2c-1.1,0-2.1,0.4-2.9,1S0,23.8,0,24.9c0,1.2,0.4,2.2,1.3,2.9 c0.9,0.7,2,1.1,3.3,1.1c1,1.4,2.3,2.6,3.7,3.5c1.5,0.9,3.1,1.6,4.8,2s3.7,0.6,5.7,0.6c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0,0.5,0l8.7,7.2 c1.1,1,2,1.6,2.7,1.8c0.7,0.3,1.5,0.4,2.3,0.4c0.8,0,1.5-0.1,2.3-0.4c0.8-0.2,1.9-0.4,3.3-0.4c0.9,0,1.7,0.1,2.3,0.2 s1.1,0.2,1.6,0.4c0.5,0.1,1.1,0.2,1.8,0.2c1.6,0,2.8-0.3,3.6-0.9c0.8-0.6,1.2-1.5,1.2-2.6c0-1.3-0.4-2.4-1.3-3.3 c-0.9-0.9-2.1-1.7-3.6-2.2c-1.6-0.5-3.4-0.8-5.6-0.8c-1.1,0-2,0-2.7,0.1c-0.7,0.1-1.4,0.1-1.9,0.3c-0.6,0.1-1.1,0.2-1.7,0.4 l-2.3-5.3c-0.8-1.7-1.7-3.1-2.7-4.4s-2.3-2.2-3.7-2.9c-1.4-0.7-2.9-1-4.7-1h-2.5c-0.9,0-1.4-0.4-1.4-1.2c0-0.7,0.4-1.1,1.1-1.3 c0.8-0.2,1.6-0.3,2.6-0.3c3.1,0,5.8,0.9,8.1,2.6c2.3,1.7,4.2,4.3,5.6,7.8l1.5,3.6c0.7-0.1,1.5-0.3,2.2-0.3c0.8-0.1,1.6-0.1,2.3-0.1 c0.6,0,1.2,0,1.8,0.1c0.6,0,1.2,0.1,1.8,0.2c0.6-0.5,1.3-1,2.1-1.5c0.8-0.5,1.7-1,2.8-1.4c0.8,0.5,1.6,1,2.5,1.4 c0.9,0.4,1.8,0.7,2.7,0.9c0.9,0.2,1.9,0.3,2.8,0.3c2,0,3.6-0.2,4.8-0.6c1.3-0.4,2.2-1,2.8-2c0.6-1,0.9-2.4,0.9-4.3 C64,23.9,63.7,22.4,63.1,20.9z M56.2,24c-0.3,0.4-0.8,0.6-1.2,0.6c-0.5,0-0.9-0.2-1.2-0.5c-0.3-0.3-0.5-0.8-0.5-1.2 c0-0.5,0.2-0.9,0.5-1.3S54.5,21,55,21c0.5,0,0.9,0.2,1.2,0.5c0.3,0.3,0.5,0.7,0.5,1.2C56.7,23.2,56.6,23.6,56.2,24z' })] }));
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
function House(props) {
|
|
1827
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [jsxRuntime.jsx("path", { d: 'M24.3,53.6h15.5V34c0-1.4-0.7-2-2-2H26.3c-0.6,0-1.1,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.5V53.6z' }), jsxRuntime.jsx("path", { d: 'M13.8,56.3h36.3c1.9,0,3.4-0.5,4.4-1.6c1.1-1,1.6-2.5,1.6-4.4V20.8l-4.3-2.9v31.5c0,1.8-0.9,2.7-2.6,2.7H14.7 c-1.7,0-2.6-0.9-2.6-2.7V17.8l-4.3,2.9v29.6c0,1.9,0.5,3.3,1.6,4.4C10.4,55.8,11.9,56.3,13.8,56.3z' }), jsxRuntime.jsx("path", { d: 'M0,26.5C0,27,0.2,27.5,0.6,28c0.4,0.4,1,0.7,1.7,0.7c0.4,0,0.7-0.1,1-0.3c0.3-0.2,0.6-0.4,0.9-0.6L31.1,5.2 c0.6-0.5,1.3-0.5,1.9,0l26.8,22.5c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.2,0.7,0.3,1,0.3c0.6,0,1.2-0.2,1.6-0.5c0.4-0.4,0.7-0.9,0.7-1.5 c0-0.8-0.3-1.4-0.8-1.8L35.3,1.3C34.3,0.4,33.2,0,32,0c-1.2,0-2.2,0.4-3.2,1.3L0.9,24.7C0.3,25.2,0,25.8,0,26.5z' }), jsxRuntime.jsx("path", { d: 'M49.4,14.4l6.7,5.7V7.7c0-1.3-0.6-1.9-1.9-1.9h-2.9c-0.6,0-1.1,0.2-1.4,0.5c-0.4,0.4-0.5,0.8-0.5,1.4V14.4z' })] }));
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
function HouseDeskclock(props) {
|
|
1831
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [jsxRuntime.jsx("path", { d: 'M13.8,56.3h36.3c3.8,0,6-2.2,6-5.9V20.8l-4.3-2.9v31.5c0,1.8-0.9,2.7-2.6,2.7H14.7c-1.7,0-2.6-0.9-2.6-2.7V17.8l-4.3,2.9 v29.6C7.7,54.2,9.9,56.3,13.8,56.3z' }), jsxRuntime.jsx("path", { d: 'M0,26.5c0,1.1,0.9,2.1,2.3,2.1c0.7,0,1.4-0.4,1.9-0.9L31.1,5.2c0.6-0.5,1.3-0.5,1.9,0l26.8,22.5c0.6,0.4,1.2,0.9,1.9,0.9 c1.3,0,2.3-0.8,2.3-2.1c0-0.8-0.2-1.4-0.8-1.8L35.3,1.3c-2-1.7-4.4-1.7-6.5,0L0.9,24.7C0.3,25.2,0,25.9,0,26.5z' }), jsxRuntime.jsx("path", { d: 'M49.4,14.4l6.7,5.7V7.7c0-1.2-0.8-1.9-1.9-1.9h-2.9c-1.2,0-1.9,0.7-1.9,1.9V14.4z' }), jsxRuntime.jsx("path", { d: 'M18.6,40v3.4c0,1.9,0.9,2.8,2.8,2.8h3.8C22.3,44.9,20.1,42.7,18.6,40z' }), jsxRuntime.jsx("path", { d: 'M45.5,40c-1.6,2.8-3.8,4.9-6.6,6.3h3.8c1.9,0,2.8-0.9,2.8-2.8V40z' }), jsxRuntime.jsx("path", { d: 'M27.8,30l3.4,3.4c0.5,0.5,1.3,0.5,1.7,0l5.3-5.3c0.5-0.5,0.5-1.3,0-1.7c-0.5-0.5-1.2-0.5-1.7,0L32,30.8l-2.5-2.5 c-0.5-0.5-1.3-0.5-1.7,0C27.3,28.8,27.3,29.6,27.8,30z' }), jsxRuntime.jsx("path", { d: 'M31.9,18.9c-7.4,0-13.5,6.1-13.5,13.5c0,7.4,6.1,13.5,13.5,13.5c7.4,0,13.5-6.1,13.5-13.5C45.4,25,39.3,18.9,31.9,18.9z M32,42.5c-5.6,0-10.1-4.5-10.1-10.1c0-5.6,4.5-10.1,10.1-10.1c5.6,0,10.1,4.5,10.1,10.1C42.1,38,37.6,42.5,32,42.5z' })] }));
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
function HouseFill(props) {
|
|
1835
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [jsxRuntime.jsx("path", { d: 'M33.6,10.7c-0.5-0.4-1-0.6-1.6-0.6c-0.6,0-1.1,0.2-1.6,0.6l-22,18.5v21.3c0,1.8,0.5,3.3,1.6,4.3c1.1,1,2.5,1.6,4.4,1.6h35.3 c1.9,0,3.4-0.5,4.4-1.6c1.1-1,1.6-2.5,1.6-4.3V29.2L33.6,10.7z M38.9,52H25.1V34.3c0-0.6,0.2-1.1,0.6-1.5c0.4-0.4,0.9-0.6,1.5-0.6 h9.7c1.4,0,2,0.7,2,2V52z' }), jsxRuntime.jsx("path", { d: 'M0,26.5C0,27,0.2,27.5,0.6,28c0.4,0.4,1,0.7,1.7,0.7c0.4,0,0.7-0.1,1-0.3c0.3-0.2,0.6-0.4,0.9-0.6L31.1,5.2 c0.6-0.5,1.3-0.5,1.9,0l26.8,22.5c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.2,0.7,0.3,1,0.3c0.6,0,1.2-0.2,1.6-0.5c0.4-0.4,0.7-0.9,0.7-1.5 c0-0.8-0.3-1.4-0.8-1.8L35.3,1.3C34.3,0.4,33.2,0,32,0c-1.2,0-2.2,0.4-3.2,1.3L0.9,24.7C0.3,25.2,0,25.8,0,26.5z' }), jsxRuntime.jsx("path", { d: 'M48.9,14.4l6.8,5.7V7.7c0-1.3-0.6-1.9-1.9-1.9h-2.9c-0.6,0-1.1,0.2-1.4,0.5c-0.4,0.4-0.5,0.8-0.5,1.4V14.4z' })] }));
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
function IPhoneHouse(props) {
|
|
1839
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 32.3 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M19,5h-5.6c-0.9,0-1.6,0.7-1.6,1.6c0,0.9,0.7,1.6,1.6,1.6H19c0.9,0,1.6-0.7,1.6-1.6C20.6,5.7,19.9,5,19,5z' }), jsxRuntime.jsx("path", { d: 'M30.5,1.8C29.3,0.6,27.7,0,26.1,0H6.3C2.8,0,0,2.8,0,6.3v51.5C0,61.2,2.8,64,6.3,64h19.8c3.4,0,6.3-2.8,6.3-6.3V6.3 C32.3,4.6,31.6,3,30.5,1.8z M29,6.3v51.5c0,1.6-1.3,2.9-3.1,2.9H6.4c-1.6,0-3.1-1.4-3.1-2.9V6.3c0-1.7,1.4-3.1,3.1-3.1h19.6 C27.6,3.2,29,4.6,29,6.3z' }), jsxRuntime.jsx("path", { d: 'M22.4,27.6V39c0,0.3-0.1,0.4-0.4,0.4H10.5c-0.3,0-0.4-0.1-0.4-0.4V27.6l-2.4,1.6v10.1c0,1.5,1,2.5,2.5,2.5h12.1 c1.5,0,2.5-0.9,2.5-2.5V29.2L22.4,27.6z' }), jsxRuntime.jsx("path", { d: 'M27,30.4l-9.3-7.8c-0.8-0.7-1.9-0.7-2.8,0l-9.3,7.8c-0.3,0.2-0.5,0.6-0.5,1c0,0.7,0.6,1.2,1.3,1.2c0.4,0,0.7-0.2,0.9-0.4 l8.9-7.5l8.9,7.5c0.2,0.2,0.5,0.4,0.9,0.4c0.7,0,1.2-0.5,1.2-1.2C27.5,31,27.3,30.7,27,30.4z' }), jsxRuntime.jsx("path", { d: 'M23.7,24h-1c-0.7,0-1.1,0.5-1.1,1.1v2.5l3.2,2.7v-5.2C24.8,24.5,24.3,24,23.7,24z' }), jsxRuntime.jsx("path", { d: 'M17.6,32.7H15c-0.8,0-1.4,0.6-1.4,1.4v6h5.6v-6C19.1,33.4,18.4,32.7,17.6,32.7z' })] }));
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
function LightbulbFill(props) {
|
|
1843
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 36.8 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M0,17c0,10.6,7,13.2,8.1,31.5c0.1,1,0.7,1.6,1.7,1.6H27c1.1,0,1.7-0.6,1.7-1.6c1.1-18.3,8.1-20.9,8.1-31.5 c0-9.5-8.1-17-18.4-17C8.1,0,0,7.5,0,17z' }), jsxRuntime.jsx("path", { d: 'M9.7,56h17.4c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6H9.7c-0.9,0-1.6,0.7-1.6,1.6C8.1,55.3,8.8,56,9.7,56z' }), jsxRuntime.jsx("path", { d: 'M18.4,64c4.3,0,7.8-2.1,8.1-5.2H10.3C10.5,61.9,14.1,64,18.4,64z' })] }));
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
function LightbulbLed(props) {
|
|
1847
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 36.8 64', ...props, children: [jsxRuntime.jsx("rect", { width: '27.9', height: '3.6', x: '4.45', y: '28' }), jsxRuntime.jsx("path", { d: 'M18.4,0C8.1,0,0,7.5,0,17c0,10.6,6.3,13.2,8.1,31.5c0.1,1,0.7,1.6,1.7,1.6H27c1.1,0,1.6-0.6,1.7-1.6 c1.7-18.3,8.1-20.9,8.1-31.5C36.8,7.5,28.7,0,18.4,0z M24.9,45.9h-13C9.4,26.7,4.2,24.8,4.2,17c0-7.4,6.5-12.8,14.3-12.8 c7.7,0,14.3,5.4,14.3,12.8C32.7,24.8,27.4,26.7,24.9,45.9z' }), jsxRuntime.jsx("path", { d: 'M9.7,56h17.4c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6H9.7c-0.9,0-1.6,0.7-1.6,1.6C8.1,55.3,8.8,56,9.7,56z' }), jsxRuntime.jsx("path", { d: 'M18.4,64c4.3,0,7.8-2.1,8.1-5.2H10.3C10.5,61.9,14.1,64,18.4,64z' })] }));
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
function LightRibbon(props) {
|
|
1851
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 61.2', ...props, children: [jsxRuntime.jsx("path", { d: 'M63.2,32.9l-3.9-6.8c-1.1-1.8-2.6-2.6-4.4-2.6H34.7l12.1-7c2.7-1.6,3.3-4,1.8-6.6L44.7,3c-1.6-2.7-4-3.3-6.7-1.8L2.6,21.7 c-2.7,1.6-3.4,4-1.8,6.7l3.9,6.8c1.1,1.9,2.7,2.6,4.6,2.6h19.9l-12.1,7c-2.7,1.6-3.3,4-1.8,6.6l3.9,6.9c1.6,2.7,4,3.3,6.6,1.8 l35.4-20.4C64.1,38,64.7,35.6,63.2,32.9z M7.6,33.1l-3.6-6.1c-0.5-1-0.4-1.8,0.6-2.4L39.5,4.4c0.9-0.5,1.7-0.3,2.3,0.7l3.6,6.2 c0.5,0.9,0.3,1.8-0.6,2.3L10,33.8C9.1,34.3,8.2,34.1,7.6,33.1z M16.1,34.3L28.6,27h19.2l-12.5,7.2H16.1z M59.4,36.7L24.5,56.8 c-0.9,0.5-1.7,0.3-2.3-0.6l-3.6-6.2c-0.5-0.9-0.3-1.8,0.6-2.3L54,27.5c0.9-0.5,1.8-0.3,2.3,0.7l3.6,6.1 C60.5,35.3,60.3,36.1,59.4,36.7z' }), jsxRuntime.jsx("path", { d: 'M42.5,2.8L44,5.5l4.6-2.7c0.7-0.4,1-1.3,0.6-2.1c-0.4-0.7-1.3-1-2.1-0.6L42.5,2.8z' }), jsxRuntime.jsx("path", { d: 'M46.2,9.2l1.6,2.7l4.6-2.7c0.8-0.5,1.1-1.2,0.6-2.1c-0.4-0.8-1.3-1-2.1-0.6L46.2,9.2z' }), jsxRuntime.jsx("path", { d: 'M36.5,12.3c0.5,1,1.8,1.4,2.8,0.8c1-0.6,1.3-1.9,0.8-2.9c-0.6-1-1.8-1.3-2.8-0.8C36.2,10.1,35.9,11.3,36.5,12.3z' }), jsxRuntime.jsx("path", { d: 'M29.7,16.2c0.5,1,1.8,1.4,2.8,0.8c1-0.6,1.4-1.9,0.8-2.9c-0.5-1.1-1.8-1.4-2.8-0.8C29.4,14,29.1,15.2,29.7,16.2z' }), jsxRuntime.jsx("path", { d: 'M22.9,20.2c0.6,1,1.9,1.3,2.9,0.8c1-0.6,1.3-1.9,0.7-2.9c-0.6-1-1.9-1.4-2.8-0.8C22.7,17.9,22.3,19.1,22.9,20.2z' }), jsxRuntime.jsx("path", { d: 'M16.1,24.1c0.6,1,1.9,1.3,2.9,0.7c1-0.6,1.3-1.9,0.7-2.9c-0.5-1-1.8-1.4-2.8-0.8C15.9,21.7,15.5,23.1,16.1,24.1z' }), jsxRuntime.jsx("path", { d: 'M9.3,28c0.6,1,1.8,1.3,2.9,0.8c0.9-0.6,1.3-1.9,0.7-2.9c-0.6-1-1.8-1.3-2.9-0.8C9.1,25.7,8.8,27,9.3,28z' }), jsxRuntime.jsx("path", { d: 'M21.5,58.4L20,55.7l-4.6,2.7c-0.7,0.4-1,1.3-0.6,2.1c0.4,0.7,1.3,1,2.1,0.6L21.5,58.4z' }), jsxRuntime.jsx("path", { d: 'M17.8,52.1l-1.6-2.7L11.7,52c-0.8,0.5-1.1,1.2-0.5,2.1c0.4,0.8,1.3,1,2,0.6L17.8,52.1z' }), jsxRuntime.jsx("path", { d: 'M51,35.4c0.6,1,1.8,1.3,2.9,0.8c1.1-0.5,1.4-1.9,0.8-2.9c-0.6-1-1.8-1.3-2.9-0.8C50.8,33.1,50.5,34.4,51,35.4z' }), jsxRuntime.jsx("path", { d: 'M44.3,39.3c0.5,1,1.8,1.4,2.8,0.8c1-0.5,1.4-1.9,0.8-2.9c-0.6-1-1.9-1.3-2.9-0.7C44,37,43.6,38.3,44.3,39.3z' }), jsxRuntime.jsx("path", { d: 'M37.5,43.2c0.6,1,1.9,1.4,2.8,0.8c1-0.6,1.4-1.8,0.8-2.9c-0.6-1-1.9-1.3-2.9-0.8C37.2,40.9,36.9,42.2,37.5,43.2z' }), jsxRuntime.jsx("path", { d: 'M30.7,47.1c0.5,1.1,1.8,1.4,2.8,0.8c1-0.6,1.3-1.8,0.7-2.9c-0.5-1-1.8-1.3-2.8-0.8C30.4,44.8,30,46.1,30.7,47.1z' }), jsxRuntime.jsx("path", { d: 'M23.9,51.1c0.6,1,1.8,1.3,2.8,0.8c1-0.7,1.4-1.9,0.8-2.9c-0.5-1-1.8-1.4-2.8-0.8C23.7,48.8,23.3,50,23.9,51.1z' })] }));
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
function ListBulletClipboardFill(props) {
|
|
1855
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 44.5 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M36.5,7.3h-0.6c0,0.1,0,0.2,0,0.3v3.1c0,3.3-2.2,5.7-5.5,5.7H14.1c-3.3,0-5.5-2.4-5.5-5.7V7.7c0-0.1,0-0.2,0-0.3H7.9 C2.7,7.3,0,10.1,0,15.6v40.1C0,61.3,2.7,64,8.2,64h28.1c5.5,0,8.2-2.7,8.2-8.3V15.6C44.5,10.1,41.7,7.3,36.5,7.3z M10.7,25 c1.3,0,2.3,1,2.3,2.3c0,1.3-1.1,2.3-2.3,2.3c-1.3,0-2.3-1.1-2.3-2.3C8.4,26.1,9.5,25,10.7,25z M10.7,34.7c1.3,0,2.3,1,2.3,2.3 c0,1.3-1.1,2.3-2.3,2.3c-1.3,0-2.3-1-2.3-2.3C8.4,35.7,9.4,34.7,10.7,34.7z M10.7,49.5c-1.3,0-2.3-1.1-2.3-2.3 c0-1.2,1.1-2.3,2.3-2.3c1.3,0,2.3,1.1,2.3,2.3C13.1,48.5,12,49.5,10.7,49.5z M34.3,48.9H18c-1,0-1.7-0.8-1.7-1.7 c0-0.9,0.7-1.7,1.7-1.7h16.3c1,0,1.7,0.8,1.7,1.7C36,48.1,35.3,48.9,34.3,48.9z M34.3,38.7H18c-1,0-1.7-0.7-1.7-1.7 c0-1,0.7-1.7,1.7-1.7h16.3c1,0,1.7,0.8,1.7,1.7C36,38,35.3,38.7,34.3,38.7z M34.3,29H18c-1,0-1.7-0.8-1.7-1.7c0-0.9,0.8-1.7,1.7-1.7 h16.3c0.9,0,1.7,0.8,1.7,1.7C36,28.3,35.3,29,34.3,29z' }), jsxRuntime.jsx("path", { d: 'M30.4,5.4H28c-0.2-3-2.7-5.4-5.7-5.4c-3.1,0-5.6,2.4-5.8,5.4h-2.4c-1.5,0-2.5,1-2.5,2.6v2.8c0,1.6,0.9,2.6,2.5,2.6h16.3 c1.5,0,2.5-1,2.5-2.6V8C32.9,6.4,31.9,5.4,30.4,5.4z M22.2,7.9c-1.3,0-2.3-1.1-2.3-2.3c0-1.3,1.1-2.3,2.3-2.3s2.3,1,2.3,2.3 C24.5,6.9,23.5,7.9,22.2,7.9z' })] }));
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
function Magnifyingglass(props) {
|
|
1859
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 63.4 64', ...props, children: jsxRuntime.jsx("path", { d: 'M62.3,57.5L46.4,41.6c3.3-4.4,5.3-9.8,5.3-15.7C51.8,11.6,40.2,0,25.9,0C11.6,0,0,11.6,0,25.9c0,14.3,11.6,25.9,25.9,25.9 c5.6,0,10.8-1.8,15-4.9l16,16c0.8,0.7,1.7,1.1,2.7,1.1c2.2,0,3.7-1.7,3.7-3.8C63.4,59.1,63,58.2,62.3,57.5z M25.9,46.2 c-11.3,0-20.3-9.1-20.3-20.3c0-11.2,9.1-20.3,20.3-20.3c11.2,0,20.3,9.1,20.3,20.3C46.2,37.1,37.1,46.2,25.9,46.2z' }) }));
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
function MapPinEllipse(props) {
|
|
1863
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 56 56', ...props, children: jsxRuntime.jsx("path", { d: 'M 27.9883 43.1992 C 28.9492 43.1992 30.1680 39.4492 30.1680 32.5352 L 30.1680 21.4961 C 33.9883 20.5117 36.8008 17.0430 36.8008 12.9180 C 36.8008 8.0664 32.8867 4.1055 27.9883 4.1055 C 23.1133 4.1055 19.1992 8.0664 19.1992 12.9180 C 19.1992 17.0430 21.9883 20.5117 25.8086 21.4726 L 25.8086 32.5352 C 25.8086 39.4258 27.0508 43.1992 27.9883 43.1992 Z M 25.4805 13.4102 C 23.8867 13.4102 22.4805 12.0039 22.4805 10.3867 C 22.4805 8.7461 23.8867 7.3633 25.4805 7.3633 C 27.1211 7.3633 28.4805 8.7461 28.4805 10.3867 C 28.4805 12.0039 27.1211 13.4102 25.4805 13.4102 Z M 27.9883 51.8945 C 42.1680 51.8945 50.3711 46.9727 50.3711 41.7461 C 50.3711 35.4414 40.3399 31.6211 33.8711 31.5977 L 33.8711 35.2539 C 38.3711 35.2774 45.3789 37.7148 45.3789 41.1836 C 45.3789 44.8633 38.7696 47.9570 27.9883 47.9570 C 17.2305 47.9570 10.6211 44.8867 10.6211 41.1836 C 10.6211 37.7148 17.6289 35.2774 22.1289 35.2539 L 22.1289 31.5977 C 15.6602 31.6211 5.6289 35.4414 5.6289 41.7461 C 5.6289 46.9727 13.8321 51.8945 27.9883 51.8945 Z' }) }));
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
function MinusPlusBatteryblock(props) {
|
|
1867
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 50', ...props, children: [jsxRuntime.jsx("path", { d: 'M13.9,30.4h11.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H13.9c-1.1,0-2,0.9-2,2S12.7,30.4,13.9,30.4z' }), jsxRuntime.jsx("path", { d: 'M44.4,36.7c1.1,0,2-0.9,2-2v-4.2h4.2c1.1,0,2-0.9,2-2s-0.9-2-2-2h-4.2v-4.2c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v4.2h-4.2 c-1.1,0-2,0.9-2,2s0.9,2,2,2h4.2v4.2C42.4,35.8,43.3,36.7,44.4,36.7z' }), jsxRuntime.jsx("path", { d: 'M55.5,6.9h-3.8V3.3c0-2.1-1.2-3.3-3.3-3.3h-8c-2.1,0-3.3,1.3-3.3,3.3v3.6H26.8V3.3c0-2.1-1.2-3.3-3.3-3.3h-8 c-2.1,0-3.3,1.3-3.3,3.3v3.6H8.5C2.9,6.9,0,9.8,0,15.4v26.2C0,47.2,2.9,50,8.5,50h47c5.7,0,8.5-2.8,8.5-8.4V15.4 C64,9.8,61.2,6.9,55.5,6.9z M59.6,41.4c0,2.8-1.5,4.2-4.2,4.2H8.6c-2.7,0-4.2-1.5-4.2-4.2V15.6c0-2.8,1.5-4.2,4.2-4.2h46.8 c2.7,0,4.2,1.5,4.2,4.2V41.4z' })] }));
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
function Network(props) {
|
|
1871
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M5.1,18.7c7.8,8.3,18.7,13,30.3,13c9.1,0,17.9-3.1,24.9-8.6l-1.7-3.5c-6.5,5.4-14.6,8.3-23.2,8.4 c-11.1,0-21.5-4.8-28.5-13.1L5.1,18.7z' }), jsxRuntime.jsx("path", { d: 'M1.7,36.6C18,50.5,41.4,53.1,60.2,43.3L60.1,39c-18.3,10.6-41.7,8-57.5-6.6L1.7,36.6z' }), jsxRuntime.jsx("path", { d: 'M17.2,58.2l4.5,1.1c-2.1-5.1-3.3-10.4-3.4-15.9C17.5,27.7,24.2,12.9,36.2,3l-4-1.6C20.3,12,13.8,27.4,14.6,43.4 C14.7,48.4,15.6,53.4,17.2,58.2z' }), jsxRuntime.jsx("path", { d: 'M37.9,61.3l3.5-1.6c-5.9-8.3-9.1-18.1-9.1-28.3c0-9.7,2.8-19,8.1-26.9l-3.7-1.3c-5.3,8.4-8.2,18.2-8.2,28.2 C28.6,42.2,31.9,52.5,37.9,61.3z' }), jsxRuntime.jsx("path", { d: 'M56.4,49.6l2.5-2.9c-10.5-6-17.1-17.1-17.3-29.4c0-4.4,0.7-8.8,2.3-12.8l-3.6-1c-1.7,4.4-2.5,9-2.4,13.8 C38,30.7,45.1,42.8,56.4,49.6z' }), jsxRuntime.jsx("path", { d: 'M18.4,31.3c2.7,0,4.9-2.2,4.9-4.9c0-2.7-2.2-4.9-4.9-4.9c-2.7,0-4.9,2.2-4.9,4.9C13.4,29.1,15.6,31.3,18.4,31.3z' }), jsxRuntime.jsx("path", { d: 'M42.4,33.9c2.7,0,4.8-2.2,4.8-4.9c0-2.6-2.2-4.8-4.8-4.8c-2.7,0-4.9,2.2-4.9,4.8C37.5,31.8,39.7,33.9,42.4,33.9z' }), jsxRuntime.jsx("path", { d: 'M33.1,52c2.7,0,4.9-2.2,4.9-4.9c0-2.7-2.2-4.9-4.9-4.9c-2.7,0-4.9,2.2-4.9,4.9C28.1,49.9,30.3,52,33.1,52z' }), jsxRuntime.jsx("path", { d: 'M32,0C14.5,0,0,14.5,0,32s14.5,32,32,32c17.5,0,32-14.5,32-32S49.4,0,32,0z M32,59.7C16.8,59.7,4.3,47.1,4.3,32 S16.8,4.3,32,4.3c15.2,0,27.8,12.6,27.8,27.7S47.1,59.7,32,59.7z' })] }));
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
function NetworkShield(props) {
|
|
1875
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 58.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M53.4,14.8c-1.7-3-3.8-5.5-6.3-7.8c-2.5-2.2-5.4-3.9-8.5-5.2s-6.5-1.8-10-1.8c-3.9,0-7.5,0.7-10.9,2.2s-6.4,3.5-9.1,6.2 s-4.7,5.6-6.2,9.1s-2.2,7.1-2.2,10.9c0,3.9,0.7,7.5,2.2,10.9s3.5,6.4,6.2,9c2.6,2.6,5.6,4.7,9.1,6.2c3.4,1.5,7.1,2.2,11,2.3 c1.7,0,3.3-0.2,5-0.5c1.7-0.3,3.2-0.7,4.8-1.3c0.2-0.1,0.4-0.2,0.6-0.2s0.4-0.2,0.6-0.2c-0.5-0.5-0.9-1-1.3-1.5s-0.8-1.1-1.1-1.7 c-0.2,0.1-0.3,0.2-0.5,0.2s-0.3,0.1-0.5,0.2c-2.4-3.7-4.2-7.6-5.4-11.7c-1.2-4-1.8-8.1-1.8-12.3c0-4.2,0.6-8.1,1.7-12 c1.1-3.9,2.7-7.5,4.9-10.9c2.8,0.9,5.5,2.2,7.8,4s4.3,3.9,5.9,6.4s2.7,5.2,3.3,8.1c0.7,0,1.3,0.1,1.9,0.2c0.6,0.2,1.3,0.4,2.1,0.6 C56.1,20.9,55.1,17.8,53.4,14.8z M27.2,15.3c-1.1,4-1.7,8.1-1.7,12.4c0,3,0.3,5.9,0.8,8.8c0.5,2.9,1.3,5.6,2.4,8.3 c1.1,2.7,2.3,5.2,3.9,7.8c-0.7,0.1-1.4,0.2-2,0.3c-0.6,0.1-1.4,0.2-2.1,0.2c-3.4,0-6.5-0.6-9.5-1.9c-3-1.3-5.6-3.1-7.9-5.4 s-4-4.9-5.4-7.9c-1.3-3-1.9-6.2-1.9-9.5s0.6-6.5,1.9-9.5s3.1-5.6,5.3-7.9s4.9-4,7.9-5.4s6.2-1.9,9.5-1.9c1.2,0,2.4,0.1,3.5,0.2 C30,7.5,28.3,11.3,27.2,15.3z' }), jsxRuntime.jsx("path", { d: 'M4.7,16.6c2.3,2.5,4.8,4.5,7.7,6.2s5.9,3,9.1,3.9c3.2,0.9,6.6,1.4,10,1.4c4,0,8-0.7,11.7-2c3.8-1.3,7.2-3.2,10.4-5.7 l-1.5-3.1c-2.8,2.4-6,4.2-9.6,5.5c-3.5,1.3-7.2,1.9-10.9,1.9c-5,0-9.6-1-14-3c-4.4-2.1-8.1-4.9-11.3-8.5L4.7,16.6z' }), jsxRuntime.jsx("path", { d: 'M15.5,51.6l4,0.9c-1-2.2-1.7-4.6-2.2-6.9s-0.7-4.7-0.8-7.2c-0.3-4.6,0.2-9.1,1.4-13.4c1.2-4.3,3-8.4,5.4-12.3 s5.4-7.1,8.9-10l-3.5-1.4C25.2,4.5,22.2,8,19.8,12s-4.2,8.2-5.4,12.7s-1.6,9.1-1.4,13.8c0.1,2.2,0.2,4.4,0.6,6.6 C14.2,47.4,14.8,49.5,15.5,51.6z' }), jsxRuntime.jsx("path", { d: 'M30.8,40.3c-5.1-0.1-10.1-1.1-15-3.1c-4.8-1.9-9.3-4.7-13.3-8.4l-0.8,3.8c4.2,3.6,8.8,6.3,13.9,8.2 c5.1,1.9,10.3,2.8,15.6,3L30.8,40.3z' }), jsxRuntime.jsx("path", { d: 'M39,25.5c-0.6-1.6-1-3.2-1.3-5c-0.3-1.7-0.5-3.4-0.5-5.2c-0.1-1.9,0.1-3.9,0.5-5.8C38,7.6,38.5,5.8,39.2,4l-3.2-0.9 c-0.7,1.9-1.3,3.9-1.7,6s-0.5,4.2-0.5,6.3c0.1,3.8,0.7,7.5,2,11.1L39,25.5z' }), jsxRuntime.jsx("path", { d: 'M16.5,27.8c1.2,0,2.2-0.4,3.1-1.3c0.9-0.9,1.3-1.9,1.3-3.1s-0.4-2.2-1.3-3.1c-0.9-0.9-1.9-1.3-3.1-1.3 c-1.2,0-2.2,0.4-3.1,1.3c-0.9,0.9-1.3,1.9-1.3,3.1s0.4,2.2,1.3,3.1C14.2,27.4,15.3,27.8,16.5,27.8z' }), jsxRuntime.jsx("path", { d: 'M37.4,29.1c1.2,0,2.2-0.4,3-1.3c0.9-0.9,1.3-1.8,1.3-3c0-1.2-0.4-2.2-1.3-3s-1.8-1.3-3-1.3c-1.2,0-2.2,0.4-3,1.3 c-0.9,0.9-1.3,1.8-1.3,3c0,1.2,0.4,2.2,1.3,3C35.2,28.7,36.2,29.1,37.4,29.1z' }), jsxRuntime.jsx("path", { d: 'M29.4,46.1c1.2,0,2.2-0.4,3-1.3c0.9-0.9,1.3-1.9,1.3-3.1s-0.4-2.2-1.3-3c-0.9-0.9-1.9-1.3-3-1.3c-1.2,0-2.2,0.4-3.1,1.3 c-0.9,0.9-1.3,1.9-1.3,3c0,1.2,0.4,2.3,1.3,3.1C27.2,45.7,28.2,46.1,29.4,46.1z' }), jsxRuntime.jsx("path", { d: 'M63.6,32c-0.3-0.6-1-1.1-1.9-1.5c-0.5-0.2-1.1-0.4-1.9-0.7c-0.8-0.3-1.7-0.6-2.6-0.9c-0.9-0.3-1.8-0.6-2.6-0.9 s-1.4-0.5-1.8-0.6c-0.6-0.2-1.1-0.3-1.7-0.3s-1.1,0.1-1.5,0.2c-0.5,0.2-1.1,0.3-1.9,0.6s-1.7,0.6-2.6,1c-1,0.3-1.8,0.7-2.7,1 c-0.8,0.3-1.5,0.6-1.9,0.7C39.7,31,39,31.4,38.7,32c-0.3,0.6-0.6,1.3-0.6,2.2V45h0.1c0,1.4,0.2,2.7,0.7,3.8c0.5,1.1,1.1,2.1,2.1,3 s2.1,1.8,3.6,2.8c1.5,1,3.2,2,5.3,3.2c0.5,0.3,0.9,0.4,1.4,0.3s1-0.2,1.3-0.3c2.7-1.6,5-3,6.7-4.2c1.7-1.2,3-2.4,3.8-3.7 c0.8-1.3,1.2-2.9,1.2-4.8V34.2C64.2,33.3,64,32.6,63.6,32z M51.2,53.5c-0.3,0-0.6-0.1-0.9-0.2c-2.1-1.3-3.8-2.3-5-3.1 c-1.2-0.8-2-1.6-2.5-2.5c-0.5-0.8-0.7-1.9-0.7-3.2v-9.1c0-0.4,0.1-0.7,0.2-1c0.2-0.2,0.5-0.5,0.9-0.6c0.5-0.2,1-0.4,1.7-0.6 c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.2,1.1-0.4,1.6-0.6c0.2-0.1,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.1,0.5-0.1V53.5z ' })] }));
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
function NewspaperFill(props) {
|
|
1879
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 60.843', ...props, children: jsxRuntime.jsx("path", { d: 'M0,27.548V52.482a3.516,3.516,0,0,0,.444,1.776,3.033,3.033,0,0,0,1.184,1.183,3.514,3.514,0,0,0,1.775.444,3.516,3.516,0,0,0,1.776-.444,3.04,3.04,0,0,0,1.184-1.183,3.516,3.516,0,0,0,.444-1.776V21.851H5.919a6.965,6.965,0,0,0-3.181.666A5.185,5.185,0,0,0,.666,24.44,6.866,6.866,0,0,0,0,27.548Zm10.062,33.3H54.751c3.108,0,5.4-.74,6.955-2.294C63.26,57.069,64,54.776,64,51.742V8.977c0-3.034-.74-5.327-2.294-6.807S57.859-.124,54.751-.124H22.123c-3.108,0-5.4.74-6.955,2.294-1.554,1.48-2.294,3.773-2.294,6.807V54.554a10.61,10.61,0,0,1-.592,3.773A4.833,4.833,0,0,1,10.062,60.843Zm14.5-43.654a2.2,2.2,0,0,1-1.48-.592,2.018,2.018,0,0,1-.592-1.405,1.853,1.853,0,0,1,.592-1.332,2.066,2.066,0,0,1,1.48-.592H52.458a2.022,2.022,0,0,1,1.406.592,1.856,1.856,0,0,1,.591,1.332,2.021,2.021,0,0,1-.591,1.405,1.9,1.9,0,0,1-1.406.592Zm0,9.915a2.133,2.133,0,0,1-1.48-.518,1.661,1.661,0,0,1-.592-1.406,1.9,1.9,0,0,1,.592-1.406,2.066,2.066,0,0,1,1.48-.592H52.458a1.989,1.989,0,0,1,1.406,3.4,1.842,1.842,0,0,1-1.406.518Zm17.461,9.84a1.892,1.892,0,0,1-1.405-.592,1.851,1.851,0,0,1-.592-1.331,2.022,2.022,0,0,1,.592-1.406,1.892,1.892,0,0,1,1.405-.592H52.458a2.02,2.02,0,0,1,2,2,1.854,1.854,0,0,1-.591,1.331,1.9,1.9,0,0,1-1.406.592Zm0,10.211a1.892,1.892,0,0,1-1.405-.592,1.853,1.853,0,0,1-.592-1.332,2.2,2.2,0,0,1,.592-1.48,1.892,1.892,0,0,1,1.405-.592H52.458a2.022,2.022,0,0,1,1.406.592,2.07,2.07,0,0,1,.591,1.48,1.856,1.856,0,0,1-.591,1.332,1.9,1.9,0,0,1-1.406.592Zm-16.055,0a3.365,3.365,0,0,1-2.516-.888,3.481,3.481,0,0,1-.887-2.516V36.5a3.483,3.483,0,0,1,.887-2.515A3.481,3.481,0,0,1,25.97,33.1h6.955a3.091,3.091,0,0,1,3.4,3.4v7.251a3.368,3.368,0,0,1-.887,2.516,3.481,3.481,0,0,1-2.516.888Z' }) }));
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
function Number$1(props) {
|
|
1883
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 58.9 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M12.1,64c1.7,0,2.7-0.8,3-2.5l11.7-58c0-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.4,0-0.6c0-0.8-0.3-1.4-0.8-1.8C25.6,0.2,25,0,24.2,0 c-0.9,0-1.6,0.2-2.1,0.7c-0.5,0.5-0.8,1.1-0.9,1.9L9.5,60.5c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.8,0.2,1.4,0.7,1.8 C10.6,63.8,11.3,64,12.1,64z' }), jsxRuntime.jsx("path", { d: 'M33.4,64c1.7,0,2.7-0.8,3.1-2.5l11.7-58c0-0.1,0-0.3,0.1-0.5c0-0.2,0-0.4,0-0.6c0-0.8-0.3-1.4-0.8-1.8C47,0.2,46.3,0,45.6,0 c-0.9,0-1.6,0.2-2.1,0.7c-0.5,0.5-0.8,1.1-0.9,1.9L30.9,60.5c-0.1,0.3-0.1,0.7-0.1,1.1c0,0.8,0.2,1.4,0.7,1.8 C32,63.8,32.6,64,33.4,64z' }), jsxRuntime.jsx("path", { d: 'M6.9,22.5h49c0.9,0,1.6-0.3,2.2-0.9c0.6-0.6,0.9-1.3,0.9-2.2c0-0.7-0.2-1.4-0.7-1.9c-0.5-0.5-1.1-0.8-1.8-0.8h-49 c-0.9,0-1.6,0.3-2.2,0.9c-0.6,0.6-0.9,1.4-0.9,2.3c0,0.7,0.2,1.3,0.7,1.8C5.6,22.3,6.2,22.5,6.9,22.5z' }), jsxRuntime.jsx("path", { d: 'M2.4,45.6h49c0.9,0,1.6-0.3,2.2-0.9c0.6-0.6,0.9-1.3,0.9-2.2c0-0.7-0.2-1.4-0.7-1.9c-0.5-0.5-1.1-0.8-1.8-0.8H3.1 c-0.9,0-1.6,0.3-2.2,0.9C0.3,41.4,0,42.2,0,43.1c0,0.7,0.2,1.3,0.7,1.8C1.1,45.4,1.7,45.6,2.4,45.6z' })] }));
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
function PaperplaneFill(props) {
|
|
1887
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M38.2,64c1.1,0,2-0.4,2.8-1.3c0.8-0.9,1.5-2.1,2.1-3.5l20-52.2c0.3-0.7,0.5-1.4,0.6-2C63.9,4.3,64,3.7,64,3.2 c0-1-0.3-1.8-0.9-2.4C62.5,0.3,61.7,0,60.8,0c-0.5,0-1.1,0.1-1.7,0.2c-0.6,0.2-1.3,0.4-2,0.6L4.6,21c-1.3,0.5-2.4,1.1-3.3,1.9 C0.4,23.7,0,24.7,0,25.8c0,1.4,0.5,2.4,1.4,3c1,0.6,2.2,1.2,3.7,1.6l16.5,5c1,0.3,1.8,0.4,2.4,0.3c0.6-0.1,1.3-0.4,2-1L59.4,3.5 c0.4-0.4,0.8-0.4,1.2-0.1c0.2,0.1,0.3,0.3,0.3,0.6c0,0.2-0.1,0.4-0.3,0.6L29.4,38.2c-0.6,0.6-0.9,1.3-1,1.9c-0.1,0.6,0,1.4,0.3,2.5 l4.9,16.1c0.4,1.5,1,2.8,1.6,3.8C35.8,63.5,36.8,64,38.2,64z' }) }));
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
function Person(props) {
|
|
1891
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 60.4 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M58.3,51.2c-1.4-2.6-3.4-5-6-7.2c-2.6-2.3-5.8-4.1-9.5-5.5c-3.7-1.4-7.9-2.2-12.6-2.2c-4.7,0-8.9,0.7-12.6,2.2 c-3.7,1.4-6.9,3.3-9.5,5.5c-2.6,2.3-4.6,4.7-6,7.2c-1.4,2.6-2.1,5-2.1,7.2C0,62.2,2.8,64,8.5,64h43.4c5.6,0,8.5-1.8,8.5-5.5 C60.4,56.2,59.7,53.8,58.3,51.2z M54.5,58.6c-0.2,0.1-0.5,0.2-1,0.2H6.8c-0.4,0-0.8-0.1-1-0.2c-0.2-0.1-0.3-0.4-0.3-0.7 c0-1.4,0.5-3.1,1.6-4.9c1.1-1.9,2.7-3.6,4.8-5.4c2.1-1.7,4.7-3.2,7.7-4.3c3-1.1,6.6-1.7,10.5-1.7s7.5,0.6,10.5,1.7 c3,1.1,5.6,2.6,7.7,4.3c2.1,1.7,3.7,3.5,4.8,5.4c1.1,1.9,1.6,3.5,1.6,4.9C54.8,58.2,54.7,58.4,54.5,58.6z' }), jsxRuntime.jsx("path", { d: 'M43.1,7.8c-1.3-2.4-3.1-4.3-5.4-5.7C35.5,0.7,33,0,30.2,0c-2.7,0-5.2,0.7-7.5,2.1c-2.3,1.4-4.1,3.3-5.4,5.7s-2,5.1-2,8 c0,3,0.7,5.7,2,8.1c1.4,2.5,3.2,4.4,5.4,5.9c2.3,1.4,4.7,2.2,7.5,2.2c2.7,0,5.2-0.7,7.5-2.2c2.3-1.5,4.1-3.4,5.4-5.9s2-5.2,2-8.2 C45.1,12.8,44.5,10.2,43.1,7.8z M38.3,21.4c-0.9,1.7-2,3-3.4,4c-1.4,1-3,1.5-4.7,1.5c-1.7,0-3.2-0.5-4.6-1.5 c-1.4-1-2.6-2.3-3.4-3.9c-0.9-1.7-1.3-3.5-1.3-5.6c0-2,0.4-3.8,1.3-5.4c0.9-1.6,2-2.9,3.4-3.8c1.4-0.9,3-1.4,4.7-1.4 c1.7,0,3.3,0.5,4.7,1.4c1.4,0.9,2.6,2.2,3.4,3.8c0.8,1.6,1.3,3.4,1.3,5.4C39.6,17.8,39.1,19.7,38.3,21.4z' })] }));
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
function PersonCropSquare(props) {
|
|
1895
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.2,2.7C59.4,0.9,56.7,0,53.1,0H10.9C7.3,0,4.6,0.9,2.7,2.7C0.9,4.5,0,7.2,0,10.8v42.4c0,3.6,0.9,6.3,2.7,8.1 c1.8,1.8,4.5,2.7,8.2,2.7h42.2c3.6,0,6.4-0.9,8.2-2.7c1.8-1.8,2.7-4.5,2.7-8.1V10.8C64,7.2,63.1,4.5,61.2,2.7z M58.4,52.9 c0,1.8-0.5,3.2-1.4,4.1c-0.9,0.9-2.3,1.4-4,1.4H11c-1.7,0-3.1-0.5-4-1.4c-0.9-0.9-1.4-2.3-1.4-4.1V11.1C5.6,9.3,6.1,7.9,7,7 s2.3-1.4,4-1.4h42c1.7,0,3.1,0.5,4,1.4c0.9,0.9,1.4,2.3,1.4,4.1V52.9z' }), jsxRuntime.jsx("path", { d: 'M8.1,60.4h47.8c-0.5-2.4-1.5-4.7-2.9-6.7c-1.4-2-3.2-3.8-5.3-5.3c-2.1-1.5-4.5-2.7-7.2-3.5C37.9,44,35,43.6,32,43.6 c-3,0-5.9,0.4-8.5,1.3c-2.7,0.8-5.1,2-7.2,3.5c-2.1,1.5-3.9,3.3-5.3,5.3C9.5,55.8,8.6,58,8.1,60.4z' }), jsxRuntime.jsx("path", { d: 'M32,37.8c2.2,0,4.2-0.5,6-1.7c1.8-1.1,3.2-2.7,4.3-4.7c1.1-2,1.6-4.2,1.6-6.7c0-2.3-0.5-4.5-1.6-6.4 c-1.1-1.9-2.5-3.5-4.3-4.6S34.2,12,32,12c-2.2,0-4.2,0.6-6,1.7s-3.2,2.7-4.3,4.6s-1.6,4.1-1.6,6.4c0,2.5,0.5,4.7,1.6,6.6 c1.1,2,2.5,3.5,4.3,4.6S29.8,37.8,32,37.8z' })] }));
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
function PersonFill(props) {
|
|
1899
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 59.9 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M6.1,64h47.8c1.9,0,3.4-0.4,4.5-1.3c1.1-0.8,1.6-2,1.6-3.5c0-2.3-0.7-4.7-2.1-7.3c-1.4-2.5-3.4-4.9-6-7.1 c-2.6-2.2-5.7-4-9.4-5.4c-3.7-1.4-7.9-2.1-12.5-2.1c-4.6,0-8.8,0.7-12.5,2.1c-3.7,1.4-6.8,3.2-9.4,5.4s-4.6,4.6-6,7.1 C0.7,54.6,0,57,0,59.3c0,1.5,0.5,2.6,1.6,3.5S4.2,64,6.1,64z' }), jsxRuntime.jsx("path", { d: 'M30,31c2.6,0,4.9-0.7,7.1-2.1c2.2-1.4,3.9-3.3,5.2-5.6s2-5,2-8c0-2.9-0.7-5.5-2-7.8C40.9,5.1,39.2,3.3,37,2 c-2.2-1.3-4.5-2-7.1-2c-2.5,0-4.9,0.7-7,2c-2.2,1.4-3.9,3.2-5.2,5.5c-1.3,2.3-2,4.9-2,7.8c0,2.9,0.7,5.6,2,8c1.3,2.4,3,4.2,5.2,5.6 C25.1,30.3,27.4,31,30,31z' })] }));
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
function PersonFillQuestionmark(props) {
|
|
1903
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.2,2.7C59.4,0.9,56.7,0,53.1,0H10.9C7.3,0,4.6,0.9,2.7,2.7C0.9,4.5,0,7.2,0,10.8v42.4c0,3.6,0.9,6.3,2.7,8.1 c1.8,1.8,4.5,2.7,8.2,2.7h42.2c3.6,0,6.4-0.9,8.2-2.7c1.8-1.8,2.7-4.5,2.7-8.1V10.8C64,7.2,63.1,4.5,61.2,2.7z M58.4,52.9 c0,1.8-0.5,3.2-1.4,4.1c-0.9,0.9-2.3,1.4-4,1.4H11c-1.7,0-3.1-0.5-4-1.4c-0.9-0.9-1.4-2.3-1.4-4.1V11.1C5.6,9.3,6.1,7.9,7,7 s2.3-1.4,4-1.4h42c1.7,0,3.1,0.5,4,1.4c0.9,0.9,1.4,2.3,1.4,4.1V52.9z' }), jsxRuntime.jsx("path", { d: 'M8.1,60.4h47.8c-0.5-2.4-1.5-4.7-2.9-6.7c-1.4-2-3.2-3.8-5.3-5.3c-2.1-1.5-4.5-2.7-7.2-3.5C37.9,44,35,43.6,32,43.6 c-3,0-5.9,0.4-8.5,1.3c-2.7,0.8-5.1,2-7.2,3.5c-2.1,1.5-3.9,3.3-5.3,5.3C9.5,55.8,8.6,58,8.1,60.4z' }), jsxRuntime.jsx("path", { d: 'M32,37.8c2.2,0,4.2-0.5,6-1.7c1.8-1.1,3.2-2.7,4.3-4.7c1.1-2,1.6-4.2,1.6-6.7c0-2.3-0.5-4.5-1.6-6.4 c-1.1-1.9-2.5-3.5-4.3-4.6S34.2,12,32,12c-2.2,0-4.2,0.6-6,1.7s-3.2,2.7-4.3,4.6s-1.6,4.1-1.6,6.4c0,2.5,0.5,4.7,1.6,6.6 c1.1,2,2.5,3.5,4.3,4.6S29.8,37.8,32,37.8z' })] }));
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
function Phone(props) {
|
|
1907
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M62.9,48.1c-0.7-1.1-1.8-2.1-3.2-3.1l-9.5-6.6c-1.5-1-3-1.5-4.6-1.5c-1.6,0-3.1,0.7-4.5,2l-2.5,2.5 c-0.4,0.4-0.7,0.6-1.1,0.6c-0.3,0-0.7-0.1-1-0.3c-0.9-0.6-2.1-1.5-3.6-2.8c-1.5-1.3-2.9-2.6-4.1-3.8c-1.3-1.3-2.5-2.6-3.6-3.9 c-1.1-1.3-2-2.5-2.7-3.5c-0.2-0.4-0.3-0.7-0.3-1.1c0-0.3,0.2-0.7,0.6-1.1l2.5-2.5c1.4-1.4,2-2.9,2-4.5c0-1.6-0.5-3.2-1.6-4.7 l-6.6-9.5c-1-1.5-2.1-2.5-3.2-3.2c-1.1-0.7-2.2-1-3.4-1.1c-2.1,0-4.2,0.9-6.4,2.9C5.9,3,5.8,3.1,5.7,3.3C5.5,3.4,5.4,3.5,5.3,3.6 c-1.8,1.6-3.2,3.5-4,5.5c-0.8,2-1.2,4.4-1.2,7.3c0,4.7,1.4,9.7,4.2,15.2s6.8,10.8,12.1,16.1c3.5,3.5,7.1,6.5,10.7,8.9 c3.6,2.4,7.2,4.3,10.7,5.5s6.8,1.9,9.9,1.9c2.9,0,5.3-0.4,7.3-1.2c2-0.8,3.8-2.2,5.5-4c0.1-0.1,0.2-0.3,0.4-0.4 c0.1-0.1,0.2-0.3,0.4-0.4c1-1.1,1.7-2.2,2.2-3.3c0.5-1.1,0.7-2.1,0.7-3.1C64,50.3,63.6,49.2,62.9,48.1z M57.1,54.5 c-0.1,0.1-0.2,0.2-0.2,0.3s-0.2,0.2-0.2,0.3c-1.1,1.3-2.4,2.3-4,2.9c-1.5,0.6-3.2,1-5,1c-2.8,0-5.8-0.6-8.9-1.9s-6.4-3-9.6-5.3 c-3.2-2.2-6.2-4.8-9-7.6c-2.9-2.8-5.4-5.9-7.7-9.1c-2.3-3.2-4.1-6.5-5.4-9.7s-2-6.3-1.9-9c0-1.8,0.4-3.5,1-5 c0.6-1.5,1.6-2.8,2.9-3.9C9,7.3,9.1,7.2,9.2,7.2C9.3,7.1,9.4,7,9.5,6.9c1-0.9,2-1.3,3-1.3c1,0,1.9,0.5,2.4,1.4l6.3,9.5 c0.3,0.5,0.5,1,0.5,1.6c0,0.5-0.3,1.1-0.8,1.6l-2.9,2.9c-1.1,1.1-1.7,2.3-1.7,3.6c0,1.3,0.4,2.5,1.3,3.6c0.9,1.3,2.1,2.7,3.6,4.3 c1.4,1.6,2.8,3.1,4,4.3c0.8,0.9,1.8,1.8,2.9,2.8c1.1,1,2.2,1.9,3.2,2.9c1.1,0.9,2,1.7,2.9,2.3c1.1,0.8,2.3,1.2,3.6,1.2 c1.3,0,2.5-0.6,3.6-1.7l2.9-2.9c0.5-0.5,1-0.7,1.6-0.8c0.5,0,1.1,0.2,1.6,0.5l9.5,6.3c0.5,0.3,0.8,0.7,1,1.1s0.3,0.9,0.3,1.3 C58.4,52.5,57.9,53.5,57.1,54.5z' }) }));
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
function PhoneArrowUpRight(props) {
|
|
1911
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 63.9', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.6,48c-0.7-1.1-1.8-2.1-3.2-3.1l-9.5-6.6c-1.5-1-3-1.5-4.6-1.5c-1.6,0-3.1,0.7-4.5,2l-2.5,2.5c-0.4,0.4-0.7,0.6-1.1,0.6 c-0.3,0-0.7-0.1-1-0.3c-0.9-0.6-2.1-1.5-3.6-2.8c-1.5-1.3-2.9-2.6-4.1-3.8c-1.3-1.3-2.5-2.5-3.6-3.8c-1.1-1.3-2-2.5-2.7-3.5 c-0.2-0.4-0.3-0.7-0.3-1.1c0-0.3,0.2-0.7,0.6-1l2.5-2.5c1.3-1.4,2-2.8,2-4.5c0-1.6-0.5-3.2-1.6-4.6L19,4.5C18,3,16.9,2,15.8,1.3 c-1.1-0.7-2.2-1-3.4-1.1c-2.1,0-4.2,0.9-6.4,2.9C5.9,3.2,5.8,3.3,5.6,3.5C5.5,3.6,5.4,3.7,5.2,3.8c-1.8,1.6-3.2,3.5-4,5.5 c-0.8,2-1.2,4.4-1.2,7.2c0,4.7,1.4,9.7,4.2,15.1s6.8,10.8,12.1,16c3.5,3.5,7,6.4,10.6,8.8c3.6,2.4,7.1,4.3,10.6,5.5 c3.5,1.3,6.8,1.9,9.8,1.9c2.8,0,5.3-0.4,7.3-1.2c2-0.8,3.8-2.2,5.5-4c0.1-0.1,0.2-0.3,0.4-0.4c0.1-0.1,0.2-0.3,0.4-0.4 c1-1.1,1.7-2.2,2.2-3.3c0.5-1.1,0.7-2.1,0.7-3.1C63.6,50.3,63.3,49.1,62.6,48z M56.8,54.4c-0.1,0.1-0.2,0.2-0.2,0.3 c-0.1,0.1-0.2,0.2-0.2,0.3c-1.1,1.3-2.4,2.3-3.9,2.9c-1.5,0.6-3.2,1-5,1c-2.8,0-5.7-0.6-8.9-1.9c-3.2-1.3-6.3-3-9.5-5.2 c-3.2-2.2-6.2-4.7-9-7.6c-2.8-2.8-5.4-5.8-7.7-9.1c-2.3-3.2-4.1-6.5-5.4-9.7c-1.3-3.2-1.9-6.2-1.9-9c0-1.8,0.4-3.4,1-4.9 C6.6,10,7.6,8.7,8.8,7.6C9,7.5,9.1,7.4,9.2,7.3c0.1-0.1,0.2-0.2,0.3-0.3c1-0.9,2-1.3,2.9-1.3c1,0,1.9,0.5,2.4,1.4l6.3,9.5 c0.3,0.5,0.5,1,0.5,1.6c0,0.5-0.3,1.1-0.8,1.6L18,22.6c-1.1,1.1-1.7,2.3-1.7,3.6c0,1.3,0.4,2.5,1.2,3.6c0.9,1.3,2.1,2.7,3.5,4.3 c1.4,1.6,2.8,3,4,4.3c0.8,0.8,1.8,1.8,2.8,2.7c1.1,1,2.2,1.9,3.2,2.9c1.1,0.9,2,1.7,2.9,2.3c1.1,0.8,2.3,1.2,3.6,1.2 c1.3,0,2.5-0.5,3.6-1.7l2.9-2.9c0.5-0.5,1-0.7,1.6-0.7c0.5,0,1.1,0.2,1.6,0.5l9.4,6.3c0.5,0.3,0.8,0.7,1,1.1 c0.2,0.4,0.3,0.9,0.3,1.3C58.1,52.4,57.6,53.4,56.8,54.4z' }), jsxRuntime.jsx("path", { d: 'M39.2,27.2c0.7,0,1.2-0.2,1.7-0.7l14-14l5-5.4l-0.6,9.5v4.9c0,0.6,0.2,1.2,0.6,1.6c0.4,0.4,1,0.7,1.6,0.7 c0.7,0,1.2-0.2,1.7-0.6c0.5-0.5,0.7-1,0.7-1.7V2.6c0-0.8-0.2-1.5-0.6-1.9C62.9,0.2,62.3,0,61.4,0H42.5c-0.7,0-1.2,0.2-1.7,0.7 c-0.5,0.5-0.7,1.1-0.6,1.7c0,0.6,0.3,1.2,0.7,1.6c0.5,0.4,1,0.6,1.6,0.6h4.9L57,4.1l-5.5,5l-14,14c-0.5,0.5-0.8,1.1-0.8,1.8 c0,0.6,0.2,1.2,0.7,1.6C37.9,27,38.5,27.2,39.2,27.2z' })] }));
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
function PhoneFill(props) {
|
|
1915
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 63.9 64', ...props, children: jsxRuntime.jsx("path", { d: 'M17.5,46.3c3.3,3.3,6.8,6.3,10.5,9c3.7,2.7,7.3,4.8,11,6.3c3.7,1.6,7.2,2.3,10.5,2.3c2.2,0,4.3-0.4,6.2-1.2 c1.9-0.8,3.7-2.1,5.2-3.8c0.9-1,1.6-2.1,2.2-3.2c0.5-1.2,0.8-2.3,0.8-3.5c0-0.9-0.2-1.7-0.5-2.5c-0.4-0.8-0.9-1.5-1.8-2L51,40.2 c-1.6-1.1-3-1.7-4.2-1.7c-0.8,0-1.6,0.2-2.3,0.6c-0.7,0.4-1.5,1-2.3,1.8l-2.4,2.4c-0.4,0.4-0.8,0.5-1.3,0.5c-0.3,0-0.5,0-0.7-0.1 c-0.2-0.1-0.4-0.2-0.6-0.3c-1.1-0.6-2.5-1.5-4.1-3c-1.7-1.4-3.4-3-5.1-4.7c-1.7-1.7-3.2-3.4-4.7-5.1c-1.4-1.7-2.4-3-3-4.1 c-0.1-0.2-0.2-0.4-0.3-0.6C20,25.9,20,25.6,20,25.4c0-0.5,0.2-0.9,0.5-1.3l2.4-2.5c0.8-0.8,1.4-1.6,1.8-2.3c0.4-0.7,0.7-1.5,0.7-2.3 c0-1.2-0.6-2.6-1.7-4.2L16.2,2.4c-0.6-0.8-1.3-1.4-2.1-1.8C13.3,0.2,12.4,0,11.5,0C9.1,0,6.9,1,4.8,3C3.2,4.6,1.9,6.4,1.2,8.3 c-0.8,1.9-1.2,4-1.2,6.2c0,3.3,0.8,6.8,2.3,10.4s3.6,7.3,6.3,10.9C11.2,39.6,14.2,43,17.5,46.3z' }) }));
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
function PlayRectangleFill(props) {
|
|
1919
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 50', ...props, children: jsxRuntime.jsx("path", { d: 'M61.9,2.1C60.5,0.7,58.3,0,55.5,0h-47c-2.8,0-5,0.7-6.4,2.1C0.7,3.5,0,5.6,0,8.4v33.1c0,2.8,0.7,4.9,2.1,6.3 C3.6,49.3,5.7,50,8.5,50h47c2.9,0,5-0.7,6.4-2.1c1.4-1.4,2.1-3.5,2.1-6.3V8.4C64,5.6,63.3,3.5,61.9,2.1z M42.8,26.5l-16,9.4 c-0.6,0.4-1.2,0.4-1.8,0.2s-1-0.7-1-1.4V15.2c0-0.7,0.3-1.1,0.9-1.4s1.2-0.2,1.9,0.2l16,9.4c0.6,0.3,0.9,0.8,0.8,1.5 C43.6,25.6,43.3,26.1,42.8,26.5z' }) }));
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
function Plus(props) {
|
|
1923
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 62.7 64', ...props, children: jsxRuntime.jsx("path", { d: 'M31.4,64c1.9,0,3.4-1.5,3.4-3.3V35.4h24.6c1.8,0,3.4-1.6,3.4-3.4c0-1.9-1.6-3.4-3.4-3.4H34.8V3.3c0-1.8-1.6-3.3-3.4-3.3 C29.5,0,28,1.5,28,3.3v25.3H3.4C1.6,28.6,0,30.1,0,32c0,1.9,1.6,3.4,3.4,3.4H28v25.3C28,62.5,29.5,64,31.4,64z' }) }));
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
function Qrcode(props) {
|
|
1927
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M27.4,1.7c-1.1-1.1-2.8-1.7-5-1.7H6.7c-2.2,0-3.9,0.6-5,1.7C0.6,2.8,0,4.5,0,6.8v15.5c0,2.3,0.6,4,1.7,5.1s2.8,1.7,5,1.7 h15.8c2.2,0,3.9-0.6,5-1.7s1.7-2.8,1.7-5.1V6.8C29.1,4.5,28.5,2.8,27.4,1.7z M24.2,22.3c0,1.3-0.6,1.9-1.9,1.9H6.7 c-1.2,0-1.8-0.6-1.8-1.9V6.8c0-1.2,0.6-1.9,1.8-1.9h15.7c1.2,0,1.9,0.6,1.9,1.9V22.3z' }), jsxRuntime.jsx("path", { d: 'M11.6,18.2h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C10.9,18,11.1,18.2,11.6,18.2z' }), jsxRuntime.jsx("path", { d: 'M62.3,1.7c-1.1-1.1-2.8-1.7-5-1.7H41.5c-2.2,0-3.9,0.6-5,1.7c-1.1,1.1-1.7,2.8-1.7,5.1v15.5c0,2.3,0.6,4,1.7,5.1 s2.8,1.7,5,1.7h15.8c2.2,0,3.9-0.6,5-1.7c1.1-1.1,1.7-2.8,1.7-5.1V6.8C64,4.5,63.4,2.8,62.3,1.7z M59.1,22.3c0,1.3-0.6,1.9-1.8,1.9 H41.6c-1.2,0-1.9-0.6-1.9-1.9V6.8c0-1.2,0.6-1.9,1.9-1.9h15.7c1.2,0,1.8,0.6,1.8,1.9V22.3z' }), jsxRuntime.jsx("path", { d: 'M46.6,18.2h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C46,18,46.2,18.2,46.6,18.2z' }), jsxRuntime.jsx("path", { d: 'M27.4,36.6c-1.1-1.1-2.8-1.7-5-1.7H6.7c-2.2,0-3.9,0.6-5,1.7S0,39.4,0,41.7v15.5c0,2.3,0.6,4,1.7,5.1s2.8,1.7,5,1.7h15.8 c2.2,0,3.9-0.6,5-1.7s1.7-2.8,1.7-5.1V41.7C29.1,39.4,28.5,37.7,27.4,36.6z M24.2,57.2c0,1.2-0.6,1.9-1.9,1.9H6.7 c-1.2,0-1.8-0.6-1.8-1.9V41.7c0-1.3,0.6-1.9,1.8-1.9h15.7c1.2,0,1.9,0.6,1.9,1.9V57.2z' }), jsxRuntime.jsx("path", { d: 'M11.6,53.1h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C10.9,52.8,11.1,53.1,11.6,53.1z' }), jsxRuntime.jsx("path", { d: 'M37.2,43.9h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8V43 C36.5,43.6,36.7,43.9,37.2,43.9z' }), jsxRuntime.jsx("path", { d: 'M55.6,43.9h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8V43 C55,43.6,55.2,43.9,55.6,43.9z' }), jsxRuntime.jsx("path", { d: 'M46.5,53.1h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C45.8,52.8,46.1,53.1,46.5,53.1z' }), jsxRuntime.jsx("path", { d: 'M37.2,62.3h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C36.5,62,36.7,62.3,37.2,62.3z' }), jsxRuntime.jsx("path", { d: 'M55.6,62.3h5.9c0.5,0,0.7-0.3,0.7-0.8v-5.7c0-0.5-0.2-0.8-0.7-0.8h-5.9c-0.5,0-0.7,0.3-0.7,0.8v5.7 C55,62,55.2,62.3,55.6,62.3z' })] }));
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
function RectanglePortraitAndArrowLeft(props) {
|
|
1931
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 58.6', ...props, children: [jsxRuntime.jsx("path", { d: 'M55.5,59.1H26.2c-2.8,0-5-0.7-6.4-2.2c-1.4-1.4-2.1-3.6-2.1-6.5V37.7h4.5v12.7c0,1.4,0.4,2.4,1.1,3.2 c0.7,0.7,1.8,1.1,3.2,1.1h28.8c1.4,0,2.5-0.4,3.2-1.1c0.7-0.7,1.1-1.8,1.1-3.2V8.7c0-1.4-0.4-2.4-1.1-3.2c-0.7-0.7-1.8-1.1-3.2-1.1 H26.4c-1.4,0-2.5,0.4-3.2,1.1c-0.7,0.7-1.1,1.8-1.1,3.2v12.7h-4.5V8.7c0-2.9,0.7-5,2.1-6.5C21.2,0.7,23.3,0,26.2,0h29.3 c2.8,0,5,0.7,6.4,2.2C63.3,3.6,64,5.8,64,8.7v41.8c0,2.9-0.7,5-2.1,6.5C60.4,58.4,58.3,59.1,55.5,59.1z' }), jsxRuntime.jsx("path", { d: 'M38.5,31.7H10.2l-4.1-0.2L8,33.4l4.4,4.2c0.4,0.4,0.7,0.9,0.7,1.5c0,0.6-0.2,1-0.5,1.4c-0.4,0.4-0.8,0.6-1.4,0.6 c-0.5,0-1-0.2-1.4-0.6l-9-9.3c-0.3-0.3-0.5-0.6-0.6-0.8C0.1,30.1,0,29.8,0,29.5c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.3-0.5,0.6-0.8 l9-9.3c0.4-0.4,0.9-0.6,1.4-0.6c0.6,0,1,0.2,1.4,0.6c0.4,0.4,0.5,0.8,0.5,1.4c0,0.6-0.2,1.1-0.7,1.5L8,25.7l-2,1.9l4.2-0.2h28.3 c0.6,0,1.1,0.2,1.5,0.6c0.4,0.4,0.6,0.9,0.6,1.5c0,0.6-0.2,1.1-0.6,1.5C39.6,31.5,39.1,31.7,38.5,31.7z' })] }));
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
function RectanglePortraitAndArrowLeftFill(props) {
|
|
1935
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 58.6', ...props, children: [jsxRuntime.jsx("path", { d: 'M55.5,0h-29c-2.8,0-4.9,0.7-6.4,2.1C18.7,3.6,18,5.7,18,8.6v18h20.2c0.7,0,1.3,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,1.9 c0,0.7-0.3,1.4-0.8,1.9C39.6,31.8,39,32,38.2,32H18v18c0,2.8,0.7,5,2.1,6.4s3.5,2.2,6.4,2.2h29c2.8,0,4.9-0.7,6.3-2.2 C63.3,55,64,52.9,64,50V8.6c0-2.9-0.7-5-2.1-6.4C60.5,0.7,58.4,0,55.5,0z' }), jsxRuntime.jsx("path", { d: 'M20.2,29.3c0-0.6-0.2-1.1-0.6-1.5c-0.4-0.4-0.9-0.6-1.5-0.6h-8L6,27.3l1.9-1.9l4.4-4.1c0.4-0.4,0.6-0.9,0.6-1.5 c0-0.6-0.2-1-0.5-1.4c-0.4-0.4-0.8-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6l-8.9,9.2c-0.3,0.3-0.5,0.5-0.6,0.8C0.1,28.8,0,29,0,29.3 c0,0.3,0.1,0.6,0.2,0.8c0.1,0.2,0.3,0.5,0.6,0.8l8.9,9.2c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.5-0.8,0.5-1.4 c0-0.6-0.2-1.1-0.6-1.5l-4.4-4.1L6,31.3l4.1,0.2h8c0.6,0,1.1-0.2,1.5-0.6C20,30.4,20.2,29.9,20.2,29.3z' })] }));
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
function Sensor(props) {
|
|
1939
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 45.6', ...props, children: [jsxRuntime.jsx("path", { d: 'M36.7,0H8.3C2.8,0,0,2.7,0,8.2v29.3c0,5.4,2.8,8.2,8.3,8.2h28.4c5.5,0,8.3-2.7,8.3-8.2V8.2C45,2.7,42.2,0,36.7,0z M40.7,37.3c0,2.7-1.5,4.1-4.1,4.1H8.3c-2.6,0-4.1-1.4-4.1-4.1V8.4c0-2.7,1.5-4.1,4.1-4.1h28.3c2.6,0,4.1,1.4,4.1,4.1V37.3z' }), jsxRuntime.jsx("path", { d: 'M21.2,24c0.9,0,1.6-0.7,1.6-1.6V10c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6v12.4C19.7,23.3,20.3,24,21.2,24z' }), jsxRuntime.jsx("path", { d: 'M28,24c0.9,0,1.6-0.7,1.6-1.6V10c0-0.9-0.7-1.6-1.6-1.6c-0.9,0-1.6,0.7-1.6,1.6v12.4C26.4,23.3,27.1,24,28,24z' }), jsxRuntime.jsx("path", { d: 'M34.6,24c0.9,0,1.6-0.7,1.6-1.6V10c0-0.9-0.7-1.6-1.6-1.6C33.7,8.4,33,9.1,33,10v12.4C33,23.3,33.7,24,34.6,24z' }), jsxRuntime.jsx("path", { d: 'M50.1,24.3c0.7,0.8,2,0.8,2.8-0.2c1.7-2.2,2.7-4.9,2.7-7.9c0-2.9-1-5.7-2.7-7.9c-0.8-1-2.1-1-2.8-0.2 c-0.7,0.8-0.5,1.8,0.2,2.7c1.1,1.6,1.7,3.4,1.7,5.4c0,2-0.5,3.8-1.7,5.4C49.6,22.5,49.3,23.5,50.1,24.3z' }), jsxRuntime.jsx("path", { d: 'M56.1,30c0.7,0.8,2,0.8,2.8-0.1c3.3-3.7,5.1-8.5,5.1-13.7c0-5.2-1.8-10-5.1-13.7c-0.8-0.9-2.1-0.9-2.8-0.1 c-0.7,0.8-0.6,1.8,0.2,2.8c2.6,3,4,6.8,4,11c0,4.2-1.4,8.1-4,11C55.6,28.2,55.4,29.2,56.1,30z' })] }));
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
function Signature(props) {
|
|
1943
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 46.7', ...props, children: [jsxRuntime.jsx("path", { d: 'M63.4,36c-0.3-0.3-0.7-0.5-1.2-0.5H33.6c0.5-1.3,0.9-2.7,1.2-4.1c0.6-2.6,0.9-5.3,1-8.2c1.3-0.3,2.7-0.4,4.2-0.4 c0.8,0,1.2,0.3,1.2,0.9c0,0.9-0.2,1.8-0.5,2.6c-0.3,0.8-0.5,1.6-0.5,2.6c0,0.8,0.3,1.5,0.8,1.9c0.5,0.5,1.2,0.7,2,0.7 c0.9,0,1.7-0.2,2.7-0.7c0.9-0.5,1.8-1.1,2.7-1.8c0.9-0.7,1.7-1.5,2.5-2.2c0.8-0.7,1.4-1.3,2-1.8c0.6-0.5,1.1-0.7,1.4-0.7 c0.3,0,0.5,0.2,0.6,0.7c0.1,0.4,0.2,1,0.3,1.7c0.1,0.7,0.2,1.3,0.5,2c0.2,0.7,0.6,1.2,1.2,1.7c0.6,0.4,1.4,0.7,2.4,0.7 c0.4,0,0.9-0.1,1.4-0.2c0.5-0.1,1-0.3,1.4-0.6c0.3-0.2,0.5-0.4,0.6-0.7c0.2-0.3,0.2-0.6,0.2-0.9c0-0.4-0.1-0.7-0.4-1 c-0.2-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1.1,0.3c-0.4,0.2-0.7,0.3-1,0.3c-0.5,0-0.8-0.2-1-0.7c-0.2-0.5-0.3-1.1-0.4-1.8 c-0.1-0.7-0.2-1.4-0.3-2.1c-0.2-0.7-0.4-1.3-0.8-1.8c-0.4-0.5-1-0.7-1.9-0.7c-0.7,0-1.5,0.2-2.4,0.7c-0.9,0.5-1.7,1.1-2.6,1.8 c-0.9,0.7-1.7,1.4-2.5,2.1c-0.8,0.7-1.5,1.3-2.1,1.8c-0.6,0.5-1,0.7-1.3,0.7c-0.2,0-0.3-0.1-0.3-0.3c0-0.4,0.2-1,0.5-1.8 c0.3-0.8,0.5-1.6,0.5-2.5c0-1.1-0.4-1.9-1.2-2.5c-0.8-0.6-1.9-0.9-3.3-0.9c-1.5,0-3,0.1-4.4,0.4c-0.1-2.4-0.4-4.7-0.9-6.8 c-0.7-2.6-1.6-4.9-2.8-6.9c-1.2-2-2.7-3.5-4.4-4.7C26,0.5,24.1,0,22,0c-1.8,0-3.4,0.5-4.9,1.4s-2.6,2.2-3.5,3.8 c-0.9,1.6-1.3,3.4-1.3,5.4c0,2.2,0.4,4.3,1.2,6.3s1.9,3.8,3.3,5.5c1.4,1.7,3,3.2,4.7,4.5c0.3,0.2,0.6,0.4,0.9,0.6 c-0.9,0.8-1.6,1.7-2.4,2.6c-1.5,1.9-2.6,3.7-3.4,5.6H1.7c-0.5,0-0.9,0.2-1.2,0.5S0,36.8,0,37.2c0,0.5,0.2,0.9,0.5,1.2 s0.7,0.5,1.2,0.5h13.9c-0.1,0.7-0.2,1.3-0.2,1.9c0,1.7,0.5,3.1,1.5,4.2c1,1.1,2.5,1.7,4.5,1.7c2.2,0,4.2-0.6,6-1.9 c1.8-1.3,3.3-3.1,4.6-5.4c0.1-0.2,0.2-0.3,0.3-0.5h30.1c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2C63.9,36.8,63.7,36.4,63.4,36 z M20.1,21.3c-1.4-1.4-2.5-3.1-3.3-4.9c-0.9-1.8-1.3-3.8-1.3-5.9c0-1.4,0.3-2.6,0.9-3.7s1.3-2,2.3-2.6c1-0.6,2.1-1,3.3-1 c2.2,0,4.1,0.8,5.7,2.5s2.8,3.9,3.7,6.7c0.8,2.6,1.2,5.4,1.3,8.5c-0.1,0-0.3,0.1-0.4,0.1c-2.5,0.9-4.8,2.2-6.9,3.8 c-0.2,0.2-0.4,0.3-0.7,0.5c-0.1-0.1-0.2-0.2-0.3-0.2C22.9,24,21.5,22.8,20.1,21.3z M22.7,31.6c0.7-0.9,1.5-1.8,2.4-2.6 c0.6,0.4,1.3,0.7,1.9,1c0.2,0.1,0.5,0.2,0.8,0.2c0.4,0,0.8-0.1,1.1-0.4c0.3-0.3,0.4-0.6,0.4-1c0-0.3-0.1-0.5-0.2-0.8 c-0.1-0.2-0.4-0.4-0.6-0.6c-0.3-0.1-0.6-0.3-0.9-0.5c1.5-1.1,3.2-2,5-2.8c-0.1,2-0.4,4-0.7,5.8c-0.4,2-1,3.8-1.6,5.5H20.1 C20.7,34.2,21.6,32.9,22.7,31.6z M26.1,41.8c-1.3,1.2-2.8,1.7-4.3,1.7c-1,0-1.8-0.3-2.3-0.9c-0.5-0.6-0.7-1.4-0.7-2.4 c0-0.4,0-0.8,0.1-1.3h9.6C27.8,40.1,26.9,41,26.1,41.8z' }), jsxRuntime.jsx("path", { d: 'M0.7,29.8c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4s0.7-0.1,1-0.4l2.7-2.7l2.7,2.7c0.3,0.3,0.6,0.4,1,0.4 c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-1s-0.1-0.7-0.4-1l-2.7-2.7l2.7-2.7c0.3-0.3,0.4-0.6,0.4-1s-0.1-0.7-0.4-1 c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4l-2.7,2.7l-2.7-2.7c-0.3-0.3-0.6-0.4-1-0.4s-0.7,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.4,1 s0.1,0.7,0.4,1l2.7,2.7l-2.7,2.7C0.8,29.1,0.7,29.4,0.7,29.8z' })] }));
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
function SolarPanel(props) {
|
|
1947
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 58', ...props, children: jsxRuntime.jsx("path", { d: 'M5.5,58h39.7c2.8,0,4.7-1.6,5.4-4.2l13-46.9c1.1-4.2-1-6.9-5.2-6.9H18.7c-2.8,0-4.7,1.6-5.4,4.2L0.3,51 C-0.9,55.2,1.3,58,5.5,58z M5,51.5l5.7-20.5H29l-6.3,22.3H6.4C5.2,53.2,4.7,52.6,5,51.5z M12,26.2l5.5-19.7c0.3-1.2,1.1-1.8,2.3-1.8 h16.5l-6,21.5H12z M27.6,53.2l6.2-22.3h18.4l-5.7,20.5c-0.4,1.2-1.1,1.8-2.3,1.8H27.6z M35.1,26.2l6-21.5h16.4 c1.2,0,1.8,0.6,1.4,1.8l-5.5,19.7H35.1z' }) }));
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
function SquareAndArrowDown(props) {
|
|
1951
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 52.6 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M9.3,64h34c6.2,0,9.3-3.1,9.3-9.2V25.2c0-6.1-3.1-9.2-9.3-9.2h-8.3v4.8h8.2c2.9,0,4.6,1.6,4.6,4.6v29.1 c0,3.1-1.7,4.6-4.6,4.6H9.4c-3,0-4.6-1.6-4.6-4.6V25.5c0-3.1,1.6-4.6,4.6-4.6h8.2V16H9.3C3.1,16,0,19.1,0,25.2v29.5 C0,60.9,3.1,64,9.3,64z' }), jsxRuntime.jsx("path", { d: 'M26.3,44.5c0.6,0,1.1-0.2,1.7-0.8L38,34c0.5-0.4,0.7-0.9,0.7-1.6c0-1.2-0.9-2.1-2.2-2.1c-0.6,0-1.2,0.2-1.6,0.7l-4.5,4.8 l-2,2.1l0.2-4.4V2.3c0-1.3-1.1-2.3-2.4-2.3c-1.3,0-2.4,1.1-2.4,2.3v31.2l0.2,4.4l-2-2.1l-4.5-4.8c-0.4-0.5-1.1-0.7-1.6-0.7 c-1.3,0-2.2,0.9-2.2,2.1c0,0.6,0.3,1.1,0.7,1.6l10,9.7C25.2,44.3,25.7,44.5,26.3,44.5z' })] }));
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
function SquareAndArrowDownFill(props) {
|
|
1955
|
+
return (jsxRuntime.jsx("svg", { viewBox: '0 0 52.6 64', ...props, children: jsxRuntime.jsx("path", { d: 'M43.3,16.6H28.7V2.3c0-1.3-1.1-2.3-2.4-2.3c-1.3,0-2.4,1.1-2.4,2.3v14.3H9.3c-6.2,0-9.3,3.1-9.3,9.2v29 C0,60.9,3.1,64,9.3,64h34c6.2,0,9.3-3.1,9.3-9.2v-29C52.6,19.7,49.5,16.6,43.3,16.6z M38,34.4l-10,9.7c-0.6,0.6-1.1,0.8-1.7,0.8 c-0.6,0-1.1-0.2-1.7-0.8l-10-9.7c-0.4-0.4-0.7-0.9-0.7-1.6c0-1.2,0.9-2.1,2.2-2.1c0.6,0,1.2,0.2,1.6,0.7l5,5.4l1.5,1.6l-0.2-4.5 V18.7c0-1.3,1-2.2,2.4-2.2c1.4,0,2.4,0.9,2.4,2.2v15.2l-0.2,4.4l1.5-1.5l5-5.4c0.4-0.5,1-0.7,1.6-0.7c1.2,0,2.2,0.9,2.2,2.1 C38.8,33.5,38.5,34,38,34.4z' }) }));
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
function SquareAndArrowUp(props) {
|
|
1959
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M8.9,64h32.5c3,0,5.2-0.7,6.7-2.2c1.5-1.5,2.2-3.7,2.2-6.6V26.9c0-2.9-0.7-5.1-2.2-6.6c-1.5-1.5-3.7-2.2-6.7-2.2h-7.9v4.6 h7.8c1.4,0,2.5,0.4,3.3,1.1c0.8,0.7,1.2,1.9,1.2,3.3V55c0,1.5-0.4,2.6-1.2,3.3c-0.8,0.7-1.9,1.1-3.3,1.1H9c-1.4,0-2.5-0.4-3.3-1.1 c-0.8-0.7-1.1-1.9-1.1-3.3V27.1c0-1.5,0.4-2.6,1.1-3.3c0.8-0.7,1.9-1.1,3.3-1.1h7.8v-4.6H8.9c-3,0-5.2,0.7-6.7,2.2 C0.7,21.8,0,24,0,26.9v28.3c0,2.9,0.7,5.1,2.2,6.6C3.7,63.3,5.9,64,8.9,64z' }), jsxRuntime.jsx("path", { d: 'M25.2,41.8c0.6,0,1.1-0.2,1.6-0.7c0.5-0.4,0.7-1,0.7-1.6V10.5l-0.2-4.3l1.9,2l4.3,4.6c0.4,0.4,0.9,0.7,1.5,0.7 c0.6,0,1.1-0.2,1.5-0.6c0.4-0.4,0.6-0.8,0.6-1.4c0-0.5-0.2-1-0.7-1.5l-9.6-9.3c-0.3-0.3-0.5-0.5-0.8-0.6C25.7,0.1,25.4,0,25.2,0 c-0.3,0-0.5,0.1-0.8,0.2c-0.3,0.1-0.5,0.3-0.8,0.6L13.9,10c-0.4,0.4-0.7,0.9-0.7,1.5c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.5,0.6 c0.6,0,1.2-0.2,1.6-0.7l4.3-4.6l1.9-2l-0.2,4.3v29.1c0,0.6,0.2,1.1,0.7,1.6C24,41.6,24.6,41.8,25.2,41.8z' })] }));
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
function SquareAndArrowUpFill(props) {
|
|
1963
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M8.9,64h32.5c3,0,5.2-0.7,6.7-2.2c1.5-1.5,2.2-3.7,2.2-6.6V27.5c0-2.9-0.7-5.1-2.2-6.6c-1.5-1.5-3.7-2.2-6.7-2.2H28v21 c0,0.8-0.3,1.4-0.8,1.9c-0.6,0.5-1.2,0.8-2,0.8c-0.8,0-1.4-0.3-2-0.8c-0.6-0.5-0.8-1.2-0.8-1.9v-21H8.9c-3,0-5.2,0.7-6.7,2.2 C0.7,22.4,0,24.6,0,27.5v27.7c0,2.9,0.7,5.1,2.2,6.6C3.7,63.3,5.9,64,8.9,64z' }), jsxRuntime.jsx("path", { d: 'M25.2,20.9c0.6,0,1.1-0.2,1.6-0.7c0.5-0.4,0.7-1,0.7-1.6v-8.2l-0.2-4.3l1.9,2l4.3,4.6c0.4,0.4,0.9,0.7,1.5,0.7 c0.6,0,1.1-0.2,1.5-0.6c0.4-0.4,0.6-0.8,0.6-1.4c0-0.5-0.2-1-0.7-1.5l-9.6-9.3c-0.3-0.3-0.5-0.5-0.8-0.6C25.7,0.1,25.4,0,25.2,0 c-0.3,0-0.5,0.1-0.8,0.2c-0.3,0.1-0.5,0.3-0.8,0.6L13.9,10c-0.4,0.4-0.7,0.9-0.7,1.5c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.5,0.6 c0.6,0,1.2-0.2,1.6-0.7l4.3-4.6l1.9-2l-0.2,4.3v8.2c0,0.6,0.2,1.1,0.7,1.6C24,20.7,24.6,20.9,25.2,20.9z' })] }));
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
function SquareAndPencil(props) {
|
|
1967
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M8.9,64h32.5c3,0,5.2-0.7,6.7-2.2c1.5-1.5,2.2-3.7,2.2-6.6V26.9c0-2.9-0.7-5.1-2.2-6.6c-1.5-1.5-3.7-2.2-6.7-2.2h-7.9v4.6 h7.8c1.4,0,2.5,0.4,3.3,1.1c0.8,0.7,1.2,1.9,1.2,3.3V55c0,1.5-0.4,2.6-1.2,3.3c-0.8,0.7-1.9,1.1-3.3,1.1H9c-1.4,0-2.5-0.4-3.3-1.1 c-0.8-0.7-1.1-1.9-1.1-3.3V27.1c0-1.5,0.4-2.6,1.1-3.3c0.8-0.7,1.9-1.1,3.3-1.1h7.8v-4.6H8.9c-3,0-5.2,0.7-6.7,2.2 C0.7,21.8,0,24,0,26.9v28.3c0,2.9,0.7,5.1,2.2,6.6C3.7,63.3,5.9,64,8.9,64z' }), jsxRuntime.jsx("path", { d: 'M25.2,41.8c0.6,0,1.1-0.2,1.6-0.7c0.5-0.4,0.7-1,0.7-1.6V10.5l-0.2-4.3l1.9,2l4.3,4.6c0.4,0.4,0.9,0.7,1.5,0.7 c0.6,0,1.1-0.2,1.5-0.6c0.4-0.4,0.6-0.8,0.6-1.4c0-0.5-0.2-1-0.7-1.5l-9.6-9.3c-0.3-0.3-0.5-0.5-0.8-0.6C25.7,0.1,25.4,0,25.2,0 c-0.3,0-0.5,0.1-0.8,0.2c-0.3,0.1-0.5,0.3-0.8,0.6L13.9,10c-0.4,0.4-0.7,0.9-0.7,1.5c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.5,0.6 c0.6,0,1.2-0.2,1.6-0.7l4.3-4.6l1.9-2l-0.2,4.3v29.1c0,0.6,0.2,1.1,0.7,1.6C24,41.6,24.6,41.8,25.2,41.8z' })] }));
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
function SquareAndPencilFill(props) {
|
|
1971
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [jsxRuntime.jsx("path", { d: 'M8.9,64h32.5c3,0,5.2-0.7,6.7-2.2c1.5-1.5,2.2-3.7,2.2-6.6V26.9c0-2.9-0.7-5.1-2.2-6.6c-1.5-1.5-3.7-2.2-6.7-2.2h-7.9v4.6 h7.8c1.4,0,2.5,0.4,3.3,1.1c0.8,0.7,1.2,1.9,1.2,3.3V55c0,1.5-0.4,2.6-1.2,3.3c-0.8,0.7-1.9,1.1-3.3,1.1H9c-1.4,0-2.5-0.4-3.3-1.1 c-0.8-0.7-1.1-1.9-1.1-3.3V27.1c0-1.5,0.4-2.6,1.1-3.3c0.8-0.7,1.9-1.1,3.3-1.1h7.8v-4.6H8.9c-3,0-5.2,0.7-6.7,2.2 C0.7,21.8,0,24,0,26.9v28.3c0,2.9,0.7,5.1,2.2,6.6C3.7,63.3,5.9,64,8.9,64z' }), jsxRuntime.jsx("path", { d: 'M25.2,41.8c0.6,0,1.1-0.2,1.6-0.7c0.5-0.4,0.7-1,0.7-1.6V10.5l-0.2-4.3l1.9,2l4.3,4.6c0.4,0.4,0.9,0.7,1.5,0.7 c0.6,0,1.1-0.2,1.5-0.6c0.4-0.4,0.6-0.8,0.6-1.4c0-0.5-0.2-1-0.7-1.5l-9.6-9.3c-0.3-0.3-0.5-0.5-0.8-0.6C25.7,0.1,25.4,0,25.2,0 c-0.3,0-0.5,0.1-0.8,0.2c-0.3,0.1-0.5,0.3-0.8,0.6L13.9,10c-0.4,0.4-0.7,0.9-0.7,1.5c0,0.6,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.5,0.6 c0.6,0,1.2-0.2,1.6-0.7l4.3-4.6l1.9-2l-0.2,4.3v29.1c0,0.6,0.2,1.1,0.7,1.6C24,41.6,24.6,41.8,25.2,41.8z' })] }));
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
function TextBubble(props) {
|
|
1975
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.5,6.1c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2 v22.3c0,2.8,0.5,5.2,1.5,7.2S4,46.3,6,47.3c2,1,4.4,1.6,7.3,1.6h1.4v7.5c0,1.1,0.3,2,0.8,2.7c0.6,0.7,1.3,1,2.4,1 c0.7,0,1.4-0.2,2-0.6s1.3-1,2.2-1.7l10-8.9h18.6c2.9,0,5.3-0.5,7.3-1.6c2-1,3.5-2.5,4.5-4.5c1-2,1.5-4.4,1.5-7.2V13.3 C64,10.5,63.5,8.1,62.5,6.1z M59.3,35.5c0,2.8-0.7,5-2.1,6.4c-1.4,1.5-3.6,2.2-6.5,2.2H31.9c-0.8,0-1.4,0.1-1.9,0.3s-1,0.5-1.6,1.1 l-9.3,9.2v-8.4c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.3-0.9-0.5-1.7-0.5h-3.6c-2.9,0-5.1-0.7-6.5-2.2c-1.4-1.5-2.1-3.6-2.1-6.4V13.3 c0-2.8,0.7-5,2.1-6.4s3.6-2.2,6.5-2.2h37.4c2.9,0,5.1,0.7,6.5,2.2s2.1,3.6,2.1,6.4V35.5z' }), jsxRuntime.jsx("path", { d: 'M17,16.4h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,16.3,16.6,16.4,17,16.4z' }), jsxRuntime.jsx("path", { d: 'M17,25.9h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,25.7,16.6,25.9,17,25.9z' }), jsxRuntime.jsx("path", { d: 'M17,35.3h19.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,35.2,16.6,35.3,17,35.3z' })] }));
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
function ThreePeople(props) {
|
|
1979
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 184.1 87.8', ...props, children: [jsxRuntime.jsx("path", { d: 'M61.4,87.8h61.3c3.9,0,6.6-0.5,8.1-1.6s2.3-2.7,2.3-4.9c0-3.1-1-6.4-2.9-9.9s-4.6-6.7-8.2-9.8c-3.6-3-7.9-5.5-12.9-7.4 c-5.1-1.9-10.8-2.9-17.1-2.9c-6.3,0-12,1-17.1,2.9s-9.4,4.4-13,7.4s-6.3,6.3-8.2,9.8s-2.8,6.8-2.8,9.9c0,2.1,0.8,3.8,2.3,4.9 C54.9,87.2,57.6,87.8,61.4,87.8z' }), jsxRuntime.jsx("path", { d: 'M92.1,42.6c3.5,0,6.7-1,9.7-2.9s5.3-4.5,7.2-7.7c1.8-3.3,2.7-6.9,2.7-11c0-4-0.9-7.6-2.7-10.8s-4.2-5.7-7.2-7.5 S95.6,0,92.1,0s-6.7,0.9-9.7,2.8s-5.3,4.4-7.2,7.6c-1.8,3.2-2.7,6.8-2.7,10.7c0,4,0.9,7.7,2.7,10.9c1.8,3.2,4.2,5.8,7.2,7.7 C85.4,41.6,88.7,42.6,92.1,42.6z' }), jsxRuntime.jsx("path", { d: 'M8.6,87.8h37.1c-1.3-1.9-1.9-4.1-1.8-6.7s0.7-5.3,1.8-8.2s2.7-5.6,4.7-8.3s4.3-5.1,7-7.1c-2.7-1.8-5.9-3.3-9.4-4.5 s-7.6-1.8-12.1-1.8c-5.5,0-10.5,0.9-14.9,2.7c-4.4,1.8-8.2,4.2-11.3,7.1c-3.1,2.9-5.5,6.2-7.2,9.6S0,77.5,0,80.9 c0,2.2,0.7,3.9,2,5.1C3.3,87.2,5.6,87.8,8.6,87.8z' }), jsxRuntime.jsx("path", { d: 'M35.8,43.7c3.1,0,5.9-0.8,8.4-2.5s4.6-3.9,6.2-6.8s2.3-6,2.3-9.5s-0.8-6.6-2.3-9.4c-1.6-2.8-3.6-4.9-6.2-6.5 s-5.4-2.4-8.4-2.4S30,7.4,27.4,9s-4.7,3.8-6.3,6.6c-1.6,2.8-2.4,5.9-2.3,9.4c0,3.5,0.8,6.6,2.3,9.5s3.6,5.1,6.2,6.7 C30,42.9,32.8,43.7,35.8,43.7z' }), jsxRuntime.jsx("path", { d: 'M175.5,87.8c3.1,0,5.3-0.6,6.6-1.8c1.3-1.2,2-2.9,2-5.1c0-3.4-0.8-6.8-2.5-10.3c-1.6-3.5-4-6.7-7.2-9.6 c-3.1-2.9-6.9-5.3-11.3-7.1c-4.4-1.8-9.4-2.7-14.9-2.7c-4.6,0-8.6,0.6-12.1,1.8c-3.5,1.2-6.7,2.7-9.4,4.5c2.6,2.1,5,4.4,7,7.1 s3.6,5.5,4.7,8.3c1.1,2.9,1.7,5.6,1.8,8.2c0.1,2.6-0.5,4.8-1.8,6.7H175.5z' }), jsxRuntime.jsx("path", { d: 'M148.3,43.7c3,0,5.8-0.8,8.4-2.5s4.7-3.9,6.2-6.7c1.6-2.8,2.3-6,2.3-9.5s-0.8-6.6-2.4-9.4s-3.7-5-6.2-6.6s-5.4-2.4-8.4-2.4 s-5.8,0.8-8.4,2.4s-4.7,3.7-6.2,6.5c-1.6,2.8-2.3,5.9-2.3,9.4s0.8,6.7,2.3,9.5c1.6,2.8,3.6,5.1,6.2,6.8 C142.5,42.9,145.3,43.7,148.3,43.7z' })] }));
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
function ThreeRectanglesDesktop(props) {
|
|
1983
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 117 99', ...props, children: [jsxRuntime.jsx("path", { d: 'M11.2,81.1C7.8,81.1 5,80.1 3,78.1C1,76.1 0,73.3 0,69.8L0,11.3C0,7.7 1,5 3,3C5,1 7.7,0 11.2,0L105.1,0C108.6,0 111.4,1 113.4,3C115.4,5 116.4,7.8 116.4,11.3L116.4,69.8C116.4,73.3 115.4,76.1 113.4,78.1C111.4,80.1 108.6,81.1 105.1,81.1L11.2,81.1ZM10,59.5L106.7,59.5C108.1,59.5 108.8,58.8 108.8,57.4L108.8,11.4C108.8,10.3 108.4,9.4 107.8,8.8C107.1,8.2 106.3,7.9 105.2,7.9L11.5,7.9C10.4,7.9 9.5,8.2 8.9,8.8C8.2,9.4 7.9,10.3 7.9,11.4L7.9,57.4C7.9,58.8 8.6,59.5 10,59.5ZM108.6,67.137L7.8,67.137L7.8,70.862C7.8,71.509 8.057,72.129 8.514,72.586C8.971,73.043 9.591,73.3 10.238,73.3L106.162,73.3C106.809,73.3 107.429,73.043 107.886,72.586C108.343,72.129 108.6,71.509 108.6,70.862L108.6,67.137Z' }), jsxRuntime.jsx("path", { d: 'M50.6,94.5L42.8,94.5L42.8,77.4L50.6,77.4L50.6,82.714L50.6,89.186L50.6,94.5Z' }), jsxRuntime.jsx("rect", { x: '65.9', y: '77.4', width: '7.8', height: '17.1' }), jsxRuntime.jsx("path", { d: 'M42.5,98.4C41.4,98.4 40.5,98 39.7,97.3C38.9,96.5 38.5,95.6 38.5,94.5C38.5,93.4 38.9,92.5 39.7,91.7C40.5,91 41.4,90.6 42.5,90.6L73.9,90.6C75,90.6 75.9,90.9 76.7,91.7C77.4,92.5 77.8,93.4 77.8,94.5C77.8,95.6 77.5,96.5 76.7,97.3C75.9,98 75,98.4 73.9,98.4L42.5,98.4Z' }), jsxRuntime.jsx("path", { d: 'M30.4,32.6C26.8,32.6 25,30.8 25.1,27.3L25.1,17.6C25.1,14.1 26.9,12.4 30.4,12.4L51.8,12.4C55.3,12.4 57.1,14.1 57.1,17.6L57.1,27.3C57.1,30.8 55.3,32.6 51.8,32.6L30.4,32.6ZM51.2,17.416L30.991,17.416C30.503,17.416 30.108,17.812 30.108,18.299L30.108,26.701C30.108,27.188 30.503,27.583 30.991,27.583L51.2,27.583C51.688,27.583 52.083,27.188 52.083,26.701L52.083,18.299C52.083,17.812 51.688,17.416 51.2,17.416Z' }), jsxRuntime.jsx("path", { d: 'M36.3,55C32.8,55 31,53.2 31,49.8L31,43.2C31,39.7 32.8,37.9 36.3,37.9L54.7,37.9C58.2,37.9 60,39.7 60,43.2L60,49.8C60,53.3 58.2,55 54.7,55L36.3,55ZM54.101,42.917L36.891,42.917C36.404,42.917 36.009,43.312 36.009,43.8L36.009,49.1C36.009,49.587 36.404,49.982 36.891,49.982L54.101,49.982C54.588,49.982 54.983,49.587 54.983,49.1L54.983,43.8C54.983,43.312 54.588,42.917 54.101,42.917Z' }), jsxRuntime.jsx("path", { d: 'M70.8,52.1C67.2,52.1 65.5,50.3 65.5,46.8L65.5,20.9C65.5,17.4 67.3,15.6 70.8,15.6L86,15.6C89.5,15.6 91.3,17.4 91.3,20.9L91.3,46.8C91.3,50.3 89.5,52.1 86,52.1L70.8,52.1ZM85.401,20.617L71.399,20.617C71.165,20.617 70.941,20.71 70.775,20.876C70.61,21.041 70.517,21.266 70.517,21.5L70.517,46.2C70.517,46.434 70.61,46.659 70.775,46.824C70.941,46.99 71.165,47.083 71.399,47.083L85.401,47.083C85.635,47.083 85.859,46.99 86.025,46.824C86.19,46.659 86.283,46.434 86.283,46.2L86.283,21.5C86.283,21.266 86.19,21.041 86.025,20.876C85.859,20.71 85.635,20.617 85.401,20.617Z' })] }));
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
function ThreeRectanglesDesktopFill(props) {
|
|
1987
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 117 99', ...props, children: [jsxRuntime.jsx("path", { d: 'M11.2,81.1C7.8,81.1 5,80.1 3,78.1C1,76.1 0,73.3 0,69.8L0,11.3C0,7.7 1,5 3,3C5,1 7.7,0 11.2,0L105.1,0C108.6,0 111.4,1 113.4,3C115.4,5 116.4,7.8 116.4,11.3L116.4,69.8C116.4,73.3 115.4,76.1 113.4,78.1C111.4,80.1 108.6,81.1 105.1,81.1L11.2,81.1ZM10,59.5L106.7,59.5C108.1,59.5 108.8,58.8 108.8,57.4L108.8,11.4C108.8,10.3 108.4,9.4 107.8,8.8C107.1,8.2 106.3,7.9 105.2,7.9L11.5,7.9C10.4,7.9 9.5,8.2 8.9,8.8C8.2,9.4 7.9,10.3 7.9,11.4L7.9,57.4C7.9,58.8 8.6,59.5 10,59.5Z' }), jsxRuntime.jsx("rect", { x: '42.8', y: '80.4', width: '30.9', height: '12.3' }), jsxRuntime.jsx("path", { d: 'M42.5,98.4L73.9,98.4C75,98.4 75.9,98 76.7,97.3C77.5,96.5 77.8,95.6 77.8,94.5C77.8,93.4 77.4,92.5 76.7,91.7C75.9,90.9 75,90.6 73.9,90.6L42.5,90.6C41.4,90.6 40.5,91 39.7,91.7C38.9,92.5 38.5,93.4 38.5,94.5C38.5,95.6 38.9,96.5 39.7,97.3C40.5,98 41.4,98.4 42.5,98.4Z' }), jsxRuntime.jsx("path", { d: 'M30.4,32.6L51.8,32.6C55.3,32.6 57.1,30.8 57.1,27.3L57.1,17.6C57.1,14.1 55.3,12.4 51.8,12.4L30.4,12.4C26.9,12.4 25.1,14.1 25.1,17.6L25.1,27.3C25,30.8 26.8,32.6 30.4,32.6Z' }), jsxRuntime.jsx("path", { d: 'M36.3,55L54.7,55C58.2,55 60,53.3 60,49.8L60,43.2C60,39.7 58.2,37.9 54.7,37.9L36.3,37.9C32.8,37.9 31,39.7 31,43.2L31,49.8C31,53.2 32.8,55 36.3,55Z' }), jsxRuntime.jsx("path", { d: 'M70.8,52.1L86,52.1C89.5,52.1 91.3,50.3 91.3,46.8L91.3,20.9C91.3,17.4 89.5,15.6 86,15.6L70.8,15.6C67.3,15.6 65.5,17.4 65.5,20.9L65.5,46.8C65.5,50.3 67.2,52.1 70.8,52.1Z' })] }));
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
function Trash(props) {
|
|
1991
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.5,6.1c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2 v22.3c0,2.8,0.5,5.2,1.5,7.2S4,46.3,6,47.3c2,1,4.4,1.6,7.3,1.6h1.4v7.5c0,1.1,0.3,2,0.8,2.7c0.6,0.7,1.3,1,2.4,1 c0.7,0,1.4-0.2,2-0.6s1.3-1,2.2-1.7l10-8.9h18.6c2.9,0,5.3-0.5,7.3-1.6c2-1,3.5-2.5,4.5-4.5c1-2,1.5-4.4,1.5-7.2V13.3 C64,10.5,63.5,8.1,62.5,6.1z M59.3,35.5c0,2.8-0.7,5-2.1,6.4c-1.4,1.5-3.6,2.2-6.5,2.2H31.9c-0.8,0-1.4,0.1-1.9,0.3s-1,0.5-1.6,1.1 l-9.3,9.2v-8.4c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.3-0.9-0.5-1.7-0.5h-3.6c-2.9,0-5.1-0.7-6.5-2.2c-1.4-1.5-2.1-3.6-2.1-6.4V13.3 c0-2.8,0.7-5,2.1-6.4s3.6-2.2,6.5-2.2h37.4c2.9,0,5.1,0.7,6.5,2.2s2.1,3.6,2.1,6.4V35.5z' }), jsxRuntime.jsx("path", { d: 'M17,16.4h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,16.3,16.6,16.4,17,16.4z' }), jsxRuntime.jsx("path", { d: 'M17,25.9h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,25.7,16.6,25.9,17,25.9z' }), jsxRuntime.jsx("path", { d: 'M17,35.3h19.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,35.2,16.6,35.3,17,35.3z' })] }));
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
function TrashFill(props) {
|
|
1995
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.5,6.1c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2 v22.3c0,2.8,0.5,5.2,1.5,7.2S4,46.3,6,47.3c2,1,4.4,1.6,7.3,1.6h1.4v7.5c0,1.1,0.3,2,0.8,2.7c0.6,0.7,1.3,1,2.4,1 c0.7,0,1.4-0.2,2-0.6s1.3-1,2.2-1.7l10-8.9h18.6c2.9,0,5.3-0.5,7.3-1.6c2-1,3.5-2.5,4.5-4.5c1-2,1.5-4.4,1.5-7.2V13.3 C64,10.5,63.5,8.1,62.5,6.1z M59.3,35.5c0,2.8-0.7,5-2.1,6.4c-1.4,1.5-3.6,2.2-6.5,2.2H31.9c-0.8,0-1.4,0.1-1.9,0.3s-1,0.5-1.6,1.1 l-9.3,9.2v-8.4c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.3-0.9-0.5-1.7-0.5h-3.6c-2.9,0-5.1-0.7-6.5-2.2c-1.4-1.5-2.1-3.6-2.1-6.4V13.3 c0-2.8,0.7-5,2.1-6.4s3.6-2.2,6.5-2.2h37.4c2.9,0,5.1,0.7,6.5,2.2s2.1,3.6,2.1,6.4V35.5z' }), jsxRuntime.jsx("path", { d: 'M17,16.4h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,16.3,16.6,16.4,17,16.4z' }), jsxRuntime.jsx("path", { d: 'M17,25.9h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,25.7,16.6,25.9,17,25.9z' }), jsxRuntime.jsx("path", { d: 'M17,35.3h19.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,35.2,16.6,35.3,17,35.3z' })] }));
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
function Tree(props) {
|
|
1999
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.5,6.1c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2 v22.3c0,2.8,0.5,5.2,1.5,7.2S4,46.3,6,47.3c2,1,4.4,1.6,7.3,1.6h1.4v7.5c0,1.1,0.3,2,0.8,2.7c0.6,0.7,1.3,1,2.4,1 c0.7,0,1.4-0.2,2-0.6s1.3-1,2.2-1.7l10-8.9h18.6c2.9,0,5.3-0.5,7.3-1.6c2-1,3.5-2.5,4.5-4.5c1-2,1.5-4.4,1.5-7.2V13.3 C64,10.5,63.5,8.1,62.5,6.1z M59.3,35.5c0,2.8-0.7,5-2.1,6.4c-1.4,1.5-3.6,2.2-6.5,2.2H31.9c-0.8,0-1.4,0.1-1.9,0.3s-1,0.5-1.6,1.1 l-9.3,9.2v-8.4c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.3-0.9-0.5-1.7-0.5h-3.6c-2.9,0-5.1-0.7-6.5-2.2c-1.4-1.5-2.1-3.6-2.1-6.4V13.3 c0-2.8,0.7-5,2.1-6.4s3.6-2.2,6.5-2.2h37.4c2.9,0,5.1,0.7,6.5,2.2s2.1,3.6,2.1,6.4V35.5z' }), jsxRuntime.jsx("path", { d: 'M17,16.4h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,16.3,16.6,16.4,17,16.4z' }), jsxRuntime.jsx("path", { d: 'M17,25.9h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,25.7,16.6,25.9,17,25.9z' }), jsxRuntime.jsx("path", { d: 'M17,35.3h19.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,35.2,16.6,35.3,17,35.3z' })] }));
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
function UmbrellaFill(props) {
|
|
2003
|
+
return (jsxRuntime.jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [jsxRuntime.jsx("path", { d: 'M62.5,6.1c-1-2-2.5-3.5-4.5-4.5c-2-1-4.4-1.6-7.3-1.6H13.3C10.4,0,8,0.5,6,1.6c-2,1-3.5,2.5-4.5,4.5c-1,2-1.5,4.4-1.5,7.2 v22.3c0,2.8,0.5,5.2,1.5,7.2S4,46.3,6,47.3c2,1,4.4,1.6,7.3,1.6h1.4v7.5c0,1.1,0.3,2,0.8,2.7c0.6,0.7,1.3,1,2.4,1 c0.7,0,1.4-0.2,2-0.6s1.3-1,2.2-1.7l10-8.9h18.6c2.9,0,5.3-0.5,7.3-1.6c2-1,3.5-2.5,4.5-4.5c1-2,1.5-4.4,1.5-7.2V13.3 C64,10.5,63.5,8.1,62.5,6.1z M59.3,35.5c0,2.8-0.7,5-2.1,6.4c-1.4,1.5-3.6,2.2-6.5,2.2H31.9c-0.8,0-1.4,0.1-1.9,0.3s-1,0.5-1.6,1.1 l-9.3,9.2v-8.4c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.3-0.9-0.5-1.7-0.5h-3.6c-2.9,0-5.1-0.7-6.5-2.2c-1.4-1.5-2.1-3.6-2.1-6.4V13.3 c0-2.8,0.7-5,2.1-6.4s3.6-2.2,6.5-2.2h37.4c2.9,0,5.1,0.7,6.5,2.2s2.1,3.6,2.1,6.4V35.5z' }), jsxRuntime.jsx("path", { d: 'M17,16.4h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,16.3,16.6,16.4,17,16.4z' }), jsxRuntime.jsx("path", { d: 'M17,25.9h29.6c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,25.7,16.6,25.9,17,25.9z' }), jsxRuntime.jsx("path", { d: 'M17,35.3h19.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5H17 c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2C16.2,35.2,16.6,35.3,17,35.3z' })] }));
|
|
2004
|
+
}
|
|
2005
|
+
|
|
995
2006
|
function xmark(props) {
|
|
996
2007
|
return (jsxRuntime.jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsxRuntime.jsx("path", { d: 'M1,63c0.7,0.7,1.6,1,2.6,1s1.9-0.3,2.6-1L32,37.1L57.8,63c0.7,0.7,1.5,1,2.5,1c1,0,1.9-0.3,2.6-1c0.7-0.7,1-1.6,1-2.6 c0-1-0.3-1.8-1-2.5L37.1,32L63,6.2c0.7-0.7,1-1.6,1-2.6S63.7,1.7,63,1c-0.7-0.7-1.6-1-2.6-1c-1,0-1.8,0.3-2.5,1L32,26.9L6.2,1 C5.5,0.3,4.6,0,3.6,0C2.6,0,1.7,0.3,1,1C0.3,1.7,0,2.6,0,3.6c0,1,0.3,1.9,1,2.6L26.9,32L1,57.8c-0.7,0.7-1,1.5-1,2.6 C0,61.4,0.3,62.3,1,63z' }) }));
|
|
997
2008
|
}
|
|
@@ -1166,21 +2177,163 @@ function Time({ children, dateObject, dateTime, day, hours, milliseconds, minute
|
|
|
1166
2177
|
return (jsxRuntime.jsx("time", { dateTime: dateAndTime, ref: ref, ...props, children: dateDisplay }));
|
|
1167
2178
|
}
|
|
1168
2179
|
|
|
2180
|
+
exports.Airplane = Airplane;
|
|
1169
2181
|
exports.Anchor = Anchor;
|
|
2182
|
+
exports.ArrowTriangle2CirclepathCircle = ArrowTriangle2CirclepathCircle;
|
|
2183
|
+
exports.ArrowTriangle2CirclepathCircleFill = ArrowTriangle2CirclepathCircleFill;
|
|
2184
|
+
exports.BagFill = BagFill;
|
|
2185
|
+
exports.Banknote = Banknote;
|
|
2186
|
+
exports.BellFill = BellFill;
|
|
2187
|
+
exports.BoltCar = BoltCar;
|
|
2188
|
+
exports.BoltFill = BoltFill;
|
|
2189
|
+
exports.BoltRingClosed = BoltRingClosed;
|
|
2190
|
+
exports.BoltTrianglebadgeExclamationmark = BoltTrianglebadgeExclamationmark;
|
|
2191
|
+
exports.BookFill = BookFill;
|
|
2192
|
+
exports.BookmarkFill = BookmarkFill;
|
|
2193
|
+
exports.BriefcaseFill = BriefcaseFill;
|
|
2194
|
+
exports.BubbleLeftFill = BubbleLeftFill;
|
|
2195
|
+
exports.Building2Fill = Building2Fill;
|
|
1170
2196
|
exports.Button = Button;
|
|
2197
|
+
exports.Calendar = Calendar;
|
|
2198
|
+
exports.CameraFill = CameraFill;
|
|
2199
|
+
exports.CarFill = CarFill;
|
|
2200
|
+
exports.CartFill = CartFill;
|
|
2201
|
+
exports.ChartBarDocHorizontal = ChartBarDocHorizontal;
|
|
2202
|
+
exports.Checkmark = Checkmark;
|
|
2203
|
+
exports.CheckmarkSeal = CheckmarkSeal;
|
|
2204
|
+
exports.ChevronCompactDown = ChevronCompactDown;
|
|
2205
|
+
exports.ChevronDown = ChevronDown;
|
|
2206
|
+
exports.ChevronLeft = ChevronLeft;
|
|
2207
|
+
exports.ChevronLeftForwardslashChevronRight = ChevronLeftForwardslashChevronRight;
|
|
2208
|
+
exports.ChevronRight = ChevronRight;
|
|
2209
|
+
exports.ChevronUpChevronDown = ChevronUpChevronDown;
|
|
2210
|
+
exports.CircleFill = CircleFill;
|
|
2211
|
+
exports.ClockBadgeCheckmark = ClockBadgeCheckmark;
|
|
2212
|
+
exports.ClockFill = ClockFill;
|
|
2213
|
+
exports.CloudFill = CloudFill;
|
|
2214
|
+
exports.CubeFill = CubeFill;
|
|
2215
|
+
exports.CurvePointLeft = CurvePointLeft;
|
|
2216
|
+
exports.DialHigh = DialHigh;
|
|
2217
|
+
exports.DocFill = DocFill;
|
|
2218
|
+
exports.DocOnClipboard = DocOnClipboard;
|
|
2219
|
+
exports.DocOnDoc = DocOnDoc;
|
|
2220
|
+
exports.DocOnDocFill = DocOnDocFill;
|
|
2221
|
+
exports.DocTextMagnifyingglass = DocOnMagnifyingglass;
|
|
2222
|
+
exports.DollarSign = DollarSign;
|
|
2223
|
+
exports.EllipsisCircle = EllipsisCircle;
|
|
2224
|
+
exports.EllipsisCircleFill = EllipsisCircleFill;
|
|
2225
|
+
exports.Envelope = Envelope;
|
|
2226
|
+
exports.EnvelopeFill = EnvelopeFill;
|
|
2227
|
+
exports.ExclamationmarkOctagon = ExclamationmarkOctagon;
|
|
2228
|
+
exports.Eye = Eye;
|
|
2229
|
+
exports.FigureWaterFitness = FigureWaterFitness;
|
|
2230
|
+
exports.FlagFill = FlagFill;
|
|
2231
|
+
exports.FlameFill = FlameFill;
|
|
2232
|
+
exports.Folder = Folder;
|
|
2233
|
+
exports.FolderFill = FolderFill;
|
|
1171
2234
|
exports.Form = Form;
|
|
1172
2235
|
exports.FormContextProvider = FormContextProvider;
|
|
1173
2236
|
exports.FormStatusProvider = FormStatusProvider;
|
|
2237
|
+
exports.Gearshape = Gearshape;
|
|
2238
|
+
exports.GearshapeFill = GearshapeFill;
|
|
1174
2239
|
exports.Ghost = Ghost;
|
|
2240
|
+
exports.GiftFill = GiftFill;
|
|
2241
|
+
exports.GlobeAmericasFill = GlobeAmericasFill;
|
|
2242
|
+
exports.HareFill = HareFill;
|
|
1175
2243
|
exports.Heading = Heading;
|
|
2244
|
+
exports.House = House;
|
|
2245
|
+
exports.HouseDeskclock = HouseDeskclock;
|
|
2246
|
+
exports.HouseFill = HouseFill;
|
|
2247
|
+
exports.IPhoneHouse = IPhoneHouse;
|
|
1176
2248
|
exports.Input = Input;
|
|
2249
|
+
exports.LightRibbon = LightRibbon;
|
|
2250
|
+
exports.LightbulbFill = LightbulbFill;
|
|
2251
|
+
exports.LightbulbLed = LightbulbLed;
|
|
1177
2252
|
exports.Link = Link;
|
|
2253
|
+
exports.ListBulletClipboardFill = ListBulletClipboardFill;
|
|
2254
|
+
exports.Magnifyingglass = Magnifyingglass;
|
|
2255
|
+
exports.MapPinEllipse = MapPinEllipse;
|
|
2256
|
+
exports.MinusPlusBatteryblock = MinusPlusBatteryblock;
|
|
1178
2257
|
exports.Modal = Modal;
|
|
1179
2258
|
exports.ModalDialog = ModalDialog;
|
|
1180
2259
|
exports.ModalTrigger = ModalTrigger;
|
|
2260
|
+
exports.Network = Network;
|
|
2261
|
+
exports.NetworkShield = NetworkShield;
|
|
2262
|
+
exports.NewspaperFill = NewspaperFill;
|
|
2263
|
+
exports.Number = Number$1;
|
|
2264
|
+
exports.PaperplaneFill = PaperplaneFill;
|
|
2265
|
+
exports.Person = Person;
|
|
2266
|
+
exports.PersonCropSquare = PersonCropSquare;
|
|
2267
|
+
exports.PersonFill = PersonFill;
|
|
2268
|
+
exports.PersonFillQuestionmark = PersonFillQuestionmark;
|
|
2269
|
+
exports.Phone = Phone;
|
|
2270
|
+
exports.PhoneArrowUpRight = PhoneArrowUpRight;
|
|
2271
|
+
exports.PhoneFill = PhoneFill;
|
|
2272
|
+
exports.PlayRectangleFill = PlayRectangleFill;
|
|
2273
|
+
exports.Plus = Plus;
|
|
2274
|
+
exports.Qrcode = Qrcode;
|
|
2275
|
+
exports.RectanglePortraitAndArrowLeft = RectanglePortraitAndArrowLeft;
|
|
2276
|
+
exports.RectanglePortraitAndArrowLeftFill = RectanglePortraitAndArrowLeftFill;
|
|
2277
|
+
exports.Sensor = Sensor;
|
|
2278
|
+
exports.Signature = Signature;
|
|
2279
|
+
exports.SolarPanel = SolarPanel;
|
|
2280
|
+
exports.SquareAndArrowDown = SquareAndArrowDown;
|
|
2281
|
+
exports.SquareAndArrowDownFill = SquareAndArrowDownFill;
|
|
2282
|
+
exports.SquareAndArrowUp = SquareAndArrowUp;
|
|
2283
|
+
exports.SquareAndArrowUpFill = SquareAndArrowUpFill;
|
|
2284
|
+
exports.SquareAndPencil = SquareAndPencil;
|
|
2285
|
+
exports.SquareAndPencilFill = SquareAndPencilFill;
|
|
1181
2286
|
exports.SubmitButton = SubmitButton;
|
|
2287
|
+
exports.TextBubble = TextBubble;
|
|
2288
|
+
exports.Textarea = Textarea;
|
|
2289
|
+
exports.ThreePeople = ThreePeople;
|
|
2290
|
+
exports.ThreeRectanglesDesktop = ThreeRectanglesDesktop;
|
|
2291
|
+
exports.ThreeRectanglesDesktopFill = ThreeRectanglesDesktopFill;
|
|
1182
2292
|
exports.Time = Time;
|
|
2293
|
+
exports.Trash = Trash;
|
|
2294
|
+
exports.TrashFill = TrashFill;
|
|
2295
|
+
exports.Tree = Tree;
|
|
2296
|
+
exports.UmbrellaFill = UmbrellaFill;
|
|
2297
|
+
exports.Xmark = xmark;
|
|
2298
|
+
exports.addClass = addClass;
|
|
2299
|
+
exports.currentMonthName = currentMonthName;
|
|
2300
|
+
exports.currentWeekdayName = currentWeekdayName;
|
|
2301
|
+
exports.daysInMonth = daysInMonth;
|
|
1183
2302
|
exports.defineField = defineField;
|
|
2303
|
+
exports.easeOutExpo = easeOutExpo;
|
|
2304
|
+
exports.emailRegex = emailRegex;
|
|
2305
|
+
exports.extendMadoTailwindMerge = extendMadoTailwindMerge;
|
|
2306
|
+
exports.findComponentByType = findComponentByType;
|
|
2307
|
+
exports.firstOfMonth = firstOfMonth;
|
|
2308
|
+
exports.formatPhoneNumber = formatPhoneNumber;
|
|
2309
|
+
exports.getDate = getDate;
|
|
2310
|
+
exports.getHours = getHours;
|
|
2311
|
+
exports.getHoursIn12 = getHoursIn12;
|
|
2312
|
+
exports.getMeridianFromHour = getMeridianFromHour;
|
|
2313
|
+
exports.getMilliseconds = getMilliseconds;
|
|
2314
|
+
exports.getMinutes = getMinutes;
|
|
2315
|
+
exports.getMonth = getMonth;
|
|
2316
|
+
exports.getMonthIndexFromName = getMonthIndexFromName;
|
|
2317
|
+
exports.getMonthName = getMonthName;
|
|
2318
|
+
exports.getNextMonth = getNextMonth;
|
|
2319
|
+
exports.getPreviousMonth = getPreviousMonth;
|
|
2320
|
+
exports.getSeconds = getSeconds;
|
|
2321
|
+
exports.getUserReadableDate = getUserReadableDate;
|
|
2322
|
+
exports.getUserReadableDateFromTimestampz = getUserReadableDateFromTimestampz;
|
|
2323
|
+
exports.getWeekdayName = getWeekdayName;
|
|
2324
|
+
exports.getYearsInRange = getYearsInRange;
|
|
2325
|
+
exports.hasClass = hasClass;
|
|
2326
|
+
exports.isEmail = isEmail;
|
|
2327
|
+
exports.isPhoneNumber = isPhoneNumber;
|
|
2328
|
+
exports.monthNamesList = monthNamesList;
|
|
2329
|
+
exports.removeClass = removeClass;
|
|
2330
|
+
exports.telRegex = telRegex;
|
|
2331
|
+
exports.toFullDateString = toFullDateString;
|
|
2332
|
+
exports.toLowerCase = toLowerCase;
|
|
2333
|
+
exports.toggleClass = toggleClass;
|
|
2334
|
+
exports.twMerge = twMerge;
|
|
2335
|
+
exports.twSort = twSort;
|
|
1184
2336
|
exports.useFormContext = useFormContext;
|
|
1185
2337
|
exports.useFormStatus = useFormStatus;
|
|
2338
|
+
exports.weekdayNamesList = weekdayNamesList;
|
|
1186
2339
|
//# sourceMappingURL=index.js.map
|