triafly-ui-kit 1.0.108 → 1.0.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Ui/Button/Button.stories.js +36 -36
- package/dist/components/Ui/Icons/Icons.js +107 -103
- package/dist/components/Ui/Icons/index.js +32 -31
- package/dist/main.d.ts +7 -0
- package/dist/main.js +44 -43
- package/package.json +1 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { Button as e } from "./Button.js";
|
|
3
|
-
import { IconSearch as a } from "../Icons/Icons.js";
|
|
4
|
-
const
|
|
3
|
+
import { IconSearch as a, IconPlusCircle as n } from "../Icons/Icons.js";
|
|
4
|
+
const r = {
|
|
5
5
|
title: "UIKit/Button",
|
|
6
6
|
component: e,
|
|
7
7
|
tags: ["autodocs"]
|
|
8
|
-
},
|
|
8
|
+
}, u = {
|
|
9
9
|
args: {
|
|
10
10
|
label: "Brand Default",
|
|
11
11
|
type: "button"
|
|
12
12
|
}
|
|
13
|
-
},
|
|
13
|
+
}, i = {
|
|
14
14
|
args: {
|
|
15
15
|
label: "Brand Light",
|
|
16
16
|
className: "brand-light",
|
|
17
17
|
type: "button"
|
|
18
18
|
}
|
|
19
|
-
},
|
|
19
|
+
}, c = {
|
|
20
20
|
args: {
|
|
21
21
|
label: "Gray",
|
|
22
22
|
className: "gray",
|
|
@@ -34,53 +34,53 @@ const o = {
|
|
|
34
34
|
className: "outlined",
|
|
35
35
|
type: "button"
|
|
36
36
|
}
|
|
37
|
-
},
|
|
37
|
+
}, b = {
|
|
38
38
|
args: {
|
|
39
39
|
label: "Outlined Gray",
|
|
40
40
|
className: "outlined gray",
|
|
41
41
|
type: "button"
|
|
42
42
|
}
|
|
43
|
-
},
|
|
43
|
+
}, m = {
|
|
44
44
|
args: {
|
|
45
45
|
label: "Outlined Danger",
|
|
46
46
|
className: "outlined danger",
|
|
47
47
|
type: "button"
|
|
48
48
|
}
|
|
49
|
-
},
|
|
49
|
+
}, p = {
|
|
50
50
|
args: {
|
|
51
51
|
label: "Small",
|
|
52
52
|
className: "sm",
|
|
53
53
|
type: "button"
|
|
54
54
|
}
|
|
55
|
-
},
|
|
55
|
+
}, y = {
|
|
56
56
|
args: {
|
|
57
57
|
label: "Medium (default)",
|
|
58
58
|
type: "button"
|
|
59
59
|
}
|
|
60
|
-
},
|
|
60
|
+
}, N = {
|
|
61
61
|
args: {
|
|
62
62
|
label: "Large",
|
|
63
63
|
className: "lg",
|
|
64
64
|
type: "button"
|
|
65
65
|
}
|
|
66
|
-
},
|
|
66
|
+
}, h = {
|
|
67
67
|
args: {
|
|
68
68
|
label: "Rounded (default)",
|
|
69
69
|
type: "button"
|
|
70
70
|
}
|
|
71
|
-
},
|
|
71
|
+
}, B = {
|
|
72
72
|
args: {
|
|
73
73
|
label: "Semiround",
|
|
74
74
|
className: "semiround",
|
|
75
75
|
type: "button"
|
|
76
76
|
}
|
|
77
|
-
},
|
|
77
|
+
}, D = {
|
|
78
78
|
args: {
|
|
79
79
|
label: "Semiround Large",
|
|
80
80
|
className: "semiround lg",
|
|
81
81
|
type: "button"
|
|
82
82
|
}
|
|
83
|
-
},
|
|
83
|
+
}, L = {
|
|
84
84
|
args: {
|
|
85
85
|
label: "",
|
|
86
86
|
// Пустая строка для кнопки-иконки
|
|
@@ -88,31 +88,31 @@ const o = {
|
|
|
88
88
|
type: "button",
|
|
89
89
|
icon: /* @__PURE__ */ t("span", { children: /* @__PURE__ */ t(a, {}) })
|
|
90
90
|
}
|
|
91
|
-
},
|
|
91
|
+
}, O = {
|
|
92
92
|
args: {
|
|
93
93
|
label: "Brand Light Large",
|
|
94
94
|
className: "brand-light lg",
|
|
95
95
|
type: "button"
|
|
96
96
|
}
|
|
97
|
-
},
|
|
97
|
+
}, S = {
|
|
98
98
|
args: {
|
|
99
99
|
label: "Outlined Danger Small",
|
|
100
100
|
className: "outlined danger sm",
|
|
101
101
|
type: "button"
|
|
102
102
|
}
|
|
103
|
-
},
|
|
103
|
+
}, f = {
|
|
104
104
|
args: {
|
|
105
105
|
label: "Disabled Outlined Gray",
|
|
106
106
|
className: "outlined gray",
|
|
107
107
|
type: "button",
|
|
108
108
|
isDisabled: !0
|
|
109
109
|
}
|
|
110
|
-
},
|
|
110
|
+
}, x = {
|
|
111
111
|
args: {
|
|
112
112
|
label: "With Icons",
|
|
113
113
|
type: "button",
|
|
114
114
|
icon: /* @__PURE__ */ t("span", { children: /* @__PURE__ */ t(a, {}) }),
|
|
115
|
-
iconTail: /* @__PURE__ */ t("span", { children: /* @__PURE__ */ t(
|
|
115
|
+
iconTail: /* @__PURE__ */ t("span", { children: /* @__PURE__ */ t(n, { size: 20, viewBox: "0 0 20 20" }) })
|
|
116
116
|
}
|
|
117
117
|
}, G = {
|
|
118
118
|
args: {
|
|
@@ -122,24 +122,24 @@ const o = {
|
|
|
122
122
|
}
|
|
123
123
|
};
|
|
124
124
|
export {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
u as BrandDefault,
|
|
126
|
+
i as BrandLight,
|
|
127
|
+
O as BrandLightLarge,
|
|
128
128
|
d as Danger,
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
f as DisabledOutlinedGray,
|
|
130
|
+
c as Gray,
|
|
131
|
+
L as IconButton,
|
|
132
|
+
N as Large,
|
|
133
|
+
y as Medium,
|
|
134
134
|
G as NavigationExample,
|
|
135
135
|
g as OutlinedBrand,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
136
|
+
m as OutlinedDanger,
|
|
137
|
+
S as OutlinedDangerSmall,
|
|
138
|
+
b as OutlinedGray,
|
|
139
|
+
h as Rounded,
|
|
140
|
+
B as Semiround,
|
|
141
|
+
D as SemiroundLarge,
|
|
142
|
+
p as Small,
|
|
143
|
+
x as WithIcons,
|
|
144
|
+
r as default
|
|
145
145
|
};
|
|
@@ -71,10 +71,10 @@ const L = C({
|
|
|
71
71
|
displayName: "CheckCircle",
|
|
72
72
|
path: "M 13 1 C 6.382813 1 1 6.382813 1 13 C 1 19.617188 6.382813 25 13 25 C 19.617188 25 25 19.617188 25 13 C 25 6.382813 19.617188 1 13 1 Z M 13 3 C 18.535156 3 23 7.464844 23 13 C 23 18.535156 18.535156 23 13 23 C 7.464844 23 3 18.535156 3 13 C 3 7.464844 7.464844 3 13 3 Z M 17.1875 7.0625 C 17.039063 7.085938 16.914063 7.164063 16.8125 7.3125 L 11.90625 14.59375 L 9.59375 12.3125 C 9.394531 12.011719 9.011719 11.988281 8.8125 12.1875 L 7.90625 13.09375 C 7.707031 13.394531 7.707031 13.800781 7.90625 14 L 11.40625 17.5 C 11.605469 17.601563 11.886719 17.8125 12.1875 17.8125 C 12.386719 17.8125 12.707031 17.707031 12.90625 17.40625 L 18.90625 8.59375 C 19.105469 8.292969 18.992188 8.011719 18.59375 7.8125 L 17.59375 7.09375 C 17.492188 7.042969 17.335938 7.039063 17.1875 7.0625 Z"
|
|
73
73
|
// d: "M14.2806 7.21937C14.3504 7.28903 14.4057 7.37175 14.4434 7.46279C14.4812 7.55384 14.5006 7.65144 14.5006 7.75C14.5006 7.84856 14.4812 7.94616 14.4434 8.03721C14.4057 8.12825 14.3504 8.21097 14.2806 8.28063L9.03063 13.5306C8.96097 13.6004 8.87826 13.6557 8.78721 13.6934C8.69616 13.7312 8.59857 13.7506 8.5 13.7506C8.40144 13.7506 8.30385 13.7312 8.2128 13.6934C8.12175 13.6557 8.03903 13.6004 7.96938 13.5306L5.71938 11.2806C5.57865 11.1399 5.49959 10.949 5.49959 10.75C5.49959 10.551 5.57865 10.3601 5.71938 10.2194C5.86011 10.0786 6.05098 9.99958 6.25 9.99958C6.44903 9.99958 6.6399 10.0786 6.78063 10.2194L8.5 11.9397L13.2194 7.21937C13.289 7.14964 13.3718 7.09432 13.4628 7.05658C13.5538 7.01884 13.6514 6.99941 13.75 6.99941C13.8486 6.99941 13.9462 7.01884 14.0372 7.05658C14.1283 7.09432 14.211 7.14964 14.2806 7.21937ZM19.75 10C19.75 11.9284 19.1782 13.8134 18.1068 15.4168C17.0355 17.0202 15.5127 18.2699 13.7312 19.0078C11.9496 19.7458 9.98919 19.9389 8.09787 19.5627C6.20656 19.1865 4.46928 18.2579 3.10571 16.8943C1.74215 15.5307 0.813554 13.7934 0.437348 11.9021C0.061142 10.0108 0.254225 8.05042 0.992179 6.26884C1.73013 4.48726 2.97982 2.96451 4.58319 1.89317C6.18657 0.821828 8.07164 0.25 10 0.25C12.585 0.25273 15.0634 1.28084 16.8913 3.10872C18.7192 4.93661 19.7473 7.41498 19.75 10ZM18.25 10C18.25 8.3683 17.7661 6.77325 16.8596 5.41655C15.9531 4.05984 14.6646 3.00242 13.1571 2.37799C11.6497 1.75357 9.99085 1.59019 8.39051 1.90852C6.79017 2.22685 5.32016 3.01259 4.16637 4.16637C3.01259 5.32015 2.22685 6.79016 1.90853 8.3905C1.5902 9.99085 1.75358 11.6496 2.378 13.1571C3.00242 14.6646 4.05984 15.9531 5.41655 16.8596C6.77326 17.7661 8.36831 18.25 10 18.25C12.1873 18.2475 14.2843 17.3775 15.8309 15.8309C17.3775 14.2843 18.2475 12.1873 18.25 10Z",
|
|
74
|
-
}),
|
|
74
|
+
}), P = C({
|
|
75
75
|
displayName: "CircleNotch",
|
|
76
76
|
path: "M21.75 12C21.75 14.5859 20.7228 17.0659 18.8943 18.8943C17.0658 20.7228 14.5859 21.75 12 21.75C9.41414 21.75 6.93419 20.7228 5.10571 18.8943C3.27723 17.0659 2.25 14.5859 2.25 12C2.25 8.1563 4.48219 4.6538 7.93688 3.06849C8.02638 3.02737 8.12311 3.00428 8.22153 3.00054C8.31996 2.9968 8.41816 3.01249 8.51052 3.0467C8.60289 3.08091 8.68761 3.13298 8.75985 3.19994C8.8321 3.26689 8.89044 3.34742 8.93156 3.43692C8.97268 3.52643 8.99577 3.62316 8.99951 3.72158C9.00325 3.82001 8.98756 3.91821 8.95335 4.01057C8.91914 4.10294 8.86707 4.18766 8.80011 4.2599C8.73316 4.33215 8.65263 4.39049 8.56312 4.43161C5.63906 5.77411 3.75 8.74411 3.75 12C3.75 14.1881 4.61919 16.2865 6.16637 17.8337C7.71354 19.3809 9.81196 20.25 12 20.25C14.188 20.25 16.2865 19.3809 17.8336 17.8337C19.3808 16.2865 20.25 14.1881 20.25 12C20.25 8.74411 18.3609 5.77411 15.4369 4.43161C15.2561 4.34857 15.1157 4.19711 15.0466 4.01057C14.9776 3.82403 14.9854 3.61769 15.0684 3.43692C15.1515 3.25616 15.3029 3.1158 15.4895 3.0467C15.676 2.9776 15.8824 2.98544 16.0631 3.06849C19.5178 4.6538 21.75 8.1563 21.75 12Z"
|
|
77
|
-
}),
|
|
77
|
+
}), m = C({
|
|
78
78
|
displayName: "Copy",
|
|
79
79
|
path: "M20.25 3H8.25C8.05109 3 7.86032 3.07902 7.71967 3.21967C7.57902 3.36032 7.5 3.55109 7.5 3.75V7.5H3.75C3.55109 7.5 3.36032 7.57902 3.21967 7.71967C3.07902 7.86032 3 8.05109 3 8.25V20.25C3 20.4489 3.07902 20.6397 3.21967 20.7803C3.36032 20.921 3.55109 21 3.75 21H15.75C15.9489 21 16.1397 20.921 16.2803 20.7803C16.421 20.6397 16.5 20.4489 16.5 20.25V16.5H20.25C20.4489 16.5 20.6397 16.421 20.7803 16.2803C20.921 16.1397 21 15.9489 21 15.75V3.75C21 3.55109 20.921 3.36032 20.7803 3.21967C20.6397 3.07902 20.4489 3 20.25 3ZM15 19.5H4.5V9H15V19.5ZM19.5 15H16.5V8.25C16.5 8.05109 16.421 7.86032 16.2803 7.71967C16.1397 7.57902 15.9489 7.5 15.75 7.5H9V4.5H19.5V15Z"
|
|
80
80
|
}), w = C({
|
|
@@ -138,63 +138,66 @@ const L = C({
|
|
|
138
138
|
displayName: "Plus",
|
|
139
139
|
path: "M21 12C21 12.1989 20.921 12.3897 20.7803 12.5303C20.6397 12.671 20.4489 12.75 20.25 12.75H12.75V20.25C12.75 20.4489 12.671 20.6397 12.5303 20.7803C12.3897 20.921 12.1989 21 12 21C11.8011 21 11.6103 20.921 11.4697 20.7803C11.329 20.6397 11.25 20.4489 11.25 20.25V12.75H3.75C3.55109 12.75 3.36032 12.671 3.21967 12.5303C3.07902 12.3897 3 12.1989 3 12C3 11.8011 3.07902 11.6103 3.21967 11.4697C3.36032 11.329 3.55109 11.25 3.75 11.25H11.25V3.75C11.25 3.55109 11.329 3.36032 11.4697 3.21967C11.6103 3.07902 11.8011 3 12 3C12.1989 3 12.3897 3.07902 12.5303 3.21967C12.671 3.36032 12.75 3.55109 12.75 3.75V11.25H20.25C20.4489 11.25 20.6397 11.329 20.7803 11.4697C20.921 11.6103 21 11.8011 21 12Z"
|
|
140
140
|
}), q = C({
|
|
141
|
+
displayName: "PlusCircle",
|
|
142
|
+
path: "M10 0.25C8.07164 0.25 6.18657 0.821828 4.58319 1.89317C2.97982 2.96451 1.73013 4.48726 0.992179 6.26884C0.254225 8.05042 0.061142 10.0108 0.437348 11.9021C0.813554 13.7934 1.74215 15.5307 3.10571 16.8943C4.46928 18.2579 6.20656 19.1865 8.09787 19.5627C9.98919 19.9389 11.9496 19.7458 13.7312 19.0078C15.5127 18.2699 17.0355 17.0202 18.1068 15.4168C19.1782 13.8134 19.75 11.9284 19.75 10C19.7473 7.41498 18.7192 4.93661 16.8913 3.10872C15.0634 1.28084 12.585 0.25273 10 0.25ZM10 18.25C8.36831 18.25 6.77326 17.7661 5.41655 16.8596C4.05984 15.9531 3.00242 14.6646 2.378 13.1571C1.75358 11.6496 1.5902 9.99085 1.90853 8.3905C2.22685 6.79016 3.01259 5.32015 4.16637 4.16637C5.32016 3.01259 6.79017 2.22685 8.39051 1.90852C9.99085 1.59019 11.6497 1.75357 13.1571 2.37799C14.6646 3.00242 15.9531 4.05984 16.8596 5.41655C17.7661 6.77325 18.25 8.3683 18.25 10C18.2475 12.1873 17.3775 14.2843 15.8309 15.8309C14.2843 17.3775 12.1873 18.2475 10 18.25ZM14.5 10C14.5 10.1989 14.421 10.3897 14.2803 10.5303C14.1397 10.671 13.9489 10.75 13.75 10.75H10.75V13.75C10.75 13.9489 10.671 14.1397 10.5303 14.2803C10.3897 14.421 10.1989 14.5 10 14.5C9.80109 14.5 9.61033 14.421 9.46967 14.2803C9.32902 14.1397 9.25 13.9489 9.25 13.75V10.75H6.25C6.05109 10.75 5.86033 10.671 5.71967 10.5303C5.57902 10.3897 5.5 10.1989 5.5 10C5.5 9.80109 5.57902 9.61032 5.71967 9.46967C5.86033 9.32902 6.05109 9.25 6.25 9.25H9.25V6.25C9.25 6.05109 9.32902 5.86032 9.46967 5.71967C9.61033 5.57902 9.80109 5.5 10 5.5C10.1989 5.5 10.3897 5.57902 10.5303 5.71967C10.671 5.86032 10.75 6.05109 10.75 6.25V9.25H13.75C13.9489 9.25 14.1397 9.32902 14.2803 9.46967C14.421 9.61032 14.5 9.80109 14.5 10Z"
|
|
143
|
+
}), _ = C({
|
|
141
144
|
displayName: "PresentationChart",
|
|
142
145
|
path: "M20.25 3.75H12.75V2.25C12.75 2.05109 12.671 1.86032 12.5303 1.71967C12.3897 1.57902 12.1989 1.5 12 1.5C11.8011 1.5 11.6103 1.57902 11.4697 1.71967C11.329 1.86032 11.25 2.05109 11.25 2.25V3.75H3.75C3.35218 3.75 2.97064 3.90804 2.68934 4.18934C2.40804 4.47064 2.25 4.85218 2.25 5.25V16.5C2.25 16.8978 2.40804 17.2794 2.68934 17.5607C2.97064 17.842 3.35218 18 3.75 18H7.44L5.41406 20.5313C5.28974 20.6867 5.23225 20.8851 5.25422 21.0829C5.2762 21.2807 5.37585 21.4616 5.53125 21.5859C5.68665 21.7103 5.88507 21.7678 6.08286 21.7458C6.28066 21.7238 6.46162 21.6242 6.58594 21.4688L9.36 18H14.64L17.4141 21.4688C17.4756 21.5457 17.5517 21.6098 17.638 21.6573C17.7244 21.7048 17.8192 21.7349 17.9171 21.7458C18.0151 21.7567 18.1142 21.7481 18.2088 21.7207C18.3035 21.6933 18.3918 21.6475 18.4688 21.5859C18.5457 21.5244 18.6098 21.4483 18.6573 21.362C18.7048 21.2756 18.7349 21.1808 18.7458 21.0829C18.7567 20.9849 18.7481 20.8858 18.7207 20.7912C18.6933 20.6965 18.6475 20.6082 18.5859 20.5313L16.56 18H20.25C20.6478 18 21.0294 17.842 21.3107 17.5607C21.592 17.2794 21.75 16.8978 21.75 16.5V5.25C21.75 4.85218 21.592 4.47064 21.3107 4.18934C21.0294 3.90804 20.6478 3.75 20.25 3.75ZM20.25 16.5H3.75V5.25H20.25V16.5ZM9.75 11.25V13.5C9.75 13.6989 9.67098 13.8897 9.53033 14.0303C9.38968 14.171 9.19891 14.25 9 14.25C8.80109 14.25 8.61032 14.171 8.46967 14.0303C8.32902 13.8897 8.25 13.6989 8.25 13.5V11.25C8.25 11.0511 8.32902 10.8603 8.46967 10.7197C8.61032 10.579 8.80109 10.5 9 10.5C9.19891 10.5 9.38968 10.579 9.53033 10.7197C9.67098 10.8603 9.75 11.0511 9.75 11.25ZM12.75 9.75V13.5C12.75 13.6989 12.671 13.8897 12.5303 14.0303C12.3897 14.171 12.1989 14.25 12 14.25C11.8011 14.25 11.6103 14.171 11.4697 14.0303C11.329 13.8897 11.25 13.6989 11.25 13.5V9.75C11.25 9.55109 11.329 9.36032 11.4697 9.21967C11.6103 9.07902 11.8011 9 12 9C12.1989 9 12.3897 9.07902 12.5303 9.21967C12.671 9.36032 12.75 9.55109 12.75 9.75ZM15.75 8.25V13.5C15.75 13.6989 15.671 13.8897 15.5303 14.0303C15.3897 14.171 15.1989 14.25 15 14.25C14.8011 14.25 14.6103 14.171 14.4697 14.0303C14.329 13.8897 14.25 13.6989 14.25 13.5V8.25C14.25 8.05109 14.329 7.86032 14.4697 7.71967C14.6103 7.57902 14.8011 7.5 15 7.5C15.1989 7.5 15.3897 7.57902 15.5303 7.71967C15.671 7.86032 15.75 8.05109 15.75 8.25Z"
|
|
143
|
-
}),
|
|
146
|
+
}), $ = C({
|
|
144
147
|
displayName: "Question",
|
|
145
148
|
path: "M13.125 16.875C13.125 17.0975 13.059 17.315 12.9354 17.5C12.8118 17.685 12.6361 17.8292 12.4305 17.9144C12.225 17.9995 11.9988 18.0218 11.7805 17.9784C11.5623 17.935 11.3618 17.8278 11.2045 17.6705C11.0472 17.5132 10.94 17.3127 10.8966 17.0945C10.8532 16.8762 10.8755 16.65 10.9606 16.4445C11.0458 16.2389 11.19 16.0632 11.375 15.9396C11.56 15.816 11.7775 15.75 12 15.75C12.2984 15.75 12.5845 15.8685 12.7955 16.0795C13.0065 16.2905 13.125 16.5766 13.125 16.875ZM12 6.75C9.93188 6.75 8.25 8.26406 8.25 10.125V10.5C8.25 10.6989 8.32902 10.8897 8.46967 11.0303C8.61033 11.171 8.80109 11.25 9 11.25C9.19892 11.25 9.38968 11.171 9.53033 11.0303C9.67099 10.8897 9.75 10.6989 9.75 10.5V10.125C9.75 9.09375 10.7597 8.25 12 8.25C13.2403 8.25 14.25 9.09375 14.25 10.125C14.25 11.1562 13.2403 12 12 12C11.8011 12 11.6103 12.079 11.4697 12.2197C11.329 12.3603 11.25 12.5511 11.25 12.75V13.5C11.25 13.6989 11.329 13.8897 11.4697 14.0303C11.6103 14.171 11.8011 14.25 12 14.25C12.1989 14.25 12.3897 14.171 12.5303 14.0303C12.671 13.8897 12.75 13.6989 12.75 13.5V13.4325C14.46 13.1184 15.75 11.7544 15.75 10.125C15.75 8.26406 14.0681 6.75 12 6.75ZM21.75 12C21.75 13.9284 21.1782 15.8134 20.1068 17.4168C19.0355 19.0202 17.5127 20.2699 15.7312 21.0078C13.9496 21.7458 11.9892 21.9389 10.0979 21.5627C8.20656 21.1865 6.46928 20.2579 5.10571 18.8943C3.74215 17.5307 2.81355 15.7934 2.43735 13.9021C2.06114 12.0108 2.25422 10.0504 2.99218 8.26884C3.73013 6.48726 4.97982 4.96451 6.58319 3.89317C8.18657 2.82183 10.0716 2.25 12 2.25C14.585 2.25273 17.0634 3.28084 18.8913 5.10872C20.7192 6.93661 21.7473 9.41498 21.75 12ZM20.25 12C20.25 10.3683 19.7661 8.77325 18.8596 7.41655C17.9531 6.05984 16.6646 5.00242 15.1571 4.37799C13.6497 3.75357 11.9909 3.59019 10.3905 3.90852C8.79017 4.22685 7.32016 5.01259 6.16637 6.16637C5.01259 7.32015 4.22685 8.79016 3.90853 10.3905C3.5902 11.9908 3.75358 13.6496 4.378 15.1571C5.00242 16.6646 6.05984 17.9531 7.41655 18.8596C8.77326 19.7661 10.3683 20.25 12 20.25C14.1873 20.2475 16.2843 19.3775 17.8309 17.8309C19.3775 16.2843 20.2475 14.1873 20.25 12Z"
|
|
146
|
-
}),
|
|
149
|
+
}), C1 = C({
|
|
147
150
|
displayName: "IconQuestionFullfilled",
|
|
148
151
|
path: "M10.5 0C8.52219 0 6.58879 0.58649 4.9443 1.6853C3.29981 2.78412 2.01809 4.3459 1.26121 6.17316C0.504333 8.00042 0.3063 10.0111 0.692152 11.9509C1.078 13.8907 2.03041 15.6725 3.42894 17.0711C4.82746 18.4696 6.60929 19.422 8.5491 19.8078C10.4889 20.1937 12.4996 19.9957 14.3268 19.2388C16.1541 18.4819 17.7159 17.2002 18.8147 15.5557C19.9135 13.9112 20.5 11.9778 20.5 10C20.4972 7.34869 19.4427 4.80678 17.568 2.93202C15.6932 1.05727 13.1513 0.00279983 10.5 0ZM10.5 16.1538C10.2718 16.1538 10.0487 16.0862 9.85896 15.9594C9.66921 15.8326 9.52132 15.6524 9.43399 15.4416C9.34666 15.2307 9.32381 14.9987 9.36833 14.7749C9.41285 14.5511 9.52274 14.3455 9.68411 14.1841C9.84548 14.0227 10.0511 13.9128 10.2749 13.8683C10.4987 13.8238 10.7307 13.8467 10.9416 13.934C11.1524 14.0213 11.3326 14.1692 11.4594 14.359C11.5862 14.5487 11.6538 14.7718 11.6538 15C11.6538 15.306 11.5323 15.5995 11.3159 15.8159C11.0995 16.0323 10.806 16.1538 10.5 16.1538ZM11.2692 11.4692V11.5385C11.2692 11.7425 11.1882 11.9381 11.0439 12.0824C10.8997 12.2266 10.704 12.3077 10.5 12.3077C10.296 12.3077 10.1003 12.2266 9.95607 12.0824C9.81182 11.9381 9.73077 11.7425 9.73077 11.5385V10.7692C9.73077 10.5652 9.81182 10.3696 9.95607 10.2253C10.1003 10.081 10.296 10 10.5 10C11.7721 10 12.8077 9.13461 12.8077 8.07692C12.8077 7.01923 11.7721 6.15384 10.5 6.15384C9.22789 6.15384 8.19231 7.01923 8.19231 8.07692V8.46154C8.19231 8.66555 8.11127 8.86121 7.96701 9.00546C7.82275 9.14972 7.62709 9.23077 7.42308 9.23077C7.21907 9.23077 7.02341 9.14972 6.87915 9.00546C6.73489 8.86121 6.65385 8.66555 6.65385 8.46154V8.07692C6.65385 6.16827 8.37885 4.61538 10.5 4.61538C12.6212 4.61538 14.3462 6.16827 14.3462 8.07692C14.3462 9.74808 13.0231 11.1471 11.2692 11.4692Z"
|
|
149
|
-
}),
|
|
152
|
+
}), A1 = C({
|
|
150
153
|
displayName: "Search",
|
|
151
154
|
path: "M21.5299 20.4696L16.8358 15.7765C18.1963 14.1431 18.8748 12.048 18.73 9.92715C18.5852 7.80629 17.6283 5.82289 16.0584 4.38956C14.4885 2.95623 12.4264 2.18333 10.3012 2.23163C8.1759 2.27993 6.15108 3.14571 4.64791 4.64888C3.14474 6.15205 2.27895 8.17687 2.23065 10.3021C2.18235 12.4274 2.95526 14.4894 4.38859 16.0593C5.82191 17.6293 7.80531 18.5861 9.92618 18.7309C12.047 18.8757 14.1421 18.1973 15.7755 16.8368L20.4686 21.5308C20.5383 21.6005 20.621 21.6558 20.7121 21.6935C20.8031 21.7312 20.9007 21.7506 20.9992 21.7506C21.0978 21.7506 21.1954 21.7312 21.2864 21.6935C21.3775 21.6558 21.4602 21.6005 21.5299 21.5308C21.5995 21.4612 21.6548 21.3784 21.6925 21.2874C21.7302 21.1963 21.7497 21.0988 21.7497 21.0002C21.7497 20.9017 21.7302 20.8041 21.6925 20.713C21.6548 20.622 21.5995 20.5393 21.5299 20.4696ZM3.74924 10.5002C3.74924 9.16519 4.14512 7.86015 4.88682 6.75011C5.62852 5.64008 6.68272 4.77492 7.91612 4.26403C9.14953 3.75314 10.5067 3.61946 11.8161 3.87991C13.1255 4.14036 14.3282 4.78324 15.2722 5.72724C16.2162 6.67125 16.8591 7.87398 17.1195 9.18335C17.38 10.4927 17.2463 11.8499 16.7354 13.0833C16.2245 14.3167 15.3594 15.3709 14.2493 16.1126C13.1393 16.8543 11.8343 17.2502 10.4992 17.2502C8.70964 17.2482 6.9939 16.5364 5.72846 15.271C4.46302 14.0056 3.75122 12.2898 3.74924 10.5002Z"
|
|
152
|
-
}),
|
|
155
|
+
}), B1 = C({
|
|
153
156
|
displayName: "SearchX",
|
|
154
157
|
path: /* @__PURE__ */ B("g", { fill: "currentColor", children: [
|
|
155
158
|
/* @__PURE__ */ A("path", { d: "M21.5299 20.4696L16.8358 15.7765C18.1963 14.1431 18.8748 12.048 18.73 9.92715C18.5852 7.80629 17.6283 5.82289 16.0584 4.38956C14.4885 2.95623 12.4264 2.18333 10.3012 2.23163C8.1759 2.27993 6.15108 3.14571 4.64791 4.64888C3.14474 6.15205 2.27895 8.17687 2.23065 10.3021C2.18235 12.4274 2.95526 14.4894 4.38859 16.0593C5.82191 17.6293 7.80531 18.5861 9.92618 18.7309C12.047 18.8757 14.1421 18.1973 15.7755 16.8368L20.4686 21.5308C20.5383 21.6005 20.621 21.6558 20.7121 21.6935C20.8031 21.7312 20.9007 21.7506 20.9992 21.7506C21.0978 21.7506 21.1954 21.7312 21.2864 21.6935C21.3775 21.6558 21.4602 21.6005 21.5299 21.5308C21.5995 21.4612 21.6548 21.3784 21.6925 21.2874C21.7302 21.1963 21.7497 21.0988 21.7497 21.0002C21.7497 20.9017 21.7302 20.8041 21.6925 20.713C21.6548 20.622 21.5995 20.5393 21.5299 20.4696ZM3.74924 10.5002C3.74924 9.16519 4.14512 7.86015 4.88682 6.75011C5.62852 5.64008 6.68272 4.77492 7.91612 4.26403C9.14953 3.75314 10.5067 3.61946 11.8161 3.87991C13.1255 4.14036 14.3282 4.78324 15.2722 5.72724C16.2162 6.67125 16.8591 7.87398 17.1195 9.18335C17.38 10.4927 17.2463 11.8499 16.7354 13.0833C16.2245 14.3167 15.3594 15.3709 14.2493 16.1126C13.1393 16.8543 11.8343 17.2502 10.4992 17.2502C8.70964 17.2482 6.9939 16.5364 5.72846 15.271C4.46302 14.0056 3.75122 12.2898 3.74924 10.5002Z" }),
|
|
156
159
|
/* @__PURE__ */ A("path", { d: "M12.1105 12.8493C12.3094 12.8493 12.5002 12.7702 12.6409 12.6296C12.7815 12.4889 12.8605 12.2982 12.8605 12.0993C12.8605 11.9003 12.7815 11.7096 12.6409 11.5689L11.5802 10.5083L12.6409 9.44761C12.7815 9.30695 12.8605 9.11619 12.8605 8.91728C12.8605 8.71836 12.7815 8.5276 12.6409 8.38695C12.5002 8.24629 12.3094 8.16728 12.1105 8.16728C11.9116 8.16727 11.7208 8.24629 11.5802 8.38695L10.5195 9.44761L9.45887 8.38695C9.31822 8.24629 9.12745 8.16727 8.92854 8.16727C8.72963 8.16727 8.53886 8.24629 8.39821 8.38695C8.25756 8.5276 8.17854 8.71836 8.17854 8.91728C8.17854 9.11619 8.25756 9.30695 8.39821 9.44761L9.45887 10.5083L8.39821 11.5689C8.25756 11.7096 8.17854 11.9003 8.17854 12.0993C8.17854 12.2982 8.25756 12.4889 8.39821 12.6296C8.53886 12.7702 8.72963 12.8493 8.92854 12.8493C9.12745 12.8493 9.31822 12.7702 9.45887 12.6296L10.5195 11.5689L11.5802 12.6296C11.7208 12.7702 11.9116 12.8493 12.1105 12.8493Z" })
|
|
157
160
|
] })
|
|
158
|
-
}),
|
|
161
|
+
}), Q1 = C({
|
|
159
162
|
displayName: "SlidersHorizontal",
|
|
160
163
|
path: "M3.75 8.25002H6.84375C7.00898 8.89533 7.38428 9.4673 7.91048 9.87575C8.43669 10.2842 9.08387 10.5059 9.75 10.5059C10.4161 10.5059 11.0633 10.2842 11.5895 9.87575C12.1157 9.4673 12.491 8.89533 12.6562 8.25002H20.25C20.4489 8.25002 20.6397 8.17101 20.7803 8.03035C20.921 7.8897 21 7.69894 21 7.50002C21 7.30111 20.921 7.11035 20.7803 6.96969C20.6397 6.82904 20.4489 6.75002 20.25 6.75002H12.6562C12.491 6.10471 12.1157 5.53274 11.5895 5.12429C11.0633 4.71584 10.4161 4.49414 9.75 4.49414C9.08387 4.49414 8.43669 4.71584 7.91048 5.12429C7.38428 5.53274 7.00898 6.10471 6.84375 6.75002H3.75C3.55109 6.75002 3.36032 6.82904 3.21967 6.96969C3.07902 7.11035 3 7.30111 3 7.50002C3 7.69894 3.07902 7.8897 3.21967 8.03035C3.36032 8.17101 3.55109 8.25002 3.75 8.25002ZM9.75 6.00002C10.0467 6.00002 10.3367 6.088 10.5834 6.25282C10.83 6.41764 11.0223 6.65191 11.1358 6.926C11.2494 7.20009 11.2791 7.50169 11.2212 7.79266C11.1633 8.08363 11.0204 8.3509 10.8107 8.56068C10.6009 8.77046 10.3336 8.91332 10.0426 8.9712C9.75166 9.02908 9.45006 8.99937 9.17597 8.88584C8.90189 8.77231 8.66762 8.58005 8.5028 8.33338C8.33797 8.0867 8.25 7.7967 8.25 7.50002C8.25 7.1022 8.40804 6.72067 8.68934 6.43936C8.97064 6.15806 9.35218 6.00002 9.75 6.00002ZM20.25 15.75H18.6562C18.491 15.1047 18.1157 14.5327 17.5895 14.1243C17.0633 13.7158 16.4161 13.4941 15.75 13.4941C15.0839 13.4941 14.4367 13.7158 13.9105 14.1243C13.3843 14.5327 13.009 15.1047 12.8438 15.75H3.75C3.55109 15.75 3.36032 15.829 3.21967 15.9697C3.07902 16.1103 3 16.3011 3 16.5C3 16.6989 3.07902 16.8897 3.21967 17.0304C3.36032 17.171 3.55109 17.25 3.75 17.25H12.8438C13.009 17.8953 13.3843 18.4673 13.9105 18.8758C14.4367 19.2842 15.0839 19.5059 15.75 19.5059C16.4161 19.5059 17.0633 19.2842 17.5895 18.8758C18.1157 18.4673 18.491 17.8953 18.6562 17.25H20.25C20.4489 17.25 20.6397 17.171 20.7803 17.0304C20.921 16.8897 21 16.6989 21 16.5C21 16.3011 20.921 16.1103 20.7803 15.9697C20.6397 15.829 20.4489 15.75 20.25 15.75ZM15.75 18C15.4533 18 15.1633 17.912 14.9166 17.7472C14.67 17.5824 14.4777 17.3481 14.3642 17.074C14.2506 16.8 14.2209 16.4984 14.2788 16.2074C14.3367 15.9164 14.4796 15.6491 14.6893 15.4394C14.8991 15.2296 15.1664 15.0867 15.4574 15.0288C15.7483 14.971 16.0499 15.0007 16.324 15.1142C16.5981 15.2277 16.8324 15.42 16.9972 15.6667C17.162 15.9133 17.25 16.2034 17.25 16.5C17.25 16.8978 17.092 17.2794 16.8107 17.5607C16.5294 17.842 16.1478 18 15.75 18Z"
|
|
161
|
-
}),
|
|
164
|
+
}), E1 = C({
|
|
162
165
|
displayName: "Sun",
|
|
163
166
|
path: "M10.875 3V1.5C10.875 1.20163 10.9935 0.915483 11.2045 0.704505C11.4155 0.493526 11.7016 0.375 12 0.375C12.2984 0.375 12.5845 0.493526 12.7955 0.704505C13.0065 0.915483 13.125 1.20163 13.125 1.5V3C13.125 3.29837 13.0065 3.58452 12.7955 3.7955C12.5845 4.00647 12.2984 4.125 12 4.125C11.7016 4.125 11.4155 4.00647 11.2045 3.7955C10.9935 3.58452 10.875 3.29837 10.875 3ZM18.375 12C18.375 13.2609 18.0011 14.4934 17.3006 15.5418C16.6001 16.5901 15.6045 17.4072 14.4396 17.8897C13.2747 18.3722 11.9929 18.4985 10.7563 18.2525C9.51967 18.0065 8.38375 17.3994 7.49219 16.5078C6.60063 15.6162 5.99347 14.4803 5.74749 13.2437C5.50151 12.0071 5.62776 10.7253 6.11027 9.56039C6.59278 8.39551 7.40988 7.39988 8.45824 6.69938C9.5066 5.99889 10.7391 5.625 12 5.625C13.6902 5.62674 15.3107 6.29894 16.5059 7.49411C17.7011 8.68928 18.3733 10.3098 18.375 12ZM16.125 12C16.125 11.1842 15.8831 10.3866 15.4298 9.70827C14.9766 9.02992 14.3323 8.50121 13.5786 8.189C12.8248 7.87679 11.9954 7.7951 11.1953 7.95426C10.3951 8.11343 9.66008 8.50629 9.08318 9.08318C8.50629 9.66008 8.11343 10.3951 7.95426 11.1953C7.7951 11.9954 7.87679 12.8248 8.189 13.5786C8.50121 14.3323 9.02992 14.9766 9.70827 15.4298C10.3866 15.8831 11.1842 16.125 12 16.125C13.0936 16.1238 14.1421 15.6888 14.9154 14.9154C15.6888 14.1421 16.1238 13.0936 16.125 12ZM4.82906 6.42094C4.93371 6.52558 5.05794 6.6086 5.19467 6.66523C5.3314 6.72186 5.47794 6.75101 5.62594 6.75101C5.77393 6.75101 5.92048 6.72186 6.0572 6.66523C6.19393 6.6086 6.31817 6.52558 6.42281 6.42094C6.52746 6.31629 6.61047 6.19206 6.6671 6.05533C6.72374 5.9186 6.75289 5.77206 6.75289 5.62406C6.75289 5.47607 6.72374 5.32952 6.6671 5.1928C6.61047 5.05607 6.52746 4.93183 6.42281 4.82719L5.29781 3.70219C5.08647 3.49084 4.79982 3.37211 4.50094 3.37211C4.20205 3.37211 3.91541 3.49084 3.70406 3.70219C3.49272 3.91353 3.37399 4.20018 3.37399 4.49906C3.37399 4.79795 3.49272 5.08459 3.70406 5.29594L4.82906 6.42094ZM4.82906 17.5772L3.70406 18.7022C3.59942 18.8068 3.5164 18.9311 3.45977 19.0678C3.40314 19.2045 3.37399 19.3511 3.37399 19.4991C3.37399 19.6471 3.40314 19.7936 3.45977 19.9303C3.5164 20.0671 3.59942 20.1913 3.70406 20.2959C3.91541 20.5073 4.20205 20.626 4.50094 20.626C4.64893 20.626 4.79548 20.5969 4.9322 20.5402C5.06893 20.4836 5.19317 20.4006 5.29781 20.2959L6.42281 19.1709C6.63416 18.9596 6.75289 18.6729 6.75289 18.3741C6.75289 18.0752 6.63416 17.7885 6.42281 17.5772C6.21147 17.3658 5.92482 17.2471 5.62594 17.2471C5.32705 17.2471 5.04041 17.3658 4.82906 17.5772ZM18.375 6.75C18.5228 6.75012 18.6691 6.72112 18.8057 6.66465C18.9423 6.60819 19.0664 6.52538 19.1709 6.42094L20.2959 5.29594C20.4006 5.19129 20.4836 5.06706 20.5402 4.93033C20.5969 4.7936 20.626 4.64706 20.626 4.49906C20.626 4.35107 20.5969 4.20452 20.5402 4.0678C20.4836 3.93107 20.4006 3.80683 20.2959 3.70219C20.1913 3.59754 20.0671 3.51453 19.9303 3.4579C19.7936 3.40126 19.6471 3.37211 19.4991 3.37211C19.3511 3.37211 19.2045 3.40126 19.0678 3.4579C18.9311 3.51453 18.8068 3.59754 18.7022 3.70219L17.5772 4.82719C17.4189 4.98454 17.311 5.18541 17.2672 5.40425C17.2234 5.62309 17.2457 5.85001 17.3312 6.05615C17.4168 6.2623 17.5617 6.43834 17.7475 6.56189C17.9334 6.68544 18.1518 6.75092 18.375 6.75ZM19.1709 17.5791C18.9596 17.3677 18.6729 17.249 18.3741 17.249C18.0752 17.249 17.7885 17.3677 17.5772 17.5791C17.3658 17.7904 17.2471 18.0771 17.2471 18.3759C17.2471 18.6748 17.3658 18.9615 17.5772 19.1728L18.7022 20.2978C18.9135 20.5092 19.2002 20.6279 19.4991 20.6279C19.7979 20.6279 20.0846 20.5092 20.2959 20.2978C20.5073 20.0865 20.626 19.7998 20.626 19.5009C20.626 19.2021 20.5073 18.9154 20.2959 18.7041L19.1709 17.5791ZM4.125 12C4.125 11.7016 4.00647 11.4155 3.7955 11.2045C3.58452 10.9935 3.29837 10.875 3 10.875H1.5C1.20163 10.875 0.915483 10.9935 0.704505 11.2045C0.493526 11.4155 0.375 11.7016 0.375 12C0.375 12.2984 0.493526 12.5845 0.704505 12.7955C0.915483 13.0065 1.20163 13.125 1.5 13.125H3C3.29837 13.125 3.58452 13.0065 3.7955 12.7955C4.00647 12.5845 4.125 12.2984 4.125 12ZM12 19.875C11.7016 19.875 11.4155 19.9935 11.2045 20.2045C10.9935 20.4155 10.875 20.7016 10.875 21V22.5C10.875 22.7984 10.9935 23.0845 11.2045 23.2955C11.4155 23.5065 11.7016 23.625 12 23.625C12.2984 23.625 12.5845 23.5065 12.7955 23.2955C13.0065 23.0845 13.125 22.7984 13.125 22.5V21C13.125 20.7016 13.0065 20.4155 12.7955 20.2045C12.5845 19.9935 12.2984 19.875 12 19.875ZM22.5 10.875H21C20.7016 10.875 20.4155 10.9935 20.2045 11.2045C19.9935 11.4155 19.875 11.7016 19.875 12C19.875 12.2984 19.9935 12.5845 20.2045 12.7955C20.4155 13.0065 20.7016 13.125 21 13.125H22.5C22.7984 13.125 23.0845 13.0065 23.2955 12.7955C23.5065 12.5845 23.625 12.2984 23.625 12C23.625 11.7016 23.5065 11.4155 23.2955 11.2045C23.0845 10.9935 22.7984 10.875 22.5 10.875Z"
|
|
164
|
-
}),
|
|
167
|
+
}), a1 = C({
|
|
165
168
|
displayName: "Trash",
|
|
166
169
|
path: "M20.25 4.5H16.5V3.75C16.5 3.15326 16.2629 2.58097 15.841 2.15901C15.419 1.73705 14.8467 1.5 14.25 1.5H9.75C9.15326 1.5 8.58097 1.73705 8.15901 2.15901C7.73705 2.58097 7.5 3.15326 7.5 3.75V4.5H3.75C3.55109 4.5 3.36032 4.57902 3.21967 4.71967C3.07902 4.86032 3 5.05109 3 5.25C3 5.44891 3.07902 5.63968 3.21967 5.78033C3.36032 5.92098 3.55109 6 3.75 6H4.5V19.5C4.5 19.8978 4.65804 20.2794 4.93934 20.5607C5.22064 20.842 5.60218 21 6 21H18C18.3978 21 18.7794 20.842 19.0607 20.5607C19.342 20.2794 19.5 19.8978 19.5 19.5V6H20.25C20.4489 6 20.6397 5.92098 20.7803 5.78033C20.921 5.63968 21 5.44891 21 5.25C21 5.05109 20.921 4.86032 20.7803 4.71967C20.6397 4.57902 20.4489 4.5 20.25 4.5ZM9 3.75C9 3.55109 9.07902 3.36032 9.21967 3.21967C9.36032 3.07902 9.55109 3 9.75 3H14.25C14.4489 3 14.6397 3.07902 14.7803 3.21967C14.921 3.36032 15 3.55109 15 3.75V4.5H9V3.75ZM18 19.5H6V6H18V19.5ZM10.5 9.75V15.75C10.5 15.9489 10.421 16.1397 10.2803 16.2803C10.1397 16.421 9.94891 16.5 9.75 16.5C9.55109 16.5 9.36032 16.421 9.21967 16.2803C9.07902 16.1397 9 15.9489 9 15.75V9.75C9 9.55109 9.07902 9.36032 9.21967 9.21967C9.36032 9.07902 9.55109 9 9.75 9C9.94891 9 10.1397 9.07902 10.2803 9.21967C10.421 9.36032 10.5 9.55109 10.5 9.75ZM15 9.75V15.75C15 15.9489 14.921 16.1397 14.7803 16.2803C14.6397 16.421 14.4489 16.5 14.25 16.5C14.0511 16.5 13.8603 16.421 13.7197 16.2803C13.579 16.1397 13.5 15.9489 13.5 15.75V9.75C13.5 9.55109 13.579 9.36032 13.7197 9.21967C13.8603 9.07902 14.0511 9 14.25 9C14.4489 9 14.6397 9.07902 14.7803 9.21967C14.921 9.36032 15 9.55109 15 9.75Z"
|
|
167
|
-
}),
|
|
170
|
+
}), L1 = C({
|
|
168
171
|
displayName: "User",
|
|
169
172
|
path: "M21.6484 19.8751C20.2206 17.4067 18.0203 15.6367 15.4525 14.7976C16.7226 14.0415 17.7094 12.8893 18.2614 11.518C18.8134 10.1468 18.8999 8.63224 18.5078 7.20701C18.1157 5.78178 17.2666 4.52467 16.0909 3.62873C14.9151 2.73279 13.4778 2.24756 11.9996 2.24756C10.5215 2.24756 9.08414 2.73279 7.90842 3.62873C6.73269 4.52467 5.88358 5.78178 5.49146 7.20701C5.09935 8.63224 5.18592 10.1468 5.73788 11.518C6.28984 12.8893 7.27668 14.0415 8.54683 14.7976C5.97902 15.6357 3.77871 17.4057 2.35089 19.8751C2.29853 19.9605 2.2638 20.0555 2.24875 20.1545C2.2337 20.2535 2.23863 20.3545 2.26326 20.4516C2.28789 20.5487 2.33171 20.6399 2.39214 20.7197C2.45257 20.7996 2.52838 20.8666 2.6151 20.9167C2.70183 20.9667 2.79771 20.999 2.89709 21.0114C2.99647 21.0238 3.09733 21.0163 3.19373 20.9891C3.29012 20.9619 3.3801 20.9157 3.45835 20.8532C3.5366 20.7907 3.60154 20.7131 3.64933 20.6251C5.41558 17.5726 8.53746 15.7501 11.9996 15.7501C15.4618 15.7501 18.5837 17.5726 20.35 20.6251C20.3977 20.7131 20.4627 20.7907 20.5409 20.8532C20.6192 20.9157 20.7092 20.9619 20.8056 20.9891C20.902 21.0163 21.0028 21.0238 21.1022 21.0114C21.2016 20.999 21.2975 20.9667 21.3842 20.9167C21.4709 20.8666 21.5467 20.7996 21.6072 20.7197C21.6676 20.6399 21.7114 20.5487 21.736 20.4516C21.7607 20.3545 21.7656 20.2535 21.7505 20.1545C21.7355 20.0555 21.7008 19.9605 21.6484 19.8751ZM6.74964 9.00011C6.74964 7.96176 7.05755 6.94672 7.63443 6.08337C8.21131 5.22001 9.03124 4.5471 9.99056 4.14974C10.9499 3.75238 12.0055 3.64841 13.0239 3.85099C14.0423 4.05356 14.9777 4.55357 15.712 5.2878C16.4462 6.02202 16.9462 6.95748 17.1488 7.97589C17.3513 8.99429 17.2474 10.0499 16.85 11.0092C16.4527 11.9685 15.7797 12.7884 14.9164 13.3653C14.053 13.9422 13.038 14.2501 11.9996 14.2501C10.6077 14.2486 9.27322 13.695 8.28898 12.7108C7.30473 11.7265 6.75113 10.392 6.74964 9.00011Z"
|
|
170
|
-
}),
|
|
173
|
+
}), e1 = C({
|
|
171
174
|
displayName: "UserX",
|
|
172
175
|
path: /* @__PURE__ */ B("g", { fill: "currentColor", children: [
|
|
173
176
|
/* @__PURE__ */ A("path", { d: "M18.5744 18.267C18.7025 18.4194 18.7648 18.6165 18.7475 18.8148C18.7303 19.0131 18.635 19.1965 18.4826 19.3245C18.3302 19.4526 18.1331 19.5148 17.9348 19.4976C17.7365 19.4804 17.5531 19.3851 17.4251 19.2327C15.5388 16.9864 12.9457 15.7498 10.1248 15.7498C7.30382 15.7498 4.71069 16.9864 2.82444 19.2327C2.69639 19.3849 2.51309 19.4801 2.31486 19.4973C2.11663 19.5144 1.91971 19.4521 1.76741 19.3241C1.61512 19.196 1.51993 19.0127 1.50279 18.8145C1.48565 18.6162 1.54796 18.4193 1.67601 18.267C3.07663 16.6002 4.81851 15.4161 6.75444 14.7823C5.57873 14.0501 4.67349 12.9548 4.17569 11.6622C3.67789 10.3697 3.61461 8.95013 3.99543 7.61839C4.37624 6.28666 5.18043 5.11518 6.28632 4.2812C7.39222 3.44721 8.73964 2.99609 10.1248 2.99609C11.5099 2.99609 12.8573 3.44721 13.9632 4.2812C15.0691 5.11518 15.8733 6.28666 16.2541 7.61839C16.6349 8.95013 16.5716 10.3697 16.0738 11.6622C15.576 12.9548 14.6708 14.0501 13.4951 14.7823C15.431 15.4161 17.1729 16.6002 18.5744 18.267ZM10.1248 14.2498C11.0889 14.2498 12.0315 13.9639 12.8332 13.4283C13.6349 12.8926 14.2597 12.1312 14.6287 11.2404C14.9976 10.3496 15.0942 9.36943 14.9061 8.42378C14.718 7.47812 14.2537 6.60948 13.5719 5.9277C12.8901 5.24592 12.0215 4.78162 11.0758 4.59351C10.1302 4.40541 9.14996 4.50195 8.25917 4.87093C7.36838 5.23991 6.60701 5.86475 6.07134 6.66644C5.53567 7.46813 5.24976 8.41066 5.24976 9.37484C5.25124 10.6673 5.76534 11.9064 6.67925 12.8203C7.59317 13.7343 8.83228 14.2484 10.1248 14.2498Z" }),
|
|
174
177
|
/* @__PURE__ */ A("path", { d: "M22.591 15.091C22.7899 15.091 22.9807 15.0119 23.1213 14.8713C23.262 14.7306 23.341 14.5399 23.341 14.341C23.341 14.142 23.262 13.9513 23.1213 13.8106L22.0607 12.75L23.1213 11.6893C23.262 11.5487 23.341 11.3579 23.341 11.159C23.341 10.9601 23.262 10.7693 23.1213 10.6286C22.9807 10.488 22.7899 10.409 22.591 10.409C22.3921 10.409 22.2013 10.488 22.0607 10.6286L21 11.6893L19.9393 10.6286C19.7987 10.488 19.6079 10.409 19.409 10.409C19.2101 10.409 19.0193 10.488 18.8787 10.6286C18.738 10.7693 18.659 10.9601 18.659 11.159C18.659 11.3579 18.738 11.5487 18.8787 11.6893L19.9393 12.75L18.8787 13.8106C18.738 13.9513 18.659 14.142 18.659 14.341C18.659 14.5399 18.738 14.7306 18.8787 14.8713C19.0193 15.0119 19.2101 15.091 19.409 15.091C19.6079 15.091 19.7987 15.0119 19.9393 14.8713L21 13.8106L22.0607 14.8713C22.2013 15.0119 22.3921 15.091 22.591 15.091Z" })
|
|
175
178
|
] })
|
|
176
|
-
}),
|
|
179
|
+
}), n1 = C({
|
|
177
180
|
displayName: "WarningCircle",
|
|
178
181
|
path: "M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM12 20.25C10.3683 20.25 8.77326 19.7661 7.41655 18.8596C6.05984 17.9531 5.00242 16.6646 4.378 15.1571C3.75358 13.6496 3.5902 11.9908 3.90853 10.3905C4.22685 8.79016 5.01259 7.32015 6.16637 6.16637C7.32016 5.01259 8.79017 4.22685 10.3905 3.90852C11.9909 3.59019 13.6497 3.75357 15.1571 4.37799C16.6646 5.00242 17.9531 6.05984 18.8596 7.41655C19.7661 8.77325 20.25 10.3683 20.25 12C20.2475 14.1873 19.3775 16.2843 17.8309 17.8309C16.2843 19.3775 14.1873 20.2475 12 20.25ZM11.25 12.75V7.5C11.25 7.30109 11.329 7.11032 11.4697 6.96967C11.6103 6.82902 11.8011 6.75 12 6.75C12.1989 6.75 12.3897 6.82902 12.5303 6.96967C12.671 7.11032 12.75 7.30109 12.75 7.5V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75ZM13.125 16.125C13.125 16.3475 13.059 16.565 12.9354 16.75C12.8118 16.935 12.6361 17.0792 12.4305 17.1644C12.225 17.2495 11.9988 17.2718 11.7805 17.2284C11.5623 17.185 11.3618 17.0778 11.2045 16.9205C11.0472 16.7632 10.94 16.5627 10.8966 16.3445C10.8532 16.1262 10.8755 15.9 10.9606 15.6945C11.0458 15.4889 11.19 15.3132 11.375 15.1896C11.56 15.066 11.7775 15 12 15C12.2984 15 12.5845 15.1185 12.7955 15.3295C13.0065 15.5405 13.125 15.8266 13.125 16.125Z"
|
|
179
|
-
}),
|
|
182
|
+
}), t1 = C({
|
|
180
183
|
displayName: "Wrench",
|
|
181
184
|
path: "M21.2581 6.46862C21.2126 6.35617 21.1405 6.25644 21.048 6.17797C20.9555 6.09951 20.8453 6.04465 20.727 6.0181C20.6086 5.99155 20.4856 5.99411 20.3684 6.02555C20.2513 6.05699 20.1435 6.11638 20.0543 6.19862L16.2762 9.68518L14.6609 9.33831L14.314 7.72299L17.8006 3.94487C17.8828 3.85571 17.9422 3.74793 17.9736 3.63077C18.0051 3.51362 18.0076 3.39058 17.9811 3.27222C17.9545 3.15386 17.8997 3.04371 17.8212 2.95121C17.7428 2.8587 17.643 2.78661 17.5306 2.74112C16.5058 2.32659 15.395 2.17007 14.2956 2.28532C13.1962 2.40058 12.1419 2.78407 11.2254 3.4021C10.3089 4.02014 9.55822 4.85381 9.0393 5.82985C8.52038 6.8059 8.24911 7.89445 8.24933 8.99987C8.24811 9.93332 8.43961 10.857 8.81183 11.713L3.16714 16.5936C3.15308 16.6049 3.13995 16.618 3.12683 16.6302C2.56415 17.1929 2.24805 17.956 2.24805 18.7517C2.24805 19.1458 2.32565 19.5359 2.47643 19.8999C2.62722 20.2639 2.84822 20.5947 3.12683 20.8733C3.40543 21.1519 3.73619 21.3729 4.10021 21.5237C4.46423 21.6745 4.85438 21.7521 5.24839 21.7521C6.04413 21.7521 6.80728 21.436 7.36995 20.8733C7.38214 20.8611 7.39526 20.8471 7.40651 20.8339L12.2862 15.1874C13.3141 15.6386 14.4383 15.8263 15.5571 15.7336C16.6758 15.6408 17.7537 15.2705 18.6933 14.6562C19.6329 14.0418 20.4044 13.2029 20.938 12.2152C21.4716 11.2276 21.7505 10.1224 21.7493 8.99987C21.7508 8.13229 21.584 7.27267 21.2581 6.46862ZM14.9993 14.2499C14.1116 14.2487 13.2386 14.0229 12.4615 13.5936C12.311 13.5105 12.1364 13.4816 11.9671 13.5118C11.7978 13.542 11.644 13.6295 11.5315 13.7596L6.29089 19.8289C6.0073 20.0984 5.62967 20.2463 5.23853 20.2413C4.84739 20.2363 4.47367 20.0787 4.19707 19.8021C3.92047 19.5255 3.76286 19.1518 3.75785 18.7607C3.75285 18.3695 3.90083 17.9919 4.17026 17.7083L10.235 12.4686C10.3653 12.3561 10.4529 12.2021 10.4831 12.0326C10.5133 11.8631 10.4843 11.6883 10.4009 11.5377C9.92279 10.673 9.69842 9.69089 9.75357 8.70435C9.80873 7.71781 10.1412 6.76686 10.7127 5.96082C11.2842 5.15479 12.0715 4.5264 12.9842 4.14788C13.8969 3.76937 14.8979 3.65611 15.8721 3.82112L12.9471 6.99081C12.8658 7.07909 12.8068 7.18563 12.7751 7.30146C12.7435 7.41729 12.7401 7.53903 12.7653 7.65643L13.2959 10.1249C13.3262 10.266 13.3967 10.3955 13.4988 10.4976C13.6009 10.5997 13.7303 10.6701 13.8715 10.7005L16.3418 11.2311C16.4592 11.2563 16.581 11.2529 16.6968 11.2213C16.8126 11.1896 16.9192 11.1306 17.0075 11.0492L20.1771 8.12424C20.3035 8.87706 20.2644 9.64838 20.0624 10.3845C19.8605 11.1207 19.5006 11.804 19.0078 12.387C18.5151 12.97 17.9012 13.4386 17.209 13.7603C16.5167 14.0821 15.7627 14.2491 14.9993 14.2499Z"
|
|
182
|
-
}),
|
|
185
|
+
}), H1 = C({
|
|
183
186
|
displayName: "X",
|
|
184
187
|
path: /* @__PURE__ */ B("g", { fill: "currentColor", children: [
|
|
185
188
|
/* @__PURE__ */ A("path", { d: "M19.2803 4.71967C19.5732 5.01256 19.5732 5.48744 19.2803 5.78033L5.78033 19.2803C5.48744 19.5732 5.01256 19.5732 4.71967 19.2803C4.42678 18.9874 4.42678 18.5126 4.71967 18.2197L18.2197 4.71967C18.5126 4.42678 18.9874 4.42678 19.2803 4.71967Z" }),
|
|
186
189
|
/* @__PURE__ */ A("path", { d: "M4.71967 4.71967C5.01256 4.42678 5.48744 4.42678 5.78033 4.71967L19.2803 18.2197C19.5732 18.5126 19.5732 18.9874 19.2803 19.2803C18.9874 19.5732 18.5126 19.5732 18.2197 19.2803L4.71967 5.78033C4.42678 5.48744 4.42678 5.01256 4.71967 4.71967Z" })
|
|
187
190
|
] })
|
|
188
|
-
}),
|
|
191
|
+
}), M1 = C({
|
|
189
192
|
displayName: "DotsThreeVertical",
|
|
190
193
|
path: "M10.5 5.625C10.5 5.32833 10.588 5.03832 10.7528 4.79165C10.9176 4.54497 11.1519 4.35271 11.426 4.23918C11.7001 4.12565 12.0017 4.09594 12.2926 4.15382C12.5836 4.2117 12.8509 4.35456 13.0607 4.56434C13.2704 4.77412 13.4133 5.04139 13.4712 5.33237C13.5291 5.62334 13.4994 5.92494 13.3858 6.19903C13.2723 6.47311 13.08 6.70738 12.8334 6.87221C12.5867 7.03703 12.2967 7.125 12 7.125C11.6022 7.125 11.2206 6.96697 10.9393 6.68566C10.658 6.40436 10.5 6.02283 10.5 5.625ZM12 10.5C11.7033 10.5 11.4133 10.588 11.1666 10.7528C10.92 10.9176 10.7277 11.1519 10.6142 11.426C10.5006 11.7001 10.4709 12.0017 10.5288 12.2926C10.5867 12.5836 10.7296 12.8509 10.9393 13.0607C11.1491 13.2704 11.4164 13.4133 11.7074 13.4712C11.9983 13.5291 12.2999 13.4994 12.574 13.3858C12.8481 13.2723 13.0824 13.08 13.2472 12.8334C13.412 12.5867 13.5 12.2967 13.5 12C13.5 11.6022 13.342 11.2206 13.0607 10.9393C12.7794 10.658 12.3978 10.5 12 10.5ZM12 16.875C11.7033 16.875 11.4133 16.963 11.1666 17.1278C10.92 17.2926 10.7277 17.5269 10.6142 17.801C10.5006 18.0751 10.4709 18.3767 10.5288 18.6676C10.5867 18.9586 10.7296 19.2259 10.9393 19.4357C11.1491 19.6454 11.4164 19.7883 11.7074 19.8462C11.9983 19.9041 12.2999 19.8744 12.574 19.7608C12.8481 19.6473 13.0824 19.455 13.2472 19.2084C13.412 18.9617 13.5 18.6717 13.5 18.375C13.5 17.9772 13.342 17.5956 13.0607 17.3143C12.7794 17.033 12.3978 16.875 12 16.875Z"
|
|
191
|
-
}),
|
|
194
|
+
}), Z1 = C({
|
|
192
195
|
displayName: "House",
|
|
193
196
|
path: "M20.5153 9.72831L13.0153 2.65206C13.0116 2.64886 13.0082 2.64541 13.005 2.64175C12.7289 2.39062 12.369 2.25146 11.9958 2.25146C11.6225 2.25146 11.2627 2.39062 10.9866 2.64175L10.9763 2.65206L3.48469 9.72831C3.33187 9.86883 3.20989 10.0395 3.12646 10.2296C3.04303 10.4197 2.99997 10.6251 3 10.8327V19.4999C3 19.8977 3.15804 20.2792 3.43934 20.5605C3.72064 20.8418 4.10218 20.9999 4.5 20.9999H9C9.39782 20.9999 9.77936 20.8418 10.0607 20.5605C10.342 20.2792 10.5 19.8977 10.5 19.4999V14.9999H13.5V19.4999C13.5 19.8977 13.658 20.2792 13.9393 20.5605C14.2206 20.8418 14.6022 20.9999 15 20.9999H19.5C19.8978 20.9999 20.2794 20.8418 20.5607 20.5605C20.842 20.2792 21 19.8977 21 19.4999V10.8327C21 10.6251 20.957 10.4197 20.8735 10.2296C20.7901 10.0395 20.6681 9.86883 20.5153 9.72831ZM19.5 19.4999H15V14.9999C15 14.602 14.842 14.2205 14.5607 13.9392C14.2794 13.6579 13.8978 13.4999 13.5 13.4999H10.5C10.1022 13.4999 9.72064 13.6579 9.43934 13.9392C9.15804 14.2205 9 14.602 9 14.9999V19.4999H4.5V10.8327L4.51031 10.8233L12 3.74987L19.4906 10.8214L19.5009 10.8308L19.5 19.4999Z"
|
|
194
|
-
}),
|
|
197
|
+
}), o1 = C({
|
|
195
198
|
displayName: "ThreeDot",
|
|
196
199
|
path: "M 76 128 a 12 12 0 1 1 -12 -12 A 12.0138 12.0138 0 0 1 76 128 Z m 116 -12 a 12 12 0 1 0 12 12 A 12.0138 12.0138 0 0 0 192 116 Z m -64 0 a 12 12 0 1 0 12 12 A 12.0138 12.0138 0 0 0 128 116 Z"
|
|
197
|
-
}),
|
|
200
|
+
}), s1 = C({
|
|
198
201
|
displayName: "RoleX",
|
|
199
202
|
path: /* @__PURE__ */ B("g", { fill: "currentColor", children: [
|
|
200
203
|
/* @__PURE__ */ A("path", { d: "M8.14372 4.17469C8.50118 3.998 8.68332 3.57995 8.53384 3.21029C8.38608 2.84489 7.96992 2.66466 7.61429 2.83457C4.77812 4.18959 2.71275 6.78895 2.04878 9.88847C1.01451 10.1281 0.302862 11.0774 0.362906 12.1374C0.42295 13.1974 1.23725 14.0602 2.29197 14.1815C3.34668 14.3028 4.3356 13.6473 4.63468 12.6286C4.93377 11.61 4.45619 10.5239 3.50332 10.0557C4.09006 7.48549 5.80301 5.33164 8.14372 4.17469ZM2.55059 12.7321C2.14893 12.7321 1.82332 12.4065 1.82332 12.0048C1.82332 11.6032 2.14893 11.2776 2.55059 11.2776C2.95226 11.2776 3.27787 11.6032 3.27787 12.0048C3.27787 12.4065 2.95226 12.7321 2.55059 12.7321ZM12.0051 19.2776C11.1777 19.2801 10.4229 19.7504 10.056 20.4921C7.48875 19.9081 5.33571 18.2004 4.17589 15.8649C3.99866 15.508 3.58084 15.3264 3.21142 15.4758C2.84562 15.6237 2.66529 16.0404 2.8356 16.3963C4.19509 19.2373 6.80323 21.3033 9.91059 21.9612C10.1736 23.0738 11.2509 23.7946 12.3797 23.6134C13.5085 23.4322 14.306 22.4104 14.2076 21.2714C14.1092 20.1324 13.1483 19.2625 12.0051 19.2776ZM12.0051 22.1867C11.6035 22.1867 11.2779 21.861 11.2779 21.4594C11.2779 21.0577 11.6035 20.7321 12.0051 20.7321C12.4068 20.7321 12.7324 21.0577 12.7324 21.4594C12.7324 21.861 12.4068 22.1867 12.0051 22.1867ZM23.6415 12.0048C23.6448 10.9275 22.8612 10.0091 21.7968 9.84263C20.7324 9.67618 19.7058 10.3115 19.38 11.3384C19.0542 12.3653 19.5267 13.4763 20.4924 13.9539C19.9084 16.5212 18.2007 18.6743 15.8652 19.8341C15.5083 20.0113 15.3267 20.4291 15.4761 20.7986C15.624 21.1644 16.0407 21.3447 16.3967 21.1744C19.2376 19.8149 21.3036 17.2067 21.9615 14.0994C22.9357 13.8692 23.6283 13.0057 23.6415 12.0048ZM21.4597 12.7321C21.058 12.7321 20.7324 12.4065 20.7324 12.0048C20.7324 11.6032 21.058 11.2776 21.4597 11.2776C21.8613 11.2776 22.187 11.6032 22.187 12.0048C22.187 12.4065 21.8613 12.7321 21.4597 12.7321Z" }),
|
|
@@ -202,49 +205,49 @@ const L = C({
|
|
|
202
205
|
/* @__PURE__ */ A("path", { d: "M18.419 2.53082C18.7119 2.82371 18.7119 3.29859 18.419 3.59148L15.5906 6.41991C15.2977 6.7128 14.8228 6.7128 14.5299 6.41991C14.237 6.12701 14.237 5.65214 14.5299 5.35925L17.3583 2.53082C17.6512 2.23793 18.1261 2.23793 18.419 2.53082Z" }),
|
|
203
206
|
/* @__PURE__ */ A("path", { d: "M18.4189 6.41949C18.126 6.71238 17.6511 6.71238 17.3582 6.41949L14.5298 3.59106C14.2369 3.29817 14.2369 2.8233 14.5298 2.5304C14.8227 2.23751 15.2976 2.23751 15.5905 2.5304L18.4189 5.35883C18.7118 5.65172 18.7118 6.1266 18.4189 6.41949Z" })
|
|
204
207
|
] })
|
|
205
|
-
}),
|
|
208
|
+
}), c1 = C({
|
|
206
209
|
displayName: "FloppyDisk",
|
|
207
210
|
path: "M20.5603 7.50001L16.5 3.43969C16.3612 3.2998 16.196 3.18889 16.014 3.11341C15.832 3.03792 15.6367 2.99938 15.4397 3.00001H4.5C4.10218 3.00001 3.72064 3.15804 3.43934 3.43935C3.15804 3.72065 3 4.10218 3 4.50001V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V8.56032C21.0006 8.36326 20.9621 8.16805 20.8866 7.98602C20.8111 7.804 20.7002 7.63879 20.5603 7.50001ZM15.75 19.5H8.25V14.25H15.75V19.5ZM19.5 19.5H17.25V14.25C17.25 13.8522 17.092 13.4707 16.8107 13.1893C16.5294 12.908 16.1478 12.75 15.75 12.75H8.25C7.85218 12.75 7.47064 12.908 7.18934 13.1893C6.90804 13.4707 6.75 13.8522 6.75 14.25V19.5H4.5V4.50001H15.4397L19.5 8.56032V19.5ZM15 6.75001C15 6.94892 14.921 7.13969 14.7803 7.28034C14.6397 7.42099 14.4489 7.50001 14.25 7.50001H9C8.80109 7.50001 8.61032 7.42099 8.46967 7.28034C8.32902 7.13969 8.25 6.94892 8.25 6.75001C8.25 6.5511 8.32902 6.36033 8.46967 6.21968C8.61032 6.07903 8.80109 6.00001 9 6.00001H14.25C14.4489 6.00001 14.6397 6.07903 14.7803 6.21968C14.921 6.36033 15 6.5511 15 6.75001Z"
|
|
208
|
-
}),
|
|
211
|
+
}), p1 = C({
|
|
209
212
|
viewBox: "0 0 20 14",
|
|
210
213
|
displayName: "FolderSimple",
|
|
211
214
|
path: "M17.125 3.875V12.6945C17.1246 13.0075 17.0001 13.3075 16.7788 13.5288C16.5575 13.7501 16.2575 13.8746 15.9445 13.875H2.125C1.79348 13.875 1.47554 13.7433 1.24112 13.5089C1.0067 13.2745 0.875 12.9565 0.875 12.625V2C0.875 1.66848 1.0067 1.35054 1.24112 1.11612C1.47554 0.881696 1.79348 0.75 2.125 0.75H6.29141C6.56176 0.750671 6.82472 0.838324 7.04141 1L9.20859 2.625H15.875C16.2065 2.625 16.5245 2.7567 16.7589 2.99112C16.9933 3.22554 17.125 3.54348 17.125 3.875Z"
|
|
212
|
-
}),
|
|
215
|
+
}), V1 = C({
|
|
213
216
|
displayName: "NavigationArrow",
|
|
214
217
|
path: "M18.4997 6.20716L2.00724 0.0937264L1.99224 0.089039C1.72677 -0.00236471 1.44097 -0.0174274 1.16737 0.0455647C0.893761 0.108557 0.643326 0.247075 0.444552 0.44536C0.245778 0.643646 0.106644 0.89374 0.0429789 1.16719C-0.020686 1.44064 -0.00632628 1.72647 0.0844241 1.99216C0.085564 1.99729 0.0871319 2.0023 0.0891115 2.00716L6.20724 18.4997C6.30772 18.7937 6.49831 19.0486 6.75193 19.2282C7.00555 19.4078 7.30931 19.5029 7.62005 19.5H7.64817C7.96506 19.4976 8.27278 19.3934 8.52596 19.2028C8.77915 19.0123 8.96441 18.7454 9.05443 18.4415L11.2632 11.264L18.4407 9.05529C18.7423 8.96248 19.0069 8.77693 19.197 8.52503C19.387 8.27313 19.4928 7.96772 19.4992 7.65224C19.5056 7.33675 19.4124 7.02728 19.2328 6.76783C19.0532 6.50839 18.7964 6.3122 18.4988 6.20716H18.4997ZM18.0001 7.62185L10.8225 9.8306C10.5889 9.90258 10.3764 10.0306 10.2035 10.2035C10.0307 10.3763 9.90266 10.5888 9.83068 10.8225L7.62192 18L7.6163 17.984L1.50005 1.49998L17.9832 7.61435L17.9982 7.61998L18.0001 7.62185Z"
|
|
215
|
-
}),
|
|
218
|
+
}), h1 = C({
|
|
216
219
|
displayName: "Hand",
|
|
217
220
|
path: "M15.6255 3.50003C15.2362 3.49948 14.8517 3.5863 14.5005 3.75409V3.12503C14.5007 2.49938 14.2775 1.89423 13.871 1.41861C13.4645 0.942998 12.9016 0.628198 12.2835 0.53094C11.6655 0.433683 11.033 0.560365 10.5001 0.888159C9.96724 1.21595 9.56894 1.7233 9.37702 2.31878C8.97727 2.10195 8.52805 1.9927 8.07338 2.00172C7.6187 2.01074 7.17417 2.13773 6.78334 2.37024C6.39251 2.60276 6.06879 2.93282 5.8439 3.32808C5.61901 3.72335 5.50066 4.17026 5.50046 4.62503V10.625L5.14233 10.0503C4.79449 9.45005 4.22314 9.01188 3.55318 8.83161C2.88322 8.65133 2.16914 8.74361 1.56702 9.08828C0.9649 9.43295 0.523717 10.002 0.339904 10.671C0.156092 11.34 0.2446 12.0545 0.586082 12.6585C2.08608 15.8244 3.29827 18.0697 4.68483 19.4732C6.08546 20.8944 7.67546 21.5 10.0005 21.5C12.1877 21.4975 14.2847 20.6276 15.8313 19.0809C17.378 17.5343 18.248 15.4373 18.2505 13.25V6.12503C18.2505 5.42883 17.9739 4.76115 17.4816 4.26887C16.9893 3.77659 16.3217 3.50003 15.6255 3.50003ZM16.7505 13.25C16.7485 15.0396 16.0367 16.7554 14.7712 18.0208C13.5058 19.2862 11.7901 19.998 10.0005 20C8.08983 20 6.85889 19.5425 5.75077 18.4203C4.51046 17.1631 3.36858 15.0313 1.92858 11.9919C1.92014 11.9733 1.91076 11.9552 1.90046 11.9375C1.75127 11.6791 1.71087 11.3719 1.78814 11.0837C1.86541 10.7954 2.05403 10.5497 2.31249 10.4005C2.57095 10.2513 2.87809 10.2109 3.16634 10.2882C3.45459 10.3655 3.70034 10.5541 3.84952 10.8125C3.85334 10.82 3.85773 10.8272 3.86264 10.8341L5.61296 13.6466C5.69894 13.7853 5.82784 13.8922 5.98009 13.9511C6.13234 14.0099 6.29962 14.0175 6.45656 13.9726C6.6135 13.9278 6.75153 13.8329 6.84969 13.7025C6.94784 13.5721 7.00078 13.4132 7.00046 13.25V4.62503C7.00046 4.32666 7.11898 4.04051 7.32996 3.82953C7.54094 3.61855 7.82709 3.50003 8.12546 3.50003C8.42383 3.50003 8.70998 3.61855 8.92095 3.82953C9.13193 4.04051 9.25046 4.32666 9.25046 4.62503V10.25C9.25046 10.4489 9.32948 10.6397 9.47013 10.7804C9.61078 10.921 9.80155 11 10.0005 11C10.1994 11 10.3901 10.921 10.5308 10.7804C10.6714 10.6397 10.7505 10.4489 10.7505 10.25V3.12503C10.7505 2.82666 10.869 2.54051 11.08 2.32953C11.2909 2.11855 11.5771 2.00003 11.8755 2.00003C12.1738 2.00003 12.46 2.11855 12.671 2.32953C12.8819 2.54051 13.0005 2.82666 13.0005 3.12503V10.25C13.0005 10.4489 13.0795 10.6397 13.2201 10.7804C13.3608 10.921 13.5515 11 13.7505 11C13.9494 11 14.1401 10.921 14.2808 10.7804C14.4214 10.6397 14.5005 10.4489 14.5005 10.25V6.12503C14.5005 5.82666 14.619 5.54051 14.83 5.32953C15.0409 5.11855 15.3271 5.00003 15.6255 5.00003C15.9238 5.00003 16.21 5.11855 16.421 5.32953C16.6319 5.54051 16.7505 5.82666 16.7505 6.12503V13.25Z"
|
|
218
|
-
}),
|
|
221
|
+
}), r1 = C({
|
|
219
222
|
displayName: "ChatText",
|
|
220
223
|
path: "M20.25 4.5H3.75C3.35217 4.5 2.97064 4.65804 2.68934 4.93934C2.40803 5.22064 2.25 5.60218 2.25 6V21C2.2483 21.2859 2.32913 21.5662 2.48278 21.8074C2.63643 22.0485 2.85638 22.2401 3.11625 22.3594C3.31482 22.4516 3.53106 22.4996 3.75 22.5C4.10212 22.4992 4.44257 22.3736 4.71093 22.1456C4.71541 22.1427 4.7195 22.1392 4.72312 22.1353L7.73437 19.5H20.25C20.6478 19.5 21.0294 19.342 21.3107 19.0607C21.592 18.7794 21.75 18.3978 21.75 18V6C21.75 5.60218 21.592 5.22064 21.3107 4.93934C21.0294 4.65804 20.6478 4.5 20.25 4.5ZM20.25 18H7.73437C7.38114 17.9998 7.03919 18.1243 6.76875 18.3516L6.7575 18.3619L3.75 21V6H20.25V18ZM8.25 10.5C8.25 10.3011 8.32901 10.1103 8.46967 9.96967C8.61032 9.82902 8.80108 9.75 9 9.75H15C15.1989 9.75 15.3897 9.82902 15.5303 9.96967C15.671 10.1103 15.75 10.3011 15.75 10.5C15.75 10.6989 15.671 10.8897 15.5303 11.0303C15.3897 11.171 15.1989 11.25 15 11.25H9C8.80108 11.25 8.61032 11.171 8.46967 11.0303C8.32901 10.8897 8.25 10.6989 8.25 10.5ZM8.25 13.5C8.25 13.3011 8.32901 13.1103 8.46967 12.9697C8.61032 12.829 8.80108 12.75 9 12.75H15C15.1989 12.75 15.3897 12.829 15.5303 12.9697C15.671 13.1103 15.75 13.3011 15.75 13.5C15.75 13.6989 15.671 13.8897 15.5303 14.0303C15.3897 14.171 15.1989 14.25 15 14.25H9C8.80108 14.25 8.61032 14.171 8.46967 14.0303C8.32901 13.8897 8.25 13.6989 8.25 13.5Z"
|
|
221
|
-
}),
|
|
224
|
+
}), i1 = C({
|
|
222
225
|
displayName: "Sticker",
|
|
223
226
|
path: "M12.75 0H5.25C3.85807 0.00148896 2.52358 0.555091 1.53933 1.53933C0.555091 2.52358 0.00148896 3.85807 0 5.25V12.75C0.00148896 14.1419 0.555091 15.4764 1.53933 16.4607C2.52358 17.4449 3.85807 17.9985 5.25 18H9.75C9.83061 17.9999 9.91068 17.9869 9.98719 17.9616C12.4462 17.1413 17.1413 12.4462 17.9616 9.98719C17.9869 9.91068 17.9999 9.83061 18 9.75V5.25C17.9985 3.85807 17.4449 2.52358 16.4607 1.53933C15.4764 0.555091 14.1419 0.00148896 12.75 0ZM1.5 12.75V5.25C1.5 4.25544 1.89509 3.30161 2.59835 2.59835C3.30161 1.89509 4.25544 1.5 5.25 1.5H12.75C13.7446 1.5 14.6984 1.89509 15.4017 2.59835C16.1049 3.30161 16.5 4.25544 16.5 5.25V9H14.25C12.8581 9.00149 11.5236 9.55509 10.5393 10.5393C9.55509 11.5236 9.00149 12.8581 9 14.25V16.5H5.25C4.25544 16.5 3.30161 16.1049 2.59835 15.4017C1.89509 14.6984 1.5 13.7446 1.5 12.75ZM10.5 16.0444V14.25C10.5 13.2554 10.8951 12.3016 11.5983 11.5983C12.3016 10.8951 13.2554 10.5 14.25 10.5H16.0444C14.9062 12.3281 12.3281 14.9062 10.5 16.0444Z"
|
|
224
|
-
}),
|
|
227
|
+
}), l1 = C({
|
|
225
228
|
displayName: "ArrowBendUpRight",
|
|
226
229
|
path: "M19.5306 6.28104L15.0306 10.781C14.8899 10.9218 14.699 11.0008 14.5 11.0008C14.301 11.0008 14.1101 10.9218 13.9694 10.781C13.8286 10.6403 13.7496 10.4494 13.7496 10.2504C13.7496 10.0514 13.8286 9.86052 13.9694 9.71979L17.1897 6.50042H10C7.81273 6.5029 5.71575 7.37289 4.16911 8.91953C2.62247 10.4662 1.75248 12.5631 1.75 14.7504C1.75 14.9493 1.67098 15.1401 1.53033 15.2807C1.38968 15.4214 1.19891 15.5004 1 15.5004C0.801088 15.5004 0.610322 15.4214 0.46967 15.2807C0.329018 15.1401 0.25 14.9493 0.25 14.7504C0.25273 12.1654 1.28084 9.68703 3.10872 7.85914C4.93661 6.03125 7.41498 5.00315 10 5.00042H17.1897L13.9694 1.78104C13.8997 1.71136 13.8444 1.62863 13.8067 1.53759C13.769 1.44654 13.7496 1.34896 13.7496 1.25042C13.7496 1.15187 13.769 1.05429 13.8067 0.963245C13.8444 0.8722 13.8997 0.789475 13.9694 0.719792C14.1101 0.579062 14.301 0.5 14.5 0.5C14.5985 0.5 14.6961 0.51941 14.7872 0.557122C14.8782 0.594834 14.9609 0.650109 15.0306 0.719792L19.5306 5.21979C19.6004 5.28945 19.6557 5.37216 19.6934 5.46321C19.7312 5.55426 19.7506 5.65186 19.7506 5.75042C19.7506 5.84898 19.7312 5.94657 19.6934 6.03762C19.6557 6.12867 19.6004 6.21139 19.5306 6.28104Z"
|
|
227
|
-
}),
|
|
230
|
+
}), f1 = C({
|
|
228
231
|
displayName: "Selection",
|
|
229
232
|
path: "M11.25 0.75C11.25 0.948912 11.171 1.13968 11.0303 1.28033C10.8897 1.42098 10.6989 1.5 10.5 1.5H7.5C7.30109 1.5 7.11032 1.42098 6.96967 1.28033C6.82902 1.13968 6.75 0.948912 6.75 0.75C6.75 0.551088 6.82902 0.360322 6.96967 0.21967C7.11032 0.0790178 7.30109 0 7.5 0H10.5C10.6989 0 10.8897 0.0790178 11.0303 0.21967C11.171 0.360322 11.25 0.551088 11.25 0.75ZM10.5 16.5H7.5C7.30109 16.5 7.11032 16.579 6.96967 16.7197C6.82902 16.8603 6.75 17.0511 6.75 17.25C6.75 17.4489 6.82902 17.6397 6.96967 17.7803C7.11032 17.921 7.30109 18 7.5 18H10.5C10.6989 18 10.8897 17.921 11.0303 17.7803C11.171 17.6397 11.25 17.4489 11.25 17.25C11.25 17.0511 11.171 16.8603 11.0303 16.7197C10.8897 16.579 10.6989 16.5 10.5 16.5ZM16.5 0H14.25C14.0511 0 13.8603 0.0790178 13.7197 0.21967C13.579 0.360322 13.5 0.551088 13.5 0.75C13.5 0.948912 13.579 1.13968 13.7197 1.28033C13.8603 1.42098 14.0511 1.5 14.25 1.5H16.5V3.75C16.5 3.94891 16.579 4.13968 16.7197 4.28033C16.8603 4.42098 17.0511 4.5 17.25 4.5C17.4489 4.5 17.6397 4.42098 17.7803 4.28033C17.921 4.13968 18 3.94891 18 3.75V1.5C18 1.10218 17.842 0.720644 17.5607 0.43934C17.2794 0.158035 16.8978 0 16.5 0ZM17.25 6.75C17.0511 6.75 16.8603 6.82902 16.7197 6.96967C16.579 7.11032 16.5 7.30109 16.5 7.5V10.5C16.5 10.6989 16.579 10.8897 16.7197 11.0303C16.8603 11.171 17.0511 11.25 17.25 11.25C17.4489 11.25 17.6397 11.171 17.7803 11.0303C17.921 10.8897 18 10.6989 18 10.5V7.5C18 7.30109 17.921 7.11032 17.7803 6.96967C17.6397 6.82902 17.4489 6.75 17.25 6.75ZM17.25 13.5C17.0511 13.5 16.8603 13.579 16.7197 13.7197C16.579 13.8603 16.5 14.0511 16.5 14.25V16.5H14.25C14.0511 16.5 13.8603 16.579 13.7197 16.7197C13.579 16.8603 13.5 17.0511 13.5 17.25C13.5 17.4489 13.579 17.6397 13.7197 17.7803C13.8603 17.921 14.0511 18 14.25 18H16.5C16.8978 18 17.2794 17.842 17.5607 17.5607C17.842 17.2794 18 16.8978 18 16.5V14.25C18 14.0511 17.921 13.8603 17.7803 13.7197C17.6397 13.579 17.4489 13.5 17.25 13.5ZM0.75 11.25C0.948912 11.25 1.13968 11.171 1.28033 11.0303C1.42098 10.8897 1.5 10.6989 1.5 10.5V7.5C1.5 7.30109 1.42098 7.11032 1.28033 6.96967C1.13968 6.82902 0.948912 6.75 0.75 6.75C0.551088 6.75 0.360322 6.82902 0.21967 6.96967C0.0790178 7.11032 0 7.30109 0 7.5V10.5C0 10.6989 0.0790178 10.8897 0.21967 11.0303C0.360322 11.171 0.551088 11.25 0.75 11.25ZM3.75 16.5H1.5V14.25C1.5 14.0511 1.42098 13.8603 1.28033 13.7197C1.13968 13.579 0.948912 13.5 0.75 13.5C0.551088 13.5 0.360322 13.579 0.21967 13.7197C0.0790178 13.8603 0 14.0511 0 14.25V16.5C0 16.8978 0.158035 17.2794 0.43934 17.5607C0.720644 17.842 1.10218 18 1.5 18H3.75C3.94891 18 4.13968 17.921 4.28033 17.7803C4.42098 17.6397 4.5 17.4489 4.5 17.25C4.5 17.0511 4.42098 16.8603 4.28033 16.7197C4.13968 16.579 3.94891 16.5 3.75 16.5ZM3.75 0H1.5C1.10218 0 0.720644 0.158035 0.43934 0.43934C0.158035 0.720644 0 1.10218 0 1.5V3.75C0 3.94891 0.0790178 4.13968 0.21967 4.28033C0.360322 4.42098 0.551088 4.5 0.75 4.5C0.948912 4.5 1.13968 4.42098 1.28033 4.28033C1.42098 4.13968 1.5 3.94891 1.5 3.75V1.5H3.75C3.94891 1.5 4.13968 1.42098 4.28033 1.28033C4.42098 1.13968 4.5 0.948912 4.5 0.75C4.5 0.551088 4.42098 0.360322 4.28033 0.21967C4.13968 0.0790178 3.94891 0 3.75 0Z"
|
|
230
|
-
}),
|
|
233
|
+
}), d1 = C({
|
|
231
234
|
displayName: "Funnel",
|
|
232
235
|
path: "M19.6197 1.64346C19.5043 1.37675 19.313 1.14986 19.0696 0.991013C18.8263 0.832162 18.5416 0.748358 18.251 0.750024H1.75095C1.46064 0.750596 1.17673 0.835403 0.933663 0.994155C0.690598 1.15291 0.498825 1.37879 0.381608 1.64438C0.264391 1.90998 0.226768 2.20389 0.273301 2.49045C0.319835 2.77701 0.448527 3.04391 0.643764 3.25877L0.651264 3.26721L7.00095 10.0472V17.25C7.00089 17.5215 7.0745 17.7879 7.21395 18.0208C7.35339 18.2538 7.55344 18.4445 7.79275 18.5727C8.03207 18.7008 8.30168 18.7617 8.57285 18.7487C8.84402 18.7356 9.10657 18.6493 9.33251 18.4988L12.3325 16.4981C12.5382 16.3612 12.7068 16.1755 12.8234 15.9576C12.94 15.7398 13.001 15.4965 13.001 15.2494V10.0472L19.3516 3.26721L19.3591 3.25877C19.5564 3.04489 19.6863 2.77764 19.7327 2.49037C19.779 2.2031 19.7397 1.90854 19.6197 1.64346ZM11.9078 9.02627C11.6473 9.30245 11.5018 9.66753 11.501 10.0472V15.2494L8.50095 17.25V10.0472C8.50182 9.66617 8.35693 9.29923 8.09595 9.02159L1.75095 2.25002H18.251L11.9078 9.02627Z"
|
|
233
|
-
}),
|
|
236
|
+
}), N1 = C({
|
|
234
237
|
displayName: "DotsNine",
|
|
235
238
|
path: "M6.75 5.625C6.75 5.8475 6.68402 6.06501 6.5604 6.25002C6.43679 6.43502 6.26109 6.57922 6.05552 6.66437C5.84995 6.74951 5.62375 6.77179 5.40552 6.72838C5.1873 6.68498 4.98684 6.57783 4.82951 6.4205C4.67217 6.26316 4.56503 6.06271 4.52162 5.84448C4.47821 5.62625 4.50049 5.40005 4.58564 5.19448C4.67078 4.98891 4.81498 4.81321 4.99998 4.6896C5.18499 4.56598 5.4025 4.5 5.625 4.5C5.92337 4.5 6.20952 4.61853 6.4205 4.82951C6.63147 5.04048 6.75 5.32663 6.75 5.625ZM12 4.5C11.7775 4.5 11.56 4.56598 11.375 4.6896C11.19 4.81321 11.0458 4.98891 10.9606 5.19448C10.8755 5.40005 10.8532 5.62625 10.8966 5.84448C10.94 6.06271 11.0472 6.26316 11.2045 6.4205C11.3618 6.57783 11.5623 6.68498 11.7805 6.72838C11.9988 6.77179 12.225 6.74951 12.4305 6.66437C12.6361 6.57922 12.8118 6.43502 12.9354 6.25002C13.059 6.06501 13.125 5.8475 13.125 5.625C13.125 5.32663 13.0065 5.04048 12.7955 4.82951C12.5845 4.61853 12.2984 4.5 12 4.5ZM18.375 6.75C18.5975 6.75 18.815 6.68402 19 6.5604C19.185 6.43679 19.3292 6.26109 19.4144 6.05552C19.4995 5.84995 19.5218 5.62375 19.4784 5.40552C19.435 5.1873 19.3278 4.98684 19.1705 4.82951C19.0132 4.67217 18.8127 4.56503 18.5945 4.52162C18.3762 4.47821 18.15 4.50049 17.9445 4.58564C17.7389 4.67078 17.5632 4.81498 17.4396 4.99998C17.316 5.18499 17.25 5.4025 17.25 5.625C17.25 5.92337 17.3685 6.20952 17.5795 6.4205C17.7905 6.63147 18.0766 6.75 18.375 6.75ZM5.625 10.875C5.4025 10.875 5.18499 10.941 4.99998 11.0646C4.81498 11.1882 4.67078 11.3639 4.58564 11.5695C4.50049 11.775 4.47821 12.0012 4.52162 12.2195C4.56503 12.4377 4.67217 12.6382 4.82951 12.7955C4.98684 12.9528 5.1873 13.06 5.40552 13.1034C5.62375 13.1468 5.84995 13.1245 6.05552 13.0394C6.26109 12.9542 6.43679 12.81 6.5604 12.625C6.68402 12.44 6.75 12.2225 6.75 12C6.75 11.7016 6.63147 11.4155 6.4205 11.2045C6.20952 10.9935 5.92337 10.875 5.625 10.875ZM12 10.875C11.7775 10.875 11.56 10.941 11.375 11.0646C11.19 11.1882 11.0458 11.3639 10.9606 11.5695C10.8755 11.775 10.8532 12.0012 10.8966 12.2195C10.94 12.4377 11.0472 12.6382 11.2045 12.7955C11.3618 12.9528 11.5623 13.06 11.7805 13.1034C11.9988 13.1468 12.225 13.1245 12.4305 13.0394C12.6361 12.9542 12.8118 12.81 12.9354 12.625C13.059 12.44 13.125 12.2225 13.125 12C13.125 11.7016 13.0065 11.4155 12.7955 11.2045C12.5845 10.9935 12.2984 10.875 12 10.875ZM18.375 10.875C18.1525 10.875 17.935 10.941 17.75 11.0646C17.565 11.1882 17.4208 11.3639 17.3356 11.5695C17.2505 11.775 17.2282 12.0012 17.2716 12.2195C17.315 12.4377 17.4222 12.6382 17.5795 12.7955C17.7368 12.9528 17.9373 13.06 18.1555 13.1034C18.3738 13.1468 18.6 13.1245 18.8055 13.0394C19.0111 12.9542 19.1868 12.81 19.3104 12.625C19.434 12.44 19.5 12.2225 19.5 12C19.5 11.7016 19.3815 11.4155 19.1705 11.2045C18.9595 10.9935 18.6734 10.875 18.375 10.875ZM5.625 17.25C5.4025 17.25 5.18499 17.316 4.99998 17.4396C4.81498 17.5632 4.67078 17.7389 4.58564 17.9445C4.50049 18.15 4.47821 18.3762 4.52162 18.5945C4.56503 18.8127 4.67217 19.0132 4.82951 19.1705C4.98684 19.3278 5.1873 19.435 5.40552 19.4784C5.62375 19.5218 5.84995 19.4995 6.05552 19.4144C6.26109 19.3292 6.43679 19.185 6.5604 19C6.68402 18.815 6.75 18.5975 6.75 18.375C6.75 18.0766 6.63147 17.7905 6.4205 17.5795C6.20952 17.3685 5.92337 17.25 5.625 17.25ZM12 17.25C11.7775 17.25 11.56 17.316 11.375 17.4396C11.19 17.5632 11.0458 17.7389 10.9606 17.9445C10.8755 18.15 10.8532 18.3762 10.8966 18.5945C10.94 18.8127 11.0472 19.0132 11.2045 19.1705C11.3618 19.3278 11.5623 19.435 11.7805 19.4784C11.9988 19.5218 12.225 19.4995 12.4305 19.4144C12.6361 19.3292 12.8118 19.185 12.9354 19C13.059 18.815 13.125 18.5975 13.125 18.375C13.125 18.0766 13.0065 17.7905 12.7955 17.5795C12.5845 17.3685 12.2984 17.25 12 17.25ZM18.375 17.25C18.1525 17.25 17.935 17.316 17.75 17.4396C17.565 17.5632 17.4208 17.7389 17.3356 17.9445C17.2505 18.15 17.2282 18.3762 17.2716 18.5945C17.315 18.8127 17.4222 19.0132 17.5795 19.1705C17.7368 19.3278 17.9373 19.435 18.1555 19.4784C18.3738 19.5218 18.6 19.4995 18.8055 19.4144C19.0111 19.3292 19.1868 19.185 19.3104 19C19.434 18.815 19.5 18.5975 19.5 18.375C19.5 18.0766 19.3815 17.7905 19.1705 17.5795C18.9595 17.3685 18.6734 17.25 18.375 17.25Z"
|
|
236
|
-
}),
|
|
239
|
+
}), v1 = C({
|
|
237
240
|
displayName: "HeadCircuit",
|
|
238
241
|
path: "M18.0474 16.0753C18.9959 15.2786 19.7535 14.2794 20.2646 13.1511C20.7757 12.0228 21.0272 10.7943 21.0006 9.55594C20.9068 5.27063 17.4746 1.73719 13.1968 1.51219C12.0931 1.45212 10.9885 1.61446 9.94873 1.98958C8.90895 2.3647 7.95516 2.94495 7.14399 3.69586C6.33282 4.44677 5.68083 5.35304 5.22674 6.36084C4.77264 7.36864 4.5257 8.45741 4.50057 9.56251L2.39589 13.6106C2.38745 13.6275 2.37901 13.6444 2.37151 13.6613C2.22062 14.013 2.20987 14.409 2.34145 14.7684C2.47303 15.1278 2.737 15.4233 3.07932 15.5944L3.10276 15.6047L5.25057 16.5881V19.5C5.25057 19.8978 5.40861 20.2794 5.68991 20.5607C5.97122 20.842 6.35275 21 6.75057 21H11.2506C11.4495 21 11.6403 20.921 11.7809 20.7803C11.9216 20.6397 12.0006 20.4489 12.0006 20.25C12.0006 20.0511 11.9216 19.8603 11.7809 19.7197C11.6403 19.579 11.4495 19.5 11.2506 19.5H6.75057V16.1072C6.75068 15.9634 6.70947 15.8227 6.63185 15.7017C6.55423 15.5807 6.44347 15.4845 6.31276 15.4247L3.75057 14.25L5.91339 10.0931C5.96976 9.98749 5.99968 9.86975 6.00057 9.75001C6.00036 8.22032 6.51972 6.73593 7.47356 5.54005C8.42739 4.34418 9.75914 3.50775 11.2506 3.16782V4.62938C10.7502 4.8063 10.3284 5.15443 10.0599 5.61224C9.79129 6.07005 9.69322 6.60806 9.78298 7.13118C9.87273 7.6543 10.1445 8.12885 10.5503 8.47096C10.9561 8.81307 11.4698 9.0007 12.0006 9.0007C12.5313 9.0007 13.045 8.81307 13.4508 8.47096C13.8566 8.12885 14.1284 7.6543 14.2182 7.13118C14.3079 6.60806 14.2099 6.07005 13.9413 5.61224C13.6727 5.15443 13.251 4.8063 12.7506 4.62938V3.00001C12.8724 3.00001 12.9943 3.00001 13.1162 3.00938C14.4462 3.08557 15.7242 3.5522 16.7904 4.35093C17.8566 5.14966 18.6637 6.24502 19.1106 7.50001H17.2506C17.1405 7.49996 17.0319 7.52413 16.9322 7.57079C16.8326 7.61745 16.7444 7.68547 16.674 7.77001L14.2824 10.6406C13.7837 10.4548 13.2352 10.4513 12.7341 10.6308C12.233 10.8103 11.8116 11.1613 11.5443 11.6216C11.277 12.0819 11.1811 12.6219 11.2735 13.1461C11.366 13.6703 11.6408 14.1449 12.0495 14.486C12.4581 14.827 12.9742 15.0126 13.5065 15.0099C14.0387 15.0071 14.5529 14.8163 14.958 14.471C15.3631 14.1257 15.6331 13.6483 15.7201 13.1232C15.8072 12.5981 15.7057 12.0591 15.4337 11.6016L17.6021 9.00001H19.4574C19.4799 9.19501 19.4937 9.39188 19.4987 9.59063C19.5221 10.6649 19.2896 11.7292 18.8205 12.6959C18.3513 13.6625 17.659 14.5037 16.8006 15.15C16.6948 15.2293 16.6119 15.3351 16.5602 15.4568C16.5085 15.5785 16.4899 15.7116 16.5062 15.8428L17.2562 21.8428C17.279 22.0239 17.3671 22.1905 17.504 22.3113C17.6408 22.4322 17.8171 22.4989 17.9996 22.4991C18.031 22.4991 18.0623 22.4972 18.0934 22.4934C18.1911 22.4813 18.2856 22.45 18.3712 22.4013C18.4569 22.3526 18.5321 22.2876 18.5926 22.2098C18.6531 22.1321 18.6977 22.0432 18.7238 21.9482C18.75 21.8532 18.7572 21.754 18.7449 21.6563L18.0474 16.0753ZM12.0006 7.50001C11.8522 7.50001 11.7072 7.45602 11.5839 7.37361C11.4606 7.2912 11.3644 7.17406 11.3077 7.03702C11.2509 6.89997 11.236 6.74917 11.265 6.60369C11.2939 6.4582 11.3654 6.32457 11.4702 6.21968C11.5751 6.11479 11.7088 6.04336 11.8543 6.01442C11.9997 5.98548 12.1505 6.00033 12.2876 6.0571C12.4246 6.11386 12.5418 6.20999 12.6242 6.33333C12.7066 6.45667 12.7506 6.60167 12.7506 6.75001C12.7506 6.94892 12.6716 7.13968 12.5309 7.28034C12.3903 7.42099 12.1995 7.50001 12.0006 7.50001ZM13.5006 13.5C13.3522 13.5 13.2072 13.456 13.0839 13.3736C12.9606 13.2912 12.8644 13.1741 12.8077 13.037C12.7509 12.9 12.736 12.7492 12.765 12.6037C12.7939 12.4582 12.8654 12.3246 12.9702 12.2197C13.0751 12.1148 13.2088 12.0434 13.3543 12.0144C13.4997 11.9855 13.6505 12.0003 13.7876 12.0571C13.9246 12.1139 14.0418 12.21 14.1242 12.3333C14.2066 12.4567 14.2506 12.6017 14.2506 12.75C14.2506 12.9489 14.1716 13.1397 14.0309 13.2803C13.8903 13.421 13.6995 13.5 13.5006 13.5Z"
|
|
239
|
-
}),
|
|
242
|
+
}), I1 = C({
|
|
240
243
|
viewBox: "0 0 27 24",
|
|
241
244
|
displayName: "Server",
|
|
242
245
|
path: "M9.22609 5.36011e-07H16.7739C17.4861 -1.36896e-05 18.0806 -2.54512e-05 18.5662 0.0396533C19.0727 0.081037 19.5483 0.170519 19.998 0.399644C20.6879 0.75118 21.2488 1.31211 21.6004 2.00204C21.8295 2.45172 21.919 2.92726 21.9603 3.43377C22 3.91941 22 4.51387 22 5.22607V12H23.6667C24.219 12 24.6667 12.4477 24.6667 13C24.6667 13.5523 24.219 14 23.6667 14H14V16.1C15.9591 16.4977 17.5023 18.0409 17.9 20H25C25.5523 20 26 20.4477 26 21C26 21.5523 25.5523 22 25 22H17.9C17.4367 24.2822 15.419 26 13 26C10.581 26 8.56329 24.2822 8.10002 22H1C0.447715 22 0 21.5523 0 21C0 20.4477 0.447715 20 1 20H8.10002C8.4977 18.0409 10.0409 16.4977 12 16.1V14H2.33333C1.78105 14 1.33333 13.5523 1.33333 13C1.33333 12.4477 1.78105 12 2.33333 12H4L4 5.2261C3.99999 4.51389 3.99997 3.91942 4.03965 3.43377C4.08104 2.92726 4.17052 2.45172 4.39964 2.00204C4.75118 1.31211 5.31211 0.751179 6.00203 0.399644C6.45172 0.170519 6.92726 0.081037 7.43377 0.0396533C7.91942 -2.54512e-05 8.51388 -1.36896e-05 9.22609 5.36011e-07ZM6 12H20V5.26667C20 4.50343 19.9992 3.99114 19.967 3.59664C19.9357 3.21381 19.8799 3.03076 19.8183 2.91002C19.6586 2.59641 19.4036 2.34145 19.09 2.18166C18.9692 2.12013 18.7862 2.06429 18.4034 2.03301C18.0089 2.00078 17.4966 2 16.7333 2H9.26667C8.50343 2 7.99114 2.00078 7.59664 2.03301C7.21381 2.06429 7.03076 2.12013 6.91002 2.18166C6.59641 2.34145 6.34144 2.59641 6.18166 2.91002C6.12013 3.03076 6.06429 3.21381 6.03301 3.59664C6.00078 3.99114 6 4.50343 6 5.26667V12ZM13 18C11.3431 18 10 19.3431 10 21C10 22.6569 11.3431 24 13 24C14.6569 24 16 22.6569 16 21C16 19.3431 14.6569 18 13 18Z"
|
|
243
|
-
}),
|
|
246
|
+
}), g1 = C({
|
|
244
247
|
viewBox: "0 0 54 54",
|
|
245
248
|
displayName: "PlugsX",
|
|
246
249
|
path: "M31.4691 29.0167C31.6967 29.1111 31.9035 29.2494 32.0776 29.4237C32.2519 29.5978 32.3902 29.8046 32.4846 30.0322C32.579 30.2599 32.6275 30.5038 32.6275 30.7503C32.6275 30.9967 32.579 31.2406 32.4846 31.4683C32.3902 31.6959 32.2519 31.9027 32.0776 32.0768L27.7768 36.3753L32.0776 40.6737C32.2518 40.8479 32.39 41.0547 32.4843 41.2823C32.5786 41.5099 32.6271 41.7539 32.6271 42.0003C32.6271 42.2466 32.5786 42.4906 32.4843 42.7182C32.39 42.9458 32.2518 43.1526 32.0776 43.3268C31.9034 43.501 31.6966 43.6392 31.469 43.7335C31.2414 43.8278 30.9974 43.8763 30.751 43.8763C30.5047 43.8763 30.2607 43.8278 30.0331 43.7335C29.8055 43.6392 29.5987 43.501 29.4245 43.3268L27.9385 41.8385L22.4753 47.3042C21.7788 48.0008 20.9519 48.5534 20.0419 48.9304C19.1318 49.3074 18.1564 49.5015 17.1714 49.5015C16.1863 49.5015 15.2109 49.3074 14.3008 48.9304C13.3908 48.5534 12.5639 48.0008 11.8674 47.3042L10.6089 46.0432L3.95261 52.7018C3.7784 52.876 3.57159 53.0142 3.34397 53.1085C3.11636 53.2028 2.87241 53.2513 2.62604 53.2513C2.12849 53.2513 1.65131 53.0536 1.29948 52.7018C1.12527 52.5276 0.987085 52.3208 0.892805 52.0932C0.798525 51.8656 0.75 51.6216 0.75 51.3753C0.75 51.1289 0.798525 50.8849 0.892805 50.6573C0.987085 50.4297 1.12527 50.2229 1.29948 50.0487L7.95807 43.3924L6.69714 42.1339C6.00051 41.4374 5.44792 40.6105 5.0709 39.7005C4.69388 38.7904 4.49983 37.815 4.49983 36.8299C4.49983 35.8449 4.69388 34.8695 5.0709 33.9594C5.44792 33.0494 6.00051 32.2225 6.69714 31.526L12.1628 26.0628L10.6745 24.5768C10.3227 24.225 10.125 23.7478 10.125 23.2503C10.125 22.7527 10.3227 22.2755 10.6745 21.9237C11.0263 21.5719 11.5035 21.3742 12.001 21.3742C12.4986 21.3742 12.9758 21.5719 13.3276 21.9237L17.626 26.2245L21.9245 21.9237C22.2763 21.5719 22.7535 21.3742 23.251 21.3742C23.7486 21.3742 24.2258 21.5719 24.5776 21.9237C24.9294 22.2755 25.1271 22.7527 25.1271 23.2503C25.1271 23.7478 24.9294 24.225 24.5776 24.5768L20.2768 28.8753L25.126 33.7245L29.4245 29.4237C29.5986 29.2494 29.8054 29.1111 30.033 29.0167C30.2607 28.9223 30.5046 28.8738 30.751 28.8738C30.9974 28.8738 31.2414 28.9223 31.4691 29.0167ZM17.1714 45.7555C18.1655 45.7555 19.1189 45.3608 19.8221 44.6581L25.2878 39.1878L14.8135 28.7135L9.35026 34.1792C8.64753 34.8824 8.25278 35.8358 8.25278 36.8299C8.25278 37.8241 8.64753 38.7775 9.35026 39.4807L14.5206 44.6581C15.2238 45.3608 16.1772 45.7555 17.1714 45.7555ZM52.0941 0.891705C52.3217 0.986063 52.5285 1.12436 52.7026 1.29869C52.8769 1.47283 53.0152 1.67962 53.1096 1.90724C53.204 2.13486 53.2525 2.37885 53.2525 2.62525C53.2525 2.87166 53.204 3.11565 53.1096 3.34327C53.0152 3.57089 52.8769 3.77768 52.7026 3.95182L46.044 10.6081L47.305 11.8667C48.0016 12.5631 48.5542 13.39 48.9312 14.3C49.3082 15.2101 49.5023 16.1855 49.5023 17.1706C49.5023 18.1556 49.3082 19.131 48.9312 20.0411C48.5542 20.9511 48.0016 21.778 47.305 22.4745L41.8393 27.9378L43.3276 29.4237C43.5018 29.5979 43.64 29.8047 43.7343 30.0323C43.8286 30.2599 43.8771 30.5039 43.8771 30.7503C43.8771 30.9966 43.8286 31.2406 43.7343 31.4682C43.64 31.6958 43.5018 31.9026 43.3276 32.0768C43.1534 32.251 42.9466 32.3892 42.719 32.4835C42.4914 32.5778 42.2474 32.6263 42.001 32.6263C41.7547 32.6263 41.5107 32.5778 41.2831 32.4835C41.0555 32.3892 40.8487 32.251 40.6745 32.0768L21.9245 13.3268C21.5727 12.975 21.375 12.4978 21.375 12.0003C21.375 11.5027 21.5727 11.0255 21.9245 10.6737C22.2763 10.3219 22.7535 10.1242 23.251 10.1242C23.7486 10.1242 24.2258 10.3219 24.5776 10.6737L26.0635 12.162L31.5268 6.69635C32.9349 5.29232 34.8423 4.50389 36.8307 4.50389C38.8192 4.50389 40.7265 5.29232 42.1346 6.69635L43.3932 7.95729L50.0495 1.29869C50.2236 1.12436 50.4304 0.986063 50.658 0.891705C50.8857 0.797347 51.1296 0.748779 51.376 0.748779C51.6224 0.748779 51.8664 0.797347 52.0941 0.891705ZM39.1885 25.287L44.6518 19.8143V19.8213C45.0019 19.4729 45.2797 19.0587 45.4692 18.6026C45.6588 18.1465 45.7564 17.6575 45.7564 17.1635C45.7564 16.6696 45.6588 16.1805 45.4692 15.7244C45.2797 15.2683 45.0019 14.8542 44.6518 14.5057L39.4815 9.34947C38.7783 8.64674 37.8249 8.25199 36.8307 8.25199C35.8366 8.25199 34.8831 8.64674 34.18 9.34947L28.7143 14.8128L39.1885 25.287ZM52.9088 52.9099C52.5571 53.2615 52.0802 53.4591 51.5829 53.4591C51.0857 53.4591 50.6087 53.2615 50.2571 52.9099L47.6055 50.2583L44.9538 52.9099C44.6022 53.2615 44.1253 53.4591 43.628 53.4591C43.1307 53.4591 42.6538 53.2615 42.3022 52.9099C41.9505 52.5583 41.753 52.0814 41.753 51.5841C41.753 51.0868 41.9505 50.6099 42.3022 50.2583L44.9538 47.6066L42.3022 44.955C41.9505 44.6033 41.753 44.1264 41.753 43.6291C41.753 43.1318 41.9505 42.6549 42.3022 42.3033C42.6538 41.9517 43.1307 41.7541 43.628 41.7541C44.1253 41.7541 44.6022 41.9517 44.9538 42.3033L47.6055 44.955L50.2571 42.3033C50.6087 41.9517 51.0857 41.7541 51.5829 41.7541C52.0802 41.7541 52.5571 41.9517 52.9088 42.3033C53.2604 42.6549 53.4579 43.1318 53.4579 43.6291C53.4579 44.1264 53.2604 44.6033 52.9088 44.955L50.2571 47.6066L52.9088 50.2583C53.2604 50.6099 53.4579 51.0868 53.4579 51.5841C53.4579 52.0814 53.2604 52.5583 52.9088 52.9099Z"
|
|
247
|
-
}),
|
|
250
|
+
}), y1 = C({
|
|
248
251
|
viewBox: "0 0 48 48",
|
|
249
252
|
displayName: "PorsgteSQL",
|
|
250
253
|
path: /* @__PURE__ */ B("g", { children: [
|
|
@@ -284,7 +287,7 @@ const L = C({
|
|
|
284
287
|
}
|
|
285
288
|
)
|
|
286
289
|
] })
|
|
287
|
-
}),
|
|
290
|
+
}), P1 = C({
|
|
288
291
|
viewBox: "0 0 48 48",
|
|
289
292
|
displayName: "MySQL",
|
|
290
293
|
path: /* @__PURE__ */ A("g", { children: /* @__PURE__ */ A(
|
|
@@ -304,7 +307,7 @@ const L = C({
|
|
|
304
307
|
fill: "black"
|
|
305
308
|
}
|
|
306
309
|
) })
|
|
307
|
-
}),
|
|
310
|
+
}), w1 = C({
|
|
308
311
|
viewBox: "0 0 48 48",
|
|
309
312
|
displayName: "MongoDB",
|
|
310
313
|
path: /* @__PURE__ */ B(Q, { children: [
|
|
@@ -323,7 +326,7 @@ const L = C({
|
|
|
323
326
|
}
|
|
324
327
|
) })
|
|
325
328
|
] })
|
|
326
|
-
}),
|
|
329
|
+
}), D1 = C({
|
|
327
330
|
displayName: "YandexDisk",
|
|
328
331
|
viewBox: "0 0 48 48",
|
|
329
332
|
path: /* @__PURE__ */ B(Q, { children: [
|
|
@@ -351,7 +354,7 @@ const L = C({
|
|
|
351
354
|
)
|
|
352
355
|
] })
|
|
353
356
|
] })
|
|
354
|
-
}),
|
|
357
|
+
}), z1 = C({
|
|
355
358
|
viewBox: "0 0 48 48",
|
|
356
359
|
displayName: "GoogleDrive",
|
|
357
360
|
path: /* @__PURE__ */ B("g", { opacity: "0.5", children: [
|
|
@@ -398,16 +401,16 @@ const L = C({
|
|
|
398
401
|
}
|
|
399
402
|
)
|
|
400
403
|
] })
|
|
401
|
-
}),
|
|
404
|
+
}), X1 = C({
|
|
402
405
|
displayName: "TriangleUp",
|
|
403
406
|
path: "M8,13l8-10H0L8,13z"
|
|
404
|
-
}),
|
|
407
|
+
}), u1 = C({
|
|
405
408
|
displayName: "TriangleDown",
|
|
406
409
|
path: "M8,0l8,10H0L8,0z"
|
|
407
|
-
}),
|
|
410
|
+
}), x1 = C({
|
|
408
411
|
displayName: "language",
|
|
409
412
|
path: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z"
|
|
410
|
-
}),
|
|
413
|
+
}), U1 = C({
|
|
411
414
|
displayName: "CVS",
|
|
412
415
|
path: /* @__PURE__ */ B("g", { children: [
|
|
413
416
|
/* @__PURE__ */ A(
|
|
@@ -451,42 +454,42 @@ const L = C({
|
|
|
451
454
|
}
|
|
452
455
|
)
|
|
453
456
|
] })
|
|
454
|
-
}),
|
|
457
|
+
}), b1 = C({
|
|
455
458
|
displayName: "Play",
|
|
456
459
|
path: "M21.7875 10.7334L8.28 2.47029C8.05227 2.33084 7.79144 2.25471 7.52445 2.24977C7.25746 2.24482 6.99399 2.31124 6.76125 2.44217C6.53073 2.57106 6.3387 2.75902 6.2049 2.98673C6.07111 3.21445 6.00039 3.47368 6 3.73779V20.2622C6.00174 20.6583 6.16072 21.0376 6.442 21.3166C6.72328 21.5956 7.10383 21.7515 7.5 21.75C7.77652 21.7499 8.04767 21.6736 8.28375 21.5297L21.7875 13.2665C22.0046 13.1342 22.184 12.9483 22.3084 12.7267C22.4329 12.5051 22.4983 12.2551 22.4983 12.0009C22.4983 11.7467 22.4329 11.4968 22.3084 11.2751C22.184 11.0535 22.0046 10.8676 21.7875 10.7353V10.7334ZM7.5 20.2444V3.74998L20.9841 12L7.5 20.2444Z"
|
|
457
|
-
}),
|
|
460
|
+
}), T1 = C({
|
|
458
461
|
displayName: "Undo",
|
|
459
462
|
path: "M19.75 14.7504C19.75 14.9493 19.671 15.1401 19.5303 15.2807C19.3897 15.4214 19.1989 15.5004 19 15.5004C18.8011 15.5004 18.6103 15.4214 18.4696 15.2807C18.329 15.1401 18.25 14.9493 18.25 14.7504C18.2475 12.5631 17.3775 10.4662 15.8309 8.91953C14.2842 7.37289 12.1873 6.5029 9.99998 6.50042H2.81029L6.03061 9.71979C6.17134 9.86052 6.2504 10.0514 6.2504 10.2504C6.2504 10.4494 6.17134 10.6403 6.03061 10.781C5.88987 10.9218 5.699 11.0008 5.49998 11.0008C5.30096 11.0008 5.11009 10.9218 4.96935 10.781L0.469355 6.28104C0.399622 6.21139 0.344303 6.12867 0.30656 6.03762C0.268816 5.94657 0.24939 5.84898 0.24939 5.75042C0.24939 5.65186 0.268816 5.55426 0.30656 5.46321C0.344303 5.37216 0.399622 5.28945 0.469355 5.21979L4.96935 0.719792C5.11009 0.579062 5.30096 0.5 5.49998 0.5C5.699 0.5 5.88987 0.579062 6.03061 0.719792C6.17134 0.860523 6.2504 1.05139 6.2504 1.25042C6.2504 1.44944 6.17134 1.64031 6.03061 1.78104L2.81029 5.00042H9.99998C12.585 5.00315 15.0634 6.03125 16.8913 7.85914C18.7191 9.68703 19.7472 12.1654 19.75 14.7504Z"
|
|
460
|
-
}),
|
|
463
|
+
}), O1 = C({
|
|
461
464
|
displayName: "Redo",
|
|
462
465
|
path: "M19.5306 6.28104L15.0306 10.781C14.8899 10.9218 14.699 11.0008 14.5 11.0008C14.301 11.0008 14.1101 10.9218 13.9694 10.781C13.8286 10.6403 13.7496 10.4494 13.7496 10.2504C13.7496 10.0514 13.8286 9.86052 13.9694 9.71979L17.1897 6.50042H10C7.81273 6.5029 5.71575 7.37289 4.16911 8.91953C2.62247 10.4662 1.75248 12.5631 1.75 14.7504C1.75 14.9493 1.67098 15.1401 1.53033 15.2807C1.38968 15.4214 1.19891 15.5004 1 15.5004C0.801088 15.5004 0.610322 15.4214 0.46967 15.2807C0.329018 15.1401 0.25 14.9493 0.25 14.7504C0.25273 12.1654 1.28084 9.68703 3.10872 7.85914C4.93661 6.03125 7.41498 5.00315 10 5.00042H17.1897L13.9694 1.78104C13.8997 1.71136 13.8444 1.62863 13.8067 1.53759C13.769 1.44654 13.7496 1.34896 13.7496 1.25042C13.7496 1.15187 13.769 1.05429 13.8067 0.963245C13.8444 0.8722 13.8997 0.789475 13.9694 0.719792C14.1101 0.579062 14.301 0.5 14.5 0.5C14.5985 0.5 14.6961 0.51941 14.7872 0.557122C14.8782 0.594834 14.9609 0.650109 15.0306 0.719792L19.5306 5.21979C19.6004 5.28945 19.6557 5.37216 19.6934 5.46321C19.7312 5.55426 19.7506 5.65186 19.7506 5.75042C19.7506 5.84898 19.7312 5.94657 19.6934 6.03762C19.6557 6.12867 19.6004 6.21139 19.5306 6.28104Z"
|
|
463
|
-
}),
|
|
466
|
+
}), Y1 = C({
|
|
464
467
|
displayName: "Checks",
|
|
465
468
|
path: "M11.6883 1.69564L4.68825 8.57064C4.57135 8.68563 4.41395 8.75007 4.24997 8.75007C4.086 8.75007 3.92859 8.68563 3.81169 8.57064L0.81169 5.62455C0.75316 5.56699 0.706539 5.49847 0.674489 5.4229C0.64244 5.34733 0.625589 5.26618 0.6249 5.18409C0.624211 5.10201 0.639696 5.02059 0.670472 4.94449C0.701248 4.86839 0.746712 4.7991 0.804268 4.74056C0.861824 4.68203 0.930345 4.63541 1.00592 4.60336C1.08149 4.57131 1.16264 4.55446 1.24472 4.55377C1.32681 4.55309 1.40823 4.56857 1.48433 4.59935C1.56043 4.63012 1.62972 4.67559 1.68825 4.73314L4.24997 7.24877L10.8125 0.803456C10.9308 0.687217 11.0904 0.622737 11.2563 0.624202C11.3384 0.624928 11.4196 0.641821 11.4952 0.673918C11.5708 0.706015 11.6393 0.752687 11.6968 0.811268C11.7544 0.86985 11.7999 0.939195 11.8306 1.01534C11.8614 1.09149 11.8768 1.17295 11.8761 1.25507C11.8754 1.3372 11.8585 1.41837 11.8264 1.49396C11.7943 1.56956 11.7476 1.63809 11.689 1.69564H11.6883ZM19.1961 0.811268C19.1385 0.752642 19.07 0.705932 18.9944 0.673807C18.9188 0.641682 18.8376 0.624773 18.7555 0.624048C18.6734 0.623322 18.5919 0.638794 18.5157 0.669578C18.4396 0.700362 18.3702 0.745856 18.3117 0.803456L11.7492 7.24877L10.2781 5.80345C10.1598 5.68732 10.0002 5.62294 9.8344 5.62448C9.66863 5.62602 9.51025 5.69335 9.39411 5.81166C9.27798 5.92997 9.2136 6.08957 9.21513 6.25535C9.21667 6.42113 9.284 6.57951 9.40232 6.69564L11.3109 8.57064C11.4278 8.68563 11.5852 8.75007 11.7492 8.75007C11.9132 8.75007 12.0706 8.68563 12.1875 8.57064L19.1875 1.69564C19.2461 1.63816 19.2929 1.56968 19.3251 1.49411C19.3573 1.41855 19.3743 1.33737 19.3751 1.25524C19.3759 1.1731 19.3605 1.09161 19.3298 1.01543C19.299 0.939254 19.2536 0.869877 19.1961 0.811268Z"
|
|
466
|
-
}),
|
|
469
|
+
}), j1 = C({
|
|
467
470
|
displayName: "UploadSimple",
|
|
468
471
|
path: "M12 7.50039V11.0004C12 11.2656 11.8946 11.52 11.7071 11.7075C11.5196 11.895 11.2652 12.0004 11 12.0004H1C0.734784 12.0004 0.48043 11.895 0.292893 11.7075C0.105357 11.52 0 11.2656 0 11.0004V7.50039C0 7.36778 0.0526785 7.24061 0.146447 7.14684C0.240215 7.05307 0.367392 7.00039 0.5 7.00039C0.632608 7.00039 0.759785 7.05307 0.853553 7.14684C0.947321 7.24061 1 7.36778 1 7.50039V11.0004H11V7.50039C11 7.36778 11.0527 7.24061 11.1464 7.14684C11.2402 7.05307 11.3674 7.00039 11.5 7.00039C11.6326 7.00039 11.7598 7.05307 11.8536 7.14684C11.9473 7.24061 12 7.36778 12 7.50039ZM3.85375 3.35414L5.5 1.70727V7.50039C5.5 7.633 5.55268 7.76018 5.64645 7.85395C5.74021 7.94772 5.86739 8.00039 6 8.00039C6.13261 8.00039 6.25979 7.94772 6.35355 7.85395C6.44732 7.76018 6.5 7.633 6.5 7.50039V1.70727L8.14625 3.35414C8.24007 3.44796 8.36732 3.50067 8.5 3.50067C8.63268 3.50067 8.75993 3.44796 8.85375 3.35414C8.94757 3.26032 9.00028 3.13308 9.00028 3.00039C9.00028 2.86771 8.94757 2.74046 8.85375 2.64664L6.35375 0.146643C6.30731 0.100155 6.25217 0.0632756 6.19147 0.0381135C6.13077 0.0129513 6.06571 0 6 0C5.93429 0 5.86923 0.0129513 5.80853 0.0381135C5.74783 0.0632756 5.69269 0.100155 5.64625 0.146643L3.14625 2.64664C3.05243 2.74046 2.99972 2.86771 2.99972 3.00039C2.99972 3.13308 3.05243 3.26032 3.14625 3.35414C3.24007 3.44796 3.36732 3.50067 3.5 3.50067C3.63268 3.50067 3.75993 3.44796 3.85375 3.35414Z"
|
|
469
|
-
}),
|
|
472
|
+
}), S1 = C({
|
|
470
473
|
displayName: "FolderSimpleX",
|
|
471
474
|
path: "M10.2503 2.75H18.25C18.6478 2.75 19.0294 2.90804 19.3107 3.18934C19.592 3.47064 19.75 3.85218 19.75 4.25V14.8334C19.7495 15.209 19.6001 15.569 19.3346 15.8346C19.069 16.1001 18.709 16.2495 18.3334 16.25H1.75C1.35218 16.25 0.970644 16.092 0.68934 15.8107C0.408035 15.5294 0.25 15.1478 0.25 14.75V2C0.25 1.60218 0.408035 1.22064 0.68934 0.93934C0.970644 0.658035 1.35218 0.5 1.75 0.5H6.74969C7.07411 0.500805 7.38967 0.605989 7.64969 0.8L10.2503 2.75ZM1.75 2V14.75H18.25V4.25H10C9.83772 4.25 9.67982 4.19737 9.55 4.1L6.74969 2H1.75ZM12.1213 11.6218C11.9807 11.7624 11.7899 11.8414 11.591 11.8414C11.3921 11.8414 11.2013 11.7624 11.0607 11.6218L10 10.5611L8.93934 11.6218C8.79869 11.7624 8.60792 11.8414 8.40901 11.8414C8.2101 11.8414 8.01933 11.7624 7.87868 11.6218C7.73803 11.4811 7.65901 11.2904 7.65901 11.0914C7.65901 10.8925 7.73803 10.7018 7.87868 10.5611L8.93934 9.50045L7.87868 8.43979C7.73803 8.29914 7.65901 8.10838 7.65901 7.90946C7.65901 7.71055 7.73803 7.51978 7.87868 7.37913C8.01933 7.23848 8.2101 7.15946 8.40901 7.15946C8.60792 7.15946 8.79869 7.23848 8.93934 7.37913L10 8.43979L11.0607 7.37913C11.2013 7.23848 11.3921 7.15946 11.591 7.15946C11.7899 7.15946 11.9807 7.23848 12.1213 7.37913C12.262 7.51978 12.341 7.71055 12.341 7.90946C12.341 8.10838 12.262 8.29914 12.1213 8.43979L11.0607 9.50045L12.1213 10.5611C12.262 10.7018 12.341 10.8925 12.341 11.0914C12.341 11.2904 12.262 11.4811 12.1213 11.6218Z"
|
|
472
|
-
}),
|
|
475
|
+
}), G1 = C({
|
|
473
476
|
displayName: "Info",
|
|
474
477
|
path: "M9 0.875C7.39303 0.875 5.82214 1.35152 4.486 2.24431C3.14985 3.1371 2.10844 4.40605 1.49348 5.8907C0.87852 7.37535 0.717618 9.00901 1.03112 10.5851C1.34463 12.1612 2.11846 13.6089 3.25476 14.7452C4.39106 15.8815 5.8388 16.6554 7.4149 16.9689C8.99099 17.2824 10.6247 17.1215 12.1093 16.5065C13.594 15.8916 14.8629 14.8502 15.7557 13.514C16.6485 12.1779 17.125 10.607 17.125 9C17.1227 6.84581 16.266 4.78051 14.7427 3.25727C13.2195 1.73403 11.1542 0.877275 9 0.875ZM9 15.875C7.64026 15.875 6.31105 15.4718 5.18046 14.7164C4.04987 13.9609 3.16868 12.8872 2.64833 11.6309C2.12798 10.3747 1.99183 8.99237 2.2571 7.65875C2.52238 6.32513 3.17716 5.10013 4.13864 4.13864C5.10013 3.17716 6.32514 2.52237 7.65876 2.2571C8.99238 1.99183 10.3747 2.12798 11.631 2.64833C12.8872 3.16868 13.9609 4.04987 14.7164 5.18045C15.4718 6.31104 15.875 7.64025 15.875 9C15.8729 10.8227 15.1479 12.5702 13.8591 13.8591C12.5702 15.1479 10.8227 15.8729 9 15.875ZM10.25 12.75C10.25 12.9158 10.1842 13.0747 10.0669 13.1919C9.94974 13.3092 9.79076 13.375 9.625 13.375C9.29348 13.375 8.97554 13.2433 8.74112 13.0089C8.5067 12.7745 8.375 12.4565 8.375 12.125V9C8.20924 9 8.05027 8.93415 7.93306 8.81694C7.81585 8.69973 7.75 8.54076 7.75 8.375C7.75 8.20924 7.81585 8.05027 7.93306 7.93306C8.05027 7.81585 8.20924 7.75 8.375 7.75C8.70652 7.75 9.02447 7.8817 9.25889 8.11612C9.49331 8.35054 9.625 8.66848 9.625 9V12.125C9.79076 12.125 9.94974 12.1908 10.0669 12.3081C10.1842 12.4253 10.25 12.5842 10.25 12.75ZM7.75 5.5625C7.75 5.37708 7.80499 5.19582 7.908 5.04165C8.01101 4.88748 8.15743 4.76732 8.32874 4.69636C8.50004 4.62541 8.68854 4.60684 8.8704 4.64301C9.05226 4.67919 9.2193 4.76848 9.35042 4.89959C9.48153 5.0307 9.57082 5.19775 9.60699 5.3796C9.64316 5.56146 9.6246 5.74996 9.55364 5.92127C9.48268 6.09257 9.36252 6.23899 9.20835 6.342C9.05418 6.44502 8.87292 6.5 8.6875 6.5C8.43886 6.5 8.20041 6.40123 8.02459 6.22541C7.84878 6.0496 7.75 5.81114 7.75 5.5625Z"
|
|
475
|
-
}),
|
|
478
|
+
}), R1 = C({
|
|
476
479
|
displayName: "Pen",
|
|
477
480
|
path: "M18.3113 4.87842L14.1216 0.689675C13.9823 0.55035 13.8169 0.439831 13.6349 0.364427C13.4529 0.289024 13.2578 0.250214 13.0608 0.250214C12.8638 0.250214 12.6687 0.289024 12.4867 0.364427C12.3047 0.439831 12.1393 0.55035 12 0.689675L0.439695 12.25C0.299801 12.3888 0.188889 12.554 0.113407 12.736C0.0379245 12.918 -0.000621974 13.1132 7.58901e-06 13.3103V17.5C7.58901e-06 17.8978 0.158043 18.2793 0.439347 18.5606C0.720652 18.842 1.10218 19 1.50001 19H5.68969C5.88675 19.0006 6.08196 18.9621 6.26399 18.8866C6.44602 18.8111 6.61122 18.7002 6.75001 18.5603L14.5941 10.7172L14.9203 12.0203L11.4703 15.4694C11.3296 15.61 11.2505 15.8007 11.2504 15.9997C11.2503 16.1986 11.3292 16.3894 11.4699 16.5301C11.6105 16.6709 11.8012 16.75 12.0001 16.7501C12.1991 16.7502 12.3899 16.6712 12.5306 16.5306L16.2806 12.7806C16.3724 12.6891 16.4388 12.5753 16.4734 12.4504C16.5081 12.3256 16.5098 12.1938 16.4784 12.0681L15.8316 9.47967L18.3113 6.99999C18.4506 6.86069 18.5611 6.69532 18.6365 6.51331C18.7119 6.3313 18.7507 6.13622 18.7507 5.93921C18.7507 5.74219 18.7119 5.54711 18.6365 5.3651C18.5611 5.18309 18.4506 5.01772 18.3113 4.87842ZM1.50001 14.8103L4.18969 17.5H1.50001V14.8103ZM6.00001 17.1897L1.81032 13L9.75001 5.0603L13.9397 9.24999L6.00001 17.1897ZM15 8.18967L10.8113 3.99999L13.0613 1.74999L17.25 5.93967L15 8.18967Z"
|
|
478
|
-
}),
|
|
481
|
+
}), k1 = C({
|
|
479
482
|
displayName: "Join",
|
|
480
483
|
path: "M13.0069 12.2569C13.5058 9.57021 14.7291 7.07086 16.5447 5.02867C18.3603 2.98649 20.6993 1.47907 23.3091 0.669167C25.9189 -0.140734 28.7003 -0.22234 31.3531 0.43316C34.0059 1.08866 36.4293 2.45636 38.3615 4.38859C40.2937 6.32081 41.6614 8.74415 42.3169 11.3969C42.9724 14.0497 42.8908 16.8312 42.0809 19.441C41.271 22.0508 39.7636 24.3898 37.7214 26.2054C35.6792 28.021 33.1799 29.2443 30.4932 29.7431C29.9944 32.4298 28.7711 34.9291 26.9555 36.9713C25.1398 39.0135 22.8009 40.5209 20.1911 41.3308C17.5813 42.1407 14.7998 42.2223 12.147 41.5668C9.49422 40.9113 7.07088 39.5436 5.13866 37.6114C3.20643 35.6792 1.83873 33.2558 1.18323 30.6031C0.527733 27.9503 0.609337 25.1688 1.41924 22.559C2.22914 19.9492 3.73656 17.6102 5.77875 15.7946C7.82093 13.979 10.3203 12.7557 13.0069 12.2569ZM26.8707 22.5L23.2501 26.1206C24.6789 26.7026 26.2073 27.0013 27.7501 27C27.7514 25.4572 27.4527 23.9288 26.8707 22.5ZM20.5426 24.5869L25.3369 19.7925C24.6583 18.8926 23.8575 18.0918 22.9576 17.4131L18.1632 22.2075C18.8418 23.1074 19.6427 23.9082 20.5426 24.5869ZM16.6294 19.5L20.2501 15.8794C18.8212 15.2974 17.2929 14.9987 15.7501 15C15.7488 16.5428 16.0474 18.0712 16.6294 19.5ZM39.7501 15C39.7558 12.0751 38.6932 9.24889 36.7618 7.0524C34.8304 4.85591 32.1633 3.44042 29.2618 3.07197C26.3602 2.70352 23.424 3.40747 21.0049 5.05153C18.5859 6.69558 16.8505 9.16654 16.1251 12C19.9711 12.1011 23.6316 13.6746 26.3512 16.396C29.0709 19.1174 30.6421 22.7789 30.7407 26.625C33.3176 25.9582 35.6002 24.455 37.2307 22.3511C38.8612 20.2473 39.7473 17.6617 39.7501 15ZM15.7501 39C18.4106 38.9978 20.9951 38.113 23.0989 36.4844C25.2026 34.8557 26.7065 32.5751 27.3751 30C23.5274 29.9013 19.8645 28.3288 17.1429 25.6071C14.4213 22.8855 12.8488 19.2227 12.7501 15.375C9.91661 16.1005 7.44566 17.8358 5.8016 20.2548C4.15755 22.6739 3.45359 25.6101 3.82204 28.5117C4.1905 31.4132 5.60598 34.0803 7.80247 36.0117C9.99897 37.9431 12.8252 39.0058 15.7501 39Z"
|
|
481
|
-
}),
|
|
484
|
+
}), W1 = C({
|
|
482
485
|
displayName: "ClickHouse",
|
|
483
486
|
path: "M0.0012207 0.5H2.66762V19.1592H0.0012207V0.5ZM5.33402 0.5H8.00042V21.8248H5.33402V0.5ZM10.6668 0.5H13.3332V21.8248H10.6668V0.5ZM15.9996 0.5H18.666V21.8248H15.9996V0.5ZM21.3324 9.16322H23.9988V13.1616H21.3324V9.16322Z"
|
|
484
|
-
}),
|
|
487
|
+
}), F1 = C({
|
|
485
488
|
displayName: "GitBranchX",
|
|
486
489
|
path: "M43.375 7.49988C43.3743 6.09729 42.9803 4.723 42.2378 3.53309C41.4952 2.34318 40.4339 1.38533 39.1743 0.768328C37.9147 0.151323 36.5073 -0.100112 35.112 0.0425782C33.7167 0.185268 32.3894 0.716365 31.2807 1.57555C30.1721 2.43474 29.3266 3.58759 28.8403 4.90317C28.354 6.21875 28.2463 7.64434 28.5295 9.01804C28.8127 10.3917 29.4754 11.6585 30.4424 12.6745C31.4094 13.6904 32.642 14.4149 34 14.7655V18.7499C34 19.2472 33.8025 19.7241 33.4508 20.0757C33.0992 20.4273 32.6223 20.6249 32.125 20.6249H11.5C10.8611 20.6247 10.2269 20.7341 9.62502 20.9483V14.7655C11.3925 14.3091 12.9329 13.2238 13.9574 11.713C14.9819 10.2022 15.4203 8.36954 15.1902 6.55863C14.9602 4.74773 14.0777 3.08288 12.708 1.87616C11.3383 0.669427 9.57547 0.00366557 7.75002 0.00366557C5.92457 0.00366557 4.16178 0.669427 2.79208 1.87616C1.42238 3.08288 0.53981 4.74773 0.309796 6.55863C0.0797809 8.36954 0.518117 10.2022 1.54264 11.713C2.56716 13.2238 4.10753 14.3091 5.87502 14.7655V30.2343C4.10753 30.6906 2.56716 31.7759 1.54264 33.2868C0.518117 34.7976 0.0797809 36.6302 0.309796 38.4411C0.53981 40.252 1.42238 41.9169 2.79208 43.1236C4.16178 44.3303 5.92457 44.9961 7.75002 44.9961C9.57547 44.9961 11.3383 44.3303 12.708 43.1236C14.0777 41.9169 14.9602 40.252 15.1902 38.4411C15.4203 36.6302 14.9819 34.7976 13.9574 33.2868C12.9329 31.7759 11.3925 30.6906 9.62502 30.2343V26.2499C9.62502 25.7526 9.82256 25.2757 10.1742 24.9241C10.5258 24.5724 11.0027 24.3749 11.5 24.3749H32.125C33.6169 24.3749 35.0476 23.7823 36.1025 22.7274C37.1574 21.6725 37.75 20.2417 37.75 18.7499V14.7655C39.3594 14.3475 40.7846 13.4075 41.8025 12.0927C42.8204 10.7779 43.3734 9.16264 43.375 7.49988ZM4.00002 7.49988C4.00002 6.7582 4.21995 6.03318 4.63201 5.4165C5.04406 4.79981 5.62973 4.31916 6.31496 4.03534C7.00018 3.75151 7.75418 3.67724 8.48161 3.82194C9.20903 3.96663 9.87722 4.32379 10.4017 4.84823C10.9261 5.37268 11.2833 6.04087 11.428 6.7683C11.5727 7.49572 11.4984 8.24972 11.2146 8.93495C10.9307 9.62017 10.4501 10.2058 9.83341 10.6179C9.21672 11.03 8.4917 11.2499 7.75002 11.2499C6.75546 11.2499 5.80163 10.8548 5.09837 10.1515C4.39511 9.44827 4.00002 8.49445 4.00002 7.49988ZM11.5 37.4999C11.5 38.2416 11.2801 38.9666 10.868 39.5833C10.456 40.2 9.8703 40.6806 9.18508 40.9644C8.49986 41.2483 7.74586 41.3225 7.01843 41.1778C6.291 41.0331 5.62282 40.676 5.09837 40.1515C4.57392 39.6271 4.21677 38.9589 4.07207 38.2315C3.92738 37.504 4.00164 36.75 4.28547 36.0648C4.5693 35.3796 5.04995 34.7939 5.66663 34.3819C6.28331 33.9698 7.00834 33.7499 7.75002 33.7499C8.74458 33.7499 9.69841 34.145 10.4017 34.8482C11.1049 35.5515 11.5 36.5053 11.5 37.4999ZM35.875 11.2499C35.1333 11.2499 34.4083 11.03 33.7916 10.6179C33.1749 10.2058 32.6943 9.62017 32.4105 8.93495C32.1266 8.24972 32.0524 7.49572 32.1971 6.7683C32.3418 6.04087 32.6989 5.37268 33.2234 4.84823C33.7478 4.32379 34.416 3.96663 35.1434 3.82194C35.8709 3.67724 36.6249 3.75151 37.3101 4.03534C37.9953 4.31916 38.581 4.79981 38.993 5.4165C39.4051 6.03318 39.625 6.7582 39.625 7.49988C39.625 8.49445 39.2299 9.44827 38.5267 10.1515C37.8234 10.8548 36.8696 11.2499 35.875 11.2499Z"
|
|
487
490
|
});
|
|
488
491
|
export {
|
|
489
|
-
|
|
492
|
+
l1 as IconArrowBendUpRight,
|
|
490
493
|
L as IconArrowClockwise,
|
|
491
494
|
e as IconArrowDown,
|
|
492
495
|
n as IconArrowLeft,
|
|
@@ -508,78 +511,79 @@ export {
|
|
|
508
511
|
N as IconCaretUp,
|
|
509
512
|
v as IconCaretUpDown,
|
|
510
513
|
I as IconChartPieSlice,
|
|
511
|
-
|
|
514
|
+
r1 as IconChatText,
|
|
512
515
|
g as IconCheck,
|
|
513
516
|
y as IconCheckCircle,
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
517
|
+
Y1 as IconChecks,
|
|
518
|
+
P as IconCircleNotch,
|
|
519
|
+
W1 as IconClickHouse,
|
|
520
|
+
m as IconCopy,
|
|
518
521
|
w as IconCornersOut,
|
|
519
|
-
|
|
522
|
+
U1 as IconCsv,
|
|
520
523
|
D as IconCube,
|
|
521
524
|
z as IconDatabase,
|
|
522
|
-
|
|
523
|
-
|
|
525
|
+
N1 as IconDotsNine,
|
|
526
|
+
M1 as IconDotsThreeVertical,
|
|
524
527
|
X as IconExport,
|
|
525
528
|
u as IconEye,
|
|
526
529
|
x as IconEyeSlash,
|
|
527
530
|
U as IconFile,
|
|
528
531
|
b as IconFiles,
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
532
|
+
c1 as IconFloppyDisk,
|
|
533
|
+
p1 as IconFolderSimple,
|
|
534
|
+
S1 as IconFolderSimpleX,
|
|
535
|
+
d1 as IconFunnel,
|
|
533
536
|
T as IconGauge,
|
|
534
537
|
O as IconGear,
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
538
|
+
F1 as IconGitBranchX,
|
|
539
|
+
z1 as IconGoogleDrive,
|
|
540
|
+
h1 as IconHand,
|
|
541
|
+
v1 as IconHeadCircuit,
|
|
542
|
+
Z1 as IconHouse,
|
|
540
543
|
Y as IconIcon,
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
+
G1 as IconInfo,
|
|
545
|
+
k1 as IconJoin,
|
|
546
|
+
x1 as IconLanguage,
|
|
544
547
|
j as IconLink,
|
|
545
548
|
S as IconList,
|
|
546
549
|
G as IconLock,
|
|
547
550
|
R as IconLockOpen,
|
|
548
551
|
m1 as IconMariaDB,
|
|
549
552
|
k as IconMinus,
|
|
550
|
-
|
|
553
|
+
w1 as IconMongoDB,
|
|
551
554
|
W as IconMoon,
|
|
552
|
-
|
|
553
|
-
|
|
555
|
+
P1 as IconMySQL,
|
|
556
|
+
V1 as IconNavigationArrow,
|
|
554
557
|
F as IconNotePencil,
|
|
555
558
|
K as IconPassword,
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
+
R1 as IconPen,
|
|
560
|
+
b1 as IconPlay,
|
|
561
|
+
g1 as IconPlugsX,
|
|
559
562
|
J as IconPlus,
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
_ as
|
|
563
|
-
$ as
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
A1 as
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
L1 as
|
|
581
|
-
e1 as
|
|
582
|
-
n1 as
|
|
583
|
-
t1 as
|
|
584
|
-
|
|
563
|
+
q as IconPlusCircle,
|
|
564
|
+
y1 as IconPorsgteSQL,
|
|
565
|
+
_ as IconPresentationChart,
|
|
566
|
+
$ as IconQuestion,
|
|
567
|
+
C1 as IconQuestionFullfilled,
|
|
568
|
+
O1 as IconRedo,
|
|
569
|
+
s1 as IconRoleX,
|
|
570
|
+
A1 as IconSearch,
|
|
571
|
+
B1 as IconSearchX,
|
|
572
|
+
f1 as IconSelection,
|
|
573
|
+
I1 as IconServer,
|
|
574
|
+
Q1 as IconSlidersHorizontal,
|
|
575
|
+
i1 as IconSticker,
|
|
576
|
+
E1 as IconSun,
|
|
577
|
+
o1 as IconThreeDot,
|
|
578
|
+
a1 as IconTrash,
|
|
579
|
+
u1 as IconTriangleDown,
|
|
580
|
+
X1 as IconTriangleUp,
|
|
581
|
+
T1 as IconUndo,
|
|
582
|
+
j1 as IconUploadSimple,
|
|
583
|
+
L1 as IconUser,
|
|
584
|
+
e1 as IconUserX,
|
|
585
|
+
n1 as IconWarningCircle,
|
|
586
|
+
t1 as IconWrench,
|
|
587
|
+
H1 as IconX,
|
|
588
|
+
D1 as IconYandexDisk
|
|
585
589
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconArrowBendUpRight as c, IconArrowClockwise as I, IconArrowDown as e, IconArrowLeft as r, IconArrowLineDown as i, IconArrowLineLeft as t, IconArrowLineRight as
|
|
1
|
+
import { IconArrowBendUpRight as c, IconArrowClockwise as I, IconArrowDown as e, IconArrowLeft as r, IconArrowLineDown as i, IconArrowLineLeft as t, IconArrowLineRight as l, IconArrowLineUp as a, IconArrowRight as s, IconArrowUp as C, IconArrowsOut as h, IconArticle as w, IconAt as p, IconBellSimple as u, IconBookOpenText as g, IconCalendarBlank as S, IconCaretDown as A, IconCaretLeft as D, IconCaretRight as L, IconCaretUp as d, IconCaretUpDown as k, IconChartPieSlice as P, IconChatText as U, IconCheck as B, IconCheckCircle as F, IconChecks as T, IconCircleNotch as X, IconClickHouse as f, IconCopy as y, IconCornersOut as R, IconCsv as m, IconCube as x, IconDatabase as H, IconDotsNine as M, IconDotsThreeVertical as v, IconExport as G, IconEye as N, IconEyeSlash as O, IconFile as Q, IconFiles as E, IconFloppyDisk as b, IconFolderSimple as W, IconFolderSimpleX as z, IconFunnel as J, IconGauge as V, IconGear as Y, IconGitBranchX as j, IconGoogleDrive as q, IconHand as K, IconHeadCircuit as Z, IconHouse as _, IconIcon as $, IconInfo as oo, IconJoin as no, IconLanguage as co, IconLink as Io, IconList as eo, IconLock as ro, IconLockOpen as io, IconMariaDB as to, IconMinus as lo, IconMongoDB as ao, IconMoon as so, IconMySQL as Co, IconNavigationArrow as ho, IconNotePencil as wo, IconPassword as po, IconPen as uo, IconPlay as go, IconPlugsX as So, IconPlus as Ao, IconPlusCircle as Do, IconPorsgteSQL as Lo, IconPresentationChart as ko, IconQuestion as Po, IconQuestionFullfilled as Uo, IconRedo as Bo, IconRoleX as Fo, IconSearch as To, IconSearchX as Xo, IconSelection as fo, IconServer as yo, IconSlidersHorizontal as Ro, IconSticker as mo, IconSun as xo, IconThreeDot as Ho, IconTrash as Mo, IconTriangleDown as vo, IconTriangleUp as Go, IconUndo as No, IconUploadSimple as Oo, IconUser as Qo, IconUserX as Eo, IconWarningCircle as bo, IconWrench as Wo, IconX as zo, IconYandexDisk as Jo } from "./Icons.js";
|
|
2
2
|
export {
|
|
3
3
|
c as IconArrowBendUpRight,
|
|
4
4
|
I as IconArrowClockwise,
|
|
@@ -6,8 +6,8 @@ export {
|
|
|
6
6
|
r as IconArrowLeft,
|
|
7
7
|
i as IconArrowLineDown,
|
|
8
8
|
t as IconArrowLineLeft,
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
l as IconArrowLineRight,
|
|
10
|
+
a as IconArrowLineUp,
|
|
11
11
|
s as IconArrowRight,
|
|
12
12
|
C as IconArrowUp,
|
|
13
13
|
h as IconArrowsOut,
|
|
@@ -21,8 +21,8 @@ export {
|
|
|
21
21
|
L as IconCaretRight,
|
|
22
22
|
d as IconCaretUp,
|
|
23
23
|
k as IconCaretUpDown,
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
P as IconChartPieSlice,
|
|
25
|
+
U as IconChatText,
|
|
26
26
|
B as IconCheck,
|
|
27
27
|
F as IconCheckCircle,
|
|
28
28
|
T as IconChecks,
|
|
@@ -60,8 +60,8 @@ export {
|
|
|
60
60
|
ro as IconLock,
|
|
61
61
|
io as IconLockOpen,
|
|
62
62
|
to as IconMariaDB,
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
lo as IconMinus,
|
|
64
|
+
ao as IconMongoDB,
|
|
65
65
|
so as IconMoon,
|
|
66
66
|
Co as IconMySQL,
|
|
67
67
|
ho as IconNavigationArrow,
|
|
@@ -71,29 +71,30 @@ export {
|
|
|
71
71
|
go as IconPlay,
|
|
72
72
|
So as IconPlugsX,
|
|
73
73
|
Ao as IconPlus,
|
|
74
|
-
Do as
|
|
75
|
-
Lo as
|
|
76
|
-
ko as
|
|
74
|
+
Do as IconPlusCircle,
|
|
75
|
+
Lo as IconPorsgteSQL,
|
|
76
|
+
ko as IconPresentationChart,
|
|
77
|
+
Po as IconQuestion,
|
|
77
78
|
Uo as IconQuestionFullfilled,
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
79
|
+
Bo as IconRedo,
|
|
80
|
+
Fo as IconRoleX,
|
|
81
|
+
To as IconSearch,
|
|
82
|
+
Xo as IconSearchX,
|
|
83
|
+
fo as IconSelection,
|
|
84
|
+
yo as IconServer,
|
|
85
|
+
Ro as IconSlidersHorizontal,
|
|
86
|
+
mo as IconSticker,
|
|
87
|
+
xo as IconSun,
|
|
88
|
+
Ho as IconThreeDot,
|
|
89
|
+
Mo as IconTrash,
|
|
90
|
+
vo as IconTriangleDown,
|
|
91
|
+
Go as IconTriangleUp,
|
|
92
|
+
No as IconUndo,
|
|
93
|
+
Oo as IconUploadSimple,
|
|
94
|
+
Qo as IconUser,
|
|
95
|
+
Eo as IconUserX,
|
|
96
|
+
bo as IconWarningCircle,
|
|
97
|
+
Wo as IconWrench,
|
|
98
|
+
zo as IconX,
|
|
99
|
+
Jo as IconYandexDisk
|
|
99
100
|
};
|
package/dist/main.d.ts
CHANGED
|
@@ -861,6 +861,13 @@ className?: string;
|
|
|
861
861
|
viewBox?: string;
|
|
862
862
|
}>;
|
|
863
863
|
|
|
864
|
+
export declare const IconPlusCircle: FC< {
|
|
865
|
+
size?: number;
|
|
866
|
+
color?: string;
|
|
867
|
+
className?: string;
|
|
868
|
+
viewBox?: string;
|
|
869
|
+
}>;
|
|
870
|
+
|
|
864
871
|
export declare const IconPorsgteSQL: FC< {
|
|
865
872
|
size?: number;
|
|
866
873
|
color?: string;
|
package/dist/main.js
CHANGED
|
@@ -27,14 +27,14 @@ import { TextInput as _ } from "./components/Ui/TextInput/TextInput.js";
|
|
|
27
27
|
import { TextareaInput as oo } from "./components/Ui/TextareaInput/TextareaInput.js";
|
|
28
28
|
import { Tooltip as no } from "./components/Ui/Tooltip/Tooltip.js";
|
|
29
29
|
import { Tabs as co } from "./components/Ui/Tabs/Tabs.js";
|
|
30
|
-
import { IconArrowBendUpRight as Io, IconArrowClockwise as ao, IconArrowDown as io, IconArrowLeft as po, IconArrowLineDown as lo, IconArrowLineLeft as mo, IconArrowLineRight as fo, IconArrowLineUp as xo, IconArrowRight as so, IconArrowUp as uo, IconArrowsOut as Co, IconArticle as ho, IconAt as wo, IconBellSimple as So, IconBookOpenText as To, IconCalendarBlank as go, IconCaretDown as ko, IconCaretLeft as Do, IconCaretRight as Ao, IconCaretUp as Lo, IconCaretUpDown as Po, IconChartPieSlice as yo, IconChatText as Bo, IconCheck as Fo, IconCheckCircle as Uo, IconChecks as Mo, IconCircleNotch as Ro, IconClickHouse as vo, IconCopy as Xo, IconCornersOut as bo, IconCsv as Ho, IconCube as No, IconDatabase as Eo, IconDotsNine as Go, IconDotsThreeVertical as Oo, IconExport as Qo, IconEye as Vo, IconEyeSlash as Wo, IconFile as zo, IconFiles as Jo, IconFloppyDisk as Yo, IconFolderSimple as jo, IconFolderSimpleX as qo, IconFunnel as Ko, IconGauge as Zo, IconGear as _o, IconGitBranchX as $o, IconGoogleDrive as or, IconHand as rr, IconHeadCircuit as nr, IconHouse as er, IconIcon as cr, IconInfo as tr, IconJoin as Ir, IconLanguage as ar, IconLink as ir, IconList as pr, IconLock as lr, IconLockOpen as mr, IconMariaDB as fr, IconMinus as xr, IconMongoDB as sr, IconMoon as ur, IconMySQL as dr, IconNavigationArrow as Cr, IconNotePencil as hr, IconPassword as wr, IconPen as Sr, IconPlay as Tr, IconPlugsX as gr, IconPlus as kr,
|
|
31
|
-
import { ToastProvider as
|
|
32
|
-
import { TriaflyContext as
|
|
33
|
-
import { useBreakpointValueTriafly as
|
|
34
|
-
import { useThemeLogic as
|
|
35
|
-
import { useModalState as
|
|
36
|
-
import { NumberInput as
|
|
37
|
-
import { DropdownSearchInput as
|
|
30
|
+
import { IconArrowBendUpRight as Io, IconArrowClockwise as ao, IconArrowDown as io, IconArrowLeft as po, IconArrowLineDown as lo, IconArrowLineLeft as mo, IconArrowLineRight as fo, IconArrowLineUp as xo, IconArrowRight as so, IconArrowUp as uo, IconArrowsOut as Co, IconArticle as ho, IconAt as wo, IconBellSimple as So, IconBookOpenText as To, IconCalendarBlank as go, IconCaretDown as ko, IconCaretLeft as Do, IconCaretRight as Ao, IconCaretUp as Lo, IconCaretUpDown as Po, IconChartPieSlice as yo, IconChatText as Bo, IconCheck as Fo, IconCheckCircle as Uo, IconChecks as Mo, IconCircleNotch as Ro, IconClickHouse as vo, IconCopy as Xo, IconCornersOut as bo, IconCsv as Ho, IconCube as No, IconDatabase as Eo, IconDotsNine as Go, IconDotsThreeVertical as Oo, IconExport as Qo, IconEye as Vo, IconEyeSlash as Wo, IconFile as zo, IconFiles as Jo, IconFloppyDisk as Yo, IconFolderSimple as jo, IconFolderSimpleX as qo, IconFunnel as Ko, IconGauge as Zo, IconGear as _o, IconGitBranchX as $o, IconGoogleDrive as or, IconHand as rr, IconHeadCircuit as nr, IconHouse as er, IconIcon as cr, IconInfo as tr, IconJoin as Ir, IconLanguage as ar, IconLink as ir, IconList as pr, IconLock as lr, IconLockOpen as mr, IconMariaDB as fr, IconMinus as xr, IconMongoDB as sr, IconMoon as ur, IconMySQL as dr, IconNavigationArrow as Cr, IconNotePencil as hr, IconPassword as wr, IconPen as Sr, IconPlay as Tr, IconPlugsX as gr, IconPlus as kr, IconPlusCircle as Dr, IconPorsgteSQL as Ar, IconPresentationChart as Lr, IconQuestion as Pr, IconQuestionFullfilled as yr, IconRedo as Br, IconRoleX as Fr, IconSearch as Ur, IconSearchX as Mr, IconSelection as Rr, IconServer as vr, IconSlidersHorizontal as Xr, IconSticker as br, IconSun as Hr, IconThreeDot as Nr, IconTrash as Er, IconTriangleDown as Gr, IconTriangleUp as Or, IconUndo as Qr, IconUploadSimple as Vr, IconUser as Wr, IconUserX as zr, IconWarningCircle as Jr, IconWrench as Yr, IconX as jr, IconYandexDisk as qr } from "./components/Ui/Icons/Icons.js";
|
|
31
|
+
import { ToastProvider as Zr, useToast as _r } from "./context/ToastContext/ToastContext.js";
|
|
32
|
+
import { TriaflyContext as on, TriaflyProvider as rn, useTriafly as nn } from "./context/TriaflyContext/TriaflyProvider.js";
|
|
33
|
+
import { useBreakpointValueTriafly as cn } from "./context/TriaflyContext/hooks/useBreakpointValue/useBreakpointValue.js";
|
|
34
|
+
import { useThemeLogic as In } from "./context/TriaflyContext/hooks/useTheme/useTheme.js";
|
|
35
|
+
import { useModalState as pn } from "./context/TriaflyContext/hooks/useModal/useModal.js";
|
|
36
|
+
import { NumberInput as mn } from "./components/Ui/NumberInput/NumberInput.js";
|
|
37
|
+
import { DropdownSearchInput as xn } from "./components/Ui/DropdownSearchInput/DropdownSearchInput.js";
|
|
38
38
|
export {
|
|
39
39
|
e as Accordeon,
|
|
40
40
|
t as Alert,
|
|
@@ -49,7 +49,7 @@ export {
|
|
|
49
49
|
u as DateRangePicker,
|
|
50
50
|
P as DropdownInput,
|
|
51
51
|
B as DropdownMenu,
|
|
52
|
-
|
|
52
|
+
xn as DropdownSearchInput,
|
|
53
53
|
U as FileUpload,
|
|
54
54
|
R as Form,
|
|
55
55
|
X as FormValidationError,
|
|
@@ -124,34 +124,35 @@ export {
|
|
|
124
124
|
Tr as IconPlay,
|
|
125
125
|
gr as IconPlugsX,
|
|
126
126
|
kr as IconPlus,
|
|
127
|
-
Dr as
|
|
128
|
-
Ar as
|
|
129
|
-
Lr as
|
|
130
|
-
Pr as
|
|
131
|
-
yr as
|
|
132
|
-
Br as
|
|
133
|
-
Fr as
|
|
134
|
-
Ur as
|
|
135
|
-
Mr as
|
|
136
|
-
Rr as
|
|
137
|
-
vr as
|
|
138
|
-
Xr as
|
|
139
|
-
br as
|
|
140
|
-
Hr as
|
|
141
|
-
Nr as
|
|
142
|
-
Er as
|
|
143
|
-
Gr as
|
|
144
|
-
Or as
|
|
145
|
-
Qr as
|
|
146
|
-
Vr as
|
|
147
|
-
Wr as
|
|
148
|
-
zr as
|
|
149
|
-
Jr as
|
|
150
|
-
Yr as
|
|
151
|
-
jr as
|
|
127
|
+
Dr as IconPlusCircle,
|
|
128
|
+
Ar as IconPorsgteSQL,
|
|
129
|
+
Lr as IconPresentationChart,
|
|
130
|
+
Pr as IconQuestion,
|
|
131
|
+
yr as IconQuestionFullfilled,
|
|
132
|
+
Br as IconRedo,
|
|
133
|
+
Fr as IconRoleX,
|
|
134
|
+
Ur as IconSearch,
|
|
135
|
+
Mr as IconSearchX,
|
|
136
|
+
Rr as IconSelection,
|
|
137
|
+
vr as IconServer,
|
|
138
|
+
Xr as IconSlidersHorizontal,
|
|
139
|
+
br as IconSticker,
|
|
140
|
+
Hr as IconSun,
|
|
141
|
+
Nr as IconThreeDot,
|
|
142
|
+
Er as IconTrash,
|
|
143
|
+
Gr as IconTriangleDown,
|
|
144
|
+
Or as IconTriangleUp,
|
|
145
|
+
Qr as IconUndo,
|
|
146
|
+
Vr as IconUploadSimple,
|
|
147
|
+
Wr as IconUser,
|
|
148
|
+
zr as IconUserX,
|
|
149
|
+
Jr as IconWarningCircle,
|
|
150
|
+
Yr as IconWrench,
|
|
151
|
+
jr as IconX,
|
|
152
|
+
qr as IconYandexDisk,
|
|
152
153
|
N as Loader,
|
|
153
154
|
p as ModalWindow,
|
|
154
|
-
|
|
155
|
+
mn as NumberInput,
|
|
155
156
|
G as Pagination,
|
|
156
157
|
Q as Radio,
|
|
157
158
|
W as SearchInput,
|
|
@@ -161,14 +162,14 @@ export {
|
|
|
161
162
|
co as Tabs,
|
|
162
163
|
_ as TextInput,
|
|
163
164
|
oo as TextareaInput,
|
|
164
|
-
|
|
165
|
+
Zr as ToastProvider,
|
|
165
166
|
no as Tooltip,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
on as TriaflyContext,
|
|
168
|
+
rn as TriaflyProvider,
|
|
169
|
+
cn as useBreakpointValueTriafly,
|
|
169
170
|
b as useForm,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
171
|
+
pn as useModalState,
|
|
172
|
+
In as useThemeLogic,
|
|
173
|
+
_r as useToast,
|
|
174
|
+
nn as useTriafly
|
|
174
175
|
};
|