@mirohq/design-system-icons 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +499 -204
- package/dist/main.js.map +1 -1
- package/dist/module.js +482 -201
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +34 -6
- package/package.json +1 -1
- package/react/{search.tsx → arrow-box-out.tsx} +9 -5
- package/react/{icon-placeholder.tsx → arrow-down-left.tsx} +9 -5
- package/react/arrow-down-right.tsx +26 -0
- package/react/arrow-down.tsx +26 -0
- package/react/arrow-left.tsx +8 -3
- package/react/arrow-right.tsx +7 -2
- package/react/arrow-up-left.tsx +26 -0
- package/react/arrow-up-right.tsx +26 -0
- package/react/{arrow-top-right.tsx → arrow-up.tsx} +9 -4
- package/react/bar-three.tsx +7 -2
- package/react/check-mark.tsx +7 -2
- package/react/chevron-down.tsx +7 -2
- package/react/chevron-left.tsx +7 -2
- package/react/chevron-right.tsx +7 -2
- package/react/chevron-up.tsx +7 -2
- package/react/cog.tsx +28 -0
- package/react/cross-circle.tsx +8 -4
- package/react/cross.tsx +7 -2
- package/react/envelope.tsx +8 -12
- package/react/exclamation-point-circle.tsx +9 -4
- package/react/globe.tsx +8 -4
- package/react/house.tsx +24 -0
- package/react/index.ts +18 -4
- package/react/information-mark-circle.tsx +9 -4
- package/react/link.tsx +26 -0
- package/react/lock-closed.tsx +9 -14
- package/react/lock-open.tsx +9 -14
- package/react/magnifying-glass.tsx +26 -0
- package/react/minus.tsx +7 -2
- package/react/placeholder.tsx +26 -0
- package/react/plug.tsx +26 -0
- package/react/plus.tsx +7 -2
- package/react/{question-mark.tsx → question-mark-circle.tsx} +9 -5
- package/react/social-facebook.tsx +7 -2
- package/react/social-instagram.tsx +7 -2
- package/react/social-linkedin.tsx +7 -2
- package/react/social-twitter.tsx +7 -2
- package/react/social-youtube.tsx +7 -2
- package/react/user-add.tsx +26 -0
- package/react/user.tsx +26 -0
- package/react/users.tsx +26 -0
- package/react/wallet.tsx +27 -0
- package/svg/24/arrow-box-out.svg +1 -0
- package/svg/24/arrow-down-left.svg +1 -0
- package/svg/24/arrow-down-right.svg +1 -0
- package/svg/24/arrow-down.svg +1 -0
- package/svg/24/arrow-left.svg +1 -1
- package/svg/24/arrow-right.svg +1 -1
- package/svg/24/arrow-up-left.svg +1 -0
- package/svg/24/arrow-up-right.svg +1 -0
- package/svg/24/arrow-up.svg +1 -0
- package/svg/24/bar-three.svg +1 -1
- package/svg/24/check-mark.svg +1 -1
- package/svg/24/chevron-down.svg +1 -1
- package/svg/24/chevron-left.svg +1 -1
- package/svg/24/chevron-right.svg +1 -1
- package/svg/24/chevron-up.svg +1 -1
- package/svg/24/cog.svg +1 -0
- package/svg/24/cross-circle.svg +1 -1
- package/svg/24/cross.svg +1 -1
- package/svg/24/envelope.svg +1 -1
- package/svg/24/exclamation-point-circle.svg +1 -1
- package/svg/24/globe.svg +1 -1
- package/svg/24/house.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -1
- package/svg/24/link.svg +1 -0
- package/svg/24/lock-closed.svg +1 -1
- package/svg/24/lock-open.svg +1 -1
- package/svg/24/magnifying-glass.svg +1 -0
- package/svg/24/minus.svg +1 -1
- package/svg/24/placeholder.svg +1 -0
- package/svg/24/plug.svg +1 -0
- package/svg/24/plus.svg +1 -1
- package/svg/24/question-mark-circle.svg +1 -0
- package/svg/24/social-facebook.svg +1 -1
- package/svg/24/social-instagram.svg +1 -1
- package/svg/24/social-linkedin.svg +1 -1
- package/svg/24/social-twitter.svg +1 -1
- package/svg/24/social-youtube.svg +1 -1
- package/svg/24/user-add.svg +1 -0
- package/svg/24/user.svg +1 -0
- package/svg/24/users.svg +1 -0
- package/svg/24/wallet.svg +1 -0
- package/svg/meta.json +114 -8
- package/svg/24/arrow-top-right.svg +0 -1
- package/svg/24/icon-placeholder.svg +0 -1
- package/svg/24/question-mark.svg +0 -1
- package/svg/24/search.svg +0 -1
package/dist/main.js
CHANGED
|
@@ -31,29 +31,111 @@ const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.s
|
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
|
|
34
|
-
const
|
|
34
|
+
const IconArrowBoxOut = React.forwardRef(
|
|
35
35
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
36
|
StyledIcon,
|
|
37
|
-
{
|
|
37
|
+
{
|
|
38
|
+
...props,
|
|
39
|
+
size,
|
|
40
|
+
viewBox: "0 0 24 24",
|
|
41
|
+
fill: "none",
|
|
42
|
+
ref: forwardRef2
|
|
43
|
+
},
|
|
38
44
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
39
|
-
|
|
40
|
-
|
|
45
|
+
stroke: "currentColor",
|
|
46
|
+
strokeLinecap: "round",
|
|
47
|
+
strokeWidth: 2,
|
|
48
|
+
d: "M17 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4.5M20 4l-9 9m2.002-9h7v7"
|
|
49
|
+
})
|
|
50
|
+
)
|
|
51
|
+
);
|
|
52
|
+
|
|
53
|
+
const IconArrowDownLeft = React.forwardRef(
|
|
54
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
55
|
+
StyledIcon,
|
|
56
|
+
{
|
|
57
|
+
...props,
|
|
58
|
+
size,
|
|
59
|
+
viewBox: "0 0 24 24",
|
|
60
|
+
fill: "none",
|
|
61
|
+
ref: forwardRef2
|
|
62
|
+
},
|
|
41
63
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
42
64
|
stroke: "currentColor",
|
|
43
65
|
strokeLinecap: "round",
|
|
44
66
|
strokeWidth: 2,
|
|
45
|
-
d: "
|
|
67
|
+
d: "M5 19h9m-9 0v-9m0 9L19 5"
|
|
46
68
|
})
|
|
47
69
|
)
|
|
48
70
|
);
|
|
49
71
|
|
|
50
|
-
const
|
|
72
|
+
const IconArrowDownRight = React.forwardRef(
|
|
51
73
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
52
74
|
StyledIcon,
|
|
53
|
-
{
|
|
75
|
+
{
|
|
76
|
+
...props,
|
|
77
|
+
size,
|
|
78
|
+
viewBox: "0 0 24 24",
|
|
79
|
+
fill: "none",
|
|
80
|
+
ref: forwardRef2
|
|
81
|
+
},
|
|
54
82
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
55
|
-
|
|
56
|
-
|
|
83
|
+
stroke: "currentColor",
|
|
84
|
+
strokeLinecap: "round",
|
|
85
|
+
strokeWidth: 2,
|
|
86
|
+
d: "M19 19v-9m0 9h-9m9 0L5 5"
|
|
87
|
+
})
|
|
88
|
+
)
|
|
89
|
+
);
|
|
90
|
+
|
|
91
|
+
const IconArrowDown = React.forwardRef(
|
|
92
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
93
|
+
StyledIcon,
|
|
94
|
+
{
|
|
95
|
+
...props,
|
|
96
|
+
size,
|
|
97
|
+
viewBox: "0 0 24 24",
|
|
98
|
+
fill: "none",
|
|
99
|
+
ref: forwardRef2
|
|
100
|
+
},
|
|
101
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
102
|
+
stroke: "currentColor",
|
|
103
|
+
strokeLinecap: "round",
|
|
104
|
+
strokeWidth: 2,
|
|
105
|
+
d: "M12 20V3m7 10.59-7 7-7-7"
|
|
106
|
+
})
|
|
107
|
+
)
|
|
108
|
+
);
|
|
109
|
+
|
|
110
|
+
const IconArrowLeft = React.forwardRef(
|
|
111
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
112
|
+
StyledIcon,
|
|
113
|
+
{
|
|
114
|
+
...props,
|
|
115
|
+
size,
|
|
116
|
+
viewBox: "0 0 24 24",
|
|
117
|
+
fill: "none",
|
|
118
|
+
ref: forwardRef2
|
|
119
|
+
},
|
|
120
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
121
|
+
stroke: "currentColor",
|
|
122
|
+
strokeLinecap: "round",
|
|
123
|
+
strokeWidth: 2,
|
|
124
|
+
d: "M21 12H4m6.41-7-7 7 7 7"
|
|
125
|
+
})
|
|
126
|
+
)
|
|
127
|
+
);
|
|
128
|
+
|
|
129
|
+
const IconArrowRight = React.forwardRef(
|
|
130
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
131
|
+
StyledIcon,
|
|
132
|
+
{
|
|
133
|
+
...props,
|
|
134
|
+
size,
|
|
135
|
+
viewBox: "0 0 24 24",
|
|
136
|
+
fill: "none",
|
|
137
|
+
ref: forwardRef2
|
|
138
|
+
},
|
|
57
139
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
58
140
|
stroke: "currentColor",
|
|
59
141
|
strokeLinecap: "round",
|
|
@@ -63,29 +145,73 @@ const IconArrowRight = React.forwardRef(
|
|
|
63
145
|
)
|
|
64
146
|
);
|
|
65
147
|
|
|
66
|
-
const
|
|
148
|
+
const IconArrowUpLeft = React.forwardRef(
|
|
67
149
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
68
150
|
StyledIcon,
|
|
69
|
-
{
|
|
151
|
+
{
|
|
152
|
+
...props,
|
|
153
|
+
size,
|
|
154
|
+
viewBox: "0 0 24 24",
|
|
155
|
+
fill: "none",
|
|
156
|
+
ref: forwardRef2
|
|
157
|
+
},
|
|
70
158
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
71
|
-
|
|
72
|
-
|
|
159
|
+
stroke: "currentColor",
|
|
160
|
+
strokeLinecap: "round",
|
|
161
|
+
strokeWidth: 2,
|
|
162
|
+
d: "M5 5v9m0-9h9M5 5l14 14"
|
|
163
|
+
})
|
|
164
|
+
)
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
const IconArrowUpRight = React.forwardRef(
|
|
168
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
169
|
+
StyledIcon,
|
|
170
|
+
{
|
|
171
|
+
...props,
|
|
172
|
+
size,
|
|
173
|
+
viewBox: "0 0 24 24",
|
|
174
|
+
fill: "none",
|
|
175
|
+
ref: forwardRef2
|
|
176
|
+
},
|
|
73
177
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
74
178
|
stroke: "currentColor",
|
|
75
179
|
strokeLinecap: "round",
|
|
76
180
|
strokeWidth: 2,
|
|
77
|
-
d: "
|
|
181
|
+
d: "M19 5h-9m9 0v9m0-9L5 19"
|
|
78
182
|
})
|
|
79
183
|
)
|
|
80
184
|
);
|
|
81
185
|
|
|
82
|
-
const
|
|
186
|
+
const IconArrowUp = React.forwardRef(
|
|
83
187
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
84
188
|
StyledIcon,
|
|
85
|
-
{
|
|
189
|
+
{
|
|
190
|
+
...props,
|
|
191
|
+
size,
|
|
192
|
+
viewBox: "0 0 24 24",
|
|
193
|
+
fill: "none",
|
|
194
|
+
ref: forwardRef2
|
|
195
|
+
},
|
|
86
196
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
87
|
-
|
|
88
|
-
|
|
197
|
+
stroke: "currentColor",
|
|
198
|
+
strokeLinecap: "round",
|
|
199
|
+
strokeWidth: 2,
|
|
200
|
+
d: "M12 4v17M5 10.41l7-7 7 7"
|
|
201
|
+
})
|
|
202
|
+
)
|
|
203
|
+
);
|
|
204
|
+
|
|
205
|
+
const IconBarThree = React.forwardRef(
|
|
206
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
207
|
+
StyledIcon,
|
|
208
|
+
{
|
|
209
|
+
...props,
|
|
210
|
+
size,
|
|
211
|
+
viewBox: "0 0 24 24",
|
|
212
|
+
fill: "none",
|
|
213
|
+
ref: forwardRef2
|
|
214
|
+
},
|
|
89
215
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
90
216
|
stroke: "currentColor",
|
|
91
217
|
strokeLinecap: "round",
|
|
@@ -98,10 +224,13 @@ const IconBarThree = React.forwardRef(
|
|
|
98
224
|
const IconCheckMark = React.forwardRef(
|
|
99
225
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
100
226
|
StyledIcon,
|
|
101
|
-
{
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
227
|
+
{
|
|
228
|
+
...props,
|
|
229
|
+
size,
|
|
230
|
+
viewBox: "0 0 24 24",
|
|
231
|
+
fill: "none",
|
|
232
|
+
ref: forwardRef2
|
|
233
|
+
},
|
|
105
234
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
106
235
|
stroke: "currentColor",
|
|
107
236
|
strokeLinecap: "round",
|
|
@@ -114,10 +243,13 @@ const IconCheckMark = React.forwardRef(
|
|
|
114
243
|
const IconChevronDown = React.forwardRef(
|
|
115
244
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
116
245
|
StyledIcon,
|
|
117
|
-
{
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
246
|
+
{
|
|
247
|
+
...props,
|
|
248
|
+
size,
|
|
249
|
+
viewBox: "0 0 24 24",
|
|
250
|
+
fill: "none",
|
|
251
|
+
ref: forwardRef2
|
|
252
|
+
},
|
|
121
253
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
122
254
|
stroke: "currentColor",
|
|
123
255
|
strokeLinecap: "round",
|
|
@@ -130,10 +262,13 @@ const IconChevronDown = React.forwardRef(
|
|
|
130
262
|
const IconChevronLeft = React.forwardRef(
|
|
131
263
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
132
264
|
StyledIcon,
|
|
133
|
-
{
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
265
|
+
{
|
|
266
|
+
...props,
|
|
267
|
+
size,
|
|
268
|
+
viewBox: "0 0 24 24",
|
|
269
|
+
fill: "none",
|
|
270
|
+
ref: forwardRef2
|
|
271
|
+
},
|
|
137
272
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
138
273
|
stroke: "currentColor",
|
|
139
274
|
strokeLinecap: "round",
|
|
@@ -146,10 +281,13 @@ const IconChevronLeft = React.forwardRef(
|
|
|
146
281
|
const IconChevronRight = React.forwardRef(
|
|
147
282
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
148
283
|
StyledIcon,
|
|
149
|
-
{
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
284
|
+
{
|
|
285
|
+
...props,
|
|
286
|
+
size,
|
|
287
|
+
viewBox: "0 0 24 24",
|
|
288
|
+
fill: "none",
|
|
289
|
+
ref: forwardRef2
|
|
290
|
+
},
|
|
153
291
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
154
292
|
stroke: "currentColor",
|
|
155
293
|
strokeLinecap: "round",
|
|
@@ -162,10 +300,13 @@ const IconChevronRight = React.forwardRef(
|
|
|
162
300
|
const IconChevronUp = React.forwardRef(
|
|
163
301
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
164
302
|
StyledIcon,
|
|
165
|
-
{
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
303
|
+
{
|
|
304
|
+
...props,
|
|
305
|
+
size,
|
|
306
|
+
viewBox: "0 0 24 24",
|
|
307
|
+
fill: "none",
|
|
308
|
+
ref: forwardRef2
|
|
309
|
+
},
|
|
169
310
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
170
311
|
stroke: "currentColor",
|
|
171
312
|
strokeLinecap: "round",
|
|
@@ -175,66 +316,86 @@ const IconChevronUp = React.forwardRef(
|
|
|
175
316
|
)
|
|
176
317
|
);
|
|
177
318
|
|
|
178
|
-
const
|
|
319
|
+
const IconCog = React.forwardRef(
|
|
179
320
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
180
321
|
StyledIcon,
|
|
181
|
-
{
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
322
|
+
{
|
|
323
|
+
...props,
|
|
324
|
+
size,
|
|
325
|
+
viewBox: "0 0 24 24",
|
|
326
|
+
fill: "none",
|
|
327
|
+
ref: forwardRef2
|
|
328
|
+
},
|
|
185
329
|
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
186
330
|
cx: 12,
|
|
187
331
|
cy: 12,
|
|
188
|
-
r:
|
|
332
|
+
r: 1,
|
|
189
333
|
stroke: "currentColor",
|
|
190
334
|
strokeWidth: 2
|
|
191
335
|
}),
|
|
192
336
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
193
337
|
stroke: "currentColor",
|
|
194
338
|
strokeLinecap: "round",
|
|
339
|
+
strokeLinejoin: "round",
|
|
195
340
|
strokeWidth: 2,
|
|
196
|
-
d: "
|
|
341
|
+
d: "M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z"
|
|
197
342
|
})
|
|
198
343
|
)
|
|
199
344
|
);
|
|
200
345
|
|
|
201
|
-
const
|
|
346
|
+
const IconCrossCircle = React.forwardRef(
|
|
202
347
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
203
348
|
StyledIcon,
|
|
204
|
-
{
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
349
|
+
{
|
|
350
|
+
...props,
|
|
351
|
+
size,
|
|
352
|
+
viewBox: "0 0 24 24",
|
|
353
|
+
fill: "none",
|
|
354
|
+
ref: forwardRef2
|
|
355
|
+
},
|
|
208
356
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
209
357
|
stroke: "currentColor",
|
|
210
358
|
strokeLinecap: "round",
|
|
211
359
|
strokeWidth: 2,
|
|
212
|
-
d: "
|
|
360
|
+
d: "m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
213
361
|
})
|
|
214
362
|
)
|
|
215
363
|
);
|
|
216
364
|
|
|
217
|
-
const
|
|
365
|
+
const IconCross = React.forwardRef(
|
|
218
366
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
219
367
|
StyledIcon,
|
|
220
|
-
{
|
|
368
|
+
{
|
|
369
|
+
...props,
|
|
370
|
+
size,
|
|
371
|
+
viewBox: "0 0 24 24",
|
|
372
|
+
fill: "none",
|
|
373
|
+
ref: forwardRef2
|
|
374
|
+
},
|
|
221
375
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
222
|
-
d: "M0 0h24v24H0z"
|
|
223
|
-
}),
|
|
224
|
-
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
225
|
-
width: 18,
|
|
226
|
-
height: 14,
|
|
227
|
-
x: 3,
|
|
228
|
-
y: 5,
|
|
229
376
|
stroke: "currentColor",
|
|
377
|
+
strokeLinecap: "round",
|
|
230
378
|
strokeWidth: 2,
|
|
231
|
-
|
|
232
|
-
})
|
|
379
|
+
d: "m6 6 12 12m0-12L6 18"
|
|
380
|
+
})
|
|
381
|
+
)
|
|
382
|
+
);
|
|
383
|
+
|
|
384
|
+
const IconEnvelope = React.forwardRef(
|
|
385
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
386
|
+
StyledIcon,
|
|
387
|
+
{
|
|
388
|
+
...props,
|
|
389
|
+
size,
|
|
390
|
+
viewBox: "0 0 24 24",
|
|
391
|
+
fill: "none",
|
|
392
|
+
ref: forwardRef2
|
|
393
|
+
},
|
|
233
394
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
234
395
|
stroke: "currentColor",
|
|
235
396
|
strokeLinecap: "round",
|
|
236
397
|
strokeWidth: 2,
|
|
237
|
-
d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17
|
|
398
|
+
d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z"
|
|
238
399
|
})
|
|
239
400
|
)
|
|
240
401
|
);
|
|
@@ -242,22 +403,24 @@ const IconEnvelope = React.forwardRef(
|
|
|
242
403
|
const IconExclamationPointCircle = React.forwardRef(
|
|
243
404
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
244
405
|
StyledIcon,
|
|
245
|
-
{
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
406
|
+
{
|
|
407
|
+
...props,
|
|
408
|
+
size,
|
|
409
|
+
viewBox: "0 0 24 24",
|
|
410
|
+
fill: "none",
|
|
411
|
+
ref: forwardRef2
|
|
412
|
+
},
|
|
249
413
|
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
250
414
|
cx: 12,
|
|
251
|
-
cy:
|
|
252
|
-
r:
|
|
253
|
-
|
|
254
|
-
strokeWidth: 2
|
|
415
|
+
cy: 15.5,
|
|
416
|
+
r: 1,
|
|
417
|
+
fill: "currentColor"
|
|
255
418
|
}),
|
|
256
419
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
257
420
|
stroke: "currentColor",
|
|
258
421
|
strokeLinecap: "round",
|
|
259
422
|
strokeWidth: 2,
|
|
260
|
-
d: "M12
|
|
423
|
+
d: "M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"
|
|
261
424
|
})
|
|
262
425
|
)
|
|
263
426
|
);
|
|
@@ -265,68 +428,79 @@ const IconExclamationPointCircle = React.forwardRef(
|
|
|
265
428
|
const IconGlobe = React.forwardRef(
|
|
266
429
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
267
430
|
StyledIcon,
|
|
268
|
-
{
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
r: 9,
|
|
276
|
-
stroke: "currentColor",
|
|
277
|
-
strokeWidth: 2
|
|
278
|
-
}),
|
|
431
|
+
{
|
|
432
|
+
...props,
|
|
433
|
+
size,
|
|
434
|
+
viewBox: "0 0 24 24",
|
|
435
|
+
fill: "none",
|
|
436
|
+
ref: forwardRef2
|
|
437
|
+
},
|
|
279
438
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
280
439
|
stroke: "currentColor",
|
|
281
440
|
strokeLinecap: "round",
|
|
282
441
|
strokeWidth: 2,
|
|
283
|
-
d: "M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4
|
|
442
|
+
d: "M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
284
443
|
})
|
|
285
444
|
)
|
|
286
445
|
);
|
|
287
446
|
|
|
288
|
-
const
|
|
447
|
+
const IconHouse = React.forwardRef(
|
|
289
448
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
290
449
|
StyledIcon,
|
|
291
|
-
{
|
|
450
|
+
{
|
|
451
|
+
...props,
|
|
452
|
+
size,
|
|
453
|
+
viewBox: "0 0 24 24",
|
|
454
|
+
fill: "none",
|
|
455
|
+
ref: forwardRef2
|
|
456
|
+
},
|
|
292
457
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
293
|
-
|
|
294
|
-
|
|
458
|
+
fill: "currentColor",
|
|
459
|
+
d: "m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z"
|
|
460
|
+
})
|
|
461
|
+
)
|
|
462
|
+
);
|
|
463
|
+
|
|
464
|
+
const IconInformationMarkCircle = React.forwardRef(
|
|
465
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
466
|
+
StyledIcon,
|
|
467
|
+
{
|
|
468
|
+
...props,
|
|
469
|
+
size,
|
|
470
|
+
viewBox: "0 0 24 24",
|
|
471
|
+
fill: "none",
|
|
472
|
+
ref: forwardRef2
|
|
473
|
+
},
|
|
295
474
|
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
296
475
|
cx: 12,
|
|
297
|
-
cy:
|
|
298
|
-
r:
|
|
299
|
-
|
|
300
|
-
strokeWidth: 2
|
|
476
|
+
cy: 8.5,
|
|
477
|
+
r: 1,
|
|
478
|
+
fill: "currentColor"
|
|
301
479
|
}),
|
|
302
480
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
303
481
|
stroke: "currentColor",
|
|
304
482
|
strokeLinecap: "round",
|
|
305
483
|
strokeWidth: 2,
|
|
306
|
-
d: "
|
|
484
|
+
d: "M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"
|
|
307
485
|
})
|
|
308
486
|
)
|
|
309
487
|
);
|
|
310
488
|
|
|
311
|
-
const
|
|
489
|
+
const IconLink = React.forwardRef(
|
|
312
490
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
313
491
|
StyledIcon,
|
|
314
|
-
{
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
r: 9,
|
|
322
|
-
stroke: "currentColor",
|
|
323
|
-
strokeWidth: 2
|
|
324
|
-
}),
|
|
492
|
+
{
|
|
493
|
+
...props,
|
|
494
|
+
size,
|
|
495
|
+
viewBox: "0 0 24 24",
|
|
496
|
+
fill: "none",
|
|
497
|
+
ref: forwardRef2
|
|
498
|
+
},
|
|
325
499
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
326
500
|
stroke: "currentColor",
|
|
327
501
|
strokeLinecap: "round",
|
|
328
502
|
strokeWidth: 2,
|
|
329
|
-
d: "
|
|
503
|
+
d: "m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071"
|
|
330
504
|
})
|
|
331
505
|
)
|
|
332
506
|
);
|
|
@@ -334,37 +508,24 @@ const IconInformationMarkCircle = React.forwardRef(
|
|
|
334
508
|
const IconLockClosed = React.forwardRef(
|
|
335
509
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
336
510
|
StyledIcon,
|
|
337
|
-
{
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
511
|
+
{
|
|
512
|
+
...props,
|
|
513
|
+
size,
|
|
514
|
+
viewBox: "0 0 24 24",
|
|
515
|
+
fill: "none",
|
|
516
|
+
ref: forwardRef2
|
|
517
|
+
},
|
|
341
518
|
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
342
519
|
cx: 12,
|
|
343
520
|
cy: 16,
|
|
344
521
|
r: 1,
|
|
345
522
|
fill: "currentColor"
|
|
346
523
|
}),
|
|
347
|
-
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
348
|
-
width: 14,
|
|
349
|
-
height: 10,
|
|
350
|
-
x: 5,
|
|
351
|
-
y: 11,
|
|
352
|
-
stroke: "currentColor",
|
|
353
|
-
strokeWidth: 2,
|
|
354
|
-
rx: 2
|
|
355
|
-
}),
|
|
356
524
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
357
525
|
stroke: "currentColor",
|
|
358
526
|
strokeLinecap: "round",
|
|
359
527
|
strokeWidth: 2,
|
|
360
|
-
d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2
|
|
361
|
-
}),
|
|
362
|
-
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
363
|
-
cx: 12,
|
|
364
|
-
cy: 16,
|
|
365
|
-
r: 1,
|
|
366
|
-
stroke: "currentColor",
|
|
367
|
-
strokeWidth: 2
|
|
528
|
+
d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
368
529
|
})
|
|
369
530
|
)
|
|
370
531
|
);
|
|
@@ -372,37 +533,43 @@ const IconLockClosed = React.forwardRef(
|
|
|
372
533
|
const IconLockOpen = React.forwardRef(
|
|
373
534
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
374
535
|
StyledIcon,
|
|
375
|
-
{
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
536
|
+
{
|
|
537
|
+
...props,
|
|
538
|
+
size,
|
|
539
|
+
viewBox: "0 0 24 24",
|
|
540
|
+
fill: "none",
|
|
541
|
+
ref: forwardRef2
|
|
542
|
+
},
|
|
379
543
|
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
380
544
|
cx: 12,
|
|
381
545
|
cy: 16,
|
|
382
546
|
r: 1,
|
|
383
547
|
fill: "currentColor"
|
|
384
548
|
}),
|
|
385
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
386
|
-
width: 14,
|
|
387
|
-
height: 10,
|
|
388
|
-
x: 5,
|
|
389
|
-
y: 11,
|
|
549
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
390
550
|
stroke: "currentColor",
|
|
551
|
+
strokeLinecap: "round",
|
|
391
552
|
strokeWidth: 2,
|
|
392
|
-
|
|
393
|
-
})
|
|
553
|
+
d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
554
|
+
})
|
|
555
|
+
)
|
|
556
|
+
);
|
|
557
|
+
|
|
558
|
+
const IconMagnifyingGlass = React.forwardRef(
|
|
559
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
560
|
+
StyledIcon,
|
|
561
|
+
{
|
|
562
|
+
...props,
|
|
563
|
+
size,
|
|
564
|
+
viewBox: "0 0 24 24",
|
|
565
|
+
fill: "none",
|
|
566
|
+
ref: forwardRef2
|
|
567
|
+
},
|
|
394
568
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
395
569
|
stroke: "currentColor",
|
|
396
570
|
strokeLinecap: "round",
|
|
397
571
|
strokeWidth: 2,
|
|
398
|
-
d: "
|
|
399
|
-
}),
|
|
400
|
-
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
401
|
-
cx: 12,
|
|
402
|
-
cy: 16,
|
|
403
|
-
r: 1,
|
|
404
|
-
stroke: "currentColor",
|
|
405
|
-
strokeWidth: 2
|
|
572
|
+
d: "m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"
|
|
406
573
|
})
|
|
407
574
|
)
|
|
408
575
|
);
|
|
@@ -410,10 +577,13 @@ const IconLockOpen = React.forwardRef(
|
|
|
410
577
|
const IconMinus = React.forwardRef(
|
|
411
578
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
412
579
|
StyledIcon,
|
|
413
|
-
{
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
580
|
+
{
|
|
581
|
+
...props,
|
|
582
|
+
size,
|
|
583
|
+
viewBox: "0 0 24 24",
|
|
584
|
+
fill: "none",
|
|
585
|
+
ref: forwardRef2
|
|
586
|
+
},
|
|
417
587
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
418
588
|
stroke: "currentColor",
|
|
419
589
|
strokeLinecap: "round",
|
|
@@ -423,64 +593,78 @@ const IconMinus = React.forwardRef(
|
|
|
423
593
|
)
|
|
424
594
|
);
|
|
425
595
|
|
|
426
|
-
const
|
|
596
|
+
const IconPlaceholder = React.forwardRef(
|
|
427
597
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
428
598
|
StyledIcon,
|
|
429
|
-
{
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
599
|
+
{
|
|
600
|
+
...props,
|
|
601
|
+
size,
|
|
602
|
+
viewBox: "0 0 24 24",
|
|
603
|
+
fill: "none",
|
|
604
|
+
ref: forwardRef2
|
|
605
|
+
},
|
|
433
606
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
434
607
|
stroke: "currentColor",
|
|
435
608
|
strokeLinecap: "round",
|
|
436
609
|
strokeWidth: 2,
|
|
437
|
-
d: "
|
|
610
|
+
d: "m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
438
611
|
})
|
|
439
612
|
)
|
|
440
613
|
);
|
|
441
614
|
|
|
442
|
-
const
|
|
615
|
+
const IconPlug = React.forwardRef(
|
|
443
616
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
444
617
|
StyledIcon,
|
|
445
|
-
{
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
r: 9,
|
|
453
|
-
stroke: "currentColor",
|
|
454
|
-
strokeWidth: 2
|
|
455
|
-
}),
|
|
618
|
+
{
|
|
619
|
+
...props,
|
|
620
|
+
size,
|
|
621
|
+
viewBox: "0 0 24 24",
|
|
622
|
+
fill: "none",
|
|
623
|
+
ref: forwardRef2
|
|
624
|
+
},
|
|
456
625
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
457
626
|
stroke: "currentColor",
|
|
458
627
|
strokeLinecap: "round",
|
|
459
628
|
strokeWidth: 2,
|
|
460
|
-
d: "
|
|
629
|
+
d: "m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z"
|
|
461
630
|
})
|
|
462
631
|
)
|
|
463
632
|
);
|
|
464
633
|
|
|
465
|
-
const
|
|
634
|
+
const IconPlus = React.forwardRef(
|
|
466
635
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
467
636
|
StyledIcon,
|
|
468
|
-
{
|
|
637
|
+
{
|
|
638
|
+
...props,
|
|
639
|
+
size,
|
|
640
|
+
viewBox: "0 0 24 24",
|
|
641
|
+
fill: "none",
|
|
642
|
+
ref: forwardRef2
|
|
643
|
+
},
|
|
469
644
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
470
|
-
d: "M0 0h24v24H0z"
|
|
471
|
-
}),
|
|
472
|
-
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
473
|
-
cx: 10,
|
|
474
|
-
cy: 10,
|
|
475
|
-
r: 6,
|
|
476
645
|
stroke: "currentColor",
|
|
477
|
-
|
|
478
|
-
|
|
646
|
+
strokeLinecap: "round",
|
|
647
|
+
strokeWidth: 2,
|
|
648
|
+
d: "M5 12h14m-7-7v14"
|
|
649
|
+
})
|
|
650
|
+
)
|
|
651
|
+
);
|
|
652
|
+
|
|
653
|
+
const IconQuestionMarkCircle = React.forwardRef(
|
|
654
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
655
|
+
StyledIcon,
|
|
656
|
+
{
|
|
657
|
+
...props,
|
|
658
|
+
size,
|
|
659
|
+
viewBox: "0 0 24 24",
|
|
660
|
+
fill: "none",
|
|
661
|
+
ref: forwardRef2
|
|
662
|
+
},
|
|
479
663
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
480
664
|
stroke: "currentColor",
|
|
481
665
|
strokeLinecap: "round",
|
|
482
666
|
strokeWidth: 2,
|
|
483
|
-
d: "
|
|
667
|
+
d: "M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
484
668
|
})
|
|
485
669
|
)
|
|
486
670
|
);
|
|
@@ -488,10 +672,13 @@ const IconSearch = React.forwardRef(
|
|
|
488
672
|
const IconSocialFacebook = React.forwardRef(
|
|
489
673
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
490
674
|
StyledIcon,
|
|
491
|
-
{
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
675
|
+
{
|
|
676
|
+
...props,
|
|
677
|
+
size,
|
|
678
|
+
viewBox: "0 0 24 24",
|
|
679
|
+
fill: "none",
|
|
680
|
+
ref: forwardRef2
|
|
681
|
+
},
|
|
495
682
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
496
683
|
fill: "currentColor",
|
|
497
684
|
d: "M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54v-2.91h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z"
|
|
@@ -502,10 +689,13 @@ const IconSocialFacebook = React.forwardRef(
|
|
|
502
689
|
const IconSocialInstagram = React.forwardRef(
|
|
503
690
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
504
691
|
StyledIcon,
|
|
505
|
-
{
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
692
|
+
{
|
|
693
|
+
...props,
|
|
694
|
+
size,
|
|
695
|
+
viewBox: "0 0 24 24",
|
|
696
|
+
fill: "none",
|
|
697
|
+
ref: forwardRef2
|
|
698
|
+
},
|
|
509
699
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
510
700
|
fill: "currentColor",
|
|
511
701
|
d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
|
|
@@ -522,10 +712,13 @@ const IconSocialInstagram = React.forwardRef(
|
|
|
522
712
|
const IconSocialLinkedin = React.forwardRef(
|
|
523
713
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
524
714
|
StyledIcon,
|
|
525
|
-
{
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
715
|
+
{
|
|
716
|
+
...props,
|
|
717
|
+
size,
|
|
718
|
+
viewBox: "0 0 24 24",
|
|
719
|
+
fill: "none",
|
|
720
|
+
ref: forwardRef2
|
|
721
|
+
},
|
|
529
722
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
530
723
|
fill: "currentColor",
|
|
531
724
|
d: "M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z"
|
|
@@ -536,10 +729,13 @@ const IconSocialLinkedin = React.forwardRef(
|
|
|
536
729
|
const IconSocialTwitter = React.forwardRef(
|
|
537
730
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
538
731
|
StyledIcon,
|
|
539
|
-
{
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
732
|
+
{
|
|
733
|
+
...props,
|
|
734
|
+
size,
|
|
735
|
+
viewBox: "0 0 24 24",
|
|
736
|
+
fill: "none",
|
|
737
|
+
ref: forwardRef2
|
|
738
|
+
},
|
|
543
739
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
544
740
|
fill: "currentColor",
|
|
545
741
|
d: "M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039"
|
|
@@ -550,10 +746,13 @@ const IconSocialTwitter = React.forwardRef(
|
|
|
550
746
|
const IconSocialYoutube = React.forwardRef(
|
|
551
747
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
552
748
|
StyledIcon,
|
|
553
|
-
{
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
749
|
+
{
|
|
750
|
+
...props,
|
|
751
|
+
size,
|
|
752
|
+
viewBox: "0 0 24 24",
|
|
753
|
+
fill: "none",
|
|
754
|
+
ref: forwardRef2
|
|
755
|
+
},
|
|
557
756
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
558
757
|
fill: "currentColor",
|
|
559
758
|
d: "M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z"
|
|
@@ -561,31 +760,127 @@ const IconSocialYoutube = React.forwardRef(
|
|
|
561
760
|
)
|
|
562
761
|
);
|
|
563
762
|
|
|
763
|
+
const IconUserAdd = React.forwardRef(
|
|
764
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
765
|
+
StyledIcon,
|
|
766
|
+
{
|
|
767
|
+
...props,
|
|
768
|
+
size,
|
|
769
|
+
viewBox: "0 0 24 24",
|
|
770
|
+
fill: "none",
|
|
771
|
+
ref: forwardRef2
|
|
772
|
+
},
|
|
773
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
774
|
+
stroke: "currentColor",
|
|
775
|
+
strokeLinecap: "round",
|
|
776
|
+
strokeWidth: 2,
|
|
777
|
+
d: "M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
|
|
778
|
+
})
|
|
779
|
+
)
|
|
780
|
+
);
|
|
781
|
+
|
|
782
|
+
const IconUser = React.forwardRef(
|
|
783
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
784
|
+
StyledIcon,
|
|
785
|
+
{
|
|
786
|
+
...props,
|
|
787
|
+
size,
|
|
788
|
+
viewBox: "0 0 24 24",
|
|
789
|
+
fill: "none",
|
|
790
|
+
ref: forwardRef2
|
|
791
|
+
},
|
|
792
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
793
|
+
stroke: "currentColor",
|
|
794
|
+
strokeLinecap: "round",
|
|
795
|
+
strokeWidth: 2,
|
|
796
|
+
d: "m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
|
|
797
|
+
})
|
|
798
|
+
)
|
|
799
|
+
);
|
|
800
|
+
|
|
801
|
+
const IconUsers = React.forwardRef(
|
|
802
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
803
|
+
StyledIcon,
|
|
804
|
+
{
|
|
805
|
+
...props,
|
|
806
|
+
size,
|
|
807
|
+
viewBox: "0 0 24 24",
|
|
808
|
+
fill: "none",
|
|
809
|
+
ref: forwardRef2
|
|
810
|
+
},
|
|
811
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
812
|
+
stroke: "currentColor",
|
|
813
|
+
strokeLinecap: "round",
|
|
814
|
+
strokeWidth: 2,
|
|
815
|
+
d: "m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"
|
|
816
|
+
})
|
|
817
|
+
)
|
|
818
|
+
);
|
|
819
|
+
|
|
820
|
+
const IconWallet = React.forwardRef(
|
|
821
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
822
|
+
StyledIcon,
|
|
823
|
+
{
|
|
824
|
+
...props,
|
|
825
|
+
size,
|
|
826
|
+
viewBox: "0 0 24 24",
|
|
827
|
+
fill: "none",
|
|
828
|
+
ref: forwardRef2
|
|
829
|
+
},
|
|
830
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
831
|
+
stroke: "currentColor",
|
|
832
|
+
strokeLinecap: "square",
|
|
833
|
+
strokeWidth: 2,
|
|
834
|
+
d: "M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z"
|
|
835
|
+
}),
|
|
836
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
837
|
+
cx: 15.5,
|
|
838
|
+
cy: 10,
|
|
839
|
+
r: 1.5,
|
|
840
|
+
fill: "currentColor"
|
|
841
|
+
})
|
|
842
|
+
)
|
|
843
|
+
);
|
|
844
|
+
|
|
845
|
+
exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
846
|
+
exports.IconArrowDown = IconArrowDown;
|
|
847
|
+
exports.IconArrowDownLeft = IconArrowDownLeft;
|
|
848
|
+
exports.IconArrowDownRight = IconArrowDownRight;
|
|
564
849
|
exports.IconArrowLeft = IconArrowLeft;
|
|
565
850
|
exports.IconArrowRight = IconArrowRight;
|
|
566
|
-
exports.
|
|
851
|
+
exports.IconArrowUp = IconArrowUp;
|
|
852
|
+
exports.IconArrowUpLeft = IconArrowUpLeft;
|
|
853
|
+
exports.IconArrowUpRight = IconArrowUpRight;
|
|
567
854
|
exports.IconBarThree = IconBarThree;
|
|
568
855
|
exports.IconCheckMark = IconCheckMark;
|
|
569
856
|
exports.IconChevronDown = IconChevronDown;
|
|
570
857
|
exports.IconChevronLeft = IconChevronLeft;
|
|
571
858
|
exports.IconChevronRight = IconChevronRight;
|
|
572
859
|
exports.IconChevronUp = IconChevronUp;
|
|
860
|
+
exports.IconCog = IconCog;
|
|
573
861
|
exports.IconCross = IconCross;
|
|
574
862
|
exports.IconCrossCircle = IconCrossCircle;
|
|
575
863
|
exports.IconEnvelope = IconEnvelope;
|
|
576
864
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
577
865
|
exports.IconGlobe = IconGlobe;
|
|
578
|
-
exports.
|
|
866
|
+
exports.IconHouse = IconHouse;
|
|
579
867
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
868
|
+
exports.IconLink = IconLink;
|
|
580
869
|
exports.IconLockClosed = IconLockClosed;
|
|
581
870
|
exports.IconLockOpen = IconLockOpen;
|
|
871
|
+
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
582
872
|
exports.IconMinus = IconMinus;
|
|
873
|
+
exports.IconPlaceholder = IconPlaceholder;
|
|
874
|
+
exports.IconPlug = IconPlug;
|
|
583
875
|
exports.IconPlus = IconPlus;
|
|
584
|
-
exports.
|
|
585
|
-
exports.IconSearch = IconSearch;
|
|
876
|
+
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
586
877
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
587
878
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
588
879
|
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
589
880
|
exports.IconSocialTwitter = IconSocialTwitter;
|
|
590
881
|
exports.IconSocialYoutube = IconSocialYoutube;
|
|
882
|
+
exports.IconUser = IconUser;
|
|
883
|
+
exports.IconUserAdd = IconUserAdd;
|
|
884
|
+
exports.IconUsers = IconUsers;
|
|
885
|
+
exports.IconWallet = IconWallet;
|
|
591
886
|
//# sourceMappingURL=main.js.map
|