@mirohq/design-system-icons 0.4.0 → 0.6.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 +1598 -229
- package/dist/main.js.map +1 -1
- package/dist/module.js +1549 -230
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +101 -1
- package/package.json +1 -1
- package/react/add-line-bottom.tsx +33 -0
- package/react/add-line-right.tsx +33 -0
- package/react/align-bottom.tsx +32 -0
- package/react/align-center-horizontal.tsx +32 -0
- package/react/align-center-vertical.tsx +32 -0
- package/react/align-left.tsx +32 -0
- package/react/align-right.tsx +32 -0
- package/react/align-top.tsx +32 -0
- package/react/bell-slash.tsx +31 -0
- package/react/bell-tilt.tsx +32 -0
- package/react/bell.tsx +32 -0
- package/react/bookmark.tsx +34 -0
- package/react/calendar-blank.tsx +35 -0
- package/react/clock-overtime.tsx +31 -0
- package/react/clock.tsx +33 -0
- package/react/distribute-horizontal.tsx +27 -0
- package/react/distribute-vertical.tsx +35 -0
- package/react/graduation-cap.tsx +35 -0
- package/react/grid-four.tsx +34 -0
- package/react/grid-six.tsx +34 -0
- package/react/index.ts +50 -0
- package/react/layout.tsx +34 -0
- package/react/lifesaver.tsx +34 -0
- package/react/lightning.tsx +35 -0
- package/react/lines-three-horizontal-line-vertical-center.tsx +34 -0
- package/react/lines-three-horizontal.tsx +33 -0
- package/react/lines-three-vertical.tsx +33 -0
- package/react/magnet.tsx +34 -0
- package/react/map.tsx +35 -0
- package/react/push-pin.tsx +31 -0
- package/react/rectangles-three-aligned.tsx +34 -0
- package/react/rectangles-three-free.tsx +34 -0
- package/react/rectangles-three-overlap.tsx +34 -0
- package/react/rectangles-two-line.tsx +34 -0
- package/react/sidebar-closed.tsx +35 -0
- package/react/sidebar-open.tsx +34 -0
- package/react/split-vertical.tsx +34 -0
- package/react/square-line-square-dashed.tsx +34 -0
- package/react/squares-group.tsx +32 -0
- package/react/squares-merge.tsx +31 -0
- package/react/squares-two-overlap.tsx +34 -0
- package/react/squares-ungroup.tsx +31 -0
- package/react/squares-unmerge.tsx +34 -0
- package/react/stack.tsx +34 -0
- package/react/tag.tsx +29 -0
- package/react/text-h-one.tsx +34 -0
- package/react/text-h-three.tsx +34 -0
- package/react/text-h-two.tsx +34 -0
- package/react/timer.tsx +25 -0
- package/react/view-center.tsx +28 -0
- package/react/view-side-left.tsx +28 -0
- package/svg/24/add-line-bottom.svg +1 -0
- package/svg/24/add-line-right.svg +1 -0
- package/svg/24/align-bottom.svg +1 -0
- package/svg/24/align-center-horizontal.svg +1 -0
- package/svg/24/align-center-vertical.svg +1 -0
- package/svg/24/align-left.svg +1 -0
- package/svg/24/align-right.svg +1 -0
- package/svg/24/align-top.svg +1 -0
- package/svg/24/bell-slash.svg +1 -0
- package/svg/24/bell-tilt.svg +1 -0
- package/svg/24/bell.svg +1 -0
- package/svg/24/bookmark.svg +1 -0
- package/svg/24/calendar-blank.svg +1 -0
- package/svg/24/clock-overtime.svg +1 -0
- package/svg/24/clock.svg +1 -0
- package/svg/24/distribute-horizontal.svg +1 -0
- package/svg/24/distribute-vertical.svg +1 -0
- package/svg/24/graduation-cap.svg +1 -0
- package/svg/24/grid-four.svg +1 -0
- package/svg/24/grid-six.svg +1 -0
- package/svg/24/layout.svg +1 -0
- package/svg/24/lifesaver.svg +1 -0
- package/svg/24/lightning.svg +1 -0
- package/svg/24/lines-three-horizontal-line-vertical-center.svg +1 -0
- package/svg/24/lines-three-horizontal.svg +1 -0
- package/svg/24/lines-three-vertical.svg +1 -0
- package/svg/24/magnet.svg +1 -0
- package/svg/24/map.svg +1 -0
- package/svg/24/push-pin.svg +1 -0
- package/svg/24/rectangles-three-aligned.svg +1 -0
- package/svg/24/rectangles-three-free.svg +1 -0
- package/svg/24/rectangles-three-overlap.svg +1 -0
- package/svg/24/rectangles-two-line.svg +1 -0
- package/svg/24/sidebar-closed.svg +1 -0
- package/svg/24/sidebar-open.svg +1 -0
- package/svg/24/split-vertical.svg +1 -0
- package/svg/24/square-line-square-dashed.svg +1 -0
- package/svg/24/squares-group.svg +1 -0
- package/svg/24/squares-merge.svg +1 -0
- package/svg/24/squares-two-overlap.svg +1 -0
- package/svg/24/squares-ungroup.svg +1 -0
- package/svg/24/squares-unmerge.svg +1 -0
- package/svg/24/stack.svg +1 -0
- package/svg/24/tag.svg +1 -0
- package/svg/24/text-h-one.svg +1 -0
- package/svg/24/text-h-three.svg +1 -0
- package/svg/24/text-h-two.svg +1 -0
- package/svg/24/timer.svg +1 -0
- package/svg/24/view-center.svg +1 -0
- package/svg/24/view-side-left.svg +1 -0
- package/svg/meta.json +412 -1
package/dist/main.js
CHANGED
|
@@ -31,6 +31,208 @@ const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.s
|
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
|
|
34
|
+
const IconAddLineBottom = React.forwardRef(
|
|
35
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
|
+
StyledIcon,
|
|
37
|
+
{
|
|
38
|
+
...props,
|
|
39
|
+
size,
|
|
40
|
+
viewBox: "0 0 24 24",
|
|
41
|
+
fill: "none",
|
|
42
|
+
ref: forwardRef2
|
|
43
|
+
},
|
|
44
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
45
|
+
clipPath: "url(#a)"
|
|
46
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
47
|
+
stroke: "currentColor",
|
|
48
|
+
strokeLinecap: "round",
|
|
49
|
+
strokeWidth: 2,
|
|
50
|
+
d: "M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4"
|
|
51
|
+
})),
|
|
52
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
53
|
+
id: "a"
|
|
54
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
55
|
+
d: "M0 0h24v24H0z"
|
|
56
|
+
})))
|
|
57
|
+
)
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
const IconAddLineRight = React.forwardRef(
|
|
61
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
62
|
+
StyledIcon,
|
|
63
|
+
{
|
|
64
|
+
...props,
|
|
65
|
+
size,
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
fill: "none",
|
|
68
|
+
ref: forwardRef2
|
|
69
|
+
},
|
|
70
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
71
|
+
clipPath: "url(#a)"
|
|
72
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
73
|
+
stroke: "currentColor",
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeWidth: 2,
|
|
76
|
+
d: "M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4"
|
|
77
|
+
})),
|
|
78
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
79
|
+
id: "a"
|
|
80
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
81
|
+
d: "M0 0h24v24H0z"
|
|
82
|
+
})))
|
|
83
|
+
)
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
const IconAlignBottom = React.forwardRef(
|
|
87
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
88
|
+
StyledIcon,
|
|
89
|
+
{
|
|
90
|
+
...props,
|
|
91
|
+
size,
|
|
92
|
+
viewBox: "0 0 24 24",
|
|
93
|
+
fill: "none",
|
|
94
|
+
ref: forwardRef2
|
|
95
|
+
},
|
|
96
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
97
|
+
stroke: "currentColor",
|
|
98
|
+
strokeLinecap: "round",
|
|
99
|
+
strokeLinejoin: "round",
|
|
100
|
+
strokeMiterlimit: 1.414,
|
|
101
|
+
strokeWidth: 2,
|
|
102
|
+
d: "M3 20h18"
|
|
103
|
+
}),
|
|
104
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
105
|
+
fill: "currentColor",
|
|
106
|
+
d: "M7 3.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 5a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
|
|
107
|
+
})
|
|
108
|
+
)
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
const IconAlignCenterHorizontal = React.forwardRef(
|
|
112
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
113
|
+
StyledIcon,
|
|
114
|
+
{
|
|
115
|
+
...props,
|
|
116
|
+
size,
|
|
117
|
+
viewBox: "0 0 24 24",
|
|
118
|
+
fill: "none",
|
|
119
|
+
ref: forwardRef2
|
|
120
|
+
},
|
|
121
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
122
|
+
stroke: "currentColor",
|
|
123
|
+
strokeLinecap: "round",
|
|
124
|
+
strokeLinejoin: "round",
|
|
125
|
+
strokeMiterlimit: 1.414,
|
|
126
|
+
strokeWidth: 2,
|
|
127
|
+
d: "M12 3v18"
|
|
128
|
+
}),
|
|
129
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
130
|
+
fill: "currentColor",
|
|
131
|
+
d: "M19.5 7a1.5 1.5 0 0 1 0 3h-15a1.5 1.5 0 1 1 0-3h15Zm-3 7a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3h9Z"
|
|
132
|
+
})
|
|
133
|
+
)
|
|
134
|
+
);
|
|
135
|
+
|
|
136
|
+
const IconAlignCenterVertical = React.forwardRef(
|
|
137
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
138
|
+
StyledIcon,
|
|
139
|
+
{
|
|
140
|
+
...props,
|
|
141
|
+
size,
|
|
142
|
+
viewBox: "0 0 24 24",
|
|
143
|
+
fill: "none",
|
|
144
|
+
ref: forwardRef2
|
|
145
|
+
},
|
|
146
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
147
|
+
stroke: "currentColor",
|
|
148
|
+
strokeLinecap: "round",
|
|
149
|
+
strokeLinejoin: "round",
|
|
150
|
+
strokeMiterlimit: 1.414,
|
|
151
|
+
strokeWidth: 2,
|
|
152
|
+
d: "M3 12h18"
|
|
153
|
+
}),
|
|
154
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
155
|
+
fill: "currentColor",
|
|
156
|
+
d: "M7 4.5a1.5 1.5 0 1 1 3 0v15a1.5 1.5 0 0 1-3 0v-15Zm7 3a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Z"
|
|
157
|
+
})
|
|
158
|
+
)
|
|
159
|
+
);
|
|
160
|
+
|
|
161
|
+
const IconAlignLeft = React.forwardRef(
|
|
162
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
163
|
+
StyledIcon,
|
|
164
|
+
{
|
|
165
|
+
...props,
|
|
166
|
+
size,
|
|
167
|
+
viewBox: "0 0 24 24",
|
|
168
|
+
fill: "none",
|
|
169
|
+
ref: forwardRef2
|
|
170
|
+
},
|
|
171
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
172
|
+
stroke: "currentColor",
|
|
173
|
+
strokeLinecap: "round",
|
|
174
|
+
strokeLinejoin: "round",
|
|
175
|
+
strokeMiterlimit: 1.414,
|
|
176
|
+
strokeWidth: 2,
|
|
177
|
+
d: "M4 21V3"
|
|
178
|
+
}),
|
|
179
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
180
|
+
fill: "currentColor",
|
|
181
|
+
d: "M8 15.5A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Zm0-7A1.5 1.5 0 0 1 9.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 8 8.5Z"
|
|
182
|
+
})
|
|
183
|
+
)
|
|
184
|
+
);
|
|
185
|
+
|
|
186
|
+
const IconAlignRight = React.forwardRef(
|
|
187
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
188
|
+
StyledIcon,
|
|
189
|
+
{
|
|
190
|
+
...props,
|
|
191
|
+
size,
|
|
192
|
+
viewBox: "0 0 24 24",
|
|
193
|
+
fill: "none",
|
|
194
|
+
ref: forwardRef2
|
|
195
|
+
},
|
|
196
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
197
|
+
stroke: "currentColor",
|
|
198
|
+
strokeLinecap: "round",
|
|
199
|
+
strokeLinejoin: "round",
|
|
200
|
+
strokeMiterlimit: 1.414,
|
|
201
|
+
strokeWidth: 2,
|
|
202
|
+
d: "M20 3v18"
|
|
203
|
+
}),
|
|
204
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
205
|
+
fill: "currentColor",
|
|
206
|
+
d: "M2 8.5A1.5 1.5 0 0 1 3.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 2 8.5Zm6 7A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Z"
|
|
207
|
+
})
|
|
208
|
+
)
|
|
209
|
+
);
|
|
210
|
+
|
|
211
|
+
const IconAlignTop = React.forwardRef(
|
|
212
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
213
|
+
StyledIcon,
|
|
214
|
+
{
|
|
215
|
+
...props,
|
|
216
|
+
size,
|
|
217
|
+
viewBox: "0 0 24 24",
|
|
218
|
+
fill: "none",
|
|
219
|
+
ref: forwardRef2
|
|
220
|
+
},
|
|
221
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
222
|
+
stroke: "currentColor",
|
|
223
|
+
strokeLinecap: "round",
|
|
224
|
+
strokeLinejoin: "round",
|
|
225
|
+
strokeMiterlimit: 1.414,
|
|
226
|
+
strokeWidth: 2,
|
|
227
|
+
d: "M3 3h18"
|
|
228
|
+
}),
|
|
229
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
230
|
+
fill: "currentColor",
|
|
231
|
+
d: "M7 8.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 0a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z"
|
|
232
|
+
})
|
|
233
|
+
)
|
|
234
|
+
);
|
|
235
|
+
|
|
34
236
|
const IconArrowBoxOut = React.forwardRef(
|
|
35
237
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
238
|
StyledIcon,
|
|
@@ -428,7 +630,7 @@ const IconBarThree = React.forwardRef(
|
|
|
428
630
|
)
|
|
429
631
|
);
|
|
430
632
|
|
|
431
|
-
const
|
|
633
|
+
const IconBellSlash = React.forwardRef(
|
|
432
634
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
433
635
|
StyledIcon,
|
|
434
636
|
{
|
|
@@ -441,10 +643,8 @@ const IconBracketsAngleSlash = React.forwardRef(
|
|
|
441
643
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
442
644
|
clipPath: "url(#a)"
|
|
443
645
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
strokeWidth: 2,
|
|
447
|
-
d: "m7 8-4 4 4 4m10-8 4 4-4 4M14 5l-4 14"
|
|
646
|
+
fill: "currentColor",
|
|
647
|
+
d: "M17 12.5h-1a1 1 0 0 0 .168.555L17 12.5Zm2.482 3.723.832-.555-.832.555Zm-.416.777v1-1ZM7 12l.857.514A1 1 0 0 0 8 12H7Zm-1.494.546a1 1 0 0 0 1.715 1.03l-1.715-1.03Zm-2.213 6.747a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM20.707 4.707a1 1 0 0 0-1.414-1.414l1.414 1.414ZM14 5.535a1 1 0 1 0 1.002-1.732L14 5.535ZM16 9v3.5h2V9h-2Zm.168 4.055 2.482 3.722 1.664-1.11-2.482-3.722-1.664 1.11Zm2.482 3.722a.5.5 0 0 1 .416-.777v2c1.198 0 1.912-1.335 1.248-2.332l-1.664 1.11ZM13 18a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm-1 1a1 1 0 0 1-1-1H9a3 3 0 0 0 3 3v-2Zm3.757-11.377C15.914 8.05 16 8.514 16 9h2c0-.724-.129-1.42-.366-2.066l-1.877.689ZM19.066 16H7v2h12.066v-2ZM8 12V9H6v3h2Zm0-3a4 4 0 0 1 4-4V3a6 6 0 0 0-6 6h2Zm-.779 4.575.636-1.06-1.714-1.03-.637 1.061 1.715 1.03Zm-2.514 7.132 16-16-1.414-1.414-16 16 1.414 1.414ZM12 5c.73 0 1.412.195 2 .535l1-1.732A5.977 5.977 0 0 0 12 3v2Z"
|
|
448
648
|
})),
|
|
449
649
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
450
650
|
id: "a"
|
|
@@ -454,7 +654,7 @@ const IconBracketsAngleSlash = React.forwardRef(
|
|
|
454
654
|
)
|
|
455
655
|
);
|
|
456
656
|
|
|
457
|
-
const
|
|
657
|
+
const IconBellTilt = React.forwardRef(
|
|
458
658
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
459
659
|
StyledIcon,
|
|
460
660
|
{
|
|
@@ -467,13 +667,9 @@ const IconBracketsCurlyCirclesThree = React.forwardRef(
|
|
|
467
667
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
468
668
|
clipPath: "url(#a)"
|
|
469
669
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
470
|
-
fill: "currentColor",
|
|
471
|
-
d: "M9 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm4.5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm4.5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
472
|
-
}), /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
473
670
|
stroke: "currentColor",
|
|
474
|
-
strokeLinecap: "round",
|
|
475
671
|
strokeWidth: 2,
|
|
476
|
-
d: "
|
|
672
|
+
d: "M11.646 17.795a2 2 0 0 1-3.465-2M8.583 9.1l1.5-2.598a5 5 0 0 1 8.66 5l-1.75 3.03.289 4.466a.5.5 0 0 1-.75.465L4.25 12.37a.5.5 0 0 1 .007-.87l4.326-2.402Z"
|
|
477
673
|
})),
|
|
478
674
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
479
675
|
id: "a"
|
|
@@ -483,7 +679,7 @@ const IconBracketsCurlyCirclesThree = React.forwardRef(
|
|
|
483
679
|
)
|
|
484
680
|
);
|
|
485
681
|
|
|
486
|
-
const
|
|
682
|
+
const IconBell = React.forwardRef(
|
|
487
683
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
488
684
|
StyledIcon,
|
|
489
685
|
{
|
|
@@ -494,14 +690,11 @@ const IconCamera = React.forwardRef(
|
|
|
494
690
|
ref: forwardRef2
|
|
495
691
|
},
|
|
496
692
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
497
|
-
stroke: "currentColor",
|
|
498
|
-
strokeLinecap: "round",
|
|
499
|
-
strokeWidth: 2,
|
|
500
693
|
clipPath: "url(#a)"
|
|
501
694
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
d: "
|
|
695
|
+
stroke: "currentColor",
|
|
696
|
+
strokeWidth: 2,
|
|
697
|
+
d: "M14 18a2 2 0 1 1-4 0m-3-6V9a5 5 0 0 1 10 0v3.5l2.482 3.723a.5.5 0 0 1-.416.777H4.883a.5.5 0 0 1-.429-.757L7 12Z"
|
|
505
698
|
})),
|
|
506
699
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
507
700
|
id: "a"
|
|
@@ -511,7 +704,7 @@ const IconCamera = React.forwardRef(
|
|
|
511
704
|
)
|
|
512
705
|
);
|
|
513
706
|
|
|
514
|
-
const
|
|
707
|
+
const IconBookmark = React.forwardRef(
|
|
515
708
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
516
709
|
StyledIcon,
|
|
517
710
|
{
|
|
@@ -521,21 +714,24 @@ const IconCardNumberThree = React.forwardRef(
|
|
|
521
714
|
fill: "none",
|
|
522
715
|
ref: forwardRef2
|
|
523
716
|
},
|
|
524
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
}),
|
|
528
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
717
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
718
|
+
clipPath: "url(#a)"
|
|
719
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
529
720
|
stroke: "currentColor",
|
|
530
721
|
strokeLinecap: "round",
|
|
531
722
|
strokeLinejoin: "round",
|
|
532
723
|
strokeWidth: 2,
|
|
533
|
-
d: "
|
|
534
|
-
})
|
|
724
|
+
d: "M17.5 3h-11a.5.5 0 0 0-.5.5V21l6-4.5 6 4.5V3.5a.5.5 0 0 0-.5-.5Z"
|
|
725
|
+
})),
|
|
726
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
727
|
+
id: "a"
|
|
728
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
729
|
+
d: "M0 0h24v24H0z"
|
|
730
|
+
})))
|
|
535
731
|
)
|
|
536
732
|
);
|
|
537
733
|
|
|
538
|
-
const
|
|
734
|
+
const IconBracketsAngleSlash = React.forwardRef(
|
|
539
735
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
540
736
|
StyledIcon,
|
|
541
737
|
{
|
|
@@ -545,20 +741,23 @@ const IconCard = React.forwardRef(
|
|
|
545
741
|
fill: "none",
|
|
546
742
|
ref: forwardRef2
|
|
547
743
|
},
|
|
548
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
744
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
745
|
+
clipPath: "url(#a)"
|
|
746
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
549
747
|
stroke: "currentColor",
|
|
550
748
|
strokeLinecap: "round",
|
|
551
749
|
strokeWidth: 2,
|
|
552
|
-
d: "
|
|
553
|
-
}),
|
|
554
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
750
|
+
d: "m7 8-4 4 4 4m10-8 4 4-4 4M14 5l-4 14"
|
|
751
|
+
})),
|
|
752
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
753
|
+
id: "a"
|
|
754
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
755
|
+
d: "M0 0h24v24H0z"
|
|
756
|
+
})))
|
|
558
757
|
)
|
|
559
758
|
);
|
|
560
759
|
|
|
561
|
-
const
|
|
760
|
+
const IconBracketsCurlyCirclesThree = React.forwardRef(
|
|
562
761
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
563
762
|
StyledIcon,
|
|
564
763
|
{
|
|
@@ -568,20 +767,152 @@ const IconCardsPoker = React.forwardRef(
|
|
|
568
767
|
fill: "none",
|
|
569
768
|
ref: forwardRef2
|
|
570
769
|
},
|
|
571
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
770
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
771
|
+
clipPath: "url(#a)"
|
|
772
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
773
|
+
fill: "currentColor",
|
|
774
|
+
d: "M9 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm4.5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm4.5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
775
|
+
}), /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
572
776
|
stroke: "currentColor",
|
|
573
777
|
strokeLinecap: "round",
|
|
574
778
|
strokeWidth: 2,
|
|
575
|
-
d: "
|
|
576
|
-
}),
|
|
577
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
)
|
|
583
|
-
|
|
584
|
-
|
|
779
|
+
d: "M5.004 20a2 2 0 0 1-2-2v-4c0-1.105-1.896-2-2-2-.105 0 2-.895 2-2V6a2 2 0 0 1 2-2M19 4a2 2 0 0 1 2 2v4c0 1.105 1.895 2 2 2 .105 0-2 .895-2 2v4a2 2 0 0 1-2 2"
|
|
780
|
+
})),
|
|
781
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
782
|
+
id: "a"
|
|
783
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
784
|
+
d: "M0 0h24v24H0z"
|
|
785
|
+
})))
|
|
786
|
+
)
|
|
787
|
+
);
|
|
788
|
+
|
|
789
|
+
const IconCalendarBlank = React.forwardRef(
|
|
790
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
791
|
+
StyledIcon,
|
|
792
|
+
{
|
|
793
|
+
...props,
|
|
794
|
+
size,
|
|
795
|
+
viewBox: "0 0 24 24",
|
|
796
|
+
fill: "none",
|
|
797
|
+
ref: forwardRef2
|
|
798
|
+
},
|
|
799
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
800
|
+
clipPath: "url(#a)"
|
|
801
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
802
|
+
stroke: "currentColor",
|
|
803
|
+
strokeLinecap: "round",
|
|
804
|
+
strokeLinejoin: "round",
|
|
805
|
+
strokeMiterlimit: 1.414,
|
|
806
|
+
strokeWidth: 2,
|
|
807
|
+
d: "M3 11v10h18V11M3 11V5h18v6M3 11h18m-5-8v4M8 3v4"
|
|
808
|
+
})),
|
|
809
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
810
|
+
id: "a"
|
|
811
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
812
|
+
d: "M0 0h24v24H0z"
|
|
813
|
+
})))
|
|
814
|
+
)
|
|
815
|
+
);
|
|
816
|
+
|
|
817
|
+
const IconCamera = React.forwardRef(
|
|
818
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
819
|
+
StyledIcon,
|
|
820
|
+
{
|
|
821
|
+
...props,
|
|
822
|
+
size,
|
|
823
|
+
viewBox: "0 0 24 24",
|
|
824
|
+
fill: "none",
|
|
825
|
+
ref: forwardRef2
|
|
826
|
+
},
|
|
827
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
828
|
+
stroke: "currentColor",
|
|
829
|
+
strokeLinecap: "round",
|
|
830
|
+
strokeWidth: 2,
|
|
831
|
+
clipPath: "url(#a)"
|
|
832
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
833
|
+
d: "M19 20H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 1 10 4h4a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 0 17 7h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2Z"
|
|
834
|
+
}), /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
835
|
+
d: "M9.322 15.554a3.62 3.62 0 1 0 5.356-4.87 3.62 3.62 0 0 0-5.356 4.87Z"
|
|
836
|
+
})),
|
|
837
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
838
|
+
id: "a"
|
|
839
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
840
|
+
d: "M0 0h24v24H0z"
|
|
841
|
+
})))
|
|
842
|
+
)
|
|
843
|
+
);
|
|
844
|
+
|
|
845
|
+
const IconCardNumberThree = React.forwardRef(
|
|
846
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
847
|
+
StyledIcon,
|
|
848
|
+
{
|
|
849
|
+
...props,
|
|
850
|
+
size,
|
|
851
|
+
viewBox: "0 0 24 24",
|
|
852
|
+
fill: "none",
|
|
853
|
+
ref: forwardRef2
|
|
854
|
+
},
|
|
855
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
856
|
+
fill: "currentColor",
|
|
857
|
+
d: "M9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm8 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
858
|
+
}),
|
|
859
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
860
|
+
stroke: "currentColor",
|
|
861
|
+
strokeLinecap: "round",
|
|
862
|
+
strokeLinejoin: "round",
|
|
863
|
+
strokeWidth: 2,
|
|
864
|
+
d: "M10.25 9h3.5l-2 3c.667 0 2 .559 2 2 0 1.5-1.354 2-2 2C10.5 16 10 15 10 15M6 3h12a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z"
|
|
865
|
+
})
|
|
866
|
+
)
|
|
867
|
+
);
|
|
868
|
+
|
|
869
|
+
const IconCard = React.forwardRef(
|
|
870
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
871
|
+
StyledIcon,
|
|
872
|
+
{
|
|
873
|
+
...props,
|
|
874
|
+
size,
|
|
875
|
+
viewBox: "0 0 24 24",
|
|
876
|
+
fill: "none",
|
|
877
|
+
ref: forwardRef2
|
|
878
|
+
},
|
|
879
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
880
|
+
stroke: "currentColor",
|
|
881
|
+
strokeLinecap: "round",
|
|
882
|
+
strokeWidth: 2,
|
|
883
|
+
d: "M7 14h10M3.5 5h17a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-.5.5h-17a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 .5-.5Z"
|
|
884
|
+
}),
|
|
885
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
886
|
+
fill: "currentColor",
|
|
887
|
+
d: "M18 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
888
|
+
})
|
|
889
|
+
)
|
|
890
|
+
);
|
|
891
|
+
|
|
892
|
+
const IconCardsPoker = React.forwardRef(
|
|
893
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
894
|
+
StyledIcon,
|
|
895
|
+
{
|
|
896
|
+
...props,
|
|
897
|
+
size,
|
|
898
|
+
viewBox: "0 0 24 24",
|
|
899
|
+
fill: "none",
|
|
900
|
+
ref: forwardRef2
|
|
901
|
+
},
|
|
902
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
903
|
+
stroke: "currentColor",
|
|
904
|
+
strokeLinecap: "round",
|
|
905
|
+
strokeWidth: 2,
|
|
906
|
+
d: "M11.182 6H3.5a.5.5 0 0 0-.5.5v14a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5V18M11.182 6H12.5a.5.5 0 0 1 .5.5V18M11.182 6V3.5a.5.5 0 0 1 .5-.5H20.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H13"
|
|
907
|
+
}),
|
|
908
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
909
|
+
fill: "currentColor",
|
|
910
|
+
d: "M9.5 13.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM7 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
911
|
+
})
|
|
912
|
+
)
|
|
913
|
+
);
|
|
914
|
+
|
|
915
|
+
const IconChartBarYSimple = React.forwardRef(
|
|
585
916
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
586
917
|
StyledIcon,
|
|
587
918
|
{
|
|
@@ -907,6 +1238,56 @@ const IconClockCounterClockwise = React.forwardRef(
|
|
|
907
1238
|
)
|
|
908
1239
|
);
|
|
909
1240
|
|
|
1241
|
+
const IconClockOvertime = React.forwardRef(
|
|
1242
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1243
|
+
StyledIcon,
|
|
1244
|
+
{
|
|
1245
|
+
...props,
|
|
1246
|
+
size,
|
|
1247
|
+
viewBox: "0 0 24 24",
|
|
1248
|
+
fill: "none",
|
|
1249
|
+
ref: forwardRef2
|
|
1250
|
+
},
|
|
1251
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1252
|
+
stroke: "currentColor",
|
|
1253
|
+
strokeLinecap: "square",
|
|
1254
|
+
strokeMiterlimit: 1.414,
|
|
1255
|
+
strokeWidth: 2,
|
|
1256
|
+
d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1257
|
+
}),
|
|
1258
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1259
|
+
fill: "currentColor",
|
|
1260
|
+
d: "M12 12c.88.44 2.921 1.267 4.137 1.8.25.11.362.401.229.639a5 5 0 1 1-4.865-7.414c.274-.028.499.2.499.477V12Z"
|
|
1261
|
+
})
|
|
1262
|
+
)
|
|
1263
|
+
);
|
|
1264
|
+
|
|
1265
|
+
const IconClock = React.forwardRef(
|
|
1266
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1267
|
+
StyledIcon,
|
|
1268
|
+
{
|
|
1269
|
+
...props,
|
|
1270
|
+
size,
|
|
1271
|
+
viewBox: "0 0 24 24",
|
|
1272
|
+
fill: "none",
|
|
1273
|
+
ref: forwardRef2
|
|
1274
|
+
},
|
|
1275
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1276
|
+
clipPath: "url(#a)"
|
|
1277
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1278
|
+
stroke: "currentColor",
|
|
1279
|
+
strokeLinecap: "round",
|
|
1280
|
+
strokeWidth: 2,
|
|
1281
|
+
d: "M11 7.4v4.05l2.7 2.25M20 11a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1282
|
+
})),
|
|
1283
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1284
|
+
id: "a"
|
|
1285
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1286
|
+
d: "M0 0h24v24H0z"
|
|
1287
|
+
})))
|
|
1288
|
+
)
|
|
1289
|
+
);
|
|
1290
|
+
|
|
910
1291
|
const IconCluster = React.forwardRef(
|
|
911
1292
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
912
1293
|
StyledIcon,
|
|
@@ -1114,6 +1495,61 @@ const IconCursor = React.forwardRef(
|
|
|
1114
1495
|
)
|
|
1115
1496
|
);
|
|
1116
1497
|
|
|
1498
|
+
const IconDistributeHorizontal = React.forwardRef(
|
|
1499
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1500
|
+
StyledIcon,
|
|
1501
|
+
{
|
|
1502
|
+
...props,
|
|
1503
|
+
size,
|
|
1504
|
+
viewBox: "0 0 24 24",
|
|
1505
|
+
fill: "none",
|
|
1506
|
+
ref: forwardRef2
|
|
1507
|
+
},
|
|
1508
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1509
|
+
stroke: "currentColor",
|
|
1510
|
+
strokeLinecap: "round",
|
|
1511
|
+
strokeWidth: 2,
|
|
1512
|
+
d: "M4 3v18M20 3v18"
|
|
1513
|
+
}),
|
|
1514
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1515
|
+
width: 4,
|
|
1516
|
+
height: 10,
|
|
1517
|
+
x: 10,
|
|
1518
|
+
y: 7,
|
|
1519
|
+
fill: "currentColor",
|
|
1520
|
+
rx: 2
|
|
1521
|
+
})
|
|
1522
|
+
)
|
|
1523
|
+
);
|
|
1524
|
+
|
|
1525
|
+
const IconDistributeVertical = React.forwardRef(
|
|
1526
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1527
|
+
StyledIcon,
|
|
1528
|
+
{
|
|
1529
|
+
...props,
|
|
1530
|
+
size,
|
|
1531
|
+
viewBox: "0 0 24 24",
|
|
1532
|
+
fill: "none",
|
|
1533
|
+
ref: forwardRef2
|
|
1534
|
+
},
|
|
1535
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1536
|
+
stroke: "currentColor",
|
|
1537
|
+
strokeLinecap: "round",
|
|
1538
|
+
strokeWidth: 2,
|
|
1539
|
+
d: "M21 4H3m18 16H3"
|
|
1540
|
+
}),
|
|
1541
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1542
|
+
width: 4,
|
|
1543
|
+
height: 10,
|
|
1544
|
+
x: 17,
|
|
1545
|
+
y: 10,
|
|
1546
|
+
fill: "currentColor",
|
|
1547
|
+
rx: 2,
|
|
1548
|
+
transform: "rotate(90 17 10)"
|
|
1549
|
+
})
|
|
1550
|
+
)
|
|
1551
|
+
);
|
|
1552
|
+
|
|
1117
1553
|
const IconEnvelope = React.forwardRef(
|
|
1118
1554
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1119
1555
|
StyledIcon,
|
|
@@ -1278,7 +1714,7 @@ const IconGlobe = React.forwardRef(
|
|
|
1278
1714
|
)
|
|
1279
1715
|
);
|
|
1280
1716
|
|
|
1281
|
-
const
|
|
1717
|
+
const IconGraduationCap = React.forwardRef(
|
|
1282
1718
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1283
1719
|
StyledIcon,
|
|
1284
1720
|
{
|
|
@@ -1288,16 +1724,25 @@ const IconHandFilled = React.forwardRef(
|
|
|
1288
1724
|
fill: "none",
|
|
1289
1725
|
ref: forwardRef2
|
|
1290
1726
|
},
|
|
1291
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1727
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1728
|
+
clipPath: "url(#a)"
|
|
1729
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1730
|
+
stroke: "currentColor",
|
|
1731
|
+
strokeLinecap: "round",
|
|
1732
|
+
strokeLinejoin: "round",
|
|
1733
|
+
strokeMiterlimit: 1.414,
|
|
1734
|
+
strokeWidth: 2,
|
|
1735
|
+
d: "M2 8.23 12.5 3 23 8.23 19.684 9.8M2 8.23V20M2 8.23 5.316 9.8m0 0 7.184 3.4 7.184-3.4m-14.368 0v3.016A7.184 7.184 0 0 0 12.5 20v0a7.184 7.184 0 0 0 7.184-7.184V9.8"
|
|
1736
|
+
})),
|
|
1737
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1738
|
+
id: "a"
|
|
1739
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1740
|
+
d: "M0 0h24v24H0z"
|
|
1741
|
+
})))
|
|
1297
1742
|
)
|
|
1298
1743
|
);
|
|
1299
1744
|
|
|
1300
|
-
const
|
|
1745
|
+
const IconGridFour = React.forwardRef(
|
|
1301
1746
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1302
1747
|
StyledIcon,
|
|
1303
1748
|
{
|
|
@@ -1310,8 +1755,11 @@ const IconHand = React.forwardRef(
|
|
|
1310
1755
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1311
1756
|
clipPath: "url(#a)"
|
|
1312
1757
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1313
|
-
|
|
1314
|
-
|
|
1758
|
+
stroke: "currentColor",
|
|
1759
|
+
strokeLinecap: "round",
|
|
1760
|
+
strokeLinejoin: "round",
|
|
1761
|
+
strokeWidth: 2,
|
|
1762
|
+
d: "M12 3H3.25a.25.25 0 0 0-.25.25V12m9-9h8.75a.25.25 0 0 1 .25.25V12m-9-9v18m0 0h8.75a.25.25 0 0 0 .25-.25V12m-9 9H3.25a.25.25 0 0 1-.25-.25V12m0 0h18"
|
|
1315
1763
|
})),
|
|
1316
1764
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1317
1765
|
id: "a"
|
|
@@ -1321,7 +1769,7 @@ const IconHand = React.forwardRef(
|
|
|
1321
1769
|
)
|
|
1322
1770
|
);
|
|
1323
1771
|
|
|
1324
|
-
const
|
|
1772
|
+
const IconGridSix = React.forwardRef(
|
|
1325
1773
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1326
1774
|
StyledIcon,
|
|
1327
1775
|
{
|
|
@@ -1331,11 +1779,81 @@ const IconHouse = React.forwardRef(
|
|
|
1331
1779
|
fill: "none",
|
|
1332
1780
|
ref: forwardRef2
|
|
1333
1781
|
},
|
|
1334
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1782
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1783
|
+
clipPath: "url(#a)"
|
|
1784
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1785
|
+
stroke: "currentColor",
|
|
1786
|
+
strokeLinecap: "round",
|
|
1787
|
+
strokeLinejoin: "round",
|
|
1788
|
+
strokeWidth: 2,
|
|
1789
|
+
d: "M12 3H3.25a.25.25 0 0 0-.25.25V9m9-6h8.75a.25.25 0 0 1 .25.25V9m-9-6v18m0 0h8.75a.25.25 0 0 0 .25-.25V15m-9 6H3.25a.25.25 0 0 1-.25-.25V15m0-6h18M3 9v6m18-6v6M3 15h18"
|
|
1790
|
+
})),
|
|
1791
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1792
|
+
id: "a"
|
|
1793
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1794
|
+
d: "M0 0h24v24H0z"
|
|
1795
|
+
})))
|
|
1796
|
+
)
|
|
1797
|
+
);
|
|
1798
|
+
|
|
1799
|
+
const IconHandFilled = React.forwardRef(
|
|
1800
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1801
|
+
StyledIcon,
|
|
1802
|
+
{
|
|
1803
|
+
...props,
|
|
1804
|
+
size,
|
|
1805
|
+
viewBox: "0 0 24 24",
|
|
1806
|
+
fill: "none",
|
|
1807
|
+
ref: forwardRef2
|
|
1808
|
+
},
|
|
1809
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1810
|
+
fill: "currentColor",
|
|
1811
|
+
fillRule: "evenodd",
|
|
1812
|
+
d: "M19 17c0 6.27-8.5 8-12.5 3l-4.542-6.358a.991.991 0 0 1 .062-1.235c.11-.123.195-.217.205-.222a.916.916 0 0 1 1.042-.098c.03.008 3.233 1.845 3.233 1.845V5c0-.622.378-1 1-1 .623 0 1 .378 1 1v5.25a.75.75 0 0 0 1.5 0V3c0-.623.377-1 1-1s1 .377 1 1v7.25a.75.75 0 0 0 1.5 0V4c0-.623.377-1 1-1s1 .377 1 1v6.25a.75.75 0 0 0 1.5 0V6c0-.622.378-1 1-1s1 .378 1 1v11Z",
|
|
1813
|
+
clipRule: "evenodd"
|
|
1814
|
+
})
|
|
1815
|
+
)
|
|
1816
|
+
);
|
|
1817
|
+
|
|
1818
|
+
const IconHand = React.forwardRef(
|
|
1819
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1820
|
+
StyledIcon,
|
|
1821
|
+
{
|
|
1822
|
+
...props,
|
|
1823
|
+
size,
|
|
1824
|
+
viewBox: "0 0 24 24",
|
|
1825
|
+
fill: "none",
|
|
1826
|
+
ref: forwardRef2
|
|
1827
|
+
},
|
|
1828
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1829
|
+
clipPath: "url(#a)"
|
|
1830
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1831
|
+
fill: "currentColor",
|
|
1832
|
+
d: "m2.748 14.261-.847.531a.994.994 0 0 0 .042.063l.805-.594Zm18.29-7.511h1v-.019l-.001-.018-1 .037Zm-14 7.5-.718.697a1 1 0 0 0 1.717-.697h-1Zm2.44-2.5a1 1 0 1 0 2 0h-2Zm3.5-.5a1 1 0 1 0 2 0h-2Zm3.5 1a1 1 0 1 0 2 0h-2Zm-11.13.263-.716.697.717-.697Zm-1.432-.634-.067-.997.067.997Zm2.86 7.715-.657.755.657-.755Zm-.49-.54.805-.593-.804.594ZM20.038 6.75v9.375h2V6.75h-2ZM4.632 13.21l1.688 1.737 1.434-1.394-1.688-1.737-1.434 1.393Zm3.405 1.04v-8.5h-2v8.5h2Zm-4.354-1.292c.016-.015.081-.066.3-.08l-.134-1.996c-.439.029-1.072.155-1.578.66l1.412 1.416Zm-.088.772a.623.623 0 0 1 .088-.772l-1.412-1.416a2.623 2.623 0 0 0-.37 3.25l1.694-1.062Zm4.442-7.98c0-.443.327-.75.713-.75V3C7.203 3 6.037 4.26 6.037 5.75h2ZM8.75 5a.73.73 0 0 1 .727.75h2C11.477 4.249 10.286 3 8.75 3v2Zm2.727.75v-2h-2v2h2Zm-1-1h.06v-2h-.06v2Zm1-1A.77.77 0 0 1 12.25 3V1c-1.502 0-2.773 1.214-2.773 2.75h2ZM12.25 3a.73.73 0 0 1 .727.75h2c0-1.501-1.191-2.75-2.727-2.75v2Zm.727.75v1h2v-1h-2Zm5.5 3c0-.37.352-.75.81-.75V4c-1.474 0-2.81 1.188-2.81 2.75h2Zm.81-.75c.393 0 .732.288.751.787l1.999-.074C21.98 5.212 20.827 4 19.287 4v2Zm-4.31-1.25c0-.247.084-.425.194-.537.105-.106.292-.213.616-.213V2c-.806 0-1.525.285-2.042.812-.513.521-.768 1.219-.768 1.938h2Zm.81-.75c.37 0 .69.29.69.75h2c0-1.472-1.126-2.75-2.69-2.75v2Zm.69.75v2h2v-2h-2Zm-7 1v6h2v-6h-2Zm3.5-1v6.5h2v-6.5h-2Zm3.5 1.5v6h2v-6h-2Zm3.56 9.875c0 1.885-1.676 3.689-4.341 4.465-2.6.756-5.8.393-8.264-1.75l-1.313 1.509c3.054 2.656 6.985 3.078 10.136 2.16 3.086-.898 5.782-3.228 5.782-6.384h-2ZM7.091 18.461l-3.539-4.794-1.609 1.188 3.54 4.794L7.09 18.46Zm-1.025-6.645c-.501-.516-1.287-.997-2.217-.934l.134 1.995c.148-.01.397.073.649.332l1.434-1.393Zm1.366 7.024a2.348 2.348 0 0 1-.34-.38l-1.61 1.189c.176.238.386.481.637.7l1.313-1.51Z"
|
|
1833
|
+
})),
|
|
1834
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1835
|
+
id: "a"
|
|
1836
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1837
|
+
d: "M0 0h24v24H0z"
|
|
1838
|
+
})))
|
|
1839
|
+
)
|
|
1840
|
+
);
|
|
1841
|
+
|
|
1842
|
+
const IconHouse = React.forwardRef(
|
|
1843
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1844
|
+
StyledIcon,
|
|
1845
|
+
{
|
|
1846
|
+
...props,
|
|
1847
|
+
size,
|
|
1848
|
+
viewBox: "0 0 24 24",
|
|
1849
|
+
fill: "none",
|
|
1850
|
+
ref: forwardRef2
|
|
1851
|
+
},
|
|
1852
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1853
|
+
fill: "currentColor",
|
|
1854
|
+
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"
|
|
1855
|
+
})
|
|
1856
|
+
)
|
|
1339
1857
|
);
|
|
1340
1858
|
|
|
1341
1859
|
const IconImage = React.forwardRef(
|
|
@@ -1478,7 +1996,7 @@ const IconLaptop = React.forwardRef(
|
|
|
1478
1996
|
)
|
|
1479
1997
|
);
|
|
1480
1998
|
|
|
1481
|
-
const
|
|
1999
|
+
const IconLayout = React.forwardRef(
|
|
1482
2000
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1483
2001
|
StyledIcon,
|
|
1484
2002
|
{
|
|
@@ -1493,8 +2011,9 @@ const IconLineDiagonal = React.forwardRef(
|
|
|
1493
2011
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1494
2012
|
stroke: "currentColor",
|
|
1495
2013
|
strokeLinecap: "round",
|
|
2014
|
+
strokeLinejoin: "round",
|
|
1496
2015
|
strokeWidth: 2,
|
|
1497
|
-
d: "
|
|
2016
|
+
d: "M3 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12"
|
|
1498
2017
|
})),
|
|
1499
2018
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1500
2019
|
id: "a"
|
|
@@ -1504,7 +2023,7 @@ const IconLineDiagonal = React.forwardRef(
|
|
|
1504
2023
|
)
|
|
1505
2024
|
);
|
|
1506
2025
|
|
|
1507
|
-
const
|
|
2026
|
+
const IconLifesaver = React.forwardRef(
|
|
1508
2027
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1509
2028
|
StyledIcon,
|
|
1510
2029
|
{
|
|
@@ -1514,16 +2033,24 @@ const IconLink = React.forwardRef(
|
|
|
1514
2033
|
fill: "none",
|
|
1515
2034
|
ref: forwardRef2
|
|
1516
2035
|
},
|
|
1517
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2036
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2037
|
+
clipPath: "url(#a)"
|
|
2038
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1518
2039
|
stroke: "currentColor",
|
|
1519
|
-
strokeLinecap: "
|
|
2040
|
+
strokeLinecap: "square",
|
|
2041
|
+
strokeMiterlimit: 1.414,
|
|
1520
2042
|
strokeWidth: 2,
|
|
1521
|
-
d: "
|
|
1522
|
-
})
|
|
2043
|
+
d: "M14.828 14.828a4 4 0 0 1-5.656 0m5.656 0a4 4 0 0 0 0-5.656m0 5.656 3.182 3.182m-8.838-3.182a4 4 0 0 1 0-5.656m0 5.656L5.99 18.01m3.182-8.838a4 4 0 0 1 5.656 0m-5.656 0L5.99 5.99m8.838 3.182L18.01 5.99m.354 12.374A9 9 0 1 1 5.636 5.636a9 9 0 0 1 12.728 12.728Z"
|
|
2044
|
+
})),
|
|
2045
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2046
|
+
id: "a"
|
|
2047
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2048
|
+
d: "M0 0h24v24H0z"
|
|
2049
|
+
})))
|
|
1523
2050
|
)
|
|
1524
2051
|
);
|
|
1525
2052
|
|
|
1526
|
-
const
|
|
2053
|
+
const IconLightning = React.forwardRef(
|
|
1527
2054
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1528
2055
|
StyledIcon,
|
|
1529
2056
|
{
|
|
@@ -1533,22 +2060,25 @@ const IconLockClosed = React.forwardRef(
|
|
|
1533
2060
|
fill: "none",
|
|
1534
2061
|
ref: forwardRef2
|
|
1535
2062
|
},
|
|
1536
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
r: 1,
|
|
1540
|
-
fill: "currentColor"
|
|
1541
|
-
}),
|
|
1542
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2063
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2064
|
+
clipPath: "url(#a)"
|
|
2065
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1543
2066
|
stroke: "currentColor",
|
|
1544
|
-
strokeLinecap: "
|
|
2067
|
+
strokeLinecap: "square",
|
|
2068
|
+
strokeLinejoin: "round",
|
|
2069
|
+
strokeMiterlimit: 1.414,
|
|
1545
2070
|
strokeWidth: 2,
|
|
1546
|
-
d: "
|
|
1547
|
-
})
|
|
2071
|
+
d: "M11.973 1.867 4.231 14.62a.25.25 0 0 0 .213.38H11.5l-.44 7.04c-.016.258.32.368.46.152l8.232-12.807a.25.25 0 0 0-.21-.385H12l.437-6.987c.016-.261-.328-.37-.463-.146Z"
|
|
2072
|
+
})),
|
|
2073
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2074
|
+
id: "a"
|
|
2075
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2076
|
+
d: "M0 0h24v24H0z"
|
|
2077
|
+
})))
|
|
1548
2078
|
)
|
|
1549
2079
|
);
|
|
1550
2080
|
|
|
1551
|
-
const
|
|
2081
|
+
const IconLineDiagonal = React.forwardRef(
|
|
1552
2082
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1553
2083
|
StyledIcon,
|
|
1554
2084
|
{
|
|
@@ -1558,22 +2088,23 @@ const IconLockOpen = React.forwardRef(
|
|
|
1558
2088
|
fill: "none",
|
|
1559
2089
|
ref: forwardRef2
|
|
1560
2090
|
},
|
|
1561
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
r: 1,
|
|
1565
|
-
fill: "currentColor"
|
|
1566
|
-
}),
|
|
1567
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2091
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2092
|
+
clipPath: "url(#a)"
|
|
2093
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1568
2094
|
stroke: "currentColor",
|
|
1569
2095
|
strokeLinecap: "round",
|
|
1570
2096
|
strokeWidth: 2,
|
|
1571
|
-
d: "
|
|
1572
|
-
})
|
|
2097
|
+
d: "M4 20 20 4"
|
|
2098
|
+
})),
|
|
2099
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2100
|
+
id: "a"
|
|
2101
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2102
|
+
d: "M0 0h24v24H0z"
|
|
2103
|
+
})))
|
|
1573
2104
|
)
|
|
1574
2105
|
);
|
|
1575
2106
|
|
|
1576
|
-
const
|
|
2107
|
+
const IconLinesThreeHorizontalLineVerticalCenter = React.forwardRef(
|
|
1577
2108
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1578
2109
|
StyledIcon,
|
|
1579
2110
|
{
|
|
@@ -1583,16 +2114,24 @@ const IconMagnifyingGlass = React.forwardRef(
|
|
|
1583
2114
|
fill: "none",
|
|
1584
2115
|
ref: forwardRef2
|
|
1585
2116
|
},
|
|
1586
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2117
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2118
|
+
clipPath: "url(#a)"
|
|
2119
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1587
2120
|
stroke: "currentColor",
|
|
1588
2121
|
strokeLinecap: "round",
|
|
2122
|
+
strokeLinejoin: "round",
|
|
1589
2123
|
strokeWidth: 2,
|
|
1590
|
-
d: "
|
|
1591
|
-
})
|
|
2124
|
+
d: "M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14"
|
|
2125
|
+
})),
|
|
2126
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2127
|
+
id: "a"
|
|
2128
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2129
|
+
d: "M0 0h24v24H0z"
|
|
2130
|
+
})))
|
|
1592
2131
|
)
|
|
1593
2132
|
);
|
|
1594
2133
|
|
|
1595
|
-
const
|
|
2134
|
+
const IconLinesThreeHorizontal = React.forwardRef(
|
|
1596
2135
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1597
2136
|
StyledIcon,
|
|
1598
2137
|
{
|
|
@@ -1608,7 +2147,7 @@ const IconMicrophoneSlash = React.forwardRef(
|
|
|
1608
2147
|
stroke: "currentColor",
|
|
1609
2148
|
strokeLinecap: "round",
|
|
1610
2149
|
strokeWidth: 2,
|
|
1611
|
-
d: "
|
|
2150
|
+
d: "M4 5h16M4 12h16M4 19h16"
|
|
1612
2151
|
})),
|
|
1613
2152
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1614
2153
|
id: "a"
|
|
@@ -1618,7 +2157,7 @@ const IconMicrophoneSlash = React.forwardRef(
|
|
|
1618
2157
|
)
|
|
1619
2158
|
);
|
|
1620
2159
|
|
|
1621
|
-
const
|
|
2160
|
+
const IconLinesThreeVertical = React.forwardRef(
|
|
1622
2161
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1623
2162
|
StyledIcon,
|
|
1624
2163
|
{
|
|
@@ -1634,7 +2173,7 @@ const IconMicrophone = React.forwardRef(
|
|
|
1634
2173
|
stroke: "currentColor",
|
|
1635
2174
|
strokeLinecap: "round",
|
|
1636
2175
|
strokeWidth: 2,
|
|
1637
|
-
d: "
|
|
2176
|
+
d: "M20 4v16M12 4v16M4 4v16"
|
|
1638
2177
|
})),
|
|
1639
2178
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1640
2179
|
id: "a"
|
|
@@ -1644,7 +2183,7 @@ const IconMicrophone = React.forwardRef(
|
|
|
1644
2183
|
)
|
|
1645
2184
|
);
|
|
1646
2185
|
|
|
1647
|
-
const
|
|
2186
|
+
const IconLink = React.forwardRef(
|
|
1648
2187
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1649
2188
|
StyledIcon,
|
|
1650
2189
|
{
|
|
@@ -1658,12 +2197,12 @@ const IconMinus = React.forwardRef(
|
|
|
1658
2197
|
stroke: "currentColor",
|
|
1659
2198
|
strokeLinecap: "round",
|
|
1660
2199
|
strokeWidth: 2,
|
|
1661
|
-
d: "
|
|
2200
|
+
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"
|
|
1662
2201
|
})
|
|
1663
2202
|
)
|
|
1664
2203
|
);
|
|
1665
2204
|
|
|
1666
|
-
const
|
|
2205
|
+
const IconLockClosed = React.forwardRef(
|
|
1667
2206
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1668
2207
|
StyledIcon,
|
|
1669
2208
|
{
|
|
@@ -1673,20 +2212,47 @@ const IconMouse = React.forwardRef(
|
|
|
1673
2212
|
fill: "none",
|
|
1674
2213
|
ref: forwardRef2
|
|
1675
2214
|
},
|
|
2215
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
2216
|
+
cx: 12,
|
|
2217
|
+
cy: 16,
|
|
2218
|
+
r: 1,
|
|
2219
|
+
fill: "currentColor"
|
|
2220
|
+
}),
|
|
1676
2221
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1677
2222
|
stroke: "currentColor",
|
|
1678
2223
|
strokeLinecap: "round",
|
|
1679
2224
|
strokeWidth: 2,
|
|
1680
|
-
d: "
|
|
2225
|
+
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"
|
|
2226
|
+
})
|
|
2227
|
+
)
|
|
2228
|
+
);
|
|
2229
|
+
|
|
2230
|
+
const IconLockOpen = React.forwardRef(
|
|
2231
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2232
|
+
StyledIcon,
|
|
2233
|
+
{
|
|
2234
|
+
...props,
|
|
2235
|
+
size,
|
|
2236
|
+
viewBox: "0 0 24 24",
|
|
2237
|
+
fill: "none",
|
|
2238
|
+
ref: forwardRef2
|
|
2239
|
+
},
|
|
2240
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
2241
|
+
cx: 12,
|
|
2242
|
+
cy: 16,
|
|
2243
|
+
r: 1,
|
|
2244
|
+
fill: "currentColor"
|
|
1681
2245
|
}),
|
|
1682
2246
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1683
|
-
|
|
1684
|
-
|
|
2247
|
+
stroke: "currentColor",
|
|
2248
|
+
strokeLinecap: "round",
|
|
2249
|
+
strokeWidth: 2,
|
|
2250
|
+
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"
|
|
1685
2251
|
})
|
|
1686
2252
|
)
|
|
1687
2253
|
);
|
|
1688
2254
|
|
|
1689
|
-
const
|
|
2255
|
+
const IconMagnet = React.forwardRef(
|
|
1690
2256
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1691
2257
|
StyledIcon,
|
|
1692
2258
|
{
|
|
@@ -1700,8 +2266,10 @@ const IconParallelogram = React.forwardRef(
|
|
|
1700
2266
|
clipPath: "url(#a)"
|
|
1701
2267
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1702
2268
|
stroke: "currentColor",
|
|
2269
|
+
strokeLinecap: "square",
|
|
2270
|
+
strokeMiterlimit: 1.414,
|
|
1703
2271
|
strokeWidth: 2,
|
|
1704
|
-
d: "
|
|
2272
|
+
d: "M8.435 4.828 4.95 8.314a7 7 0 0 0 0 9.9l.641.64a7 7 0 0 0 9.858.041l3.556-3.497M8.435 4.828l2.475-2.474a.5.5 0 0 1 .707 0l2.293 2.293a.5.5 0 0 1 0 .707l-2.475 2.474m-3-3 3 3m0 0-3.314 3.314C6.95 12.314 7 14 8.121 15.385l.522.522c1.357 1.093 3.071 1.171 4.243 0l3.314-3.314m0 0 2.475-2.475a.5.5 0 0 1 .707 0l2.118 2.119a.5.5 0 0 1-.003.71l-2.492 2.451M16.2 12.593l2.805 2.805"
|
|
1705
2273
|
})),
|
|
1706
2274
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1707
2275
|
id: "a"
|
|
@@ -1711,7 +2279,26 @@ const IconParallelogram = React.forwardRef(
|
|
|
1711
2279
|
)
|
|
1712
2280
|
);
|
|
1713
2281
|
|
|
1714
|
-
const
|
|
2282
|
+
const IconMagnifyingGlass = React.forwardRef(
|
|
2283
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2284
|
+
StyledIcon,
|
|
2285
|
+
{
|
|
2286
|
+
...props,
|
|
2287
|
+
size,
|
|
2288
|
+
viewBox: "0 0 24 24",
|
|
2289
|
+
fill: "none",
|
|
2290
|
+
ref: forwardRef2
|
|
2291
|
+
},
|
|
2292
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2293
|
+
stroke: "currentColor",
|
|
2294
|
+
strokeLinecap: "round",
|
|
2295
|
+
strokeWidth: 2,
|
|
2296
|
+
d: "m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"
|
|
2297
|
+
})
|
|
2298
|
+
)
|
|
2299
|
+
);
|
|
2300
|
+
|
|
2301
|
+
const IconMap = React.forwardRef(
|
|
1715
2302
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1716
2303
|
StyledIcon,
|
|
1717
2304
|
{
|
|
@@ -1726,8 +2313,10 @@ const IconPauseCircle = React.forwardRef(
|
|
|
1726
2313
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1727
2314
|
stroke: "currentColor",
|
|
1728
2315
|
strokeLinecap: "round",
|
|
2316
|
+
strokeLinejoin: "round",
|
|
2317
|
+
strokeMiterlimit: 1.414,
|
|
1729
2318
|
strokeWidth: 2,
|
|
1730
|
-
d: "
|
|
2319
|
+
d: "M9 4 3 6v15l6-2.5M9 4l6 2M9 4v14.5M15 6l6-2v14.5L15 21m0-15v15m0 0-6-2.5"
|
|
1731
2320
|
})),
|
|
1732
2321
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1733
2322
|
id: "a"
|
|
@@ -1737,7 +2326,7 @@ const IconPauseCircle = React.forwardRef(
|
|
|
1737
2326
|
)
|
|
1738
2327
|
);
|
|
1739
2328
|
|
|
1740
|
-
const
|
|
2329
|
+
const IconMicrophoneSlash = React.forwardRef(
|
|
1741
2330
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1742
2331
|
StyledIcon,
|
|
1743
2332
|
{
|
|
@@ -1752,9 +2341,8 @@ const IconPdf = React.forwardRef(
|
|
|
1752
2341
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1753
2342
|
stroke: "currentColor",
|
|
1754
2343
|
strokeLinecap: "round",
|
|
1755
|
-
strokeLinejoin: "round",
|
|
1756
2344
|
strokeWidth: 2,
|
|
1757
|
-
d: "
|
|
2345
|
+
d: "M19 8v3a7 7 0 0 1-7 7m0 0v3m0-3a6.984 6.984 0 0 1-5.284-2.409M15 7v4a3 3 0 0 1-5.387 1.818M15 7 4 18M15 7l4-4M5 8v3c0 .34.024.673.07 1M9 7.5V6a3 3 0 0 1 4.5-2.599"
|
|
1758
2346
|
})),
|
|
1759
2347
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1760
2348
|
id: "a"
|
|
@@ -1764,7 +2352,7 @@ const IconPdf = React.forwardRef(
|
|
|
1764
2352
|
)
|
|
1765
2353
|
);
|
|
1766
2354
|
|
|
1767
|
-
const
|
|
2355
|
+
const IconMicrophone = React.forwardRef(
|
|
1768
2356
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1769
2357
|
StyledIcon,
|
|
1770
2358
|
{
|
|
@@ -1774,16 +2362,23 @@ const IconPlaceholder = React.forwardRef(
|
|
|
1774
2362
|
fill: "none",
|
|
1775
2363
|
ref: forwardRef2
|
|
1776
2364
|
},
|
|
1777
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2365
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2366
|
+
clipPath: "url(#a)"
|
|
2367
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1778
2368
|
stroke: "currentColor",
|
|
1779
2369
|
strokeLinecap: "round",
|
|
1780
2370
|
strokeWidth: 2,
|
|
1781
|
-
d: "
|
|
1782
|
-
})
|
|
2371
|
+
d: "M5 8v3a7 7 0 0 0 7 7m7-10v3a7 7 0 0 1-7 7m0 0v3m3-15v5a3 3 0 1 1-6 0V6a3 3 0 1 1 6 0Z"
|
|
2372
|
+
})),
|
|
2373
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2374
|
+
id: "a"
|
|
2375
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2376
|
+
d: "M0 0h24v24H0z"
|
|
2377
|
+
})))
|
|
1783
2378
|
)
|
|
1784
2379
|
);
|
|
1785
2380
|
|
|
1786
|
-
const
|
|
2381
|
+
const IconMinus = React.forwardRef(
|
|
1787
2382
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1788
2383
|
StyledIcon,
|
|
1789
2384
|
{
|
|
@@ -1793,16 +2388,155 @@ const IconPlayCircle = React.forwardRef(
|
|
|
1793
2388
|
fill: "none",
|
|
1794
2389
|
ref: forwardRef2
|
|
1795
2390
|
},
|
|
1796
|
-
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
1797
|
-
cx: 12,
|
|
1798
|
-
cy: 12,
|
|
1799
|
-
r: 8.5,
|
|
1800
|
-
stroke: "currentColor",
|
|
1801
|
-
strokeWidth: 2
|
|
1802
|
-
}),
|
|
1803
2391
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1804
|
-
|
|
1805
|
-
|
|
2392
|
+
stroke: "currentColor",
|
|
2393
|
+
strokeLinecap: "round",
|
|
2394
|
+
strokeWidth: 2,
|
|
2395
|
+
d: "M5 12h14"
|
|
2396
|
+
})
|
|
2397
|
+
)
|
|
2398
|
+
);
|
|
2399
|
+
|
|
2400
|
+
const IconMouse = React.forwardRef(
|
|
2401
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2402
|
+
StyledIcon,
|
|
2403
|
+
{
|
|
2404
|
+
...props,
|
|
2405
|
+
size,
|
|
2406
|
+
viewBox: "0 0 24 24",
|
|
2407
|
+
fill: "none",
|
|
2408
|
+
ref: forwardRef2
|
|
2409
|
+
},
|
|
2410
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2411
|
+
stroke: "currentColor",
|
|
2412
|
+
strokeLinecap: "round",
|
|
2413
|
+
strokeWidth: 2,
|
|
2414
|
+
d: "M12 8v3M9 3.5h6a4 4 0 0 1 4 4v6a7 7 0 1 1-14 0v-6a4 4 0 0 1 4-4Z"
|
|
2415
|
+
}),
|
|
2416
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2417
|
+
fill: "currentColor",
|
|
2418
|
+
d: "M0 0h.001v.001H0V0Z"
|
|
2419
|
+
})
|
|
2420
|
+
)
|
|
2421
|
+
);
|
|
2422
|
+
|
|
2423
|
+
const IconParallelogram = React.forwardRef(
|
|
2424
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2425
|
+
StyledIcon,
|
|
2426
|
+
{
|
|
2427
|
+
...props,
|
|
2428
|
+
size,
|
|
2429
|
+
viewBox: "0 0 24 24",
|
|
2430
|
+
fill: "none",
|
|
2431
|
+
ref: forwardRef2
|
|
2432
|
+
},
|
|
2433
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2434
|
+
clipPath: "url(#a)"
|
|
2435
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2436
|
+
stroke: "currentColor",
|
|
2437
|
+
strokeWidth: 2,
|
|
2438
|
+
d: "M21.68 4H6.195a.25.25 0 0 0-.242.19l-3.875 15.5a.25.25 0 0 0 .242.31h15.485a.25.25 0 0 0 .242-.19l3.875-15.5A.25.25 0 0 0 21.68 4Z"
|
|
2439
|
+
})),
|
|
2440
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2441
|
+
id: "a"
|
|
2442
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2443
|
+
d: "M0 0h24v24H0z"
|
|
2444
|
+
})))
|
|
2445
|
+
)
|
|
2446
|
+
);
|
|
2447
|
+
|
|
2448
|
+
const IconPauseCircle = React.forwardRef(
|
|
2449
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2450
|
+
StyledIcon,
|
|
2451
|
+
{
|
|
2452
|
+
...props,
|
|
2453
|
+
size,
|
|
2454
|
+
viewBox: "0 0 24 24",
|
|
2455
|
+
fill: "none",
|
|
2456
|
+
ref: forwardRef2
|
|
2457
|
+
},
|
|
2458
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2459
|
+
clipPath: "url(#a)"
|
|
2460
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2461
|
+
stroke: "currentColor",
|
|
2462
|
+
strokeLinecap: "round",
|
|
2463
|
+
strokeWidth: 2,
|
|
2464
|
+
d: "M13.889 9.167v5.666M10.11 9.167v5.666M20.5 12a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z"
|
|
2465
|
+
})),
|
|
2466
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2467
|
+
id: "a"
|
|
2468
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2469
|
+
d: "M0 0h24v24H0z"
|
|
2470
|
+
})))
|
|
2471
|
+
)
|
|
2472
|
+
);
|
|
2473
|
+
|
|
2474
|
+
const IconPdf = React.forwardRef(
|
|
2475
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2476
|
+
StyledIcon,
|
|
2477
|
+
{
|
|
2478
|
+
...props,
|
|
2479
|
+
size,
|
|
2480
|
+
viewBox: "0 0 24 24",
|
|
2481
|
+
fill: "none",
|
|
2482
|
+
ref: forwardRef2
|
|
2483
|
+
},
|
|
2484
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2485
|
+
clipPath: "url(#a)"
|
|
2486
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2487
|
+
stroke: "currentColor",
|
|
2488
|
+
strokeLinecap: "round",
|
|
2489
|
+
strokeLinejoin: "round",
|
|
2490
|
+
strokeWidth: 2,
|
|
2491
|
+
d: "M5.64 5.28C4.615 3.583 7.07 2.02 7.71 3.763c1.098 2.992 2.864 11.086-1.12 16.587-1.111 1.534-3.509.082-2.219-1.515a19.508 19.508 0 0 1 6.745-5.146 19.396 19.396 0 0 1 8.276-1.784c2.01.076 1.907 2.95.109 2.729a18.7 18.7 0 0 1-8.02-3.041A18.84 18.84 0 0 1 5.64 5.28Z"
|
|
2492
|
+
})),
|
|
2493
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2494
|
+
id: "a"
|
|
2495
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2496
|
+
d: "M0 0h24v24H0z"
|
|
2497
|
+
})))
|
|
2498
|
+
)
|
|
2499
|
+
);
|
|
2500
|
+
|
|
2501
|
+
const IconPlaceholder = React.forwardRef(
|
|
2502
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2503
|
+
StyledIcon,
|
|
2504
|
+
{
|
|
2505
|
+
...props,
|
|
2506
|
+
size,
|
|
2507
|
+
viewBox: "0 0 24 24",
|
|
2508
|
+
fill: "none",
|
|
2509
|
+
ref: forwardRef2
|
|
2510
|
+
},
|
|
2511
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2512
|
+
stroke: "currentColor",
|
|
2513
|
+
strokeLinecap: "round",
|
|
2514
|
+
strokeWidth: 2,
|
|
2515
|
+
d: "m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
2516
|
+
})
|
|
2517
|
+
)
|
|
2518
|
+
);
|
|
2519
|
+
|
|
2520
|
+
const IconPlayCircle = React.forwardRef(
|
|
2521
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2522
|
+
StyledIcon,
|
|
2523
|
+
{
|
|
2524
|
+
...props,
|
|
2525
|
+
size,
|
|
2526
|
+
viewBox: "0 0 24 24",
|
|
2527
|
+
fill: "none",
|
|
2528
|
+
ref: forwardRef2
|
|
2529
|
+
},
|
|
2530
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
2531
|
+
cx: 12,
|
|
2532
|
+
cy: 12,
|
|
2533
|
+
r: 8.5,
|
|
2534
|
+
stroke: "currentColor",
|
|
2535
|
+
strokeWidth: 2
|
|
2536
|
+
}),
|
|
2537
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2538
|
+
fill: "currentColor",
|
|
2539
|
+
d: "M15.376 11.584a.5.5 0 0 1 0 .832l-4.599 3.066a.5.5 0 0 1-.777-.416V8.934a.5.5 0 0 1 .777-.416l4.599 3.066Z"
|
|
1806
2540
|
})
|
|
1807
2541
|
)
|
|
1808
2542
|
);
|
|
@@ -1868,6 +2602,30 @@ const IconPlus = React.forwardRef(
|
|
|
1868
2602
|
)
|
|
1869
2603
|
);
|
|
1870
2604
|
|
|
2605
|
+
const IconPushPin = React.forwardRef(
|
|
2606
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2607
|
+
StyledIcon,
|
|
2608
|
+
{
|
|
2609
|
+
...props,
|
|
2610
|
+
size,
|
|
2611
|
+
viewBox: "0 0 24 24",
|
|
2612
|
+
fill: "none",
|
|
2613
|
+
ref: forwardRef2
|
|
2614
|
+
},
|
|
2615
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2616
|
+
clipPath: "url(#a)"
|
|
2617
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2618
|
+
fill: "currentColor",
|
|
2619
|
+
d: "M14.092 2.293a1 1 0 1 0-1.415 1.414l1.415-1.414Zm-9.948 8.55a1 1 0 0 0 1.173 1.62l-1.173-1.62Zm15.471-1.612.708-.707-.708.707Zm.678 2.091a1 1 0 0 0 1.414-1.414l-1.414 1.415Zm-8.757 7.36-.586.81 1.62 1.174.586-.81-1.62-1.173Zm1.142 3.025a1 1 0 0 0 1.414-1.414l-1.415 1.414ZM3.707 9.908a1 1 0 1 0-1.415 1.415l1.414-1.415ZM2.292 20.293a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM12.677 3.707l1.385 1.385 1.414-1.414-1.384-1.385-1.415 1.414Zm1.506-.132L4.144 10.844l1.173 1.62 10.039-7.27-1.173-1.62Zm-.12 1.517 4.845 4.846 1.415-1.414-4.847-4.846-1.414 1.414Zm4.845 4.846 1.385 1.384 1.414-1.414-1.384-1.384-1.415 1.414Zm-.103-1.294-7.269 10.039 1.62 1.173 7.27-10.039-1.62-1.173Zm-4.713 11.649L8.899 15.1l-1.414 1.414 5.192 5.192 1.415-1.414ZM8.899 15.1 3.707 9.908l-1.414 1.415 5.192 5.192L8.9 15.1Zm-5.192 6.606L8.9 16.515 7.485 15.1l-5.192 5.192 1.414 1.414Z"
|
|
2620
|
+
})),
|
|
2621
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2622
|
+
id: "a"
|
|
2623
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2624
|
+
d: "M0 0h24v24H0z"
|
|
2625
|
+
})))
|
|
2626
|
+
)
|
|
2627
|
+
);
|
|
2628
|
+
|
|
1871
2629
|
const IconQuestionMarkCircle = React.forwardRef(
|
|
1872
2630
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1873
2631
|
StyledIcon,
|
|
@@ -1887,7 +2645,7 @@ const IconQuestionMarkCircle = React.forwardRef(
|
|
|
1887
2645
|
)
|
|
1888
2646
|
);
|
|
1889
2647
|
|
|
1890
|
-
const
|
|
2648
|
+
const IconRectanglesThreeAligned = React.forwardRef(
|
|
1891
2649
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1892
2650
|
StyledIcon,
|
|
1893
2651
|
{
|
|
@@ -1898,11 +2656,40 @@ const IconRhombus = React.forwardRef(
|
|
|
1898
2656
|
ref: forwardRef2
|
|
1899
2657
|
},
|
|
1900
2658
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2659
|
+
stroke: "currentColor",
|
|
2660
|
+
strokeLinecap: "round",
|
|
2661
|
+
strokeLinejoin: "round",
|
|
2662
|
+
strokeWidth: 2,
|
|
1901
2663
|
clipPath: "url(#a)"
|
|
1902
2664
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2665
|
+
d: "M11 4H3v8h8V4Zm6.063 12h-14v5h14v-5ZM19 4h-4v4h4V4Z"
|
|
2666
|
+
})),
|
|
2667
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2668
|
+
id: "a"
|
|
2669
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2670
|
+
d: "M0 0h24v24H0z"
|
|
2671
|
+
})))
|
|
2672
|
+
)
|
|
2673
|
+
);
|
|
2674
|
+
|
|
2675
|
+
const IconRectanglesThreeFree = React.forwardRef(
|
|
2676
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2677
|
+
StyledIcon,
|
|
2678
|
+
{
|
|
2679
|
+
...props,
|
|
2680
|
+
size,
|
|
2681
|
+
viewBox: "0 0 24 24",
|
|
2682
|
+
fill: "none",
|
|
2683
|
+
ref: forwardRef2
|
|
2684
|
+
},
|
|
2685
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1903
2686
|
stroke: "currentColor",
|
|
2687
|
+
strokeLinecap: "round",
|
|
2688
|
+
strokeLinejoin: "round",
|
|
1904
2689
|
strokeWidth: 2,
|
|
1905
|
-
|
|
2690
|
+
clipPath: "url(#a)"
|
|
2691
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2692
|
+
d: "m12.818 4.852-7.69-2.205-2.205 7.69 7.69 2.205 2.205-7.69ZM19.063 16h-14v5h14v-5Zm.649-9.92-3.845 1.102 1.102 3.845 3.845-1.102-1.102-3.845Z"
|
|
1906
2693
|
})),
|
|
1907
2694
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1908
2695
|
id: "a"
|
|
@@ -1912,7 +2699,7 @@ const IconRhombus = React.forwardRef(
|
|
|
1912
2699
|
)
|
|
1913
2700
|
);
|
|
1914
2701
|
|
|
1915
|
-
const
|
|
2702
|
+
const IconRectanglesThreeOverlap = React.forwardRef(
|
|
1916
2703
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1917
2704
|
StyledIcon,
|
|
1918
2705
|
{
|
|
@@ -1922,16 +2709,24 @@ const IconScrollbarXy = React.forwardRef(
|
|
|
1922
2709
|
fill: "none",
|
|
1923
2710
|
ref: forwardRef2
|
|
1924
2711
|
},
|
|
1925
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2712
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2713
|
+
clipPath: "url(#a)"
|
|
2714
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1926
2715
|
stroke: "currentColor",
|
|
1927
2716
|
strokeLinecap: "round",
|
|
2717
|
+
strokeLinejoin: "round",
|
|
1928
2718
|
strokeWidth: 2,
|
|
1929
|
-
d: "
|
|
1930
|
-
})
|
|
2719
|
+
d: "M8 11H4v10h9v-4m-5-6h5v6m-5-6V7h4m1 10h4v-4m-5-6h5v6m-5-6V3h9v10h-4"
|
|
2720
|
+
})),
|
|
2721
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2722
|
+
id: "a"
|
|
2723
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2724
|
+
d: "M0 0h24v24H0z"
|
|
2725
|
+
})))
|
|
1931
2726
|
)
|
|
1932
2727
|
);
|
|
1933
2728
|
|
|
1934
|
-
const
|
|
2729
|
+
const IconRectanglesTwoLine = React.forwardRef(
|
|
1935
2730
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1936
2731
|
StyledIcon,
|
|
1937
2732
|
{
|
|
@@ -1946,8 +2741,9 @@ const IconShapes = React.forwardRef(
|
|
|
1946
2741
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1947
2742
|
stroke: "currentColor",
|
|
1948
2743
|
strokeLinecap: "round",
|
|
2744
|
+
strokeLinejoin: "round",
|
|
1949
2745
|
strokeWidth: 2,
|
|
1950
|
-
d: "
|
|
2746
|
+
d: "M21 3v18M3.25 4h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25A.25.25 0 0 1 3 9.75v-5.5A.25.25 0 0 1 3.25 4Zm0 10h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-5.5a.25.25 0 0 1 .25-.25Z"
|
|
1951
2747
|
})),
|
|
1952
2748
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1953
2749
|
id: "a"
|
|
@@ -1957,7 +2753,7 @@ const IconShapes = React.forwardRef(
|
|
|
1957
2753
|
)
|
|
1958
2754
|
);
|
|
1959
2755
|
|
|
1960
|
-
const
|
|
2756
|
+
const IconRhombus = React.forwardRef(
|
|
1961
2757
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1962
2758
|
StyledIcon,
|
|
1963
2759
|
{
|
|
@@ -1971,10 +2767,8 @@ const IconShieldCheck = React.forwardRef(
|
|
|
1971
2767
|
clipPath: "url(#a)"
|
|
1972
2768
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1973
2769
|
stroke: "currentColor",
|
|
1974
|
-
strokeLinecap: "round",
|
|
1975
|
-
strokeMiterlimit: 1.414,
|
|
1976
2770
|
strokeWidth: 2,
|
|
1977
|
-
d: "
|
|
2771
|
+
d: "m11.823 3.177-8.646 8.646a.25.25 0 0 0 0 .354l8.646 8.646a.25.25 0 0 0 .354 0l8.646-8.646a.25.25 0 0 0 0-.354l-8.646-8.646a.25.25 0 0 0-.354 0Z"
|
|
1978
2772
|
})),
|
|
1979
2773
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1980
2774
|
id: "a"
|
|
@@ -1984,7 +2778,7 @@ const IconShieldCheck = React.forwardRef(
|
|
|
1984
2778
|
)
|
|
1985
2779
|
);
|
|
1986
2780
|
|
|
1987
|
-
const
|
|
2781
|
+
const IconScrollbarXy = React.forwardRef(
|
|
1988
2782
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1989
2783
|
StyledIcon,
|
|
1990
2784
|
{
|
|
@@ -1994,24 +2788,16 @@ const IconShieldLock = React.forwardRef(
|
|
|
1994
2788
|
fill: "none",
|
|
1995
2789
|
ref: forwardRef2
|
|
1996
2790
|
},
|
|
1997
|
-
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1998
|
-
width: 8,
|
|
1999
|
-
height: 5,
|
|
2000
|
-
x: 8,
|
|
2001
|
-
y: 11,
|
|
2002
|
-
fill: "currentColor",
|
|
2003
|
-
rx: 1
|
|
2004
|
-
}),
|
|
2005
2791
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2006
2792
|
stroke: "currentColor",
|
|
2007
|
-
|
|
2793
|
+
strokeLinecap: "round",
|
|
2008
2794
|
strokeWidth: 2,
|
|
2009
|
-
d: "
|
|
2795
|
+
d: "M6.706 17H12m6-10v8M5.118 4h13.764C20.052 4 21 4.895 21 6v12c0 1.105-.948 2-2.118 2H5.118C3.948 20 3 19.105 3 18V6c0-1.105.948-2 2.118-2Z"
|
|
2010
2796
|
})
|
|
2011
2797
|
)
|
|
2012
2798
|
);
|
|
2013
2799
|
|
|
2014
|
-
const
|
|
2800
|
+
const IconShapes = React.forwardRef(
|
|
2015
2801
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2016
2802
|
StyledIcon,
|
|
2017
2803
|
{
|
|
@@ -2027,7 +2813,7 @@ const IconSlidersX = React.forwardRef(
|
|
|
2027
2813
|
stroke: "currentColor",
|
|
2028
2814
|
strokeLinecap: "round",
|
|
2029
2815
|
strokeWidth: 2,
|
|
2030
|
-
d: "
|
|
2816
|
+
d: "M8 9.5a6.5 6.5 0 1 1 6.5 6.5M3.25 10h10.5a.25.25 0 0 1 .25.25v10.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-10.5a.25.25 0 0 1 .25-.25Z"
|
|
2031
2817
|
})),
|
|
2032
2818
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2033
2819
|
id: "a"
|
|
@@ -2037,7 +2823,7 @@ const IconSlidersX = React.forwardRef(
|
|
|
2037
2823
|
)
|
|
2038
2824
|
);
|
|
2039
2825
|
|
|
2040
|
-
const
|
|
2826
|
+
const IconShieldCheck = React.forwardRef(
|
|
2041
2827
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2042
2828
|
StyledIcon,
|
|
2043
2829
|
{
|
|
@@ -2052,8 +2838,9 @@ const IconSlidersY = React.forwardRef(
|
|
|
2052
2838
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2053
2839
|
stroke: "currentColor",
|
|
2054
2840
|
strokeLinecap: "round",
|
|
2841
|
+
strokeMiterlimit: 1.414,
|
|
2055
2842
|
strokeWidth: 2,
|
|
2056
|
-
d: "
|
|
2843
|
+
d: "m9 12 2 1.5L16 9M4 6l8-3 8 3v7.044a6.638 6.638 0 0 1-1.598 4.32 13.275 13.275 0 0 1-3.25 2.744l-2.637 1.583a1 1 0 0 1-1.03 0l-2.638-1.583a13.274 13.274 0 0 1-3.249-2.744A6.638 6.638 0 0 1 4 13.044V6Z"
|
|
2057
2844
|
})),
|
|
2058
2845
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2059
2846
|
id: "a"
|
|
@@ -2063,7 +2850,7 @@ const IconSlidersY = React.forwardRef(
|
|
|
2063
2850
|
)
|
|
2064
2851
|
);
|
|
2065
2852
|
|
|
2066
|
-
const
|
|
2853
|
+
const IconShieldLock = React.forwardRef(
|
|
2067
2854
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2068
2855
|
StyledIcon,
|
|
2069
2856
|
{
|
|
@@ -2073,14 +2860,402 @@ const IconSocialFacebook = React.forwardRef(
|
|
|
2073
2860
|
fill: "none",
|
|
2074
2861
|
ref: forwardRef2
|
|
2075
2862
|
},
|
|
2076
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2863
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
2864
|
+
width: 8,
|
|
2865
|
+
height: 5,
|
|
2866
|
+
x: 8,
|
|
2867
|
+
y: 11,
|
|
2077
2868
|
fill: "currentColor",
|
|
2078
|
-
|
|
2079
|
-
})
|
|
2869
|
+
rx: 1
|
|
2870
|
+
}),
|
|
2871
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2872
|
+
stroke: "currentColor",
|
|
2873
|
+
strokeMiterlimit: 1.414,
|
|
2874
|
+
strokeWidth: 2,
|
|
2875
|
+
d: "M10 13V9.5a2 2 0 1 1 4 0V13M4 6l8-3 8 3v7.044a6.638 6.638 0 0 1-1.598 4.32 13.275 13.275 0 0 1-3.25 2.744l-2.637 1.583a1 1 0 0 1-1.03 0l-2.638-1.583a13.274 13.274 0 0 1-3.249-2.744A6.638 6.638 0 0 1 4 13.044V6Z"
|
|
2876
|
+
})
|
|
2877
|
+
)
|
|
2878
|
+
);
|
|
2879
|
+
|
|
2880
|
+
const IconSidebarClosed = React.forwardRef(
|
|
2881
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2882
|
+
StyledIcon,
|
|
2883
|
+
{
|
|
2884
|
+
...props,
|
|
2885
|
+
size,
|
|
2886
|
+
viewBox: "0 0 24 24",
|
|
2887
|
+
fill: "none",
|
|
2888
|
+
ref: forwardRef2
|
|
2889
|
+
},
|
|
2890
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2891
|
+
clipPath: "url(#a)"
|
|
2892
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2893
|
+
stroke: "currentColor",
|
|
2894
|
+
strokeLinecap: "round",
|
|
2895
|
+
strokeLinejoin: "round",
|
|
2896
|
+
strokeMiterlimit: 1.414,
|
|
2897
|
+
strokeWidth: 2,
|
|
2898
|
+
d: "M11 4H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h7m0-16h9a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-9m0-16v16M6 8h2m-2 4h2m-2 4h2"
|
|
2899
|
+
})),
|
|
2900
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2901
|
+
id: "a"
|
|
2902
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2903
|
+
d: "M0 0h24v24H0z"
|
|
2904
|
+
})))
|
|
2905
|
+
)
|
|
2906
|
+
);
|
|
2907
|
+
|
|
2908
|
+
const IconSidebarOpen = React.forwardRef(
|
|
2909
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2910
|
+
StyledIcon,
|
|
2911
|
+
{
|
|
2912
|
+
...props,
|
|
2913
|
+
size,
|
|
2914
|
+
viewBox: "0 0 24 24",
|
|
2915
|
+
fill: "none",
|
|
2916
|
+
ref: forwardRef2
|
|
2917
|
+
},
|
|
2918
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2919
|
+
stroke: "currentColor",
|
|
2920
|
+
strokeLinecap: "round",
|
|
2921
|
+
strokeLinejoin: "round",
|
|
2922
|
+
strokeMiterlimit: 1.414,
|
|
2923
|
+
strokeWidth: 2,
|
|
2924
|
+
d: "M21 19V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1Z"
|
|
2925
|
+
}),
|
|
2926
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2927
|
+
fill: "currentColor",
|
|
2928
|
+
fillRule: "evenodd",
|
|
2929
|
+
d: "M11 5H3v14h8V5ZM6 7a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Zm0 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H6Z",
|
|
2930
|
+
clipRule: "evenodd"
|
|
2931
|
+
})
|
|
2932
|
+
)
|
|
2933
|
+
);
|
|
2934
|
+
|
|
2935
|
+
const IconSlidersX = React.forwardRef(
|
|
2936
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2937
|
+
StyledIcon,
|
|
2938
|
+
{
|
|
2939
|
+
...props,
|
|
2940
|
+
size,
|
|
2941
|
+
viewBox: "0 0 24 24",
|
|
2942
|
+
fill: "none",
|
|
2943
|
+
ref: forwardRef2
|
|
2944
|
+
},
|
|
2945
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2946
|
+
clipPath: "url(#a)"
|
|
2947
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2948
|
+
stroke: "currentColor",
|
|
2949
|
+
strokeLinecap: "round",
|
|
2950
|
+
strokeWidth: 2,
|
|
2951
|
+
d: "M20 8h-5M9 8H4m11.5 8H4m8-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"
|
|
2952
|
+
})),
|
|
2953
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2954
|
+
id: "a"
|
|
2955
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2956
|
+
d: "M0 0h24v24H0z"
|
|
2957
|
+
})))
|
|
2958
|
+
)
|
|
2959
|
+
);
|
|
2960
|
+
|
|
2961
|
+
const IconSlidersY = React.forwardRef(
|
|
2962
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2963
|
+
StyledIcon,
|
|
2964
|
+
{
|
|
2965
|
+
...props,
|
|
2966
|
+
size,
|
|
2967
|
+
viewBox: "0 0 24 24",
|
|
2968
|
+
fill: "none",
|
|
2969
|
+
ref: forwardRef2
|
|
2970
|
+
},
|
|
2971
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2972
|
+
clipPath: "url(#a)"
|
|
2973
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2974
|
+
stroke: "currentColor",
|
|
2975
|
+
strokeLinecap: "round",
|
|
2976
|
+
strokeWidth: 2,
|
|
2977
|
+
d: "M5 5v4m0 6v4m7-14v10m0 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm7-5.5V19M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14-5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
|
|
2978
|
+
})),
|
|
2979
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2980
|
+
id: "a"
|
|
2981
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2982
|
+
d: "M0 0h24v24H0z"
|
|
2983
|
+
})))
|
|
2984
|
+
)
|
|
2985
|
+
);
|
|
2986
|
+
|
|
2987
|
+
const IconSocialFacebook = React.forwardRef(
|
|
2988
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2989
|
+
StyledIcon,
|
|
2990
|
+
{
|
|
2991
|
+
...props,
|
|
2992
|
+
size,
|
|
2993
|
+
viewBox: "0 0 24 24",
|
|
2994
|
+
fill: "none",
|
|
2995
|
+
ref: forwardRef2
|
|
2996
|
+
},
|
|
2997
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2998
|
+
fill: "currentColor",
|
|
2999
|
+
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"
|
|
3000
|
+
})
|
|
3001
|
+
)
|
|
3002
|
+
);
|
|
3003
|
+
|
|
3004
|
+
const IconSocialInstagram = React.forwardRef(
|
|
3005
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3006
|
+
StyledIcon,
|
|
3007
|
+
{
|
|
3008
|
+
...props,
|
|
3009
|
+
size,
|
|
3010
|
+
viewBox: "0 0 24 24",
|
|
3011
|
+
fill: "none",
|
|
3012
|
+
ref: forwardRef2
|
|
3013
|
+
},
|
|
3014
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3015
|
+
fill: "currentColor",
|
|
3016
|
+
d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
|
|
3017
|
+
}),
|
|
3018
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3019
|
+
fill: "currentColor",
|
|
3020
|
+
fillRule: "evenodd",
|
|
3021
|
+
d: "M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z",
|
|
3022
|
+
clipRule: "evenodd"
|
|
3023
|
+
})
|
|
3024
|
+
)
|
|
3025
|
+
);
|
|
3026
|
+
|
|
3027
|
+
const IconSocialLinkedin = React.forwardRef(
|
|
3028
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3029
|
+
StyledIcon,
|
|
3030
|
+
{
|
|
3031
|
+
...props,
|
|
3032
|
+
size,
|
|
3033
|
+
viewBox: "0 0 24 24",
|
|
3034
|
+
fill: "none",
|
|
3035
|
+
ref: forwardRef2
|
|
3036
|
+
},
|
|
3037
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3038
|
+
fill: "currentColor",
|
|
3039
|
+
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"
|
|
3040
|
+
})
|
|
3041
|
+
)
|
|
3042
|
+
);
|
|
3043
|
+
|
|
3044
|
+
const IconSocialTwitter = React.forwardRef(
|
|
3045
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3046
|
+
StyledIcon,
|
|
3047
|
+
{
|
|
3048
|
+
...props,
|
|
3049
|
+
size,
|
|
3050
|
+
viewBox: "0 0 24 24",
|
|
3051
|
+
fill: "none",
|
|
3052
|
+
ref: forwardRef2
|
|
3053
|
+
},
|
|
3054
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3055
|
+
fill: "currentColor",
|
|
3056
|
+
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"
|
|
3057
|
+
})
|
|
3058
|
+
)
|
|
3059
|
+
);
|
|
3060
|
+
|
|
3061
|
+
const IconSocialYoutube = React.forwardRef(
|
|
3062
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3063
|
+
StyledIcon,
|
|
3064
|
+
{
|
|
3065
|
+
...props,
|
|
3066
|
+
size,
|
|
3067
|
+
viewBox: "0 0 24 24",
|
|
3068
|
+
fill: "none",
|
|
3069
|
+
ref: forwardRef2
|
|
3070
|
+
},
|
|
3071
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3072
|
+
fill: "currentColor",
|
|
3073
|
+
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"
|
|
3074
|
+
})
|
|
3075
|
+
)
|
|
3076
|
+
);
|
|
3077
|
+
|
|
3078
|
+
const IconSpeakerCross = React.forwardRef(
|
|
3079
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3080
|
+
StyledIcon,
|
|
3081
|
+
{
|
|
3082
|
+
...props,
|
|
3083
|
+
size,
|
|
3084
|
+
viewBox: "0 0 24 24",
|
|
3085
|
+
fill: "none",
|
|
3086
|
+
ref: forwardRef2
|
|
3087
|
+
},
|
|
3088
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3089
|
+
clipPath: "url(#a)"
|
|
3090
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3091
|
+
stroke: "currentColor",
|
|
3092
|
+
strokeLinecap: "round",
|
|
3093
|
+
strokeWidth: 2,
|
|
3094
|
+
d: "m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"
|
|
3095
|
+
})),
|
|
3096
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3097
|
+
id: "a"
|
|
3098
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3099
|
+
d: "M0 0h24v24H0z"
|
|
3100
|
+
})))
|
|
3101
|
+
)
|
|
3102
|
+
);
|
|
3103
|
+
|
|
3104
|
+
const IconSpeakerHigh = React.forwardRef(
|
|
3105
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3106
|
+
StyledIcon,
|
|
3107
|
+
{
|
|
3108
|
+
...props,
|
|
3109
|
+
size,
|
|
3110
|
+
viewBox: "0 0 24 24",
|
|
3111
|
+
fill: "none",
|
|
3112
|
+
ref: forwardRef2
|
|
3113
|
+
},
|
|
3114
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3115
|
+
clipPath: "url(#a)"
|
|
3116
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3117
|
+
stroke: "currentColor",
|
|
3118
|
+
strokeLinecap: "round",
|
|
3119
|
+
strokeWidth: 2,
|
|
3120
|
+
d: "M16 10v4m3-8.5V18M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"
|
|
3121
|
+
})),
|
|
3122
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3123
|
+
id: "a"
|
|
3124
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3125
|
+
d: "M0 0h24v24H0z"
|
|
3126
|
+
})))
|
|
3127
|
+
)
|
|
3128
|
+
);
|
|
3129
|
+
|
|
3130
|
+
const IconSplitVertical = React.forwardRef(
|
|
3131
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3132
|
+
StyledIcon,
|
|
3133
|
+
{
|
|
3134
|
+
...props,
|
|
3135
|
+
size,
|
|
3136
|
+
viewBox: "0 0 24 24",
|
|
3137
|
+
fill: "none",
|
|
3138
|
+
ref: forwardRef2
|
|
3139
|
+
},
|
|
3140
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3141
|
+
clipPath: "url(#a)"
|
|
3142
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3143
|
+
stroke: "currentColor",
|
|
3144
|
+
strokeLinecap: "round",
|
|
3145
|
+
strokeLinejoin: "round",
|
|
3146
|
+
strokeWidth: 2,
|
|
3147
|
+
d: "M5 6.5V4h14v2.5M2 12h20M5 17.5V20h14v-2.5"
|
|
3148
|
+
})),
|
|
3149
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3150
|
+
id: "a"
|
|
3151
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3152
|
+
d: "M0 0h24v24H0z"
|
|
3153
|
+
})))
|
|
3154
|
+
)
|
|
3155
|
+
);
|
|
3156
|
+
|
|
3157
|
+
const IconSquareBracketsAngleSlash = React.forwardRef(
|
|
3158
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3159
|
+
StyledIcon,
|
|
3160
|
+
{
|
|
3161
|
+
...props,
|
|
3162
|
+
size,
|
|
3163
|
+
viewBox: "0 0 24 24",
|
|
3164
|
+
fill: "none",
|
|
3165
|
+
ref: forwardRef2
|
|
3166
|
+
},
|
|
3167
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3168
|
+
clipPath: "url(#a)"
|
|
3169
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3170
|
+
stroke: "currentColor",
|
|
3171
|
+
strokeLinecap: "round",
|
|
3172
|
+
strokeWidth: 2,
|
|
3173
|
+
d: "M6 4 3.177 6.823a.25.25 0 0 0 0 .354L6 10m5-7-2 8m5-7 2.823 2.823a.25.25 0 0 1 0 .354L14 10m5-7v0a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5"
|
|
3174
|
+
})),
|
|
3175
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3176
|
+
id: "a"
|
|
3177
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3178
|
+
d: "M0 0h24v24H0z"
|
|
3179
|
+
})))
|
|
3180
|
+
)
|
|
3181
|
+
);
|
|
3182
|
+
|
|
3183
|
+
const IconSquareCirclesTwo = React.forwardRef(
|
|
3184
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3185
|
+
StyledIcon,
|
|
3186
|
+
{
|
|
3187
|
+
...props,
|
|
3188
|
+
size,
|
|
3189
|
+
viewBox: "0 0 24 24",
|
|
3190
|
+
fill: "none",
|
|
3191
|
+
ref: forwardRef2
|
|
3192
|
+
},
|
|
3193
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3194
|
+
stroke: "currentColor",
|
|
3195
|
+
strokeLinecap: "round",
|
|
3196
|
+
strokeWidth: 2,
|
|
3197
|
+
d: "M19.75 4H4.25a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z"
|
|
3198
|
+
}),
|
|
3199
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3200
|
+
fill: "currentColor",
|
|
3201
|
+
d: "M16 15a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm7-3a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
|
|
3202
|
+
})
|
|
3203
|
+
)
|
|
3204
|
+
);
|
|
3205
|
+
|
|
3206
|
+
const IconSquareLineSquareDashed = React.forwardRef(
|
|
3207
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3208
|
+
StyledIcon,
|
|
3209
|
+
{
|
|
3210
|
+
...props,
|
|
3211
|
+
size,
|
|
3212
|
+
viewBox: "0 0 24 24",
|
|
3213
|
+
fill: "none",
|
|
3214
|
+
ref: forwardRef2
|
|
3215
|
+
},
|
|
3216
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3217
|
+
clipPath: "url(#a)"
|
|
3218
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3219
|
+
stroke: "currentColor",
|
|
3220
|
+
strokeLinecap: "round",
|
|
3221
|
+
strokeLinejoin: "round",
|
|
3222
|
+
strokeWidth: 2,
|
|
3223
|
+
d: "M18 3h3v3m0 4v4m0 4v3h-3m-4 0h-4m-4 0H3v-3M3 3h11v11H3V3Z"
|
|
3224
|
+
})),
|
|
3225
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3226
|
+
id: "a"
|
|
3227
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3228
|
+
d: "M0 0h24v24H0z"
|
|
3229
|
+
})))
|
|
3230
|
+
)
|
|
3231
|
+
);
|
|
3232
|
+
|
|
3233
|
+
const IconSquareRounded = React.forwardRef(
|
|
3234
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3235
|
+
StyledIcon,
|
|
3236
|
+
{
|
|
3237
|
+
...props,
|
|
3238
|
+
size,
|
|
3239
|
+
viewBox: "0 0 24 24",
|
|
3240
|
+
fill: "none",
|
|
3241
|
+
ref: forwardRef2
|
|
3242
|
+
},
|
|
3243
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3244
|
+
clipPath: "url(#a)"
|
|
3245
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3246
|
+
stroke: "currentColor",
|
|
3247
|
+
strokeWidth: 2,
|
|
3248
|
+
d: "M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z"
|
|
3249
|
+
})),
|
|
3250
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3251
|
+
id: "a"
|
|
3252
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3253
|
+
d: "M0 0h24v24H0z"
|
|
3254
|
+
})))
|
|
2080
3255
|
)
|
|
2081
3256
|
);
|
|
2082
3257
|
|
|
2083
|
-
const
|
|
3258
|
+
const IconSquareTriangleCirclePlus = React.forwardRef(
|
|
2084
3259
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2085
3260
|
StyledIcon,
|
|
2086
3261
|
{
|
|
@@ -2090,20 +3265,23 @@ const IconSocialInstagram = React.forwardRef(
|
|
|
2090
3265
|
fill: "none",
|
|
2091
3266
|
ref: forwardRef2
|
|
2092
3267
|
},
|
|
2093
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
3268
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3269
|
+
clipPath: "url(#a)"
|
|
3270
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3271
|
+
stroke: "currentColor",
|
|
3272
|
+
strokeLinecap: "round",
|
|
3273
|
+
strokeWidth: 2,
|
|
3274
|
+
d: "M17 14v3m0 0v3m0-3h-3m3 0h3M5 4h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1Zm9.164 5.645 2.609-5.653a.25.25 0 0 1 .454 0l2.61 5.653a.25.25 0 0 1-.228.355h-5.218a.25.25 0 0 1-.227-.355Zm-9.285 9.476A3 3 0 1 0 9.12 14.88a3 3 0 0 0-4.24 4.24Z"
|
|
3275
|
+
})),
|
|
3276
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3277
|
+
id: "a"
|
|
3278
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3279
|
+
d: "M0 0h24v24H0z"
|
|
3280
|
+
})))
|
|
2103
3281
|
)
|
|
2104
3282
|
);
|
|
2105
3283
|
|
|
2106
|
-
const
|
|
3284
|
+
const IconSquare = React.forwardRef(
|
|
2107
3285
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2108
3286
|
StyledIcon,
|
|
2109
3287
|
{
|
|
@@ -2113,14 +3291,22 @@ const IconSocialLinkedin = React.forwardRef(
|
|
|
2113
3291
|
fill: "none",
|
|
2114
3292
|
ref: forwardRef2
|
|
2115
3293
|
},
|
|
2116
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
3294
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3295
|
+
clipPath: "url(#a)"
|
|
3296
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3297
|
+
stroke: "currentColor",
|
|
3298
|
+
strokeWidth: 2,
|
|
3299
|
+
d: "M20.75 3H3.25a.25.25 0 0 0-.25.25v17.5c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25V3.25a.25.25 0 0 0-.25-.25Z"
|
|
3300
|
+
})),
|
|
3301
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3302
|
+
id: "a"
|
|
3303
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3304
|
+
d: "M0 0h24v24H0z"
|
|
3305
|
+
})))
|
|
2120
3306
|
)
|
|
2121
3307
|
);
|
|
2122
3308
|
|
|
2123
|
-
const
|
|
3309
|
+
const IconSquaresFour = React.forwardRef(
|
|
2124
3310
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2125
3311
|
StyledIcon,
|
|
2126
3312
|
{
|
|
@@ -2130,14 +3316,23 @@ const IconSocialTwitter = React.forwardRef(
|
|
|
2130
3316
|
fill: "none",
|
|
2131
3317
|
ref: forwardRef2
|
|
2132
3318
|
},
|
|
2133
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
3319
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3320
|
+
stroke: "currentColor",
|
|
3321
|
+
strokeLinecap: "round",
|
|
3322
|
+
strokeWidth: 2,
|
|
3323
|
+
clipPath: "url(#a)"
|
|
3324
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3325
|
+
d: "M9.5 14h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm10 0h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5ZM9.5 4h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Z"
|
|
3326
|
+
})),
|
|
3327
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3328
|
+
id: "a"
|
|
3329
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3330
|
+
d: "M0 0h24v24H0z"
|
|
3331
|
+
})))
|
|
2137
3332
|
)
|
|
2138
3333
|
);
|
|
2139
3334
|
|
|
2140
|
-
const
|
|
3335
|
+
const IconSquaresGroup = React.forwardRef(
|
|
2141
3336
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2142
3337
|
StyledIcon,
|
|
2143
3338
|
{
|
|
@@ -2147,14 +3342,25 @@ const IconSocialYoutube = React.forwardRef(
|
|
|
2147
3342
|
fill: "none",
|
|
2148
3343
|
ref: forwardRef2
|
|
2149
3344
|
},
|
|
3345
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3346
|
+
stroke: "currentColor",
|
|
3347
|
+
strokeLinecap: "round",
|
|
3348
|
+
strokeLinejoin: "round",
|
|
3349
|
+
strokeWidth: 2,
|
|
3350
|
+
d: "M20 4H4v16h16V4Z"
|
|
3351
|
+
}),
|
|
2150
3352
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2151
3353
|
fill: "currentColor",
|
|
2152
|
-
d: "
|
|
3354
|
+
d: "M2 2h3v3H2V2Zm17 0h3v3h-3V2Zm0 17h3v3h-3v-3ZM2 19h3v3H2v-3Zm9-12h6v6h-6V7Z"
|
|
3355
|
+
}),
|
|
3356
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3357
|
+
fill: "currentColor",
|
|
3358
|
+
d: "M7 11h3v3h3v3H7v-6Z"
|
|
2153
3359
|
})
|
|
2154
3360
|
)
|
|
2155
3361
|
);
|
|
2156
3362
|
|
|
2157
|
-
const
|
|
3363
|
+
const IconSquaresMerge = React.forwardRef(
|
|
2158
3364
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2159
3365
|
StyledIcon,
|
|
2160
3366
|
{
|
|
@@ -2167,10 +3373,8 @@ const IconSpeakerCross = React.forwardRef(
|
|
|
2167
3373
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2168
3374
|
clipPath: "url(#a)"
|
|
2169
3375
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
strokeWidth: 2,
|
|
2173
|
-
d: "m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"
|
|
3376
|
+
fill: "currentColor",
|
|
3377
|
+
d: "M9 3V2a1 1 0 0 0-1 1h1Zm12 0h1a1 1 0 0 0-1-1v1Zm0 12v1a1 1 0 0 0 1-1h-1Zm-6 0v-1h-1v1h1Zm0 6v1a1 1 0 0 0 1-1h-1ZM3 21H2a1 1 0 0 0 1 1v-1ZM3 9V8a1 1 0 0 0-1 1h1Zm6 0v1h1V9H9Zm0-5h12V2H9v2Zm11-1v12h2V3h-2Zm1 11h-6v2h6v-2Zm-7 1v6h2v-6h-2Zm1 5H3v2h12v-2ZM4 21V9H2v12h2ZM3 10h6V8H3v2Zm7-1V3H8v6h2Z"
|
|
2174
3378
|
})),
|
|
2175
3379
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2176
3380
|
id: "a"
|
|
@@ -2180,7 +3384,7 @@ const IconSpeakerCross = React.forwardRef(
|
|
|
2180
3384
|
)
|
|
2181
3385
|
);
|
|
2182
3386
|
|
|
2183
|
-
const
|
|
3387
|
+
const IconSquaresThree = React.forwardRef(
|
|
2184
3388
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2185
3389
|
StyledIcon,
|
|
2186
3390
|
{
|
|
@@ -2191,12 +3395,12 @@ const IconSpeakerHigh = React.forwardRef(
|
|
|
2191
3395
|
ref: forwardRef2
|
|
2192
3396
|
},
|
|
2193
3397
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2194
|
-
clipPath: "url(#a)"
|
|
2195
|
-
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2196
3398
|
stroke: "currentColor",
|
|
2197
3399
|
strokeLinecap: "round",
|
|
2198
3400
|
strokeWidth: 2,
|
|
2199
|
-
|
|
3401
|
+
clipPath: "url(#a)"
|
|
3402
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3403
|
+
d: "M9.5 14h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm10 0h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5ZM9.5 4h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Z"
|
|
2200
3404
|
})),
|
|
2201
3405
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2202
3406
|
id: "a"
|
|
@@ -2206,7 +3410,7 @@ const IconSpeakerHigh = React.forwardRef(
|
|
|
2206
3410
|
)
|
|
2207
3411
|
);
|
|
2208
3412
|
|
|
2209
|
-
const
|
|
3413
|
+
const IconSquaresTwoOverlap = React.forwardRef(
|
|
2210
3414
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2211
3415
|
StyledIcon,
|
|
2212
3416
|
{
|
|
@@ -2221,8 +3425,9 @@ const IconSquareBracketsAngleSlash = React.forwardRef(
|
|
|
2221
3425
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2222
3426
|
stroke: "currentColor",
|
|
2223
3427
|
strokeLinecap: "round",
|
|
3428
|
+
strokeLinejoin: "round",
|
|
2224
3429
|
strokeWidth: 2,
|
|
2225
|
-
d: "
|
|
3430
|
+
d: "M9 5V3h12v12h-2M3 9h12v12H3V9Z"
|
|
2226
3431
|
})),
|
|
2227
3432
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2228
3433
|
id: "a"
|
|
@@ -2232,7 +3437,7 @@ const IconSquareBracketsAngleSlash = React.forwardRef(
|
|
|
2232
3437
|
)
|
|
2233
3438
|
);
|
|
2234
3439
|
|
|
2235
|
-
const
|
|
3440
|
+
const IconSquaresUngroup = React.forwardRef(
|
|
2236
3441
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2237
3442
|
StyledIcon,
|
|
2238
3443
|
{
|
|
@@ -2245,17 +3450,18 @@ const IconSquareCirclesTwo = React.forwardRef(
|
|
|
2245
3450
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2246
3451
|
stroke: "currentColor",
|
|
2247
3452
|
strokeLinecap: "round",
|
|
3453
|
+
strokeLinejoin: "round",
|
|
2248
3454
|
strokeWidth: 2,
|
|
2249
|
-
d: "
|
|
3455
|
+
d: "M10 10v4h4m-4-4V4h10v10h-6m-4-4H4v10h10v-6"
|
|
2250
3456
|
}),
|
|
2251
3457
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2252
3458
|
fill: "currentColor",
|
|
2253
|
-
d: "
|
|
3459
|
+
d: "M8 2h3v3H8V2Zm11 0h3v3h-3V2Zm0 11h3v3h-3v-3ZM8 13h3v3H8v-3ZM2 8h3v3H2V8Zm0 11h3v3H2v-3Zm11 0h3v3h-3v-3Z"
|
|
2254
3460
|
})
|
|
2255
3461
|
)
|
|
2256
3462
|
);
|
|
2257
3463
|
|
|
2258
|
-
const
|
|
3464
|
+
const IconSquaresUnmerge = React.forwardRef(
|
|
2259
3465
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2260
3466
|
StyledIcon,
|
|
2261
3467
|
{
|
|
@@ -2269,8 +3475,10 @@ const IconSquareRounded = React.forwardRef(
|
|
|
2269
3475
|
clipPath: "url(#a)"
|
|
2270
3476
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2271
3477
|
stroke: "currentColor",
|
|
3478
|
+
strokeLinecap: "round",
|
|
3479
|
+
strokeLinejoin: "round",
|
|
2272
3480
|
strokeWidth: 2,
|
|
2273
|
-
d: "
|
|
3481
|
+
d: "M9 3h12v12H9V3Zm6 6H3v12h12V9Z"
|
|
2274
3482
|
})),
|
|
2275
3483
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2276
3484
|
id: "a"
|
|
@@ -2280,7 +3488,7 @@ const IconSquareRounded = React.forwardRef(
|
|
|
2280
3488
|
)
|
|
2281
3489
|
);
|
|
2282
3490
|
|
|
2283
|
-
const
|
|
3491
|
+
const IconStack = React.forwardRef(
|
|
2284
3492
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2285
3493
|
StyledIcon,
|
|
2286
3494
|
{
|
|
@@ -2295,8 +3503,9 @@ const IconSquareTriangleCirclePlus = React.forwardRef(
|
|
|
2295
3503
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2296
3504
|
stroke: "currentColor",
|
|
2297
3505
|
strokeLinecap: "round",
|
|
3506
|
+
strokeLinejoin: "round",
|
|
2298
3507
|
strokeWidth: 2,
|
|
2299
|
-
d: "
|
|
3508
|
+
d: "m18 14 4 1.5L12 20 2 15.5 6 14m6-10 10 4.5L12 13 2 8.5 12 4Z"
|
|
2300
3509
|
})),
|
|
2301
3510
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2302
3511
|
id: "a"
|
|
@@ -2306,7 +3515,7 @@ const IconSquareTriangleCirclePlus = React.forwardRef(
|
|
|
2306
3515
|
)
|
|
2307
3516
|
);
|
|
2308
3517
|
|
|
2309
|
-
const
|
|
3518
|
+
const IconStickyNote = React.forwardRef(
|
|
2310
3519
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2311
3520
|
StyledIcon,
|
|
2312
3521
|
{
|
|
@@ -2320,8 +3529,9 @@ const IconSquare = React.forwardRef(
|
|
|
2320
3529
|
clipPath: "url(#a)"
|
|
2321
3530
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2322
3531
|
stroke: "currentColor",
|
|
3532
|
+
strokeLinecap: "square",
|
|
2323
3533
|
strokeWidth: 2,
|
|
2324
|
-
d: "
|
|
3534
|
+
d: "M14 19v-5.5a.5.5 0 0 1 .5-.5H20M4.5 4h16a.5.5 0 0 1 .5.5v7.843a4 4 0 0 1-1.172 2.829l-3.656 3.656A4 4 0 0 1 13.343 20H4.5a.5.5 0 0 1-.5-.5v-15a.5.5 0 0 1 .5-.5Z"
|
|
2325
3535
|
})),
|
|
2326
3536
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2327
3537
|
id: "a"
|
|
@@ -2331,7 +3541,7 @@ const IconSquare = React.forwardRef(
|
|
|
2331
3541
|
)
|
|
2332
3542
|
);
|
|
2333
3543
|
|
|
2334
|
-
const
|
|
3544
|
+
const IconStopCircle = React.forwardRef(
|
|
2335
3545
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2336
3546
|
StyledIcon,
|
|
2337
3547
|
{
|
|
@@ -2341,23 +3551,48 @@ const IconSquaresFour = React.forwardRef(
|
|
|
2341
3551
|
fill: "none",
|
|
2342
3552
|
ref: forwardRef2
|
|
2343
3553
|
},
|
|
2344
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
3554
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
3555
|
+
cx: 12,
|
|
3556
|
+
cy: 12,
|
|
3557
|
+
r: 8.5,
|
|
2345
3558
|
stroke: "currentColor",
|
|
2346
|
-
|
|
3559
|
+
strokeWidth: 2
|
|
3560
|
+
}),
|
|
3561
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3562
|
+
fill: "currentColor",
|
|
3563
|
+
d: "M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z"
|
|
3564
|
+
})
|
|
3565
|
+
)
|
|
3566
|
+
);
|
|
3567
|
+
|
|
3568
|
+
const IconTag = React.forwardRef(
|
|
3569
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3570
|
+
StyledIcon,
|
|
3571
|
+
{
|
|
3572
|
+
...props,
|
|
3573
|
+
size,
|
|
3574
|
+
viewBox: "0 0 24 24",
|
|
3575
|
+
fill: "none",
|
|
3576
|
+
ref: forwardRef2
|
|
3577
|
+
},
|
|
3578
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3579
|
+
stroke: "currentColor",
|
|
3580
|
+
strokeLinecap: "square",
|
|
3581
|
+
strokeLinejoin: "round",
|
|
3582
|
+
strokeMiterlimit: 1.414,
|
|
2347
3583
|
strokeWidth: 2,
|
|
2348
|
-
|
|
2349
|
-
},
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
})))
|
|
3584
|
+
d: "M11.953 4H4v8l8.839 8.617 7.778-7.778L11.953 4Z"
|
|
3585
|
+
}),
|
|
3586
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
3587
|
+
cx: 8.5,
|
|
3588
|
+
cy: 8.5,
|
|
3589
|
+
r: 1.5,
|
|
3590
|
+
fill: "currentColor"
|
|
3591
|
+
})
|
|
2357
3592
|
)
|
|
2358
3593
|
);
|
|
2359
3594
|
|
|
2360
|
-
const
|
|
3595
|
+
const IconTextHOne = React.forwardRef(
|
|
2361
3596
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2362
3597
|
StyledIcon,
|
|
2363
3598
|
{
|
|
@@ -2368,12 +3603,13 @@ const IconSquaresThree = React.forwardRef(
|
|
|
2368
3603
|
ref: forwardRef2
|
|
2369
3604
|
},
|
|
2370
3605
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3606
|
+
clipPath: "url(#a)"
|
|
3607
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2371
3608
|
stroke: "currentColor",
|
|
2372
3609
|
strokeLinecap: "round",
|
|
3610
|
+
strokeLinejoin: "round",
|
|
2373
3611
|
strokeWidth: 2,
|
|
2374
|
-
|
|
2375
|
-
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2376
|
-
d: "M9.5 14h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm10 0h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5ZM9.5 4h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Z"
|
|
3612
|
+
d: "M5 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m5-12h3v12"
|
|
2377
3613
|
})),
|
|
2378
3614
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2379
3615
|
id: "a"
|
|
@@ -2383,7 +3619,7 @@ const IconSquaresThree = React.forwardRef(
|
|
|
2383
3619
|
)
|
|
2384
3620
|
);
|
|
2385
3621
|
|
|
2386
|
-
const
|
|
3622
|
+
const IconTextHThree = React.forwardRef(
|
|
2387
3623
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2388
3624
|
StyledIcon,
|
|
2389
3625
|
{
|
|
@@ -2397,9 +3633,10 @@ const IconStickyNote = React.forwardRef(
|
|
|
2397
3633
|
clipPath: "url(#a)"
|
|
2398
3634
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2399
3635
|
stroke: "currentColor",
|
|
2400
|
-
strokeLinecap: "
|
|
3636
|
+
strokeLinecap: "round",
|
|
3637
|
+
strokeLinejoin: "round",
|
|
2401
3638
|
strokeWidth: 2,
|
|
2402
|
-
d: "
|
|
3639
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6m-5 0h5m0 0v6h-5"
|
|
2403
3640
|
})),
|
|
2404
3641
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2405
3642
|
id: "a"
|
|
@@ -2409,7 +3646,7 @@ const IconStickyNote = React.forwardRef(
|
|
|
2409
3646
|
)
|
|
2410
3647
|
);
|
|
2411
3648
|
|
|
2412
|
-
const
|
|
3649
|
+
const IconTextHTwo = React.forwardRef(
|
|
2413
3650
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2414
3651
|
StyledIcon,
|
|
2415
3652
|
{
|
|
@@ -2419,17 +3656,20 @@ const IconStopCircle = React.forwardRef(
|
|
|
2419
3656
|
fill: "none",
|
|
2420
3657
|
ref: forwardRef2
|
|
2421
3658
|
},
|
|
2422
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
r: 8.5,
|
|
3659
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3660
|
+
clipPath: "url(#a)"
|
|
3661
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2426
3662
|
stroke: "currentColor",
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
3663
|
+
strokeLinecap: "round",
|
|
3664
|
+
strokeLinejoin: "round",
|
|
3665
|
+
strokeWidth: 2,
|
|
3666
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6h-5v6h5"
|
|
3667
|
+
})),
|
|
3668
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3669
|
+
id: "a"
|
|
3670
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3671
|
+
d: "M0 0h24v24H0z"
|
|
3672
|
+
})))
|
|
2433
3673
|
)
|
|
2434
3674
|
);
|
|
2435
3675
|
|
|
@@ -2502,6 +3742,29 @@ const IconTicket = React.forwardRef(
|
|
|
2502
3742
|
)
|
|
2503
3743
|
);
|
|
2504
3744
|
|
|
3745
|
+
const IconTimer = React.forwardRef(
|
|
3746
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3747
|
+
StyledIcon,
|
|
3748
|
+
{
|
|
3749
|
+
...props,
|
|
3750
|
+
size,
|
|
3751
|
+
viewBox: "0 0 24 24",
|
|
3752
|
+
fill: "none",
|
|
3753
|
+
ref: forwardRef2
|
|
3754
|
+
},
|
|
3755
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3756
|
+
fill: "currentColor",
|
|
3757
|
+
d: "m11.293 11.293-.707.707L12 13.414l.707-.707-1.414-1.414Zm4.414-1.586a1 1 0 0 0-1.414-1.414l1.414 1.414ZM13 1a1 1 0 1 0-2 0h2Zm-.293 11.707 3-3-1.414-1.414-3 3 1.414 1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Zm1-1V1h-2v2h2Z"
|
|
3758
|
+
}),
|
|
3759
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
3760
|
+
cx: 12,
|
|
3761
|
+
cy: 12,
|
|
3762
|
+
r: 2,
|
|
3763
|
+
fill: "currentColor"
|
|
3764
|
+
})
|
|
3765
|
+
)
|
|
3766
|
+
);
|
|
3767
|
+
|
|
2505
3768
|
const IconTrackpad = React.forwardRef(
|
|
2506
3769
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2507
3770
|
StyledIcon,
|
|
@@ -2695,6 +3958,62 @@ const IconUsers = React.forwardRef(
|
|
|
2695
3958
|
)
|
|
2696
3959
|
);
|
|
2697
3960
|
|
|
3961
|
+
const IconViewCenter = React.forwardRef(
|
|
3962
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3963
|
+
StyledIcon,
|
|
3964
|
+
{
|
|
3965
|
+
...props,
|
|
3966
|
+
size,
|
|
3967
|
+
viewBox: "0 0 24 24",
|
|
3968
|
+
fill: "none",
|
|
3969
|
+
ref: forwardRef2
|
|
3970
|
+
},
|
|
3971
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3972
|
+
stroke: "currentColor",
|
|
3973
|
+
strokeLinecap: "round",
|
|
3974
|
+
strokeLinejoin: "round",
|
|
3975
|
+
strokeWidth: 2,
|
|
3976
|
+
d: "M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"
|
|
3977
|
+
}),
|
|
3978
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
3979
|
+
width: 10,
|
|
3980
|
+
height: 8,
|
|
3981
|
+
x: 7,
|
|
3982
|
+
y: 8,
|
|
3983
|
+
fill: "currentColor",
|
|
3984
|
+
rx: 1
|
|
3985
|
+
})
|
|
3986
|
+
)
|
|
3987
|
+
);
|
|
3988
|
+
|
|
3989
|
+
const IconViewSideLeft = React.forwardRef(
|
|
3990
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3991
|
+
StyledIcon,
|
|
3992
|
+
{
|
|
3993
|
+
...props,
|
|
3994
|
+
size,
|
|
3995
|
+
viewBox: "0 0 24 24",
|
|
3996
|
+
fill: "none",
|
|
3997
|
+
ref: forwardRef2
|
|
3998
|
+
},
|
|
3999
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4000
|
+
stroke: "currentColor",
|
|
4001
|
+
strokeLinecap: "round",
|
|
4002
|
+
strokeLinejoin: "round",
|
|
4003
|
+
strokeWidth: 2,
|
|
4004
|
+
d: "M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"
|
|
4005
|
+
}),
|
|
4006
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
4007
|
+
width: 6,
|
|
4008
|
+
height: 10,
|
|
4009
|
+
x: 6,
|
|
4010
|
+
y: 7,
|
|
4011
|
+
fill: "currentColor",
|
|
4012
|
+
rx: 1
|
|
4013
|
+
})
|
|
4014
|
+
)
|
|
4015
|
+
);
|
|
4016
|
+
|
|
2698
4017
|
const IconWallet = React.forwardRef(
|
|
2699
4018
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2700
4019
|
StyledIcon,
|
|
@@ -2718,6 +4037,14 @@ const IconWallet = React.forwardRef(
|
|
|
2718
4037
|
)
|
|
2719
4038
|
);
|
|
2720
4039
|
|
|
4040
|
+
exports.IconAddLineBottom = IconAddLineBottom;
|
|
4041
|
+
exports.IconAddLineRight = IconAddLineRight;
|
|
4042
|
+
exports.IconAlignBottom = IconAlignBottom;
|
|
4043
|
+
exports.IconAlignCenterHorizontal = IconAlignCenterHorizontal;
|
|
4044
|
+
exports.IconAlignCenterVertical = IconAlignCenterVertical;
|
|
4045
|
+
exports.IconAlignLeft = IconAlignLeft;
|
|
4046
|
+
exports.IconAlignRight = IconAlignRight;
|
|
4047
|
+
exports.IconAlignTop = IconAlignTop;
|
|
2721
4048
|
exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
2722
4049
|
exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
|
|
2723
4050
|
exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
|
|
@@ -2736,8 +4063,13 @@ exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
|
|
|
2736
4063
|
exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
|
|
2737
4064
|
exports.IconArticle = IconArticle;
|
|
2738
4065
|
exports.IconBarThree = IconBarThree;
|
|
4066
|
+
exports.IconBell = IconBell;
|
|
4067
|
+
exports.IconBellSlash = IconBellSlash;
|
|
4068
|
+
exports.IconBellTilt = IconBellTilt;
|
|
4069
|
+
exports.IconBookmark = IconBookmark;
|
|
2739
4070
|
exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
|
|
2740
4071
|
exports.IconBracketsCurlyCirclesThree = IconBracketsCurlyCirclesThree;
|
|
4072
|
+
exports.IconCalendarBlank = IconCalendarBlank;
|
|
2741
4073
|
exports.IconCamera = IconCamera;
|
|
2742
4074
|
exports.IconCard = IconCard;
|
|
2743
4075
|
exports.IconCardNumberThree = IconCardNumberThree;
|
|
@@ -2754,8 +4086,10 @@ exports.IconCircle = IconCircle;
|
|
|
2754
4086
|
exports.IconCircleMotionX = IconCircleMotionX;
|
|
2755
4087
|
exports.IconCircleNotch = IconCircleNotch;
|
|
2756
4088
|
exports.IconCirclesConnected = IconCirclesConnected;
|
|
4089
|
+
exports.IconClock = IconClock;
|
|
2757
4090
|
exports.IconClockCounterClockwise = IconClockCounterClockwise;
|
|
2758
4091
|
exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
|
|
4092
|
+
exports.IconClockOvertime = IconClockOvertime;
|
|
2759
4093
|
exports.IconCluster = IconCluster;
|
|
2760
4094
|
exports.IconClustered = IconClustered;
|
|
2761
4095
|
exports.IconCog = IconCog;
|
|
@@ -2765,6 +4099,8 @@ exports.IconCross = IconCross;
|
|
|
2765
4099
|
exports.IconCrossCircle = IconCrossCircle;
|
|
2766
4100
|
exports.IconCursor = IconCursor;
|
|
2767
4101
|
exports.IconCursorFilled = IconCursorFilled;
|
|
4102
|
+
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
4103
|
+
exports.IconDistributeVertical = IconDistributeVertical;
|
|
2768
4104
|
exports.IconEnvelope = IconEnvelope;
|
|
2769
4105
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
2770
4106
|
exports.IconFactory = IconFactory;
|
|
@@ -2772,6 +4108,9 @@ exports.IconFactoryHouse = IconFactoryHouse;
|
|
|
2772
4108
|
exports.IconFunnel = IconFunnel;
|
|
2773
4109
|
exports.IconGauge = IconGauge;
|
|
2774
4110
|
exports.IconGlobe = IconGlobe;
|
|
4111
|
+
exports.IconGraduationCap = IconGraduationCap;
|
|
4112
|
+
exports.IconGridFour = IconGridFour;
|
|
4113
|
+
exports.IconGridSix = IconGridSix;
|
|
2775
4114
|
exports.IconHand = IconHand;
|
|
2776
4115
|
exports.IconHandFilled = IconHandFilled;
|
|
2777
4116
|
exports.IconHouse = IconHouse;
|
|
@@ -2781,11 +4120,19 @@ exports.IconKanban = IconKanban;
|
|
|
2781
4120
|
exports.IconKey = IconKey;
|
|
2782
4121
|
exports.IconKeycap = IconKeycap;
|
|
2783
4122
|
exports.IconLaptop = IconLaptop;
|
|
4123
|
+
exports.IconLayout = IconLayout;
|
|
4124
|
+
exports.IconLifesaver = IconLifesaver;
|
|
4125
|
+
exports.IconLightning = IconLightning;
|
|
2784
4126
|
exports.IconLineDiagonal = IconLineDiagonal;
|
|
4127
|
+
exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
|
|
4128
|
+
exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
|
|
4129
|
+
exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
2785
4130
|
exports.IconLink = IconLink;
|
|
2786
4131
|
exports.IconLockClosed = IconLockClosed;
|
|
2787
4132
|
exports.IconLockOpen = IconLockOpen;
|
|
4133
|
+
exports.IconMagnet = IconMagnet;
|
|
2788
4134
|
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
4135
|
+
exports.IconMap = IconMap;
|
|
2789
4136
|
exports.IconMicrophone = IconMicrophone;
|
|
2790
4137
|
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
2791
4138
|
exports.IconMinus = IconMinus;
|
|
@@ -2798,12 +4145,19 @@ exports.IconPlayCircle = IconPlayCircle;
|
|
|
2798
4145
|
exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
2799
4146
|
exports.IconPlug = IconPlug;
|
|
2800
4147
|
exports.IconPlus = IconPlus;
|
|
4148
|
+
exports.IconPushPin = IconPushPin;
|
|
2801
4149
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
4150
|
+
exports.IconRectanglesThreeAligned = IconRectanglesThreeAligned;
|
|
4151
|
+
exports.IconRectanglesThreeFree = IconRectanglesThreeFree;
|
|
4152
|
+
exports.IconRectanglesThreeOverlap = IconRectanglesThreeOverlap;
|
|
4153
|
+
exports.IconRectanglesTwoLine = IconRectanglesTwoLine;
|
|
2802
4154
|
exports.IconRhombus = IconRhombus;
|
|
2803
4155
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
2804
4156
|
exports.IconShapes = IconShapes;
|
|
2805
4157
|
exports.IconShieldCheck = IconShieldCheck;
|
|
2806
4158
|
exports.IconShieldLock = IconShieldLock;
|
|
4159
|
+
exports.IconSidebarClosed = IconSidebarClosed;
|
|
4160
|
+
exports.IconSidebarOpen = IconSidebarOpen;
|
|
2807
4161
|
exports.IconSlidersX = IconSlidersX;
|
|
2808
4162
|
exports.IconSlidersY = IconSlidersY;
|
|
2809
4163
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
@@ -2813,18 +4167,31 @@ exports.IconSocialTwitter = IconSocialTwitter;
|
|
|
2813
4167
|
exports.IconSocialYoutube = IconSocialYoutube;
|
|
2814
4168
|
exports.IconSpeakerCross = IconSpeakerCross;
|
|
2815
4169
|
exports.IconSpeakerHigh = IconSpeakerHigh;
|
|
4170
|
+
exports.IconSplitVertical = IconSplitVertical;
|
|
2816
4171
|
exports.IconSquare = IconSquare;
|
|
2817
4172
|
exports.IconSquareBracketsAngleSlash = IconSquareBracketsAngleSlash;
|
|
2818
4173
|
exports.IconSquareCirclesTwo = IconSquareCirclesTwo;
|
|
4174
|
+
exports.IconSquareLineSquareDashed = IconSquareLineSquareDashed;
|
|
2819
4175
|
exports.IconSquareRounded = IconSquareRounded;
|
|
2820
4176
|
exports.IconSquareTriangleCirclePlus = IconSquareTriangleCirclePlus;
|
|
2821
4177
|
exports.IconSquaresFour = IconSquaresFour;
|
|
4178
|
+
exports.IconSquaresGroup = IconSquaresGroup;
|
|
4179
|
+
exports.IconSquaresMerge = IconSquaresMerge;
|
|
2822
4180
|
exports.IconSquaresThree = IconSquaresThree;
|
|
4181
|
+
exports.IconSquaresTwoOverlap = IconSquaresTwoOverlap;
|
|
4182
|
+
exports.IconSquaresUngroup = IconSquaresUngroup;
|
|
4183
|
+
exports.IconSquaresUnmerge = IconSquaresUnmerge;
|
|
4184
|
+
exports.IconStack = IconStack;
|
|
2823
4185
|
exports.IconStickyNote = IconStickyNote;
|
|
2824
4186
|
exports.IconStopCircle = IconStopCircle;
|
|
4187
|
+
exports.IconTag = IconTag;
|
|
4188
|
+
exports.IconTextHOne = IconTextHOne;
|
|
4189
|
+
exports.IconTextHThree = IconTextHThree;
|
|
4190
|
+
exports.IconTextHTwo = IconTextHTwo;
|
|
2825
4191
|
exports.IconTextT = IconTextT;
|
|
2826
4192
|
exports.IconThumbsUp = IconThumbsUp;
|
|
2827
4193
|
exports.IconTicket = IconTicket;
|
|
4194
|
+
exports.IconTimer = IconTimer;
|
|
2828
4195
|
exports.IconTrackpad = IconTrackpad;
|
|
2829
4196
|
exports.IconTrash = IconTrash;
|
|
2830
4197
|
exports.IconTrashSimple = IconTrashSimple;
|
|
@@ -2833,5 +4200,7 @@ exports.IconTrident = IconTrident;
|
|
|
2833
4200
|
exports.IconUser = IconUser;
|
|
2834
4201
|
exports.IconUserAdd = IconUserAdd;
|
|
2835
4202
|
exports.IconUsers = IconUsers;
|
|
4203
|
+
exports.IconViewCenter = IconViewCenter;
|
|
4204
|
+
exports.IconViewSideLeft = IconViewSideLeft;
|
|
2836
4205
|
exports.IconWallet = IconWallet;
|
|
2837
4206
|
//# sourceMappingURL=main.js.map
|