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.esm.js
CHANGED
|
@@ -1,9 +1,189 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment as Fragment$1 } from 'react/jsx-runtime';
|
|
2
2
|
import { extendTailwindMerge, twJoin } from 'tailwind-merge';
|
|
3
3
|
import { Children, isValidElement, Fragment, createContext, useContext, useSyncExternalStore, useRef, Suspense, useId, useEffect, useState, cloneElement } from 'react';
|
|
4
|
-
import { Button as Button$1, Field, Label, Input as Input$1, Description, Dialog, DialogBackdrop, DialogPanel } from '@headlessui/react';
|
|
4
|
+
import { Button as Button$1, Field, Label, Input as Input$1, Description, Textarea as Textarea$1, Dialog, DialogBackdrop, DialogPanel } from '@headlessui/react';
|
|
5
5
|
import { createPortal } from 'react-dom';
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* ### Has Class
|
|
9
|
+
* - Returns a boolean based on whether the specified element has the specified class
|
|
10
|
+
* @param {HTMLElement} element Any HTML Element
|
|
11
|
+
* @param {string} className A string of any class to check for
|
|
12
|
+
* @returns {boolean} true if the specified element has the specified class, else false
|
|
13
|
+
*/
|
|
14
|
+
function hasClass(element, className) {
|
|
15
|
+
return element.classList.contains(className);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* ### Add Class
|
|
19
|
+
* - Adds the specified classes to the specified elements
|
|
20
|
+
* @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)
|
|
21
|
+
* @param {string|string[]} classList A string or an array of classes to add to each element
|
|
22
|
+
*/
|
|
23
|
+
function addClass(elements, classList) {
|
|
24
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
25
|
+
let elementList, classListGroup;
|
|
26
|
+
// & Convert elements to array
|
|
27
|
+
switch (elementsType) {
|
|
28
|
+
// Selector
|
|
29
|
+
case 'String':
|
|
30
|
+
if (elementsIsString)
|
|
31
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
32
|
+
break;
|
|
33
|
+
// Multiple HTML Elements
|
|
34
|
+
case 'NodeList':
|
|
35
|
+
if (!elementsIsString)
|
|
36
|
+
elementList = Array.from(elements);
|
|
37
|
+
break;
|
|
38
|
+
// Array of Elements
|
|
39
|
+
case 'Array':
|
|
40
|
+
if (!elementsIsString)
|
|
41
|
+
elementList = elements;
|
|
42
|
+
break;
|
|
43
|
+
// Single HTML Element
|
|
44
|
+
default:
|
|
45
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
46
|
+
elementList = [elements];
|
|
47
|
+
}
|
|
48
|
+
// & Convert classList to array
|
|
49
|
+
switch (classListType) {
|
|
50
|
+
case 'String':
|
|
51
|
+
if (classListIsString)
|
|
52
|
+
if (classList.split(' ').length >= 2) {
|
|
53
|
+
classListGroup = classList.split(' ');
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
classListGroup = [classList];
|
|
57
|
+
}
|
|
58
|
+
break;
|
|
59
|
+
case 'Array':
|
|
60
|
+
if (!classListIsString)
|
|
61
|
+
classListGroup = classList;
|
|
62
|
+
break;
|
|
63
|
+
}
|
|
64
|
+
if (!elementList || elementList.length < 1)
|
|
65
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
66
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
67
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
68
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
69
|
+
if (hasClass(element, classItem))
|
|
70
|
+
return;
|
|
71
|
+
element.classList.add(classItem);
|
|
72
|
+
}));
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* ### Remove Class
|
|
76
|
+
* - Removes the specified classes from the specified elements
|
|
77
|
+
* @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)
|
|
78
|
+
* @param {string|string[]} classList A string or an array of classes to remove from each element
|
|
79
|
+
*/
|
|
80
|
+
function removeClass(elements, classList) {
|
|
81
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
82
|
+
let elementList, classListGroup;
|
|
83
|
+
// & Convert elements to array
|
|
84
|
+
switch (elementsType) {
|
|
85
|
+
// Selector
|
|
86
|
+
case 'String':
|
|
87
|
+
if (elementsIsString)
|
|
88
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
89
|
+
break;
|
|
90
|
+
// Multiple HTML Elements
|
|
91
|
+
case 'NodeList':
|
|
92
|
+
if (!elementsIsString)
|
|
93
|
+
elementList = Array.from(elements);
|
|
94
|
+
break;
|
|
95
|
+
// Array of Elements
|
|
96
|
+
case 'Array':
|
|
97
|
+
if (!elementsIsString)
|
|
98
|
+
elementList = elements;
|
|
99
|
+
break;
|
|
100
|
+
// Single HTML Element
|
|
101
|
+
default:
|
|
102
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
103
|
+
elementList = [elements];
|
|
104
|
+
}
|
|
105
|
+
// & Convert classList to array
|
|
106
|
+
switch (classListType) {
|
|
107
|
+
case 'String':
|
|
108
|
+
if (classListIsString)
|
|
109
|
+
if (classList.split(' ').length >= 2) {
|
|
110
|
+
classListGroup = classList.split(' ');
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
113
|
+
classListGroup = [classList];
|
|
114
|
+
}
|
|
115
|
+
break;
|
|
116
|
+
case 'Array':
|
|
117
|
+
if (!classListIsString)
|
|
118
|
+
classListGroup = classList;
|
|
119
|
+
break;
|
|
120
|
+
}
|
|
121
|
+
if (!elementList || elementList.length < 1)
|
|
122
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
123
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
124
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
125
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
126
|
+
if (!hasClass(element, classItem))
|
|
127
|
+
return;
|
|
128
|
+
element.classList.remove(classItem);
|
|
129
|
+
}));
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* ### Toggle Class
|
|
133
|
+
* - Toggles the specified classes on the specified elements
|
|
134
|
+
* @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)
|
|
135
|
+
* @param {string|string[]} classList A string or an array of classes to toggle on each element
|
|
136
|
+
*/
|
|
137
|
+
function toggleClass(elements, classList) {
|
|
138
|
+
const elementsType = elements.constructor.name, elementsIsString = typeof elements === 'string', classListType = classList.constructor.name, classListIsString = typeof classList === 'string';
|
|
139
|
+
let elementList, classListGroup;
|
|
140
|
+
// & Convert elements to array
|
|
141
|
+
switch (elementsType) {
|
|
142
|
+
// Selector
|
|
143
|
+
case 'String':
|
|
144
|
+
if (elementsIsString)
|
|
145
|
+
elementList = Array.from(document.querySelectorAll(elements));
|
|
146
|
+
break;
|
|
147
|
+
// Multiple HTML Elements
|
|
148
|
+
case 'NodeList':
|
|
149
|
+
if (!elementsIsString)
|
|
150
|
+
elementList = Array.from(elements);
|
|
151
|
+
break;
|
|
152
|
+
// Array of Elements
|
|
153
|
+
case 'Array':
|
|
154
|
+
if (!elementsIsString)
|
|
155
|
+
elementList = elements;
|
|
156
|
+
break;
|
|
157
|
+
// Single HTML Element
|
|
158
|
+
default:
|
|
159
|
+
if (elementsType.startsWith('HTML') && !elementsIsString)
|
|
160
|
+
elementList = [elements];
|
|
161
|
+
}
|
|
162
|
+
// & Convert classList to array
|
|
163
|
+
switch (classListType) {
|
|
164
|
+
case 'String':
|
|
165
|
+
if (classListIsString)
|
|
166
|
+
if (classList.split(' ').length >= 2) {
|
|
167
|
+
classListGroup = classList.split(' ');
|
|
168
|
+
}
|
|
169
|
+
else {
|
|
170
|
+
classListGroup = [classList];
|
|
171
|
+
}
|
|
172
|
+
break;
|
|
173
|
+
case 'Array':
|
|
174
|
+
if (!classListIsString)
|
|
175
|
+
classListGroup = classList;
|
|
176
|
+
break;
|
|
177
|
+
}
|
|
178
|
+
if (!elementList || elementList.length < 1)
|
|
179
|
+
throw new Error(`Elements are invalid or undefined. elements: ${elements} → elementList: ${elementList}`);
|
|
180
|
+
if (!classListGroup || classListGroup.length < 1)
|
|
181
|
+
throw new Error(`Class List is invalid or undefined. classList: ${classList} → classListGroup: ${classListGroup}`);
|
|
182
|
+
elementList.forEach((element) => classListGroup.forEach((classItem) => {
|
|
183
|
+
element.classList.toggle(classItem);
|
|
184
|
+
}));
|
|
185
|
+
}
|
|
186
|
+
|
|
7
187
|
const integerList = Array.from({ length: 100 }, (_, i) => `${i + 1}`);
|
|
8
188
|
const twMerge = extendTailwindMerge({
|
|
9
189
|
extend: {
|
|
@@ -80,13 +260,105 @@ const twMerge = extendTailwindMerge({
|
|
|
80
260
|
},
|
|
81
261
|
},
|
|
82
262
|
});
|
|
263
|
+
function extendMadoTailwindMerge(configExtension) {
|
|
264
|
+
const extend = configExtension.extend || {};
|
|
265
|
+
const theme = extend.theme || {};
|
|
266
|
+
const color = 'color' in theme ? theme.color : [];
|
|
267
|
+
const classGroups = extend.classGroups || {};
|
|
268
|
+
const themeRest = { ...theme };
|
|
269
|
+
if ('color' in themeRest)
|
|
270
|
+
delete themeRest.color;
|
|
271
|
+
const extendRest = { ...extend };
|
|
272
|
+
delete extendRest.theme;
|
|
273
|
+
delete extendRest.classGroups;
|
|
274
|
+
return extendTailwindMerge({
|
|
275
|
+
extend: {
|
|
276
|
+
theme: {
|
|
277
|
+
color: [
|
|
278
|
+
{
|
|
279
|
+
ui: [
|
|
280
|
+
'red',
|
|
281
|
+
'orange',
|
|
282
|
+
'yellow',
|
|
283
|
+
'green',
|
|
284
|
+
'sky-blue',
|
|
285
|
+
'blue',
|
|
286
|
+
'violet',
|
|
287
|
+
'magenta',
|
|
288
|
+
'purple',
|
|
289
|
+
'brown',
|
|
290
|
+
'grey',
|
|
291
|
+
'pink',
|
|
292
|
+
],
|
|
293
|
+
},
|
|
294
|
+
...color,
|
|
295
|
+
],
|
|
296
|
+
...themeRest,
|
|
297
|
+
},
|
|
298
|
+
classGroups: {
|
|
299
|
+
animate: [
|
|
300
|
+
{
|
|
301
|
+
animate: [
|
|
302
|
+
'bounce',
|
|
303
|
+
'double-spin',
|
|
304
|
+
'drop-in',
|
|
305
|
+
'flip',
|
|
306
|
+
'flip-again',
|
|
307
|
+
'grid-rows',
|
|
308
|
+
'heartbeat',
|
|
309
|
+
'ping',
|
|
310
|
+
'pulse',
|
|
311
|
+
'slide-up',
|
|
312
|
+
'spin',
|
|
313
|
+
'wave',
|
|
314
|
+
],
|
|
315
|
+
},
|
|
316
|
+
],
|
|
317
|
+
'animation-direction': [
|
|
318
|
+
{
|
|
319
|
+
'animation-direction': ['normal', 'reverse', 'alternate', 'alternate-reverse'],
|
|
320
|
+
},
|
|
321
|
+
],
|
|
322
|
+
'animation-fill': [
|
|
323
|
+
{
|
|
324
|
+
'animation-fill': ['none', 'forwards', 'backwards', 'both'],
|
|
325
|
+
},
|
|
326
|
+
],
|
|
327
|
+
'animation-iteration': [
|
|
328
|
+
{
|
|
329
|
+
'animation-iteration': [...integerList, 'infinite'],
|
|
330
|
+
},
|
|
331
|
+
],
|
|
332
|
+
'animation-state': [
|
|
333
|
+
{
|
|
334
|
+
'animation-state': ['running', 'paused'],
|
|
335
|
+
},
|
|
336
|
+
],
|
|
337
|
+
'grid-cols': [
|
|
338
|
+
{
|
|
339
|
+
'grid-cols': ['0fr', '1fr'],
|
|
340
|
+
},
|
|
341
|
+
],
|
|
342
|
+
'grid-rows': [
|
|
343
|
+
{
|
|
344
|
+
'grid-rows': ['0fr', '1fr'],
|
|
345
|
+
},
|
|
346
|
+
],
|
|
347
|
+
transition: ['transition-rows'],
|
|
348
|
+
...classGroups,
|
|
349
|
+
},
|
|
350
|
+
...extendRest,
|
|
351
|
+
},
|
|
352
|
+
...configExtension,
|
|
353
|
+
});
|
|
354
|
+
}
|
|
83
355
|
|
|
84
356
|
/** The current date as a Date object */
|
|
85
357
|
const d = new Date();
|
|
86
358
|
/** The current minute of the current hour */
|
|
87
359
|
const minutes = d.getMinutes();
|
|
88
360
|
/** The current year */
|
|
89
|
-
d.getFullYear();
|
|
361
|
+
const year = d.getFullYear();
|
|
90
362
|
/** An array of the names of month in order */
|
|
91
363
|
const monthNamesList = [
|
|
92
364
|
'January',
|
|
@@ -113,9 +385,29 @@ const weekdayNamesList = [
|
|
|
113
385
|
'Saturday',
|
|
114
386
|
];
|
|
115
387
|
/** The name of the current month */
|
|
116
|
-
getMonthName();
|
|
388
|
+
const currentMonthName = getMonthName();
|
|
117
389
|
/** The name of the current day of the week */
|
|
118
|
-
getWeekdayName();
|
|
390
|
+
const currentWeekdayName = getWeekdayName();
|
|
391
|
+
/**
|
|
392
|
+
* ### Days In Month
|
|
393
|
+
* - Returns the number of days in the specified month.
|
|
394
|
+
* @param {Date} date A Date object representing the month to get the number of days for. (Preset to the current date)
|
|
395
|
+
* @returns {number} The number of days in the specified month.
|
|
396
|
+
*/
|
|
397
|
+
function daysInMonth(date = d) {
|
|
398
|
+
const selectedYear = date.getFullYear(), selectedMonth = date.getMonth() + 1;
|
|
399
|
+
return new Date(selectedYear, selectedMonth, 0).getDate();
|
|
400
|
+
}
|
|
401
|
+
/**
|
|
402
|
+
* ### First of Month
|
|
403
|
+
* - Returns the first day of the specified month.
|
|
404
|
+
* @param {Date} date A Date object representing the month to get the first day for. (Preset to current date)
|
|
405
|
+
* @returns {Date} A Date object of the given month, with the first day.
|
|
406
|
+
*/
|
|
407
|
+
function firstOfMonth(date = d) {
|
|
408
|
+
// Return a new Date object with the first of the month selected
|
|
409
|
+
return new Date(date.getFullYear(), date.getMonth(), 1);
|
|
410
|
+
}
|
|
119
411
|
/**
|
|
120
412
|
* ### Get Date
|
|
121
413
|
* - Returns the date with two digits
|
|
@@ -144,6 +436,32 @@ function getHours(hours = d) {
|
|
|
144
436
|
formattedHours = `0${formattedHours}`;
|
|
145
437
|
return formattedHours;
|
|
146
438
|
}
|
|
439
|
+
/**
|
|
440
|
+
* ### Get Hours in 12
|
|
441
|
+
* - Returns the hour based on the specified 24 hour value in a 12 hour format
|
|
442
|
+
* @param {number|Date} hour The hour to be converted to 12 hour format
|
|
443
|
+
* @returns {number} The hour in a 12 hour format
|
|
444
|
+
*/
|
|
445
|
+
function getHoursIn12(hour = d) {
|
|
446
|
+
if (typeof hour !== 'number')
|
|
447
|
+
hour = hour.getHours();
|
|
448
|
+
if (hour > 12)
|
|
449
|
+
return hour - 12;
|
|
450
|
+
return hour;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* ### Get Meridian from Hour
|
|
454
|
+
* - Returns either 'pm' or 'am' based on the specified 24 hour value
|
|
455
|
+
* @param {number|Date} hour The hour to get the meridian from
|
|
456
|
+
* @returns {'am'|'pm'} The meridian for the given hour
|
|
457
|
+
*/
|
|
458
|
+
function getMeridianFromHour(hour = d) {
|
|
459
|
+
if (typeof hour !== 'number')
|
|
460
|
+
hour = hour.getHours();
|
|
461
|
+
if (hour >= 12)
|
|
462
|
+
return 'pm';
|
|
463
|
+
return 'am';
|
|
464
|
+
}
|
|
147
465
|
/**
|
|
148
466
|
* ### Get Milliseconds
|
|
149
467
|
* - Returns the milliseconds with two digits
|
|
@@ -186,6 +504,9 @@ function getMonth(month = d) {
|
|
|
186
504
|
formattedMonth = `0${formattedMonth}`;
|
|
187
505
|
return formattedMonth;
|
|
188
506
|
}
|
|
507
|
+
function getMonthIndexFromName(name) {
|
|
508
|
+
return monthNamesList.findIndex(monthName => monthName === name);
|
|
509
|
+
}
|
|
189
510
|
/**
|
|
190
511
|
* ### Get Month Name
|
|
191
512
|
* - Returns the name of the specified month
|
|
@@ -197,6 +518,28 @@ function getMonthName(date = d) {
|
|
|
197
518
|
return monthNamesList[date];
|
|
198
519
|
return monthNamesList[date.getMonth()];
|
|
199
520
|
}
|
|
521
|
+
/**
|
|
522
|
+
* ### Get Next Month
|
|
523
|
+
* - Returns the number of the following month from the specified month
|
|
524
|
+
* @param {Date} date The Date object representing the month to get the following month from (Preset to current date)
|
|
525
|
+
* @returns {number} The indexed month of the following month
|
|
526
|
+
*/
|
|
527
|
+
function getNextMonth(date = d) {
|
|
528
|
+
const givenMonth = date.getMonth(); // Get the month from date
|
|
529
|
+
// Return the indexed month. min 0, max 11
|
|
530
|
+
return givenMonth === 11 ? 0 : givenMonth + 1;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* ### Get Previous Month
|
|
534
|
+
* - Returns the number of the previous month from the specified month
|
|
535
|
+
* @param {Date} date The Date object representing the month to get the previous month from (Preset to current date)
|
|
536
|
+
* @returns {number} The indexed month of the previous month
|
|
537
|
+
*/
|
|
538
|
+
function getPreviousMonth(date = d) {
|
|
539
|
+
const givenMonth = date.getMonth(); // Get the month from date
|
|
540
|
+
// Return the indexed month. min 0, max 11
|
|
541
|
+
return givenMonth === 0 ? 11 : givenMonth - 1;
|
|
542
|
+
}
|
|
200
543
|
/**
|
|
201
544
|
* ### Get Seconds
|
|
202
545
|
* - Returns the seconds with two digits
|
|
@@ -211,6 +554,31 @@ function getSeconds(seconds = d) {
|
|
|
211
554
|
formattedSeconds = `0${formattedSeconds}`;
|
|
212
555
|
return formattedSeconds;
|
|
213
556
|
}
|
|
557
|
+
/**
|
|
558
|
+
* ### Get User Readable Date
|
|
559
|
+
* - Returns a string of the current date in a user-friendly way
|
|
560
|
+
* - Includes `'Yesterday'`, '`Today'`, and `'Tomorrow'`
|
|
561
|
+
* @param date (default: `new Date()`)
|
|
562
|
+
* @returns {'Today'|'Tomorrow'|'Yesterday'|string} `'weekday, month day, year'` | `'Yesterday'` | `'Today'` | `'Tomorrow'`
|
|
563
|
+
*/
|
|
564
|
+
function getUserReadableDate(date = d) {
|
|
565
|
+
const dateTime = date.getTime();
|
|
566
|
+
const today = new Date(), isToday = dateTime === today.getTime();
|
|
567
|
+
if (isToday)
|
|
568
|
+
return 'Today';
|
|
569
|
+
const yesterday = new Date(today.getDate() - 1), isYesterday = dateTime === yesterday.getTime();
|
|
570
|
+
if (isYesterday)
|
|
571
|
+
return 'Yesterday';
|
|
572
|
+
const tomorrow = new Date(today.getDate() + 1), isTomorrow = dateTime === tomorrow.getTime();
|
|
573
|
+
if (isTomorrow)
|
|
574
|
+
return 'Tomorrow';
|
|
575
|
+
const thisYear = today.getFullYear(), isSameYear = date.getFullYear() === thisYear;
|
|
576
|
+
const fullDateString = toFullDateString(date, {
|
|
577
|
+
weekday: 'code',
|
|
578
|
+
year: !isSameYear,
|
|
579
|
+
});
|
|
580
|
+
return fullDateString;
|
|
581
|
+
}
|
|
214
582
|
/**
|
|
215
583
|
* ### Get Weekday Name
|
|
216
584
|
* - Returns the weekday name of the specified day
|
|
@@ -223,6 +591,80 @@ function getWeekdayName(weekday = d) {
|
|
|
223
591
|
// Return the name of the day of the week
|
|
224
592
|
return weekdayNamesList[weekday.getDay()];
|
|
225
593
|
}
|
|
594
|
+
/**
|
|
595
|
+
* ### Get Years in Range
|
|
596
|
+
* - Returns an array of years in between the specified minimum and maximum years
|
|
597
|
+
* @param {number} minYear The minimum year
|
|
598
|
+
* @param {number} maxYear The maximum year
|
|
599
|
+
* @returns {number[]} Array of years
|
|
600
|
+
*/
|
|
601
|
+
function getYearsInRange(minYear = 0, maxYear = year) {
|
|
602
|
+
const yearList = [];
|
|
603
|
+
for (let selectedYear = minYear; selectedYear <= maxYear; selectedYear++) {
|
|
604
|
+
yearList.push(selectedYear);
|
|
605
|
+
}
|
|
606
|
+
return yearList;
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* ### To Full Date String
|
|
610
|
+
* - Returns a formatted string to display the date
|
|
611
|
+
* @param {Date} date (default: `new Date()`)
|
|
612
|
+
* @param {ToFullDateStringOptionsProps} options Change how to display the weekday, month name, day of the month, and year.
|
|
613
|
+
* @returns {string} '`weekday`, `month` `day`, `year`'
|
|
614
|
+
*/
|
|
615
|
+
function toFullDateString(date = d, options) {
|
|
616
|
+
let weekdayName = getWeekdayName(date), monthName = getMonthName(date), dayOfMonth = date.getDate(), year = date.getFullYear().toString();
|
|
617
|
+
if (options) {
|
|
618
|
+
const includesWeekday = options.weekday !== false, includesDay = options.day !== false, includesMonth = options.month !== false, includesYear = options.year !== false;
|
|
619
|
+
if (includesWeekday) {
|
|
620
|
+
if (options.weekday === 'code')
|
|
621
|
+
weekdayName = weekdayName.slice(0, 3);
|
|
622
|
+
if (includesMonth || includesDay || includesYear)
|
|
623
|
+
weekdayName += ', ';
|
|
624
|
+
}
|
|
625
|
+
else {
|
|
626
|
+
weekdayName = '';
|
|
627
|
+
}
|
|
628
|
+
if (includesMonth) {
|
|
629
|
+
if (options.month === 'code')
|
|
630
|
+
monthName = monthName.slice(0, 3);
|
|
631
|
+
if (includesDay)
|
|
632
|
+
monthName += ' ';
|
|
633
|
+
}
|
|
634
|
+
else {
|
|
635
|
+
monthName = '';
|
|
636
|
+
}
|
|
637
|
+
if (!includesDay)
|
|
638
|
+
dayOfMonth = '';
|
|
639
|
+
if (includesYear) {
|
|
640
|
+
if (options.year === 'code')
|
|
641
|
+
year = year.slice(-2);
|
|
642
|
+
if (includesMonth || includesDay)
|
|
643
|
+
year = ', ' + year;
|
|
644
|
+
}
|
|
645
|
+
else {
|
|
646
|
+
year = '';
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
return weekdayName + monthName + dayOfMonth + year;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* ### Get User Readable Date From Timestampz
|
|
653
|
+
* - Returns a string of the current date in a user-friendly way
|
|
654
|
+
* - Includes `'Yesterday'`, '`Today'`, and `'Tomorrow'`
|
|
655
|
+
* @param string
|
|
656
|
+
* @returns {'Today'|'Tomorrow'|'Yesterday'|string} `'weekday, month day, year'` | `'Yesterday'` | `'Today'` | `'Tomorrow'`
|
|
657
|
+
*/
|
|
658
|
+
function getUserReadableDateFromTimestampz(timestampz) {
|
|
659
|
+
const [date, time] = timestampz.split('T') || [];
|
|
660
|
+
const [year, month, day] = date?.split('-').map(string => Number(string)) || [];
|
|
661
|
+
const timezoneIsAheadOfUTC = time?.includes('+');
|
|
662
|
+
const [hms, _timezone] = timezoneIsAheadOfUTC ? time?.split('+') : time?.split('-') || [];
|
|
663
|
+
const [hours, minutes, seconds] = hms?.split(':').map(string => Number(string)) || [];
|
|
664
|
+
// const [timezoneHours, timezoneMinutes] = timezone?.split(':').map(string => Number(string)) || []
|
|
665
|
+
const dateAndTime = new Date(year, month - 1, day, hours, minutes, seconds), userReadableDateAndTime = getUserReadableDate(dateAndTime);
|
|
666
|
+
return userReadableDateAndTime;
|
|
667
|
+
}
|
|
226
668
|
|
|
227
669
|
function findComponentByType(children, componentType) {
|
|
228
670
|
const childrenArray = Children.toArray(children);
|
|
@@ -274,6 +716,23 @@ function isPhoneNumber(tel) {
|
|
|
274
716
|
* @param {string} string
|
|
275
717
|
* @returns {string} string formatted (000) 000-0000
|
|
276
718
|
*/
|
|
719
|
+
function formatPhoneNumber(string, countryCode) {
|
|
720
|
+
return (`${countryCode ? `+${countryCode} ` : ''}` +
|
|
721
|
+
string
|
|
722
|
+
.replace(/\D/g, '')
|
|
723
|
+
.slice(-10)
|
|
724
|
+
.split('')
|
|
725
|
+
.map((char, index) => {
|
|
726
|
+
if (index === 0)
|
|
727
|
+
return `(${char}`;
|
|
728
|
+
if (index === 2)
|
|
729
|
+
return `${char}) `;
|
|
730
|
+
if (index === 5)
|
|
731
|
+
return `${char}-`;
|
|
732
|
+
return char;
|
|
733
|
+
})
|
|
734
|
+
.join(''));
|
|
735
|
+
}
|
|
277
736
|
/**
|
|
278
737
|
* # To Lower Case
|
|
279
738
|
* Converts a string to lowercase, and offers easy string replacements for creating snake case, kebab case, or your own.
|
|
@@ -308,15 +767,15 @@ function Anchor({ className, disabled, href, onClick, ref, target, rel, ...props
|
|
|
308
767
|
: 'prefetch' }));
|
|
309
768
|
}
|
|
310
769
|
// * Styles
|
|
311
|
-
const baseClasses = twSort('
|
|
312
|
-
const lineStaticClasses = twJoin(baseClasses, '
|
|
313
|
-
const lineClasses = twJoin(lineStaticClasses, '
|
|
770
|
+
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');
|
|
771
|
+
const lineStaticClasses = twJoin(baseClasses, 'whitespace-nowrap after:-bottom-0.5 after:w-[calc(100%+0.15rem)] after:rounded-full after:border-1 after:border-current');
|
|
772
|
+
const lineClasses = twJoin(lineStaticClasses, 'whitespace-nowrap transition-transform after:transition-transform after:ease-exponential');
|
|
314
773
|
const scaleXClasses = 'after:scale-x-0 pointer-fine:hover:after:scale-x-100 active:after:scale-x-100';
|
|
315
774
|
const scaleYClasses = 'after:scale-y-0 pointer-fine:hover:after:scale-y-100 active:after:scale-y-100';
|
|
316
775
|
const lineNormalClasses = twJoin([
|
|
317
776
|
lineClasses,
|
|
318
777
|
scaleYClasses,
|
|
319
|
-
'
|
|
778
|
+
'after:origin-bottom after:translate-y-0.5 active:after:translate-y-0 pointer-fine:hover:after:translate-y-0',
|
|
320
779
|
]);
|
|
321
780
|
const lineLtrClasses = twJoin([lineClasses, scaleXClasses, 'after:origin-left']);
|
|
322
781
|
const lineRtlClasses = twJoin([lineClasses, scaleXClasses, 'after:origin-right']);
|
|
@@ -324,160 +783,151 @@ const lineCenterClasses = twJoin([lineClasses, scaleXClasses]);
|
|
|
324
783
|
const lineLiftClasses = twJoin([
|
|
325
784
|
lineClasses,
|
|
326
785
|
scaleYClasses,
|
|
327
|
-
'
|
|
786
|
+
'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',
|
|
328
787
|
]);
|
|
329
|
-
const fillClasses = twJoin(baseClasses, '
|
|
788
|
+
const fillClasses = 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');
|
|
330
789
|
// Define theme-specific fill color transition classes
|
|
331
790
|
const getFillColorTransitionClasses = (theme = 'blue') => {
|
|
332
791
|
switch (theme) {
|
|
333
792
|
case 'brown':
|
|
334
|
-
return twJoin(fillClasses, 'after:bg-ui-brown contrast-more:after:bg-ui-brown
|
|
793
|
+
return twJoin(fillClasses, 'after:bg-ui-brown after:transition-transform contrast-more:after:bg-ui-brown');
|
|
335
794
|
case 'green':
|
|
336
|
-
return twJoin(fillClasses, 'after:bg-ui-green contrast-more:after:bg-ui-green
|
|
795
|
+
return twJoin(fillClasses, 'after:bg-ui-green after:transition-transform contrast-more:after:bg-ui-green');
|
|
337
796
|
case 'grey':
|
|
338
|
-
return twJoin(fillClasses, 'after:bg-ui-grey contrast-more:after:bg-ui-grey
|
|
797
|
+
return twJoin(fillClasses, 'after:bg-ui-grey after:transition-transform contrast-more:after:bg-ui-grey');
|
|
339
798
|
case 'sky-blue':
|
|
340
|
-
return twJoin(fillClasses, 'after:bg-ui-sky-blue contrast-more:after:bg-ui-sky-blue
|
|
799
|
+
return twJoin(fillClasses, 'after:bg-ui-sky-blue after:transition-transform contrast-more:after:bg-ui-sky-blue');
|
|
341
800
|
case 'magenta':
|
|
342
|
-
return twJoin(fillClasses, 'after:bg-ui-magenta contrast-more:after:bg-ui-magenta
|
|
801
|
+
return twJoin(fillClasses, 'after:bg-ui-magenta after:transition-transform contrast-more:after:bg-ui-magenta');
|
|
343
802
|
case 'neutral':
|
|
344
803
|
return 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');
|
|
345
804
|
case 'orange':
|
|
346
|
-
return twJoin(fillClasses, 'after:bg-ui-orange contrast-more:after:bg-ui-orange
|
|
805
|
+
return twJoin(fillClasses, 'after:bg-ui-orange after:transition-transform contrast-more:after:bg-ui-orange');
|
|
347
806
|
case 'pink':
|
|
348
|
-
return twJoin(fillClasses, 'after:bg-ui-pink contrast-more:after:bg-ui-pink
|
|
349
|
-
case 'primary':
|
|
350
|
-
return twJoin(fillClasses, 'after:bg-primary-500 contrast-more:after:bg-primary-500 after:transition-transform');
|
|
807
|
+
return twJoin(fillClasses, 'after:bg-ui-pink after:transition-transform contrast-more:after:bg-ui-pink');
|
|
351
808
|
case 'purple':
|
|
352
|
-
return twJoin(fillClasses, 'after:bg-ui-purple contrast-more:after:bg-ui-purple
|
|
809
|
+
return twJoin(fillClasses, 'after:bg-ui-purple after:transition-transform contrast-more:after:bg-ui-purple');
|
|
353
810
|
case 'red':
|
|
354
|
-
return twJoin(fillClasses, 'after:bg-ui-red contrast-more:after:bg-ui-red
|
|
811
|
+
return twJoin(fillClasses, 'after:bg-ui-red after:transition-transform contrast-more:after:bg-ui-red');
|
|
355
812
|
case 'violet':
|
|
356
|
-
return twJoin(fillClasses, 'after:bg-ui-violet contrast-more:after:bg-ui-violet
|
|
813
|
+
return twJoin(fillClasses, 'after:bg-ui-violet after:transition-transform contrast-more:after:bg-ui-violet');
|
|
357
814
|
case 'yellow':
|
|
358
|
-
return twJoin(fillClasses, 'after:bg-ui-yellow contrast-more:after:bg-ui-yellow
|
|
815
|
+
return twJoin(fillClasses, 'after:bg-ui-yellow after:transition-transform contrast-more:after:bg-ui-yellow');
|
|
359
816
|
case 'blue':
|
|
360
817
|
default:
|
|
361
|
-
return twJoin(fillClasses, 'after:bg-ui-blue contrast-more:after:bg-ui-blue
|
|
818
|
+
return twJoin(fillClasses, 'after:bg-ui-blue after:transition-transform contrast-more:after:bg-ui-blue');
|
|
362
819
|
}
|
|
363
820
|
};
|
|
364
821
|
// Define theme-specific fill center classes
|
|
365
822
|
const getFillCenterClasses = (theme = 'blue') => {
|
|
366
823
|
switch (theme) {
|
|
367
824
|
case 'brown':
|
|
368
|
-
return twJoin(fillClasses, 'after:bg-ui-brown/0
|
|
825
|
+
return 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');
|
|
369
826
|
case 'green':
|
|
370
|
-
return twJoin(fillClasses, 'after:bg-ui-green/0
|
|
827
|
+
return 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');
|
|
371
828
|
case 'grey':
|
|
372
|
-
return twJoin(fillClasses, 'after:bg-ui-grey/0
|
|
829
|
+
return 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');
|
|
373
830
|
case 'sky-blue':
|
|
374
|
-
return twJoin(fillClasses, 'after:
|
|
831
|
+
return 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');
|
|
375
832
|
case 'magenta':
|
|
376
|
-
return twJoin(fillClasses, 'after:bg-ui-magenta/0
|
|
833
|
+
return 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');
|
|
377
834
|
case 'neutral':
|
|
378
|
-
return twJoin(fillClasses, '
|
|
835
|
+
return 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');
|
|
379
836
|
case 'orange':
|
|
380
|
-
return twJoin(fillClasses, 'after:bg-ui-orange/0
|
|
837
|
+
return 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');
|
|
381
838
|
case 'pink':
|
|
382
|
-
return twJoin(fillClasses, 'after:bg-ui-pink/0
|
|
383
|
-
case 'primary':
|
|
384
|
-
return 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');
|
|
839
|
+
return 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');
|
|
385
840
|
case 'purple':
|
|
386
|
-
return twJoin(fillClasses, 'after:bg-ui-purple/0
|
|
841
|
+
return 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');
|
|
387
842
|
case 'red':
|
|
388
|
-
return twJoin(fillClasses, 'after:bg-ui-red/0
|
|
843
|
+
return 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');
|
|
389
844
|
case 'violet':
|
|
390
|
-
return twJoin(fillClasses, 'after:bg-ui-violet/0
|
|
845
|
+
return 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');
|
|
391
846
|
case 'yellow':
|
|
392
|
-
return twJoin(fillClasses, 'after:bg-ui-yellow/0
|
|
847
|
+
return 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');
|
|
393
848
|
case 'blue':
|
|
394
849
|
default:
|
|
395
|
-
return twJoin(fillClasses, 'after:bg-ui-blue/0
|
|
850
|
+
return 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');
|
|
396
851
|
}
|
|
397
852
|
};
|
|
398
853
|
const multilineBaseClasses = twSort('bg-linear-to-r from-current to-current bg-no-repeat active:scale-95');
|
|
399
854
|
const multilineLineStaticClasses = 'underline';
|
|
400
|
-
const multilineNormalClasses = twSort('
|
|
401
|
-
const multilineClasses = twJoin(multilineBaseClasses, 'ease-exponential
|
|
855
|
+
const multilineNormalClasses = twSort('underline-offset-1 active:underline pointer-fine:hover:underline');
|
|
856
|
+
const multilineClasses = twJoin(multilineBaseClasses, 'duration-500 ease-exponential');
|
|
402
857
|
const multilineLineClasses = twJoin(multilineClasses, 'bg-[position:0%_100%] px-px pb-px transition-[background-size]');
|
|
403
|
-
const multilineXClasses = twJoin(multilineLineClasses, '
|
|
858
|
+
const multilineXClasses = twJoin(multilineLineClasses, 'bg-[size:0%_2px] focus-visible:bg-[size:100%_2px] active:bg-[size:100%_2px] pointer-fine:hover:bg-[size:100%_2px]');
|
|
404
859
|
const multilineLineRtlClasses = twJoin([multilineXClasses, 'bg-[position:100%_100%]']);
|
|
405
860
|
const multilineLineCenterClasses = twJoin([multilineXClasses, 'bg-[position:50%_100%]']);
|
|
406
|
-
const multilineLineLiftClasses = twJoin(multilineLineClasses, '
|
|
407
|
-
const multilineFillBaseClasses = twJoin(multilineBaseClasses, 'py-0.75
|
|
408
|
-
// Define theme-specific multiline fill color classes
|
|
861
|
+
const multilineLineLiftClasses = twJoin(multilineLineClasses, 'bg-[size:auto_0px] focus-visible:bg-[size:auto_2px] active:bg-[size:auto_2px] pointer-fine:hover:bg-[size:auto_2px]');
|
|
862
|
+
const multilineFillBaseClasses = twJoin(multilineBaseClasses, 'rounded px-0.5 py-0.75 focus-visible:text-zinc-50 active:text-zinc-50 pointer-fine:hover:text-zinc-50');
|
|
409
863
|
const getMultilineFillColorClasses = (theme = 'blue') => {
|
|
410
864
|
switch (theme) {
|
|
411
865
|
case 'brown':
|
|
412
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-brown to-ui-brown contrast-more:from-ui-brown contrast-more:to-ui-brown
|
|
866
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-brown to-ui-brown transition-[background-size_color] contrast-more:from-ui-brown contrast-more:to-ui-brown');
|
|
413
867
|
case 'green':
|
|
414
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-green to-ui-green contrast-more:from-ui-green contrast-more:to-ui-green
|
|
868
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-green to-ui-green transition-[background-size_color] contrast-more:from-ui-green contrast-more:to-ui-green');
|
|
415
869
|
case 'grey':
|
|
416
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-grey to-ui-grey contrast-more:from-ui-grey contrast-more:to-ui-grey
|
|
870
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-grey to-ui-grey transition-[background-size_color] contrast-more:from-ui-grey contrast-more:to-ui-grey');
|
|
417
871
|
case 'sky-blue':
|
|
418
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-sky-blue to-ui-sky-blue contrast-more:from-ui-sky-blue contrast-more:to-ui-sky-blue
|
|
872
|
+
return 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');
|
|
419
873
|
case 'magenta':
|
|
420
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-magenta to-ui-magenta contrast-more:from-ui-magenta contrast-more:to-ui-magenta
|
|
874
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-magenta to-ui-magenta transition-[background-size_color] contrast-more:from-ui-magenta contrast-more:to-ui-magenta');
|
|
421
875
|
case 'neutral':
|
|
422
876
|
return 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');
|
|
423
877
|
case 'orange':
|
|
424
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-orange to-ui-orange contrast-more:from-ui-orange contrast-more:to-ui-orange
|
|
878
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-orange to-ui-orange transition-[background-size_color] contrast-more:from-ui-orange contrast-more:to-ui-orange');
|
|
425
879
|
case 'pink':
|
|
426
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-pink to-ui-pink contrast-more:from-ui-pink contrast-more:to-ui-pink
|
|
427
|
-
case 'primary':
|
|
428
|
-
return twJoin(multilineFillBaseClasses, 'from-primary-500 to-primary-500 contrast-more:from-primary-500 contrast-more:to-primary-500 transition-[background-size_color]');
|
|
880
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-pink to-ui-pink transition-[background-size_color] contrast-more:from-ui-pink contrast-more:to-ui-pink');
|
|
429
881
|
case 'purple':
|
|
430
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-purple to-ui-purple contrast-more:from-ui-purple contrast-more:to-ui-purple
|
|
882
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-purple to-ui-purple transition-[background-size_color] contrast-more:from-ui-purple contrast-more:to-ui-purple');
|
|
431
883
|
case 'red':
|
|
432
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-red to-ui-red contrast-more:from-ui-red contrast-more:to-ui-red
|
|
884
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-red to-ui-red transition-[background-size_color] contrast-more:from-ui-red contrast-more:to-ui-red');
|
|
433
885
|
case 'violet':
|
|
434
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-violet to-ui-violet contrast-more:from-ui-violet contrast-more:to-ui-violet
|
|
886
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-violet to-ui-violet transition-[background-size_color] contrast-more:from-ui-violet contrast-more:to-ui-violet');
|
|
435
887
|
case 'yellow':
|
|
436
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-yellow to-ui-yellow contrast-more:from-ui-yellow contrast-more:to-ui-yellow
|
|
888
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-yellow to-ui-yellow transition-[background-size_color] contrast-more:from-ui-yellow contrast-more:to-ui-yellow');
|
|
437
889
|
case 'blue':
|
|
438
890
|
default:
|
|
439
|
-
return twJoin(multilineFillBaseClasses, 'from-ui-blue to-ui-blue contrast-more:from-ui-blue contrast-more:to-ui-blue
|
|
891
|
+
return twJoin(multilineFillBaseClasses, 'from-ui-blue to-ui-blue transition-[background-size_color] contrast-more:from-ui-blue contrast-more:to-ui-blue');
|
|
440
892
|
}
|
|
441
893
|
};
|
|
442
894
|
// Define theme-specific multiline fill classes
|
|
443
895
|
const getMultilineFillClasses = (theme = 'blue') => {
|
|
444
896
|
switch (theme) {
|
|
445
897
|
case 'brown':
|
|
446
|
-
return 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
|
|
898
|
+
return 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');
|
|
447
899
|
case 'green':
|
|
448
|
-
return 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
|
|
900
|
+
return 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');
|
|
449
901
|
case 'grey':
|
|
450
|
-
return 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
|
|
902
|
+
return 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');
|
|
451
903
|
case 'sky-blue':
|
|
452
|
-
return 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
|
|
904
|
+
return 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');
|
|
453
905
|
case 'magenta':
|
|
454
|
-
return 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
|
|
906
|
+
return 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');
|
|
455
907
|
case 'neutral':
|
|
456
|
-
return twJoin(multilineFillBaseClasses, '
|
|
908
|
+
return 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');
|
|
457
909
|
case 'orange':
|
|
458
|
-
return 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
|
|
910
|
+
return 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');
|
|
459
911
|
case 'pink':
|
|
460
|
-
return 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
|
|
461
|
-
case 'primary':
|
|
462
|
-
return 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%]');
|
|
912
|
+
return 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');
|
|
463
913
|
case 'purple':
|
|
464
|
-
return 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
|
|
914
|
+
return 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');
|
|
465
915
|
case 'red':
|
|
466
|
-
return 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
|
|
916
|
+
return 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');
|
|
467
917
|
case 'violet':
|
|
468
|
-
return 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
|
|
918
|
+
return 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');
|
|
469
919
|
case 'yellow':
|
|
470
|
-
return 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
|
|
920
|
+
return 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');
|
|
471
921
|
case 'blue':
|
|
472
922
|
default:
|
|
473
|
-
return 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
|
|
923
|
+
return 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');
|
|
474
924
|
}
|
|
475
925
|
};
|
|
476
926
|
const getMultilineFillLiftClasses = (theme = 'blue') => {
|
|
477
|
-
return twJoin(getMultilineFillColorClasses(theme), '
|
|
927
|
+
return 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%]');
|
|
478
928
|
};
|
|
479
929
|
const getMultilineFillXClasses = (theme = 'blue') => {
|
|
480
|
-
return twJoin(getMultilineFillColorClasses(theme), '
|
|
930
|
+
return 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%]');
|
|
481
931
|
};
|
|
482
932
|
const getMultilineFillRtlClasses = (theme = 'blue') => {
|
|
483
933
|
return twJoin(getMultilineFillXClasses(theme), 'bg-[position:100%_auto]');
|
|
@@ -514,7 +964,7 @@ const getMultilineFillCenterClasses = (theme = 'blue') => {
|
|
|
514
964
|
* @example
|
|
515
965
|
* <Link href='/about' type='fill-ltr' theme='red' title='About Us'>Learn more about our company</Link>
|
|
516
966
|
*/
|
|
517
|
-
function Link({
|
|
967
|
+
function Link({ as, className, ref, theme = 'blue', type, ...props }) {
|
|
518
968
|
const getLinkClasses = () => {
|
|
519
969
|
switch (type) {
|
|
520
970
|
case 'static':
|
|
@@ -562,14 +1012,15 @@ function Link({ type, theme = 'blue', className, ref, ...props }) {
|
|
|
562
1012
|
}
|
|
563
1013
|
};
|
|
564
1014
|
const linkClasses = getLinkClasses();
|
|
565
|
-
|
|
1015
|
+
const LinkElement = as || Anchor;
|
|
1016
|
+
return jsx(LinkElement, { ...props, className: twMerge(linkClasses, className), ref: ref });
|
|
566
1017
|
}
|
|
567
1018
|
|
|
568
1019
|
/**
|
|
569
1020
|
* # Button
|
|
570
1021
|
* - A pre-styled button with utility props for easy customization depending on use case.
|
|
571
1022
|
*/
|
|
572
|
-
function Button({ className, padding = 'md', rounded = 'lg', theme = '
|
|
1023
|
+
function Button({ className, padding = 'md', rounded = 'lg', theme = 'blue', ref, ...props }) {
|
|
573
1024
|
const getPaddingClasses = () => {
|
|
574
1025
|
switch (padding) {
|
|
575
1026
|
case 'xs':
|
|
@@ -601,71 +1052,92 @@ function Button({ className, padding = 'md', rounded = 'lg', theme = 'primary',
|
|
|
601
1052
|
}
|
|
602
1053
|
};
|
|
603
1054
|
const getThemeClasses = () => {
|
|
1055
|
+
const classList = [];
|
|
604
1056
|
switch (theme) {
|
|
605
1057
|
case 'blue':
|
|
606
|
-
|
|
1058
|
+
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'));
|
|
1059
|
+
break;
|
|
607
1060
|
case 'blue-gradient':
|
|
608
|
-
|
|
1061
|
+
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'));
|
|
1062
|
+
break;
|
|
609
1063
|
case 'brown':
|
|
610
|
-
|
|
1064
|
+
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'));
|
|
1065
|
+
break;
|
|
611
1066
|
case 'brown-gradient':
|
|
612
|
-
|
|
1067
|
+
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'));
|
|
1068
|
+
break;
|
|
613
1069
|
case 'green':
|
|
614
|
-
|
|
1070
|
+
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'));
|
|
1071
|
+
break;
|
|
615
1072
|
case 'green-gradient':
|
|
616
|
-
|
|
1073
|
+
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'));
|
|
1074
|
+
break;
|
|
617
1075
|
case 'grey':
|
|
618
|
-
|
|
1076
|
+
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'));
|
|
1077
|
+
break;
|
|
619
1078
|
case 'grey-gradient':
|
|
620
|
-
|
|
1079
|
+
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'));
|
|
1080
|
+
break;
|
|
621
1081
|
case 'sky-blue':
|
|
622
|
-
|
|
1082
|
+
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'));
|
|
1083
|
+
break;
|
|
623
1084
|
case 'sky-blue-gradient':
|
|
624
|
-
|
|
1085
|
+
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'));
|
|
1086
|
+
break;
|
|
625
1087
|
case 'magenta':
|
|
626
|
-
|
|
1088
|
+
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'));
|
|
1089
|
+
break;
|
|
627
1090
|
case 'magenta-gradient':
|
|
628
|
-
|
|
1091
|
+
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'));
|
|
1092
|
+
break;
|
|
629
1093
|
case 'neutral':
|
|
630
|
-
|
|
1094
|
+
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'));
|
|
1095
|
+
break;
|
|
631
1096
|
case 'neutral-gradient':
|
|
632
|
-
|
|
1097
|
+
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'));
|
|
1098
|
+
break;
|
|
633
1099
|
case 'orange':
|
|
634
|
-
|
|
1100
|
+
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'));
|
|
1101
|
+
break;
|
|
635
1102
|
case 'orange-gradient':
|
|
636
|
-
|
|
1103
|
+
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'));
|
|
1104
|
+
break;
|
|
637
1105
|
case 'pink':
|
|
638
|
-
|
|
1106
|
+
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'));
|
|
1107
|
+
break;
|
|
639
1108
|
case 'pink-gradient':
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
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]');
|
|
643
|
-
case 'primary-gradient':
|
|
644
|
-
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%]');
|
|
1109
|
+
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'));
|
|
1110
|
+
break;
|
|
645
1111
|
case 'purple':
|
|
646
|
-
|
|
1112
|
+
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'));
|
|
1113
|
+
break;
|
|
647
1114
|
case 'purple-gradient':
|
|
648
|
-
|
|
1115
|
+
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'));
|
|
1116
|
+
break;
|
|
649
1117
|
case 'red':
|
|
650
|
-
|
|
1118
|
+
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'));
|
|
1119
|
+
break;
|
|
651
1120
|
case 'red-gradient':
|
|
652
|
-
|
|
1121
|
+
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'));
|
|
1122
|
+
break;
|
|
653
1123
|
case 'violet':
|
|
654
|
-
|
|
1124
|
+
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'));
|
|
1125
|
+
break;
|
|
655
1126
|
case 'violet-gradient':
|
|
656
|
-
|
|
1127
|
+
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'));
|
|
1128
|
+
break;
|
|
657
1129
|
case 'yellow':
|
|
658
|
-
|
|
1130
|
+
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'));
|
|
1131
|
+
break;
|
|
659
1132
|
case 'yellow-gradient':
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
default:
|
|
663
|
-
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]');
|
|
1133
|
+
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'));
|
|
1134
|
+
break;
|
|
664
1135
|
}
|
|
1136
|
+
return classList.join(' ');
|
|
665
1137
|
};
|
|
666
1138
|
const paddingClasses = getPaddingClasses(), roundedClasses = getRoundedClasses(), themeClasses = getThemeClasses();
|
|
667
1139
|
const buttonClasses = twMerge([
|
|
668
|
-
'ease-exponential focus-visible:scale-101 pointer-fine:hover:scale-101 pointer-fine:active:scale-99
|
|
1140
|
+
'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',
|
|
669
1141
|
paddingClasses,
|
|
670
1142
|
roundedClasses,
|
|
671
1143
|
themeClasses,
|
|
@@ -742,7 +1214,7 @@ function useFormStatus() {
|
|
|
742
1214
|
return useStore(store => store);
|
|
743
1215
|
}
|
|
744
1216
|
|
|
745
|
-
function validateField(value, { required, type }) {
|
|
1217
|
+
function validateField$1(value, { required, type }) {
|
|
746
1218
|
const noValue = !value || value === '';
|
|
747
1219
|
if (!required && noValue)
|
|
748
1220
|
return true;
|
|
@@ -759,8 +1231,8 @@ function validateField(value, { required, type }) {
|
|
|
759
1231
|
return true;
|
|
760
1232
|
}
|
|
761
1233
|
}
|
|
762
|
-
function Input({ checked, className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onChange, placeholder, ref, required = true, type, value, ...props }) {
|
|
763
|
-
const [formContext, setFormContext] = useFormContext()
|
|
1234
|
+
function Input({ checked, className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onBlur, onChange, placeholder, ref, required = true, type, value, ...props }) {
|
|
1235
|
+
const [formContext, setFormContext] = useFormContext();
|
|
764
1236
|
if (placeholder === '*')
|
|
765
1237
|
placeholder = name + (required && !label ? '*' : '');
|
|
766
1238
|
if (label === '*')
|
|
@@ -785,7 +1257,7 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
785
1257
|
}
|
|
786
1258
|
};
|
|
787
1259
|
const fieldContextType = getFieldContextType();
|
|
788
|
-
const
|
|
1260
|
+
const initialFieldContext = defineField({
|
|
789
1261
|
type: fieldContextType,
|
|
790
1262
|
id: fieldContextID,
|
|
791
1263
|
invalid,
|
|
@@ -797,13 +1269,14 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
797
1269
|
if (!setFormContext)
|
|
798
1270
|
return;
|
|
799
1271
|
setFormContext(prevContext => {
|
|
800
|
-
const otherFields = (prevContext || []).filter(field => field.id !==
|
|
801
|
-
return [...otherFields,
|
|
1272
|
+
const otherFields = (prevContext || []).filter(field => field.id !== initialFieldContext.id);
|
|
1273
|
+
return [...otherFields, initialFieldContext];
|
|
802
1274
|
});
|
|
803
1275
|
return () => {
|
|
804
|
-
setFormContext(prevContext => (prevContext || []).filter(field => field.id !==
|
|
1276
|
+
setFormContext(prevContext => (prevContext || []).filter(field => field.id !== initialFieldContext.id));
|
|
805
1277
|
};
|
|
806
1278
|
}, [setFormContext]);
|
|
1279
|
+
const fieldContext = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id) || initialFieldContext;
|
|
807
1280
|
const debounceTimerRef = useRef(undefined);
|
|
808
1281
|
const handleChange = e => {
|
|
809
1282
|
if (disabled) {
|
|
@@ -815,32 +1288,66 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
815
1288
|
setFormContext?.(prevContext => {
|
|
816
1289
|
if (!prevContext)
|
|
817
1290
|
return [];
|
|
818
|
-
const field = prevContext.find(({ id: fieldID }) => fieldID ===
|
|
1291
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
819
1292
|
if (!field)
|
|
820
|
-
throw new Error(`Field with id "${
|
|
821
|
-
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !==
|
|
1293
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1294
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
822
1295
|
const updatedField = { ...field, value: newValue };
|
|
823
1296
|
return [...otherFields, updatedField];
|
|
824
1297
|
});
|
|
825
1298
|
debounceTimerRef.current = setTimeout(() => {
|
|
826
|
-
const field = formContext?.find(({ id: fieldID }) => fieldID ===
|
|
1299
|
+
const field = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
827
1300
|
if (!field)
|
|
828
1301
|
return;
|
|
829
|
-
const invalid = validateField(newValue, field) === false;
|
|
1302
|
+
const invalid = validateField$1(newValue, field) === false;
|
|
830
1303
|
if (invalid !== field.invalid)
|
|
831
1304
|
setFormContext?.(prevContext => {
|
|
832
1305
|
if (!prevContext)
|
|
833
1306
|
return [];
|
|
834
|
-
const field = prevContext.find(({ id: fieldID }) => fieldID ===
|
|
1307
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
835
1308
|
if (!field)
|
|
836
|
-
throw new Error(`Field with id "${
|
|
837
|
-
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !==
|
|
1309
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1310
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
838
1311
|
const updatedField = { ...field, invalid };
|
|
839
1312
|
return [...otherFields, updatedField];
|
|
840
1313
|
});
|
|
841
1314
|
}, 500);
|
|
842
1315
|
onChange?.(e);
|
|
843
1316
|
};
|
|
1317
|
+
const handleBlur = e => {
|
|
1318
|
+
if (disabled) {
|
|
1319
|
+
e.preventDefault();
|
|
1320
|
+
return;
|
|
1321
|
+
}
|
|
1322
|
+
const { currentTarget } = e, { value: newValue } = currentTarget;
|
|
1323
|
+
switch (type) {
|
|
1324
|
+
case 'email':
|
|
1325
|
+
setFormContext?.(prevContext => {
|
|
1326
|
+
if (!prevContext)
|
|
1327
|
+
return [];
|
|
1328
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1329
|
+
if (!field)
|
|
1330
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1331
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1332
|
+
const updatedField = { ...field, value: newValue.toLowerCase() };
|
|
1333
|
+
return [...otherFields, updatedField];
|
|
1334
|
+
});
|
|
1335
|
+
break;
|
|
1336
|
+
case 'tel':
|
|
1337
|
+
setFormContext?.(prevContext => {
|
|
1338
|
+
if (!prevContext)
|
|
1339
|
+
return [];
|
|
1340
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1341
|
+
if (!field)
|
|
1342
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1343
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1344
|
+
const updatedField = { ...field, value: formatPhoneNumber(newValue, '1') };
|
|
1345
|
+
return [...otherFields, updatedField];
|
|
1346
|
+
});
|
|
1347
|
+
break;
|
|
1348
|
+
}
|
|
1349
|
+
onBlur?.(e);
|
|
1350
|
+
};
|
|
844
1351
|
const restFieldProps = fieldProps
|
|
845
1352
|
? Object.fromEntries(Object.entries(fieldProps).filter(([key]) => key !== 'className'))
|
|
846
1353
|
: {};
|
|
@@ -850,25 +1357,25 @@ function Input({ checked, className, defaultValue, description, descriptionProps
|
|
|
850
1357
|
const restDescriptionProps = descriptionProps
|
|
851
1358
|
? Object.fromEntries(Object.entries(descriptionProps).filter(([key]) => key !== 'className'))
|
|
852
1359
|
: {};
|
|
853
|
-
return (jsxs(Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsx(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 })), jsx(Input$1, { ...props, className: bag => twMerge(
|
|
1360
|
+
return (jsxs(Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsx(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 })), jsx(Input$1, { ...props, className: bag => twMerge(
|
|
1361
|
+
// Base styles
|
|
1362
|
+
'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',
|
|
1363
|
+
// Pseudo styles
|
|
1364
|
+
'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',
|
|
1365
|
+
// user-invalid styles
|
|
1366
|
+
'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))]',
|
|
1367
|
+
// Custom styles
|
|
1368
|
+
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 && (jsx(Description, { ...restDescriptionProps, className: bag => twMerge('text-xs', typeof descriptionProps?.className === 'function'
|
|
854
1369
|
? descriptionProps?.className(bag)
|
|
855
1370
|
: descriptionProps?.className), children: description }))] }));
|
|
856
1371
|
}
|
|
857
1372
|
|
|
858
|
-
function SubmitButton({ children, className,
|
|
1373
|
+
function SubmitButton({ children, className, error, incomplete, loading, success, theme, type = 'submit', ref, ...props }) {
|
|
859
1374
|
const [formStatus] = useFormStatus();
|
|
860
|
-
const getDisabledStatus = () => {
|
|
861
|
-
if (ariaDisabled !== undefined)
|
|
862
|
-
return ariaDisabled;
|
|
863
|
-
if (formStatus !== 'ready')
|
|
864
|
-
return 'true';
|
|
865
|
-
return 'false';
|
|
866
|
-
};
|
|
867
|
-
const disabled = getDisabledStatus();
|
|
868
1375
|
const getFormStatusButtonClasses = () => {
|
|
869
1376
|
switch (formStatus) {
|
|
870
1377
|
case 'loading':
|
|
871
|
-
return twSort('animate-pulse cursor-wait text-lg font-black
|
|
1378
|
+
return twSort('animate-pulse cursor-wait text-lg leading-6 font-black tracking-widest');
|
|
872
1379
|
case 'error':
|
|
873
1380
|
case 'success':
|
|
874
1381
|
return 'cursor-not-allowed';
|
|
@@ -897,7 +1404,7 @@ function SubmitButton({ children, className, 'aria-disabled': ariaDisabled, erro
|
|
|
897
1404
|
case 'incomplete':
|
|
898
1405
|
return incomplete || 'Complete Form';
|
|
899
1406
|
case 'loading':
|
|
900
|
-
return (loading || (jsxs(Fragment$1, { children: [jsx("span", { className: 'animate-wave animation-delay-300
|
|
1407
|
+
return (loading || (jsxs(Fragment$1, { children: [jsx("span", { className: 'inline-block animate-wave animation-delay-300', children: "\u2022" }), jsx("span", { className: 'inline-block animate-wave animation-delay-150', children: "\u2022" }), jsx("span", { className: 'inline-block animate-wave', children: "\u2022" })] })));
|
|
901
1408
|
case 'error':
|
|
902
1409
|
return (jsxs(Fragment$1, { children: [error || 'Error', ' ', jsx("span", { className: 'absolute top-1/2 ml-1.5 translate-y-[calc(-50%-1.5px)] text-2xl', children: "\u00D7" })] }));
|
|
903
1410
|
case 'success':
|
|
@@ -907,7 +1414,103 @@ function SubmitButton({ children, className, 'aria-disabled': ariaDisabled, erro
|
|
|
907
1414
|
}
|
|
908
1415
|
};
|
|
909
1416
|
const buttonText = getButtonText();
|
|
910
|
-
return (jsx(Button, { ...props,
|
|
1417
|
+
return (jsx(Button, { ...props, className: twMerge([formStatusButtonClasses, 'w-full', className]), ref: ref, theme: formStatusButtonTheme, type: type, children: buttonText }));
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
function validateField(value, { required }) {
|
|
1421
|
+
const noValue = !value || value === '';
|
|
1422
|
+
if (!required && noValue)
|
|
1423
|
+
return true;
|
|
1424
|
+
if (noValue)
|
|
1425
|
+
return false;
|
|
1426
|
+
return true;
|
|
1427
|
+
}
|
|
1428
|
+
function Textarea({ className, defaultValue, description, descriptionProps, disabled, fieldProps, invalid = true, label, labelProps, name, onBlur, onChange, placeholder, ref, required = true, value, ...props }) {
|
|
1429
|
+
const [formContext, setFormContext] = useFormContext();
|
|
1430
|
+
if (placeholder === '*')
|
|
1431
|
+
placeholder = name + (required && !label ? '*' : '');
|
|
1432
|
+
if (label === '*')
|
|
1433
|
+
label = name;
|
|
1434
|
+
const uniqueID = useId(), fieldContextID = toLowerCase(name, [, '_']) + '§' + uniqueID;
|
|
1435
|
+
if (Boolean(formContext?.find(field => field.id === fieldContextID)?.invalid))
|
|
1436
|
+
invalid = true;
|
|
1437
|
+
const initialFieldContext = defineField({
|
|
1438
|
+
type: 'textarea',
|
|
1439
|
+
id: fieldContextID,
|
|
1440
|
+
invalid,
|
|
1441
|
+
name,
|
|
1442
|
+
required,
|
|
1443
|
+
value: value ? `${value}` : defaultValue ? `${defaultValue}` : '',
|
|
1444
|
+
});
|
|
1445
|
+
useEffect(() => {
|
|
1446
|
+
if (!setFormContext)
|
|
1447
|
+
return;
|
|
1448
|
+
setFormContext(prevContext => {
|
|
1449
|
+
const otherFields = (prevContext || []).filter(field => field.id !== initialFieldContext.id);
|
|
1450
|
+
return [...otherFields, initialFieldContext];
|
|
1451
|
+
});
|
|
1452
|
+
return () => {
|
|
1453
|
+
setFormContext(prevContext => (prevContext || []).filter(field => field.id !== initialFieldContext.id));
|
|
1454
|
+
};
|
|
1455
|
+
}, [setFormContext]);
|
|
1456
|
+
const fieldContext = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id) || initialFieldContext;
|
|
1457
|
+
const debounceTimerRef = useRef(undefined);
|
|
1458
|
+
const handleChange = e => {
|
|
1459
|
+
if (disabled) {
|
|
1460
|
+
e.preventDefault();
|
|
1461
|
+
return;
|
|
1462
|
+
}
|
|
1463
|
+
clearTimeout(debounceTimerRef.current);
|
|
1464
|
+
const { currentTarget } = e, { value: newValue } = currentTarget;
|
|
1465
|
+
setFormContext?.(prevContext => {
|
|
1466
|
+
if (!prevContext)
|
|
1467
|
+
return [];
|
|
1468
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1469
|
+
if (!field)
|
|
1470
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1471
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1472
|
+
const updatedField = { ...field, value: newValue };
|
|
1473
|
+
return [...otherFields, updatedField];
|
|
1474
|
+
});
|
|
1475
|
+
debounceTimerRef.current = setTimeout(() => {
|
|
1476
|
+
const field = formContext?.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1477
|
+
if (!field)
|
|
1478
|
+
return;
|
|
1479
|
+
const invalid = validateField(newValue, field) === false;
|
|
1480
|
+
if (invalid !== field.invalid)
|
|
1481
|
+
setFormContext?.(prevContext => {
|
|
1482
|
+
if (!prevContext)
|
|
1483
|
+
return [];
|
|
1484
|
+
const field = prevContext.find(({ id: fieldID }) => fieldID === initialFieldContext.id);
|
|
1485
|
+
if (!field)
|
|
1486
|
+
throw new Error(`Field with id "${initialFieldContext.id}" not found in form context.`);
|
|
1487
|
+
const otherFields = prevContext.filter(({ id: fieldID }) => fieldID !== initialFieldContext.id);
|
|
1488
|
+
const updatedField = { ...field, invalid };
|
|
1489
|
+
return [...otherFields, updatedField];
|
|
1490
|
+
});
|
|
1491
|
+
}, 500);
|
|
1492
|
+
onChange?.(e);
|
|
1493
|
+
};
|
|
1494
|
+
const restFieldProps = fieldProps
|
|
1495
|
+
? Object.fromEntries(Object.entries(fieldProps).filter(([key]) => key !== 'className'))
|
|
1496
|
+
: {};
|
|
1497
|
+
const restLabelProps = labelProps
|
|
1498
|
+
? Object.fromEntries(Object.entries(labelProps).filter(([key]) => key !== 'className'))
|
|
1499
|
+
: {};
|
|
1500
|
+
const restDescriptionProps = descriptionProps
|
|
1501
|
+
? Object.fromEntries(Object.entries(descriptionProps).filter(([key]) => key !== 'className'))
|
|
1502
|
+
: {};
|
|
1503
|
+
return (jsxs(Field, { ...restFieldProps, className: bag => twMerge('grid gap-1', typeof fieldProps?.className === 'function' ? fieldProps?.className(bag) : fieldProps?.className), disabled: disabled, children: [label && (jsx(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 })), jsx(Textarea$1, { ...props, className: bag => twMerge(
|
|
1504
|
+
// Base styles
|
|
1505
|
+
'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',
|
|
1506
|
+
// Pseudo styles
|
|
1507
|
+
'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',
|
|
1508
|
+
// user-invalid styles
|
|
1509
|
+
'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))]',
|
|
1510
|
+
// Custom styles
|
|
1511
|
+
typeof className === 'function' ? className(bag) : className), id: fieldContext?.id, invalid: invalid, onChange: handleChange, placeholder: placeholder, ref: ref, required: required, value: fieldContext?.value }), description && (jsx(Description, { ...restDescriptionProps, className: bag => twMerge('text-xs', typeof descriptionProps?.className === 'function'
|
|
1512
|
+
? descriptionProps?.className(bag)
|
|
1513
|
+
: descriptionProps?.className), children: description }))] }));
|
|
911
1514
|
}
|
|
912
1515
|
|
|
913
1516
|
// import { findComponentByType } from '../../utils'
|
|
@@ -967,29 +1570,437 @@ function getTextFromChildren(children) {
|
|
|
967
1570
|
* A heading component that renders HTML heading elements (h1-h6) with appropriate styling.
|
|
968
1571
|
* Automatically generates an ID for the heading based on its content if none is provided.
|
|
969
1572
|
*/
|
|
970
|
-
function Heading({ as = 'h2', children, className, id, ref, ...props }) {
|
|
1573
|
+
function Heading({ as = 'h2', children, customize, className, id, ref, ...props }) {
|
|
971
1574
|
const H = as;
|
|
972
1575
|
const targetableID = id || getTextFromChildren(children).replace(/\s+/g, '-').toLowerCase();
|
|
973
1576
|
const getBaseClasses = () => {
|
|
974
1577
|
switch (as) {
|
|
975
1578
|
case 'h1':
|
|
976
|
-
return twSort('pb-2.5 text-6xl font-black last:pb-0');
|
|
1579
|
+
return customize?.h1 || twSort('pb-2.5 text-6xl font-black last:pb-0');
|
|
977
1580
|
case 'h3':
|
|
978
|
-
return twSort('pb-2 text-4xl font-extralight last:pb-0');
|
|
1581
|
+
return customize?.h3 || twSort('pb-2 text-4xl font-extralight last:pb-0');
|
|
979
1582
|
case 'h4':
|
|
980
|
-
return twSort('pb-2 text-3xl font-extrabold last:pb-0');
|
|
1583
|
+
return customize?.h4 || twSort('pb-2 text-3xl font-extrabold last:pb-0');
|
|
981
1584
|
case 'h5':
|
|
982
|
-
return twSort('pb-1.5 text-2xl font-semibold last:pb-0');
|
|
1585
|
+
return customize?.h5 || twSort('pb-1.5 text-2xl font-semibold last:pb-0');
|
|
983
1586
|
case 'h6':
|
|
984
|
-
return twSort('pb-1 text-xl font-bold last:pb-0');
|
|
1587
|
+
return customize?.h6 || twSort('pb-1 text-xl font-bold last:pb-0');
|
|
985
1588
|
default:
|
|
986
|
-
return twSort('pb-2.5 text-5xl font-medium last:pb-0');
|
|
1589
|
+
return customize?.h2 || twSort('pb-2.5 text-5xl font-medium last:pb-0');
|
|
987
1590
|
}
|
|
988
1591
|
};
|
|
989
1592
|
const baseClasses = getBaseClasses();
|
|
990
1593
|
return (jsx(H, { ref: ref, id: targetableID, ...props, className: twMerge(baseClasses, className), children: children }));
|
|
991
1594
|
}
|
|
992
1595
|
|
|
1596
|
+
function Airplane(props) {
|
|
1597
|
+
return (jsx("svg", { viewBox: '0 0 64 63.9', ...props, children: 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' }) }));
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
function ArrowTriangle2CirclepathCircle(props) {
|
|
1601
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
function ArrowTriangle2CirclepathCircleFill(props) {
|
|
1605
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
function BagFill(props) {
|
|
1609
|
+
return (jsx("svg", { viewBox: '0 0 55.6 64', ...props, children: 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' }) }));
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
function Banknote(props) {
|
|
1613
|
+
return (jsxs("svg", { viewBox: '0 0 64 40.1', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
function BellFill(props) {
|
|
1617
|
+
return (jsxs("svg", { viewBox: '0 0 57.4 64', ...props, children: [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' }), 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' })] }));
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
function BoltCar(props) {
|
|
1621
|
+
return (jsxs("svg", { viewBox: '0 0 64 50.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
function BoltFill(props) {
|
|
1625
|
+
return (jsx("svg", { viewBox: '0 0 40.3 64', ...props, children: 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' }) }));
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
function BoltRingClosed(props) {
|
|
1629
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' })] }));
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
function BoltTrianglebadgeExclamationmark(props) {
|
|
1633
|
+
return (jsxs("svg", { viewBox: '0 0 55.8 64', ...props, children: [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' }), 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' })] }));
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
function BookFill(props) {
|
|
1637
|
+
return (jsxs("svg", { viewBox: '0 0 64 51', ...props, children: [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' }), 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' })] }));
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
function BookmarkFill(props) {
|
|
1641
|
+
return (jsx("svg", { viewBox: '0 0 40.2 64', ...props, children: 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' }) }));
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
function BriefcaseFill(props) {
|
|
1645
|
+
return (jsxs("svg", { viewBox: '0 0 64 55.7', ...props, children: [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' }), 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' })] }));
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
function BubbleLeftFill(props) {
|
|
1649
|
+
return (jsx("svg", { viewBox: '0 0 64 60.3', ...props, children: 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' }) }));
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
function Building2Fill(props) {
|
|
1653
|
+
return (jsxs("svg", { viewBox: '0 0 64 58', ...props, children: [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' }), 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' })] }));
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
function Calendar(props) {
|
|
1657
|
+
return (jsxs("svg", { viewBox: '0 0 97.4 90', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
function CameraFill(props) {
|
|
1661
|
+
return (jsxs("svg", { viewBox: '0 0 64 49.7', ...props, children: [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' }), 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' })] }));
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
function CarFill(props) {
|
|
1665
|
+
return (jsxs("svg", { viewBox: '0 0 64 50.1', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
function CartFill(props) {
|
|
1669
|
+
return (jsxs("svg", { viewBox: '0 0 64 54.5', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
function ChartBarDocHorizontal(props) {
|
|
1673
|
+
return (jsxs("svg", { viewBox: '0 0 50.2 64', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
function Checkmark(props) {
|
|
1677
|
+
return (jsx("svg", { "aria-label": '\u2713', viewBox: '0 0 67.1 66.1', ...props, children: 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' }) }));
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
function CheckmarkSeal(props) {
|
|
1681
|
+
return (jsxs("svg", { viewBox: '0 0 110.9 110.9', ...props, children: [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' }), 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' })] }));
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
function ChevronCompactDown(props) {
|
|
1685
|
+
return (jsx("svg", { viewBox: '0 0 64 18', ...props, children: 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' }) }));
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
function ChevronDown(props) {
|
|
1689
|
+
return (jsx("svg", { viewBox: '0 0 64 36', ...props, children: 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' }) }));
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
function ChevronLeft(props) {
|
|
1693
|
+
return (jsx("svg", { viewBox: '0 0 36 64', ...props, children: 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' }) }));
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
function ChevronLeftForwardslashChevronRight(props) {
|
|
1697
|
+
return (jsxs("svg", { viewBox: '0 0 64 43.2', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
function ChevronRight(props) {
|
|
1701
|
+
return (jsx("svg", { viewBox: '0 0 36 64', ...props, children: 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' }) }));
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
function ChevronUpChevronDown(props) {
|
|
1705
|
+
return (jsxs("svg", { viewBox: '0 0 55.592 64', ...props, children: [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' }), 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' })] }));
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
function CircleFill(props) {
|
|
1709
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: jsx("circle", { r: '32', cx: '32', cy: '32' }) }));
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
function ClockBadgeCheckmark(props) {
|
|
1713
|
+
return (jsxs("svg", { viewBox: '0 0 64 54.2', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
function ClockFill(props) {
|
|
1717
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
function CloudFill(props) {
|
|
1721
|
+
return (jsx("svg", { viewBox: '0 0 64 42.3', ...props, children: 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' }) }));
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
function CubeFill(props) {
|
|
1725
|
+
return (jsxs("svg", { viewBox: '0 0 59.7 64', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
function CurvePointLeft(props) {
|
|
1729
|
+
return (jsx("svg", { viewBox: '0 0 26.7 64', ...props, children: jsx("path", { d: 'M0,32c0,5.1,26.7,17.8,26.7,32V0C26.7,14.2,0,26.9,0,32z' }) }));
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
function DialHigh(props) {
|
|
1733
|
+
return (jsxs("svg", { viewBox: '0 0 64 55.5', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
function DocFill(props) {
|
|
1737
|
+
return (jsxs("svg", { viewBox: '0 0 50.2 64', ...props, children: [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' }), 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' })] }));
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
function DocOnClipboard(props) {
|
|
1741
|
+
return (jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [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' }), 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' })] }));
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
function DocOnDoc(props) {
|
|
1745
|
+
return (jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [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' }), 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' })] }));
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
function DocOnDocFill(props) {
|
|
1749
|
+
return (jsxs("svg", { viewBox: '0 0 52 64', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
function DocOnMagnifyingglass(props) {
|
|
1753
|
+
return (jsxs("svg", { viewBox: '0 0 51 64', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
function DollarSign(props) {
|
|
1757
|
+
return (jsx("svg", { viewBox: '0 0 468.96 820', ...props, children: 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' }) }));
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
function EllipsisCircle(props) {
|
|
1761
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
function EllipsisCircleFill(props) {
|
|
1765
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
function Envelope(props) {
|
|
1769
|
+
return (jsxs("svg", { viewBox: '0 0 64 49.9', ...props, children: [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' }), 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' }), jsx("polygon", { points: '58.3,46.1 61.3,43.1 42.6,24.6 39.6,27.6 ' }), jsx("polygon", { points: '2.7,43.1 5.8,46.2 24.5,27.6 21.5,24.6 ' })] }));
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
function EnvelopeFill(props) {
|
|
1773
|
+
return (jsxs("svg", { viewBox: '0 0 64 49.9', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
function Eye(props) {
|
|
1777
|
+
return (jsxs("svg", { viewBox: '0 0 64 40.1', ...props, children: [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' }), 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' })] }));
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
function ExclamationmarkOctagon(props) {
|
|
1781
|
+
return (jsxs("svg", { viewBox: '0 0 64 61.6', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
function FigureWaterFitness(props) {
|
|
1785
|
+
return (jsxs("svg", { viewBox: '0 0 64 45.9', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
function FlagFill(props) {
|
|
1789
|
+
return (jsx("svg", { viewBox: '0 0 57.9 64', ...props, children: 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' }) }));
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
function FlameFill(props) {
|
|
1793
|
+
return (jsx("svg", { viewBox: '0 0 49.3 64', ...props, children: 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' }) }));
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
function Folder(props) {
|
|
1797
|
+
return (jsxs("svg", { viewBox: '0 0 64 51.8', ...props, children: [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' }), jsx("rect", { width: '57.7', height: '4.8', x: '3', y: '16' })] }));
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
function FolderFill(props) {
|
|
1801
|
+
return (jsxs("svg", { viewBox: '0 0 64 51.6', ...props, children: [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' }), 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' })] }));
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
function Gearshape(props) {
|
|
1805
|
+
return (jsxs("svg", { viewBox: '0 0 64 63.9', ...props, children: [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' }), 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' })] }));
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
function GearshapeFill(props) {
|
|
1809
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
function GiftFill(props) {
|
|
1813
|
+
return (jsxs("svg", { viewBox: '0 0 58.6 64', ...props, children: [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' }), jsx("path", { d: 'M31.8,64h14.3c2.5,0,4.5-0.7,6-2s2.1-3.3,2.1-5.8V36.6H31.8V64z' }), 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' })] }));
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
function GlobeAmericasFill(props) {
|
|
1817
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' })] }));
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
function HareFill(props) {
|
|
1821
|
+
return (jsxs("svg", { viewBox: '0 0 64 46.1', ...props, children: [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' }), 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' })] }));
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
function House(props) {
|
|
1825
|
+
return (jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
function HouseDeskclock(props) {
|
|
1829
|
+
return (jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
function HouseFill(props) {
|
|
1833
|
+
return (jsxs("svg", { viewBox: '0 0 64 56.3', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
function IPhoneHouse(props) {
|
|
1837
|
+
return (jsxs("svg", { viewBox: '0 0 32.3 64', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
function LightbulbFill(props) {
|
|
1841
|
+
return (jsxs("svg", { viewBox: '0 0 36.8 64', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
function LightbulbLed(props) {
|
|
1845
|
+
return (jsxs("svg", { viewBox: '0 0 36.8 64', ...props, children: [jsx("rect", { width: '27.9', height: '3.6', x: '4.45', y: '28' }), 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' }), 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' }), 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' })] }));
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
function LightRibbon(props) {
|
|
1849
|
+
return (jsxs("svg", { viewBox: '0 0 64 61.2', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
function ListBulletClipboardFill(props) {
|
|
1853
|
+
return (jsxs("svg", { viewBox: '0 0 44.5 64', ...props, children: [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' }), 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' })] }));
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
function Magnifyingglass(props) {
|
|
1857
|
+
return (jsx("svg", { viewBox: '0 0 63.4 64', ...props, children: 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' }) }));
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
function MapPinEllipse(props) {
|
|
1861
|
+
return (jsx("svg", { viewBox: '0 0 56 56', ...props, children: 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' }) }));
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
function MinusPlusBatteryblock(props) {
|
|
1865
|
+
return (jsxs("svg", { viewBox: '0 0 64 50', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
function Network(props) {
|
|
1869
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
function NetworkShield(props) {
|
|
1873
|
+
return (jsxs("svg", { viewBox: '0 0 64 58.1', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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 ' })] }));
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
function NewspaperFill(props) {
|
|
1877
|
+
return (jsx("svg", { viewBox: '0 0 64 60.843', ...props, children: 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' }) }));
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
function Number$1(props) {
|
|
1881
|
+
return (jsxs("svg", { viewBox: '0 0 58.9 64', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
function PaperplaneFill(props) {
|
|
1885
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
function Person(props) {
|
|
1889
|
+
return (jsxs("svg", { viewBox: '0 0 60.4 64', ...props, children: [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' }), 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' })] }));
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
function PersonCropSquare(props) {
|
|
1893
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
function PersonFill(props) {
|
|
1897
|
+
return (jsxs("svg", { viewBox: '0 0 59.9 64', ...props, children: [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' }), 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' })] }));
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
function PersonFillQuestionmark(props) {
|
|
1901
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' })] }));
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
function Phone(props) {
|
|
1905
|
+
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
function PhoneArrowUpRight(props) {
|
|
1909
|
+
return (jsxs("svg", { viewBox: '0 0 64 63.9', ...props, children: [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' }), 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' })] }));
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
function PhoneFill(props) {
|
|
1913
|
+
return (jsx("svg", { viewBox: '0 0 63.9 64', ...props, children: 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' }) }));
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
function PlayRectangleFill(props) {
|
|
1917
|
+
return (jsx("svg", { viewBox: '0 0 64 50', ...props, children: 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' }) }));
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
function Plus(props) {
|
|
1921
|
+
return (jsx("svg", { viewBox: '0 0 62.7 64', ...props, children: 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' }) }));
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
function Qrcode(props) {
|
|
1925
|
+
return (jsxs("svg", { viewBox: '0 0 64 64', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
function RectanglePortraitAndArrowLeft(props) {
|
|
1929
|
+
return (jsxs("svg", { viewBox: '0 0 64 58.6', ...props, children: [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' }), 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' })] }));
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
function RectanglePortraitAndArrowLeftFill(props) {
|
|
1933
|
+
return (jsxs("svg", { viewBox: '0 0 64 58.6', ...props, children: [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' }), 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' })] }));
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
function Sensor(props) {
|
|
1937
|
+
return (jsxs("svg", { viewBox: '0 0 64 45.6', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
function Signature(props) {
|
|
1941
|
+
return (jsxs("svg", { viewBox: '0 0 64 46.7', ...props, children: [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' }), 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' })] }));
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
function SolarPanel(props) {
|
|
1945
|
+
return (jsx("svg", { viewBox: '0 0 64 58', ...props, children: 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' }) }));
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
function SquareAndArrowDown(props) {
|
|
1949
|
+
return (jsxs("svg", { viewBox: '0 0 52.6 64', ...props, children: [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' }), 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' })] }));
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
function SquareAndArrowDownFill(props) {
|
|
1953
|
+
return (jsx("svg", { viewBox: '0 0 52.6 64', ...props, children: 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' }) }));
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
function SquareAndArrowUp(props) {
|
|
1957
|
+
return (jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [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' }), 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' })] }));
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
function SquareAndArrowUpFill(props) {
|
|
1961
|
+
return (jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [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' }), 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' })] }));
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
function SquareAndPencil(props) {
|
|
1965
|
+
return (jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [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' }), 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' })] }));
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
function SquareAndPencilFill(props) {
|
|
1969
|
+
return (jsxs("svg", { viewBox: '0 0 50.3 64', ...props, children: [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' }), 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' })] }));
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
function TextBubble(props) {
|
|
1973
|
+
return (jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
function ThreePeople(props) {
|
|
1977
|
+
return (jsxs("svg", { viewBox: '0 0 184.1 87.8', ...props, children: [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' }), 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' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
function ThreeRectanglesDesktop(props) {
|
|
1981
|
+
return (jsxs("svg", { viewBox: '0 0 117 99', ...props, children: [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' }), 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' }), jsx("rect", { x: '65.9', y: '77.4', width: '7.8', height: '17.1' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
function ThreeRectanglesDesktopFill(props) {
|
|
1985
|
+
return (jsxs("svg", { viewBox: '0 0 117 99', ...props, children: [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' }), jsx("rect", { x: '42.8', y: '80.4', width: '30.9', height: '12.3' }), 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' }), 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' }), 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' }), 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' })] }));
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
function Trash(props) {
|
|
1989
|
+
return (jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
function TrashFill(props) {
|
|
1993
|
+
return (jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
function Tree(props) {
|
|
1997
|
+
return (jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
function UmbrellaFill(props) {
|
|
2001
|
+
return (jsxs("svg", { viewBox: '0 0 64 60.1', ...props, children: [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' }), 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' }), 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' }), 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' })] }));
|
|
2002
|
+
}
|
|
2003
|
+
|
|
993
2004
|
function xmark(props) {
|
|
994
2005
|
return (jsx("svg", { viewBox: '0 0 64 64', ...props, children: 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' }) }));
|
|
995
2006
|
}
|
|
@@ -1164,5 +2175,5 @@ function Time({ children, dateObject, dateTime, day, hours, milliseconds, minute
|
|
|
1164
2175
|
return (jsx("time", { dateTime: dateAndTime, ref: ref, ...props, children: dateDisplay }));
|
|
1165
2176
|
}
|
|
1166
2177
|
|
|
1167
|
-
export { Anchor, Button, Form, FormContextProvider, FormStatusProvider, Ghost, Heading, Input, Link, Modal, ModalDialog, ModalTrigger, SubmitButton, Time, defineField, useFormContext, useFormStatus };
|
|
2178
|
+
export { Airplane, Anchor, ArrowTriangle2CirclepathCircle, ArrowTriangle2CirclepathCircleFill, BagFill, Banknote, BellFill, BoltCar, BoltFill, BoltRingClosed, BoltTrianglebadgeExclamationmark, BookFill, BookmarkFill, BriefcaseFill, BubbleLeftFill, Building2Fill, Button, Calendar, CameraFill, CarFill, CartFill, ChartBarDocHorizontal, Checkmark, CheckmarkSeal, ChevronCompactDown, ChevronDown, ChevronLeft, ChevronLeftForwardslashChevronRight, ChevronRight, ChevronUpChevronDown, CircleFill, ClockBadgeCheckmark, ClockFill, CloudFill, CubeFill, CurvePointLeft, DialHigh, DocFill, DocOnClipboard, DocOnDoc, DocOnDocFill, DocOnMagnifyingglass as DocTextMagnifyingglass, DollarSign, EllipsisCircle, EllipsisCircleFill, Envelope, EnvelopeFill, ExclamationmarkOctagon, Eye, FigureWaterFitness, FlagFill, FlameFill, Folder, FolderFill, Form, FormContextProvider, FormStatusProvider, Gearshape, GearshapeFill, Ghost, GiftFill, GlobeAmericasFill, HareFill, Heading, House, HouseDeskclock, HouseFill, IPhoneHouse, Input, LightRibbon, LightbulbFill, LightbulbLed, Link, ListBulletClipboardFill, Magnifyingglass, MapPinEllipse, MinusPlusBatteryblock, Modal, ModalDialog, ModalTrigger, Network, NetworkShield, NewspaperFill, Number$1 as Number, PaperplaneFill, Person, PersonCropSquare, PersonFill, PersonFillQuestionmark, Phone, PhoneArrowUpRight, PhoneFill, PlayRectangleFill, Plus, Qrcode, RectanglePortraitAndArrowLeft, RectanglePortraitAndArrowLeftFill, Sensor, Signature, SolarPanel, SquareAndArrowDown, SquareAndArrowDownFill, SquareAndArrowUp, SquareAndArrowUpFill, SquareAndPencil, SquareAndPencilFill, SubmitButton, TextBubble, Textarea, ThreePeople, ThreeRectanglesDesktop, ThreeRectanglesDesktopFill, Time, Trash, TrashFill, Tree, UmbrellaFill, xmark as Xmark, addClass, currentMonthName, currentWeekdayName, daysInMonth, defineField, easeOutExpo, emailRegex, extendMadoTailwindMerge, findComponentByType, firstOfMonth, formatPhoneNumber, getDate, getHours, getHoursIn12, getMeridianFromHour, getMilliseconds, getMinutes, getMonth, getMonthIndexFromName, getMonthName, getNextMonth, getPreviousMonth, getSeconds, getUserReadableDate, getUserReadableDateFromTimestampz, getWeekdayName, getYearsInRange, hasClass, isEmail, isPhoneNumber, monthNamesList, removeClass, telRegex, toFullDateString, toLowerCase, toggleClass, twMerge, twSort, useFormContext, useFormStatus, weekdayNamesList };
|
|
1168
2179
|
//# sourceMappingURL=index.esm.js.map
|