@webstudio-is/icons 0.22.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__generated__/chevron-big-down.js +23 -0
- package/lib/__generated__/chevron-big-left.js +23 -0
- package/lib/__generated__/chevron-big-right.js +23 -0
- package/lib/__generated__/chevron-big-up.js +23 -0
- package/lib/__generated__/chevron-filled-down.js +23 -0
- package/lib/__generated__/chevron-filled-left.js +23 -0
- package/lib/__generated__/chevron-filled-right.js +23 -0
- package/lib/__generated__/chevron-filled-up.js +23 -0
- package/lib/__generated__/dot.js +23 -0
- package/lib/__generated__/index.js +11 -0
- package/lib/__generated__/info.js +29 -0
- package/lib/__generated__/webstudio.js +548 -0
- package/lib/check-mark.js +26 -0
- package/lib/cjs/__generated__/chevron-big-down.cjs +43 -0
- package/lib/cjs/__generated__/chevron-big-left.cjs +43 -0
- package/lib/cjs/__generated__/chevron-big-right.cjs +43 -0
- package/lib/cjs/__generated__/chevron-big-up.cjs +43 -0
- package/lib/cjs/__generated__/chevron-filled-down.cjs +43 -0
- package/lib/cjs/__generated__/chevron-filled-left.cjs +43 -0
- package/lib/cjs/__generated__/chevron-filled-right.cjs +43 -0
- package/lib/cjs/__generated__/chevron-filled-up.cjs +43 -0
- package/lib/cjs/__generated__/dot.cjs +43 -0
- package/lib/cjs/__generated__/index.cjs +11 -0
- package/lib/cjs/__generated__/info.cjs +49 -0
- package/lib/cjs/__generated__/webstudio.cjs +568 -0
- package/lib/cjs/check-mark.cjs +46 -0
- package/lib/cjs/index.cjs +1 -0
- package/lib/cjs/legacy.cjs +0 -2
- package/lib/index.js +1 -0
- package/lib/legacy.js +1 -5
- package/package.json +2 -2
- package/src/__generated__/chevron-big-down.tsx +15 -0
- package/src/__generated__/chevron-big-left.tsx +15 -0
- package/src/__generated__/chevron-big-right.tsx +15 -0
- package/src/__generated__/chevron-big-up.tsx +15 -0
- package/src/__generated__/chevron-filled-down.tsx +15 -0
- package/src/__generated__/chevron-filled-left.tsx +15 -0
- package/src/__generated__/chevron-filled-right.tsx +15 -0
- package/src/__generated__/chevron-filled-up.tsx +15 -0
- package/src/__generated__/dot.tsx +15 -0
- package/src/__generated__/index.ts +11 -0
- package/src/__generated__/info.tsx +15 -0
- package/src/__generated__/webstudio.tsx +15 -0
- package/src/check-mark.tsx +28 -0
- package/src/index.ts +1 -0
- package/src/legacy.ts +0 -2
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const WebstudioIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 280 210",
|
|
8
|
+
width: "16",
|
|
9
|
+
height: "16",
|
|
10
|
+
fill: color,
|
|
11
|
+
...props,
|
|
12
|
+
ref: forwardedRef,
|
|
13
|
+
children: [
|
|
14
|
+
/* @__PURE__ */ jsx("mask", {
|
|
15
|
+
id: "a",
|
|
16
|
+
width: "280",
|
|
17
|
+
height: "210",
|
|
18
|
+
x: "0",
|
|
19
|
+
y: "0",
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: { "maskType": "alpha" },
|
|
22
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
23
|
+
fill: "#000",
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M73.71 98.769 47.071 16.686C42.971 3.983 29.375-2.918 16.678 1.183 3.981 5.283-2.917 18.987 1.182 31.59L53.57 193.328c.176.546.43 1.041.753 1.487 3.324 8.339 11.18 14.469 20.742 15.117 13.297.9 24.794-9.102 25.694-22.406 0 0 2.399-36.008 14.997-64.815 2.799-6.401 6.098-12.503 10.297-17.304 3.689-4.389 8.074-7.882 14.047-7.902 5.873.02 10.258 3.513 14.047 7.902 4.099 4.901 7.498 10.903 10.297 17.304 12.698 28.807 15.097 64.815 15.097 64.815.9 13.304 12.397 23.406 25.694 22.406 10.761-.729 19.362-8.467 21.774-18.39L278.818 31.59c4.099-12.703-2.799-26.307-15.496-30.407-12.598-4.101-26.294 2.8-30.393 15.503L206.442 98.46c-13.815-28.497-36.054-49.266-66.292-49.266-30.347 0-52.637 20.92-66.44 49.575Zm66.39-1.264h-.05.1-.05Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
})
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ jsxs("g", {
|
|
30
|
+
mask: "url(#a)",
|
|
31
|
+
children: [
|
|
32
|
+
/* @__PURE__ */ jsx("path", {
|
|
33
|
+
fill: "url(#b)",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
d: "M156.5 220.034 231.1-10.02H290v39.509l-61.8 190.545h-71.7Z",
|
|
36
|
+
clipRule: "evenodd"
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("path", {
|
|
39
|
+
fill: "url(#c)",
|
|
40
|
+
fillRule: "evenodd",
|
|
41
|
+
d: "M156.5 220.034 231.1-10.02H290v39.509l-61.8 190.545h-71.7Z",
|
|
42
|
+
clipRule: "evenodd"
|
|
43
|
+
}),
|
|
44
|
+
/* @__PURE__ */ jsx("path", {
|
|
45
|
+
fill: "url(#d)",
|
|
46
|
+
fillOpacity: ".8",
|
|
47
|
+
fillRule: "evenodd",
|
|
48
|
+
d: "M156.5 220.034 231.1-10.02H290v39.509l-61.8 190.545h-71.7Z",
|
|
49
|
+
clipRule: "evenodd"
|
|
50
|
+
}),
|
|
51
|
+
/* @__PURE__ */ jsx("path", {
|
|
52
|
+
fill: "url(#e)",
|
|
53
|
+
fillRule: "evenodd",
|
|
54
|
+
d: "M156.5 220.034 231.1-10.02H290v39.509l-61.8 190.545h-71.7Z",
|
|
55
|
+
clipRule: "evenodd"
|
|
56
|
+
}),
|
|
57
|
+
/* @__PURE__ */ jsxs("g", {
|
|
58
|
+
fillRule: "evenodd",
|
|
59
|
+
clipRule: "evenodd",
|
|
60
|
+
style: { "mixBlendMode": "multiply" },
|
|
61
|
+
children: [
|
|
62
|
+
/* @__PURE__ */ jsx("path", {
|
|
63
|
+
fill: "url(#f)",
|
|
64
|
+
d: "M156.5 220.034 231.1-10.02 290 29.489l-61.8 190.545h-71.7Z"
|
|
65
|
+
}),
|
|
66
|
+
/* @__PURE__ */ jsx("path", {
|
|
67
|
+
fill: "url(#g)",
|
|
68
|
+
d: "M156.5 220.034 231.1-10.02 290 29.489l-61.8 190.545h-71.7Z"
|
|
69
|
+
})
|
|
70
|
+
]
|
|
71
|
+
}),
|
|
72
|
+
/* @__PURE__ */ jsx("path", {
|
|
73
|
+
fill: "#E63CFE",
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
d: "M226.5 219.934h-51.4c-3.6-31.208-15-112.527-35-112.527-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 25.2 0 47.1 12.403 63.7 35.308l2.645 24.061s1.555 3.346 2.155 4.646c15.9 36.009 19 81.019 19 81.019.2 3.201-.2 6.302-1.1 9.102v26.707Z",
|
|
76
|
+
clipRule: "evenodd"
|
|
77
|
+
}),
|
|
78
|
+
/* @__PURE__ */ jsx("path", {
|
|
79
|
+
fill: "url(#h)",
|
|
80
|
+
fillRule: "evenodd",
|
|
81
|
+
d: "M226.5 219.934h-51.4c-3.6-31.208-15-112.527-35-112.527-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 25.2 0 47.1 12.403 63.7 35.308l2.645 24.061s1.555 3.346 2.155 4.646c15.9 36.009 19 81.019 19 81.019.2 3.201-.2 6.302-1.1 9.102v26.707Z",
|
|
82
|
+
clipRule: "evenodd"
|
|
83
|
+
}),
|
|
84
|
+
/* @__PURE__ */ jsx("path", {
|
|
85
|
+
fill: "url(#i)",
|
|
86
|
+
fillRule: "evenodd",
|
|
87
|
+
d: "M226.5 219.934h-51.4c-3.6-31.208-15-112.527-35-112.527-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 25.2 0 47.1 12.403 63.7 35.308l2.645 24.061s1.555 3.346 2.155 4.646c15.9 36.009 19 81.019 19 81.019.2 3.201-.2 6.302-1.1 9.102v26.707Z",
|
|
88
|
+
clipRule: "evenodd"
|
|
89
|
+
}),
|
|
90
|
+
/* @__PURE__ */ jsx("path", {
|
|
91
|
+
fill: "url(#j)",
|
|
92
|
+
fillRule: "evenodd",
|
|
93
|
+
d: "M226.5 219.934h-51.4c-3.6-31.208-15-112.527-35-112.527-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 25.2 0 47.1 12.403 63.7 35.308l2.645 24.061s1.555 3.346 2.155 4.646c15.9 36.009 19 81.019 19 81.019.2 3.201-.2 6.302-1.1 9.102v26.707Z",
|
|
94
|
+
clipRule: "evenodd"
|
|
95
|
+
}),
|
|
96
|
+
/* @__PURE__ */ jsx("path", {
|
|
97
|
+
fill: "url(#k)",
|
|
98
|
+
fillRule: "evenodd",
|
|
99
|
+
d: "M226.5 219.934h-51.4c-3.6-31.208-15-112.527-35-112.527-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 25.2 0 47.1 12.403 63.7 35.308l2.645 24.061s1.555 3.346 2.155 4.646c15.9 36.009 19 81.019 19 81.019.2 3.201-.2 6.302-1.1 9.102v26.707Z",
|
|
100
|
+
clipRule: "evenodd"
|
|
101
|
+
}),
|
|
102
|
+
/* @__PURE__ */ jsxs("g", {
|
|
103
|
+
fillRule: "evenodd",
|
|
104
|
+
clipRule: "evenodd",
|
|
105
|
+
style: { "mixBlendMode": "multiply" },
|
|
106
|
+
children: [
|
|
107
|
+
/* @__PURE__ */ jsx("path", {
|
|
108
|
+
fill: "url(#l)",
|
|
109
|
+
d: "M140.1 107.407c-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 111.75 0 95.397 68.316 0 68.316Z"
|
|
110
|
+
}),
|
|
111
|
+
/* @__PURE__ */ jsx("path", {
|
|
112
|
+
fill: "url(#m)",
|
|
113
|
+
d: "M140.1 107.407c-21.7 0-31.8 90.121-34 112.527H32.4c3.2-38.909 20.8-180.843 107.7-180.843 111.75 0 95.397 68.316 0 68.316Z"
|
|
114
|
+
})
|
|
115
|
+
]
|
|
116
|
+
}),
|
|
117
|
+
/* @__PURE__ */ jsx("path", {
|
|
118
|
+
fill: "url(#n)",
|
|
119
|
+
fillRule: "evenodd",
|
|
120
|
+
d: "M-9.9 29.489v-39.51H49L76.4 74.5l-2.693 24.27L99.5 178.424c1 3.001 1.3 6.201 1.1 9.202 0 0-1.9 28.207-13.4 32.508H51.8L-9.9 29.489Z",
|
|
121
|
+
clipRule: "evenodd"
|
|
122
|
+
}),
|
|
123
|
+
/* @__PURE__ */ jsx("path", {
|
|
124
|
+
fill: "url(#o)",
|
|
125
|
+
fillRule: "evenodd",
|
|
126
|
+
d: "M-9.9 29.489v-39.51H49L76.4 74.5l-2.693 24.27L99.5 178.424c1 3.001 1.3 6.201 1.1 9.202 0 0-1.9 28.207-13.4 32.508H51.8L-9.9 29.489Z",
|
|
127
|
+
clipRule: "evenodd"
|
|
128
|
+
}),
|
|
129
|
+
/* @__PURE__ */ jsx("path", {
|
|
130
|
+
fill: "url(#p)",
|
|
131
|
+
fillRule: "evenodd",
|
|
132
|
+
d: "M-9.9 29.489v-39.51H49L76.4 74.5l-2.693 24.27L99.5 178.424c1 3.001 1.3 6.201 1.1 9.202 0 0-1.9 28.207-13.4 32.508H51.8L-9.9 29.489Z",
|
|
133
|
+
clipRule: "evenodd"
|
|
134
|
+
}),
|
|
135
|
+
/* @__PURE__ */ jsx("path", {
|
|
136
|
+
fill: "url(#q)",
|
|
137
|
+
fillRule: "evenodd",
|
|
138
|
+
d: "M-9.9 29.489v-39.51H49L76.4 74.5l-2.693 24.27L99.5 178.424c1 3.001 1.3 6.201 1.1 9.202 0 0-1.9 28.207-13.4 32.508H51.8L-9.9 29.489Z",
|
|
139
|
+
clipRule: "evenodd"
|
|
140
|
+
}),
|
|
141
|
+
/* @__PURE__ */ jsx("path", {
|
|
142
|
+
fill: "url(#r)",
|
|
143
|
+
fillRule: "evenodd",
|
|
144
|
+
d: "M-9.9 29.489v-39.51H49L76.4 74.5l-2.693 24.27L99.5 178.424c1 3.001 1.3 6.201 1.1 9.202 0 0-1.9 28.207-13.4 32.508H51.8L-9.9 29.489Z",
|
|
145
|
+
clipRule: "evenodd"
|
|
146
|
+
}),
|
|
147
|
+
/* @__PURE__ */ jsx("path", {
|
|
148
|
+
fill: "url(#s)",
|
|
149
|
+
d: "M290-10.02H-10v230.054h300V-10.02Z"
|
|
150
|
+
}),
|
|
151
|
+
/* @__PURE__ */ jsx("path", {
|
|
152
|
+
fill: "url(#t)",
|
|
153
|
+
d: "M290-10.02H-10v230.054h300V-10.02Z"
|
|
154
|
+
}),
|
|
155
|
+
/* @__PURE__ */ jsx("path", {
|
|
156
|
+
fill: "url(#u)",
|
|
157
|
+
d: "M290-10.02H-10v230.054h300V-10.02Z"
|
|
158
|
+
})
|
|
159
|
+
]
|
|
160
|
+
}),
|
|
161
|
+
/* @__PURE__ */ jsxs("defs", {
|
|
162
|
+
children: [
|
|
163
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
164
|
+
id: "f",
|
|
165
|
+
cx: "0",
|
|
166
|
+
cy: "0",
|
|
167
|
+
r: "1",
|
|
168
|
+
gradientTransform: "rotate(83.438 43.842 167.73) scale(155.653 39.7647)",
|
|
169
|
+
gradientUnits: "userSpaceOnUse",
|
|
170
|
+
children: [
|
|
171
|
+
/* @__PURE__ */ jsx("stop", {
|
|
172
|
+
stopColor: "#6F15A9",
|
|
173
|
+
stopOpacity: ".9"
|
|
174
|
+
}),
|
|
175
|
+
/* @__PURE__ */ jsx("stop", {
|
|
176
|
+
offset: ".613",
|
|
177
|
+
stopColor: "#6F15A9",
|
|
178
|
+
stopOpacity: "0"
|
|
179
|
+
})
|
|
180
|
+
]
|
|
181
|
+
}),
|
|
182
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
183
|
+
id: "g",
|
|
184
|
+
cx: "0",
|
|
185
|
+
cy: "0",
|
|
186
|
+
r: "1",
|
|
187
|
+
gradientTransform: "matrix(24.69652 161.33978 -34.3153 5.2527 217.626 .959)",
|
|
188
|
+
gradientUnits: "userSpaceOnUse",
|
|
189
|
+
children: [
|
|
190
|
+
/* @__PURE__ */ jsx("stop", {
|
|
191
|
+
offset: ".377",
|
|
192
|
+
stopColor: "#fff"
|
|
193
|
+
}),
|
|
194
|
+
/* @__PURE__ */ jsx("stop", {
|
|
195
|
+
offset: "1",
|
|
196
|
+
stopColor: "#fff",
|
|
197
|
+
stopOpacity: "0"
|
|
198
|
+
})
|
|
199
|
+
]
|
|
200
|
+
}),
|
|
201
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
202
|
+
id: "h",
|
|
203
|
+
cx: "0",
|
|
204
|
+
cy: "0",
|
|
205
|
+
r: "1",
|
|
206
|
+
gradientTransform: "rotate(-82.825 148.387 -.173) scale(129.813 100.452)",
|
|
207
|
+
gradientUnits: "userSpaceOnUse",
|
|
208
|
+
children: [
|
|
209
|
+
/* @__PURE__ */ jsx("stop", {
|
|
210
|
+
stopColor: "#39FBBB",
|
|
211
|
+
stopOpacity: ".5"
|
|
212
|
+
}),
|
|
213
|
+
/* @__PURE__ */ jsx("stop", {
|
|
214
|
+
offset: ".701",
|
|
215
|
+
stopColor: "#39FBBB"
|
|
216
|
+
}),
|
|
217
|
+
/* @__PURE__ */ jsx("stop", {
|
|
218
|
+
offset: ".949",
|
|
219
|
+
stopColor: "#39FBBB",
|
|
220
|
+
stopOpacity: "0"
|
|
221
|
+
})
|
|
222
|
+
]
|
|
223
|
+
}),
|
|
224
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
225
|
+
id: "i",
|
|
226
|
+
cx: "0",
|
|
227
|
+
cy: "0",
|
|
228
|
+
r: "1",
|
|
229
|
+
gradientTransform: "matrix(-159.54108 -251.31895 60.92249 -38.67452 296.764 204.529)",
|
|
230
|
+
gradientUnits: "userSpaceOnUse",
|
|
231
|
+
children: [
|
|
232
|
+
/* @__PURE__ */ jsx("stop", {
|
|
233
|
+
stopColor: "#E63CFE"
|
|
234
|
+
}),
|
|
235
|
+
/* @__PURE__ */ jsx("stop", {
|
|
236
|
+
offset: "1",
|
|
237
|
+
stopColor: "#E63CFE",
|
|
238
|
+
stopOpacity: "0"
|
|
239
|
+
})
|
|
240
|
+
]
|
|
241
|
+
}),
|
|
242
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
243
|
+
id: "j",
|
|
244
|
+
cx: "0",
|
|
245
|
+
cy: "0",
|
|
246
|
+
r: "1",
|
|
247
|
+
gradientTransform: "matrix(0 -115.84 97.1865 0 136.481 174.605)",
|
|
248
|
+
gradientUnits: "userSpaceOnUse",
|
|
249
|
+
children: [
|
|
250
|
+
/* @__PURE__ */ jsx("stop", {
|
|
251
|
+
offset: ".64",
|
|
252
|
+
stopColor: "#4A4EFA"
|
|
253
|
+
}),
|
|
254
|
+
/* @__PURE__ */ jsx("stop", {
|
|
255
|
+
offset: "1",
|
|
256
|
+
stopColor: "#4A4EFA",
|
|
257
|
+
stopOpacity: "0"
|
|
258
|
+
})
|
|
259
|
+
]
|
|
260
|
+
}),
|
|
261
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
262
|
+
id: "k",
|
|
263
|
+
cx: "0",
|
|
264
|
+
cy: "0",
|
|
265
|
+
r: "1",
|
|
266
|
+
gradientTransform: "rotate(-71.666 204.704 51.35) scale(155.998 62.8576)",
|
|
267
|
+
gradientUnits: "userSpaceOnUse",
|
|
268
|
+
children: [
|
|
269
|
+
/* @__PURE__ */ jsx("stop", {
|
|
270
|
+
offset: ".632",
|
|
271
|
+
stopColor: "#E63CFE"
|
|
272
|
+
}),
|
|
273
|
+
/* @__PURE__ */ jsx("stop", {
|
|
274
|
+
offset: "1",
|
|
275
|
+
stopColor: "#E63CFE",
|
|
276
|
+
stopOpacity: "0"
|
|
277
|
+
})
|
|
278
|
+
]
|
|
279
|
+
}),
|
|
280
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
281
|
+
id: "l",
|
|
282
|
+
cx: "0",
|
|
283
|
+
cy: "0",
|
|
284
|
+
r: "1",
|
|
285
|
+
gradientTransform: "rotate(71.833 -38.114 102.588) scale(75.0284 46.6295)",
|
|
286
|
+
gradientUnits: "userSpaceOnUse",
|
|
287
|
+
children: [
|
|
288
|
+
/* @__PURE__ */ jsx("stop", {
|
|
289
|
+
stopColor: "#6F15A9"
|
|
290
|
+
}),
|
|
291
|
+
/* @__PURE__ */ jsx("stop", {
|
|
292
|
+
offset: "1",
|
|
293
|
+
stopColor: "#00127F",
|
|
294
|
+
stopOpacity: "0"
|
|
295
|
+
})
|
|
296
|
+
]
|
|
297
|
+
}),
|
|
298
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
299
|
+
id: "m",
|
|
300
|
+
cx: "0",
|
|
301
|
+
cy: "0",
|
|
302
|
+
r: "1",
|
|
303
|
+
gradientTransform: "rotate(175.292 74.822 60.88) scale(82.9292 111.991)",
|
|
304
|
+
gradientUnits: "userSpaceOnUse",
|
|
305
|
+
children: [
|
|
306
|
+
/* @__PURE__ */ jsx("stop", {
|
|
307
|
+
offset: ".758",
|
|
308
|
+
stopColor: "#fff"
|
|
309
|
+
}),
|
|
310
|
+
/* @__PURE__ */ jsx("stop", {
|
|
311
|
+
offset: "1",
|
|
312
|
+
stopColor: "#fff",
|
|
313
|
+
stopOpacity: "0"
|
|
314
|
+
})
|
|
315
|
+
]
|
|
316
|
+
}),
|
|
317
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
318
|
+
id: "s",
|
|
319
|
+
cx: "0",
|
|
320
|
+
cy: "0",
|
|
321
|
+
r: "1",
|
|
322
|
+
gradientTransform: "matrix(0 -229.783 165.804 0 96.901 219.762)",
|
|
323
|
+
gradientUnits: "userSpaceOnUse",
|
|
324
|
+
children: [
|
|
325
|
+
/* @__PURE__ */ jsx("stop", {
|
|
326
|
+
offset: ".262",
|
|
327
|
+
stopColor: "#FFAE3C"
|
|
328
|
+
}),
|
|
329
|
+
/* @__PURE__ */ jsx("stop", {
|
|
330
|
+
offset: ".527",
|
|
331
|
+
stopColor: "#FFAE3C",
|
|
332
|
+
stopOpacity: "0"
|
|
333
|
+
})
|
|
334
|
+
]
|
|
335
|
+
}),
|
|
336
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
337
|
+
id: "t",
|
|
338
|
+
cx: "0",
|
|
339
|
+
cy: "0",
|
|
340
|
+
r: "1",
|
|
341
|
+
gradientTransform: "matrix(0 -129.629 126.516 0 242.706 219.762)",
|
|
342
|
+
gradientUnits: "userSpaceOnUse",
|
|
343
|
+
children: [
|
|
344
|
+
/* @__PURE__ */ jsx("stop", {
|
|
345
|
+
offset: ".283",
|
|
346
|
+
stopColor: "#E63CFE"
|
|
347
|
+
}),
|
|
348
|
+
/* @__PURE__ */ jsx("stop", {
|
|
349
|
+
offset: ".857",
|
|
350
|
+
stopColor: "#E63CFE",
|
|
351
|
+
stopOpacity: "0"
|
|
352
|
+
})
|
|
353
|
+
]
|
|
354
|
+
}),
|
|
355
|
+
/* @__PURE__ */ jsxs("radialGradient", {
|
|
356
|
+
id: "u",
|
|
357
|
+
cx: "0",
|
|
358
|
+
cy: "0",
|
|
359
|
+
r: "1",
|
|
360
|
+
gradientTransform: "matrix(-24.1919 -176.1889 68.00682 -9.33778 164.141 219.762)",
|
|
361
|
+
gradientUnits: "userSpaceOnUse",
|
|
362
|
+
children: [
|
|
363
|
+
/* @__PURE__ */ jsx("stop", {
|
|
364
|
+
offset: ".251",
|
|
365
|
+
stopColor: "#FFAE3C"
|
|
366
|
+
}),
|
|
367
|
+
/* @__PURE__ */ jsx("stop", {
|
|
368
|
+
offset: ".656",
|
|
369
|
+
stopColor: "#FFAE3C",
|
|
370
|
+
stopOpacity: "0"
|
|
371
|
+
})
|
|
372
|
+
]
|
|
373
|
+
}),
|
|
374
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
375
|
+
id: "b",
|
|
376
|
+
x1: "328.489",
|
|
377
|
+
x2: "259.397",
|
|
378
|
+
y1: "-101.75",
|
|
379
|
+
y2: "227.415",
|
|
380
|
+
gradientUnits: "userSpaceOnUse",
|
|
381
|
+
children: [
|
|
382
|
+
/* @__PURE__ */ jsx("stop", {
|
|
383
|
+
stopColor: "#4A4EFA"
|
|
384
|
+
}),
|
|
385
|
+
/* @__PURE__ */ jsx("stop", {
|
|
386
|
+
offset: ".625",
|
|
387
|
+
stopColor: "#E63CFE"
|
|
388
|
+
})
|
|
389
|
+
]
|
|
390
|
+
}),
|
|
391
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
392
|
+
id: "c",
|
|
393
|
+
x1: "193.001",
|
|
394
|
+
x2: "247.46",
|
|
395
|
+
y1: "96.497",
|
|
396
|
+
y2: "115.178",
|
|
397
|
+
gradientUnits: "userSpaceOnUse",
|
|
398
|
+
children: [
|
|
399
|
+
/* @__PURE__ */ jsx("stop", {
|
|
400
|
+
offset: ".259",
|
|
401
|
+
stopColor: "#4A4EFA"
|
|
402
|
+
}),
|
|
403
|
+
/* @__PURE__ */ jsx("stop", {
|
|
404
|
+
offset: ".961",
|
|
405
|
+
stopColor: "#4A4EFA",
|
|
406
|
+
stopOpacity: "0"
|
|
407
|
+
})
|
|
408
|
+
]
|
|
409
|
+
}),
|
|
410
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
411
|
+
id: "d",
|
|
412
|
+
x1: "202.309",
|
|
413
|
+
x2: "243.057",
|
|
414
|
+
y1: "71.375",
|
|
415
|
+
y2: "86.077",
|
|
416
|
+
gradientUnits: "userSpaceOnUse",
|
|
417
|
+
children: [
|
|
418
|
+
/* @__PURE__ */ jsx("stop", {
|
|
419
|
+
offset: ".252",
|
|
420
|
+
stopColor: "#39FBBB"
|
|
421
|
+
}),
|
|
422
|
+
/* @__PURE__ */ jsx("stop", {
|
|
423
|
+
offset: "1",
|
|
424
|
+
stopColor: "#39FBBB",
|
|
425
|
+
stopOpacity: "0"
|
|
426
|
+
})
|
|
427
|
+
]
|
|
428
|
+
}),
|
|
429
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
430
|
+
id: "e",
|
|
431
|
+
x1: "295.535",
|
|
432
|
+
x2: "286.169",
|
|
433
|
+
y1: "-10.021",
|
|
434
|
+
y2: "31.423",
|
|
435
|
+
gradientUnits: "userSpaceOnUse",
|
|
436
|
+
children: [
|
|
437
|
+
/* @__PURE__ */ jsx("stop", {
|
|
438
|
+
stopColor: "#4A4EFA"
|
|
439
|
+
}),
|
|
440
|
+
/* @__PURE__ */ jsx("stop", {
|
|
441
|
+
offset: ".933",
|
|
442
|
+
stopColor: "#4A4EFA",
|
|
443
|
+
stopOpacity: "0"
|
|
444
|
+
})
|
|
445
|
+
]
|
|
446
|
+
}),
|
|
447
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
448
|
+
id: "n",
|
|
449
|
+
x1: "-18.948",
|
|
450
|
+
x2: "55.093",
|
|
451
|
+
y1: "1.039",
|
|
452
|
+
y2: "231.932",
|
|
453
|
+
gradientUnits: "userSpaceOnUse",
|
|
454
|
+
children: [
|
|
455
|
+
/* @__PURE__ */ jsx("stop", {
|
|
456
|
+
offset: ".17",
|
|
457
|
+
stopColor: "#E63CFE"
|
|
458
|
+
}),
|
|
459
|
+
/* @__PURE__ */ jsx("stop", {
|
|
460
|
+
offset: ".592",
|
|
461
|
+
stopColor: "#FFAE3C"
|
|
462
|
+
})
|
|
463
|
+
]
|
|
464
|
+
}),
|
|
465
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
466
|
+
id: "o",
|
|
467
|
+
x1: "63.506",
|
|
468
|
+
x2: "20.255",
|
|
469
|
+
y1: "74.425",
|
|
470
|
+
y2: "88.815",
|
|
471
|
+
gradientUnits: "userSpaceOnUse",
|
|
472
|
+
children: [
|
|
473
|
+
/* @__PURE__ */ jsx("stop", {
|
|
474
|
+
offset: ".321",
|
|
475
|
+
stopColor: "#4A4EFA"
|
|
476
|
+
}),
|
|
477
|
+
/* @__PURE__ */ jsx("stop", {
|
|
478
|
+
offset: "1",
|
|
479
|
+
stopColor: "#4A4EFA",
|
|
480
|
+
stopOpacity: "0"
|
|
481
|
+
})
|
|
482
|
+
]
|
|
483
|
+
}),
|
|
484
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
485
|
+
id: "p",
|
|
486
|
+
x1: "82.497",
|
|
487
|
+
x2: "64.141",
|
|
488
|
+
y1: "106.838",
|
|
489
|
+
y2: "112.322",
|
|
490
|
+
gradientUnits: "userSpaceOnUse",
|
|
491
|
+
children: [
|
|
492
|
+
/* @__PURE__ */ jsx("stop", {
|
|
493
|
+
stopColor: "#E63CFE"
|
|
494
|
+
}),
|
|
495
|
+
/* @__PURE__ */ jsx("stop", {
|
|
496
|
+
offset: "1",
|
|
497
|
+
stopColor: "#E63CFE",
|
|
498
|
+
stopOpacity: "0"
|
|
499
|
+
})
|
|
500
|
+
]
|
|
501
|
+
}),
|
|
502
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
503
|
+
id: "q",
|
|
504
|
+
x1: "52.445",
|
|
505
|
+
x2: "17.265",
|
|
506
|
+
y1: "223.209",
|
|
507
|
+
y2: "146.13",
|
|
508
|
+
gradientUnits: "userSpaceOnUse",
|
|
509
|
+
children: [
|
|
510
|
+
/* @__PURE__ */ jsx("stop", {
|
|
511
|
+
offset: ".372",
|
|
512
|
+
stopColor: "#FFAE3C"
|
|
513
|
+
}),
|
|
514
|
+
/* @__PURE__ */ jsx("stop", {
|
|
515
|
+
offset: "1",
|
|
516
|
+
stopColor: "#FFAE3C",
|
|
517
|
+
stopOpacity: "0"
|
|
518
|
+
})
|
|
519
|
+
]
|
|
520
|
+
}),
|
|
521
|
+
/* @__PURE__ */ jsxs("linearGradient", {
|
|
522
|
+
id: "r",
|
|
523
|
+
x1: "20.419",
|
|
524
|
+
x2: "34.66",
|
|
525
|
+
y1: "-10.021",
|
|
526
|
+
y2: "23.34",
|
|
527
|
+
gradientUnits: "userSpaceOnUse",
|
|
528
|
+
children: [
|
|
529
|
+
/* @__PURE__ */ jsx("stop", {
|
|
530
|
+
stopColor: "#E63CFE"
|
|
531
|
+
}),
|
|
532
|
+
/* @__PURE__ */ jsx("stop", {
|
|
533
|
+
offset: "1",
|
|
534
|
+
stopColor: "#E63CFE",
|
|
535
|
+
stopOpacity: "0"
|
|
536
|
+
})
|
|
537
|
+
]
|
|
538
|
+
})
|
|
539
|
+
]
|
|
540
|
+
})
|
|
541
|
+
]
|
|
542
|
+
});
|
|
543
|
+
}
|
|
544
|
+
);
|
|
545
|
+
WebstudioIcon.displayName = "WebstudioIcon";
|
|
546
|
+
export {
|
|
547
|
+
WebstudioIcon
|
|
548
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const CheckMarkIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
6
|
+
width: "16",
|
|
7
|
+
height: "16",
|
|
8
|
+
viewBox: "0 0 16 16",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
...props,
|
|
12
|
+
ref: forwardedRef,
|
|
13
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M4.75 8.25L6.75 10.25L11.25 5.75",
|
|
15
|
+
stroke: color,
|
|
16
|
+
strokeWidth: "2",
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round"
|
|
19
|
+
})
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
CheckMarkIcon.displayName = "CheckMarkIcon";
|
|
24
|
+
export {
|
|
25
|
+
CheckMarkIcon
|
|
26
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var chevron_big_down_exports = {};
|
|
20
|
+
__export(chevron_big_down_exports, {
|
|
21
|
+
ChevronBigDownIcon: () => ChevronBigDownIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(chevron_big_down_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const ChevronBigDownIcon = (0, import_react.forwardRef)(
|
|
27
|
+
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
28
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
viewBox: "0 0 16 16",
|
|
31
|
+
width: "16",
|
|
32
|
+
height: "16",
|
|
33
|
+
fill: color,
|
|
34
|
+
...props,
|
|
35
|
+
ref: forwardedRef,
|
|
36
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
|
|
37
|
+
fill: "#11181C",
|
|
38
|
+
d: "m8.46 10.947 4.553-5.463a.6.6 0 0 0-.46-.984H3.447a.6.6 0 0 0-.461.984l4.552 5.463a.6.6 0 0 0 .922 0Z"
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
);
|
|
43
|
+
ChevronBigDownIcon.displayName = "ChevronBigDownIcon";
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var chevron_big_left_exports = {};
|
|
20
|
+
__export(chevron_big_left_exports, {
|
|
21
|
+
ChevronBigLeftIcon: () => ChevronBigLeftIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(chevron_big_left_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const ChevronBigLeftIcon = (0, import_react.forwardRef)(
|
|
27
|
+
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
28
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
viewBox: "0 0 16 16",
|
|
31
|
+
width: "16",
|
|
32
|
+
height: "16",
|
|
33
|
+
fill: color,
|
|
34
|
+
...props,
|
|
35
|
+
ref: forwardedRef,
|
|
36
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
|
|
37
|
+
fill: "#11181C",
|
|
38
|
+
d: "m5.053 8.46 5.463 4.553a.6.6 0 0 0 .984-.46V3.447a.6.6 0 0 0-.984-.461L5.053 7.539a.6.6 0 0 0 0 .922Z"
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
);
|
|
43
|
+
ChevronBigLeftIcon.displayName = "ChevronBigLeftIcon";
|