@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/module.js
CHANGED
|
@@ -23,6 +23,208 @@ const StyledIcon = styled(Primitive.svg, {
|
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
|
|
26
|
+
const IconAddLineBottom = forwardRef(
|
|
27
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
28
|
+
StyledIcon,
|
|
29
|
+
{
|
|
30
|
+
...props,
|
|
31
|
+
size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none",
|
|
34
|
+
ref: forwardRef2
|
|
35
|
+
},
|
|
36
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
37
|
+
clipPath: "url(#a)"
|
|
38
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
39
|
+
stroke: "currentColor",
|
|
40
|
+
strokeLinecap: "round",
|
|
41
|
+
strokeWidth: 2,
|
|
42
|
+
d: "M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4"
|
|
43
|
+
})),
|
|
44
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
45
|
+
id: "a"
|
|
46
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
47
|
+
d: "M0 0h24v24H0z"
|
|
48
|
+
})))
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const IconAddLineRight = forwardRef(
|
|
53
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
54
|
+
StyledIcon,
|
|
55
|
+
{
|
|
56
|
+
...props,
|
|
57
|
+
size,
|
|
58
|
+
viewBox: "0 0 24 24",
|
|
59
|
+
fill: "none",
|
|
60
|
+
ref: forwardRef2
|
|
61
|
+
},
|
|
62
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
63
|
+
clipPath: "url(#a)"
|
|
64
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
65
|
+
stroke: "currentColor",
|
|
66
|
+
strokeLinecap: "round",
|
|
67
|
+
strokeWidth: 2,
|
|
68
|
+
d: "M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4"
|
|
69
|
+
})),
|
|
70
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
71
|
+
id: "a"
|
|
72
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
73
|
+
d: "M0 0h24v24H0z"
|
|
74
|
+
})))
|
|
75
|
+
)
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
const IconAlignBottom = forwardRef(
|
|
79
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
80
|
+
StyledIcon,
|
|
81
|
+
{
|
|
82
|
+
...props,
|
|
83
|
+
size,
|
|
84
|
+
viewBox: "0 0 24 24",
|
|
85
|
+
fill: "none",
|
|
86
|
+
ref: forwardRef2
|
|
87
|
+
},
|
|
88
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
89
|
+
stroke: "currentColor",
|
|
90
|
+
strokeLinecap: "round",
|
|
91
|
+
strokeLinejoin: "round",
|
|
92
|
+
strokeMiterlimit: 1.414,
|
|
93
|
+
strokeWidth: 2,
|
|
94
|
+
d: "M3 20h18"
|
|
95
|
+
}),
|
|
96
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
97
|
+
fill: "currentColor",
|
|
98
|
+
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"
|
|
99
|
+
})
|
|
100
|
+
)
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
const IconAlignCenterHorizontal = forwardRef(
|
|
104
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
105
|
+
StyledIcon,
|
|
106
|
+
{
|
|
107
|
+
...props,
|
|
108
|
+
size,
|
|
109
|
+
viewBox: "0 0 24 24",
|
|
110
|
+
fill: "none",
|
|
111
|
+
ref: forwardRef2
|
|
112
|
+
},
|
|
113
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
114
|
+
stroke: "currentColor",
|
|
115
|
+
strokeLinecap: "round",
|
|
116
|
+
strokeLinejoin: "round",
|
|
117
|
+
strokeMiterlimit: 1.414,
|
|
118
|
+
strokeWidth: 2,
|
|
119
|
+
d: "M12 3v18"
|
|
120
|
+
}),
|
|
121
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
122
|
+
fill: "currentColor",
|
|
123
|
+
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"
|
|
124
|
+
})
|
|
125
|
+
)
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
const IconAlignCenterVertical = forwardRef(
|
|
129
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
130
|
+
StyledIcon,
|
|
131
|
+
{
|
|
132
|
+
...props,
|
|
133
|
+
size,
|
|
134
|
+
viewBox: "0 0 24 24",
|
|
135
|
+
fill: "none",
|
|
136
|
+
ref: forwardRef2
|
|
137
|
+
},
|
|
138
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
139
|
+
stroke: "currentColor",
|
|
140
|
+
strokeLinecap: "round",
|
|
141
|
+
strokeLinejoin: "round",
|
|
142
|
+
strokeMiterlimit: 1.414,
|
|
143
|
+
strokeWidth: 2,
|
|
144
|
+
d: "M3 12h18"
|
|
145
|
+
}),
|
|
146
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
147
|
+
fill: "currentColor",
|
|
148
|
+
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"
|
|
149
|
+
})
|
|
150
|
+
)
|
|
151
|
+
);
|
|
152
|
+
|
|
153
|
+
const IconAlignLeft = forwardRef(
|
|
154
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
155
|
+
StyledIcon,
|
|
156
|
+
{
|
|
157
|
+
...props,
|
|
158
|
+
size,
|
|
159
|
+
viewBox: "0 0 24 24",
|
|
160
|
+
fill: "none",
|
|
161
|
+
ref: forwardRef2
|
|
162
|
+
},
|
|
163
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
164
|
+
stroke: "currentColor",
|
|
165
|
+
strokeLinecap: "round",
|
|
166
|
+
strokeLinejoin: "round",
|
|
167
|
+
strokeMiterlimit: 1.414,
|
|
168
|
+
strokeWidth: 2,
|
|
169
|
+
d: "M4 21V3"
|
|
170
|
+
}),
|
|
171
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
172
|
+
fill: "currentColor",
|
|
173
|
+
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"
|
|
174
|
+
})
|
|
175
|
+
)
|
|
176
|
+
);
|
|
177
|
+
|
|
178
|
+
const IconAlignRight = forwardRef(
|
|
179
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
180
|
+
StyledIcon,
|
|
181
|
+
{
|
|
182
|
+
...props,
|
|
183
|
+
size,
|
|
184
|
+
viewBox: "0 0 24 24",
|
|
185
|
+
fill: "none",
|
|
186
|
+
ref: forwardRef2
|
|
187
|
+
},
|
|
188
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
189
|
+
stroke: "currentColor",
|
|
190
|
+
strokeLinecap: "round",
|
|
191
|
+
strokeLinejoin: "round",
|
|
192
|
+
strokeMiterlimit: 1.414,
|
|
193
|
+
strokeWidth: 2,
|
|
194
|
+
d: "M20 3v18"
|
|
195
|
+
}),
|
|
196
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
197
|
+
fill: "currentColor",
|
|
198
|
+
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"
|
|
199
|
+
})
|
|
200
|
+
)
|
|
201
|
+
);
|
|
202
|
+
|
|
203
|
+
const IconAlignTop = forwardRef(
|
|
204
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
205
|
+
StyledIcon,
|
|
206
|
+
{
|
|
207
|
+
...props,
|
|
208
|
+
size,
|
|
209
|
+
viewBox: "0 0 24 24",
|
|
210
|
+
fill: "none",
|
|
211
|
+
ref: forwardRef2
|
|
212
|
+
},
|
|
213
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
214
|
+
stroke: "currentColor",
|
|
215
|
+
strokeLinecap: "round",
|
|
216
|
+
strokeLinejoin: "round",
|
|
217
|
+
strokeMiterlimit: 1.414,
|
|
218
|
+
strokeWidth: 2,
|
|
219
|
+
d: "M3 3h18"
|
|
220
|
+
}),
|
|
221
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
222
|
+
fill: "currentColor",
|
|
223
|
+
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"
|
|
224
|
+
})
|
|
225
|
+
)
|
|
226
|
+
);
|
|
227
|
+
|
|
26
228
|
const IconArrowBoxOut = forwardRef(
|
|
27
229
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
28
230
|
StyledIcon,
|
|
@@ -420,7 +622,7 @@ const IconBarThree = forwardRef(
|
|
|
420
622
|
)
|
|
421
623
|
);
|
|
422
624
|
|
|
423
|
-
const
|
|
625
|
+
const IconBellSlash = forwardRef(
|
|
424
626
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
425
627
|
StyledIcon,
|
|
426
628
|
{
|
|
@@ -433,10 +635,8 @@ const IconBracketsAngleSlash = forwardRef(
|
|
|
433
635
|
/* @__PURE__ */ React.createElement("g", {
|
|
434
636
|
clipPath: "url(#a)"
|
|
435
637
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
strokeWidth: 2,
|
|
439
|
-
d: "m7 8-4 4 4 4m10-8 4 4-4 4M14 5l-4 14"
|
|
638
|
+
fill: "currentColor",
|
|
639
|
+
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"
|
|
440
640
|
})),
|
|
441
641
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
442
642
|
id: "a"
|
|
@@ -446,7 +646,7 @@ const IconBracketsAngleSlash = forwardRef(
|
|
|
446
646
|
)
|
|
447
647
|
);
|
|
448
648
|
|
|
449
|
-
const
|
|
649
|
+
const IconBellTilt = forwardRef(
|
|
450
650
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
451
651
|
StyledIcon,
|
|
452
652
|
{
|
|
@@ -459,13 +659,9 @@ const IconBracketsCurlyCirclesThree = forwardRef(
|
|
|
459
659
|
/* @__PURE__ */ React.createElement("g", {
|
|
460
660
|
clipPath: "url(#a)"
|
|
461
661
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
462
|
-
fill: "currentColor",
|
|
463
|
-
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"
|
|
464
|
-
}), /* @__PURE__ */ React.createElement("path", {
|
|
465
662
|
stroke: "currentColor",
|
|
466
|
-
strokeLinecap: "round",
|
|
467
663
|
strokeWidth: 2,
|
|
468
|
-
d: "
|
|
664
|
+
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"
|
|
469
665
|
})),
|
|
470
666
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
471
667
|
id: "a"
|
|
@@ -475,7 +671,7 @@ const IconBracketsCurlyCirclesThree = forwardRef(
|
|
|
475
671
|
)
|
|
476
672
|
);
|
|
477
673
|
|
|
478
|
-
const
|
|
674
|
+
const IconBell = forwardRef(
|
|
479
675
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
480
676
|
StyledIcon,
|
|
481
677
|
{
|
|
@@ -486,14 +682,11 @@ const IconCamera = forwardRef(
|
|
|
486
682
|
ref: forwardRef2
|
|
487
683
|
},
|
|
488
684
|
/* @__PURE__ */ React.createElement("g", {
|
|
489
|
-
stroke: "currentColor",
|
|
490
|
-
strokeLinecap: "round",
|
|
491
|
-
strokeWidth: 2,
|
|
492
685
|
clipPath: "url(#a)"
|
|
493
686
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
d: "
|
|
687
|
+
stroke: "currentColor",
|
|
688
|
+
strokeWidth: 2,
|
|
689
|
+
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"
|
|
497
690
|
})),
|
|
498
691
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
499
692
|
id: "a"
|
|
@@ -503,7 +696,7 @@ const IconCamera = forwardRef(
|
|
|
503
696
|
)
|
|
504
697
|
);
|
|
505
698
|
|
|
506
|
-
const
|
|
699
|
+
const IconBookmark = forwardRef(
|
|
507
700
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
508
701
|
StyledIcon,
|
|
509
702
|
{
|
|
@@ -513,21 +706,24 @@ const IconCardNumberThree = forwardRef(
|
|
|
513
706
|
fill: "none",
|
|
514
707
|
ref: forwardRef2
|
|
515
708
|
},
|
|
516
|
-
/* @__PURE__ */ React.createElement("
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
}),
|
|
520
|
-
/* @__PURE__ */ React.createElement("path", {
|
|
709
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
710
|
+
clipPath: "url(#a)"
|
|
711
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
521
712
|
stroke: "currentColor",
|
|
522
713
|
strokeLinecap: "round",
|
|
523
714
|
strokeLinejoin: "round",
|
|
524
715
|
strokeWidth: 2,
|
|
525
|
-
d: "
|
|
526
|
-
})
|
|
716
|
+
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"
|
|
717
|
+
})),
|
|
718
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
719
|
+
id: "a"
|
|
720
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
721
|
+
d: "M0 0h24v24H0z"
|
|
722
|
+
})))
|
|
527
723
|
)
|
|
528
724
|
);
|
|
529
725
|
|
|
530
|
-
const
|
|
726
|
+
const IconBracketsAngleSlash = forwardRef(
|
|
531
727
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
532
728
|
StyledIcon,
|
|
533
729
|
{
|
|
@@ -537,20 +733,23 @@ const IconCard = forwardRef(
|
|
|
537
733
|
fill: "none",
|
|
538
734
|
ref: forwardRef2
|
|
539
735
|
},
|
|
540
|
-
/* @__PURE__ */ React.createElement("
|
|
736
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
737
|
+
clipPath: "url(#a)"
|
|
738
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
541
739
|
stroke: "currentColor",
|
|
542
740
|
strokeLinecap: "round",
|
|
543
741
|
strokeWidth: 2,
|
|
544
|
-
d: "
|
|
545
|
-
}),
|
|
546
|
-
/* @__PURE__ */ React.createElement("
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
742
|
+
d: "m7 8-4 4 4 4m10-8 4 4-4 4M14 5l-4 14"
|
|
743
|
+
})),
|
|
744
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
745
|
+
id: "a"
|
|
746
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
747
|
+
d: "M0 0h24v24H0z"
|
|
748
|
+
})))
|
|
550
749
|
)
|
|
551
750
|
);
|
|
552
751
|
|
|
553
|
-
const
|
|
752
|
+
const IconBracketsCurlyCirclesThree = forwardRef(
|
|
554
753
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
555
754
|
StyledIcon,
|
|
556
755
|
{
|
|
@@ -560,20 +759,152 @@ const IconCardsPoker = forwardRef(
|
|
|
560
759
|
fill: "none",
|
|
561
760
|
ref: forwardRef2
|
|
562
761
|
},
|
|
563
|
-
/* @__PURE__ */ React.createElement("
|
|
762
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
763
|
+
clipPath: "url(#a)"
|
|
764
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
765
|
+
fill: "currentColor",
|
|
766
|
+
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"
|
|
767
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
564
768
|
stroke: "currentColor",
|
|
565
769
|
strokeLinecap: "round",
|
|
566
770
|
strokeWidth: 2,
|
|
567
|
-
d: "
|
|
568
|
-
}),
|
|
569
|
-
/* @__PURE__ */ React.createElement("
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
)
|
|
575
|
-
|
|
576
|
-
|
|
771
|
+
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"
|
|
772
|
+
})),
|
|
773
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
774
|
+
id: "a"
|
|
775
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
776
|
+
d: "M0 0h24v24H0z"
|
|
777
|
+
})))
|
|
778
|
+
)
|
|
779
|
+
);
|
|
780
|
+
|
|
781
|
+
const IconCalendarBlank = forwardRef(
|
|
782
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
783
|
+
StyledIcon,
|
|
784
|
+
{
|
|
785
|
+
...props,
|
|
786
|
+
size,
|
|
787
|
+
viewBox: "0 0 24 24",
|
|
788
|
+
fill: "none",
|
|
789
|
+
ref: forwardRef2
|
|
790
|
+
},
|
|
791
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
792
|
+
clipPath: "url(#a)"
|
|
793
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
794
|
+
stroke: "currentColor",
|
|
795
|
+
strokeLinecap: "round",
|
|
796
|
+
strokeLinejoin: "round",
|
|
797
|
+
strokeMiterlimit: 1.414,
|
|
798
|
+
strokeWidth: 2,
|
|
799
|
+
d: "M3 11v10h18V11M3 11V5h18v6M3 11h18m-5-8v4M8 3v4"
|
|
800
|
+
})),
|
|
801
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
802
|
+
id: "a"
|
|
803
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
804
|
+
d: "M0 0h24v24H0z"
|
|
805
|
+
})))
|
|
806
|
+
)
|
|
807
|
+
);
|
|
808
|
+
|
|
809
|
+
const IconCamera = forwardRef(
|
|
810
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
811
|
+
StyledIcon,
|
|
812
|
+
{
|
|
813
|
+
...props,
|
|
814
|
+
size,
|
|
815
|
+
viewBox: "0 0 24 24",
|
|
816
|
+
fill: "none",
|
|
817
|
+
ref: forwardRef2
|
|
818
|
+
},
|
|
819
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
820
|
+
stroke: "currentColor",
|
|
821
|
+
strokeLinecap: "round",
|
|
822
|
+
strokeWidth: 2,
|
|
823
|
+
clipPath: "url(#a)"
|
|
824
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
825
|
+
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"
|
|
826
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
827
|
+
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"
|
|
828
|
+
})),
|
|
829
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
830
|
+
id: "a"
|
|
831
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
832
|
+
d: "M0 0h24v24H0z"
|
|
833
|
+
})))
|
|
834
|
+
)
|
|
835
|
+
);
|
|
836
|
+
|
|
837
|
+
const IconCardNumberThree = forwardRef(
|
|
838
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
839
|
+
StyledIcon,
|
|
840
|
+
{
|
|
841
|
+
...props,
|
|
842
|
+
size,
|
|
843
|
+
viewBox: "0 0 24 24",
|
|
844
|
+
fill: "none",
|
|
845
|
+
ref: forwardRef2
|
|
846
|
+
},
|
|
847
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
848
|
+
fill: "currentColor",
|
|
849
|
+
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"
|
|
850
|
+
}),
|
|
851
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
852
|
+
stroke: "currentColor",
|
|
853
|
+
strokeLinecap: "round",
|
|
854
|
+
strokeLinejoin: "round",
|
|
855
|
+
strokeWidth: 2,
|
|
856
|
+
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"
|
|
857
|
+
})
|
|
858
|
+
)
|
|
859
|
+
);
|
|
860
|
+
|
|
861
|
+
const IconCard = forwardRef(
|
|
862
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
863
|
+
StyledIcon,
|
|
864
|
+
{
|
|
865
|
+
...props,
|
|
866
|
+
size,
|
|
867
|
+
viewBox: "0 0 24 24",
|
|
868
|
+
fill: "none",
|
|
869
|
+
ref: forwardRef2
|
|
870
|
+
},
|
|
871
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
872
|
+
stroke: "currentColor",
|
|
873
|
+
strokeLinecap: "round",
|
|
874
|
+
strokeWidth: 2,
|
|
875
|
+
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"
|
|
876
|
+
}),
|
|
877
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
878
|
+
fill: "currentColor",
|
|
879
|
+
d: "M18 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
880
|
+
})
|
|
881
|
+
)
|
|
882
|
+
);
|
|
883
|
+
|
|
884
|
+
const IconCardsPoker = forwardRef(
|
|
885
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
886
|
+
StyledIcon,
|
|
887
|
+
{
|
|
888
|
+
...props,
|
|
889
|
+
size,
|
|
890
|
+
viewBox: "0 0 24 24",
|
|
891
|
+
fill: "none",
|
|
892
|
+
ref: forwardRef2
|
|
893
|
+
},
|
|
894
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
895
|
+
stroke: "currentColor",
|
|
896
|
+
strokeLinecap: "round",
|
|
897
|
+
strokeWidth: 2,
|
|
898
|
+
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"
|
|
899
|
+
}),
|
|
900
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
901
|
+
fill: "currentColor",
|
|
902
|
+
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"
|
|
903
|
+
})
|
|
904
|
+
)
|
|
905
|
+
);
|
|
906
|
+
|
|
907
|
+
const IconChartBarYSimple = forwardRef(
|
|
577
908
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
578
909
|
StyledIcon,
|
|
579
910
|
{
|
|
@@ -899,6 +1230,56 @@ const IconClockCounterClockwise = forwardRef(
|
|
|
899
1230
|
)
|
|
900
1231
|
);
|
|
901
1232
|
|
|
1233
|
+
const IconClockOvertime = forwardRef(
|
|
1234
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1235
|
+
StyledIcon,
|
|
1236
|
+
{
|
|
1237
|
+
...props,
|
|
1238
|
+
size,
|
|
1239
|
+
viewBox: "0 0 24 24",
|
|
1240
|
+
fill: "none",
|
|
1241
|
+
ref: forwardRef2
|
|
1242
|
+
},
|
|
1243
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1244
|
+
stroke: "currentColor",
|
|
1245
|
+
strokeLinecap: "square",
|
|
1246
|
+
strokeMiterlimit: 1.414,
|
|
1247
|
+
strokeWidth: 2,
|
|
1248
|
+
d: "M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1249
|
+
}),
|
|
1250
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1251
|
+
fill: "currentColor",
|
|
1252
|
+
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"
|
|
1253
|
+
})
|
|
1254
|
+
)
|
|
1255
|
+
);
|
|
1256
|
+
|
|
1257
|
+
const IconClock = forwardRef(
|
|
1258
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1259
|
+
StyledIcon,
|
|
1260
|
+
{
|
|
1261
|
+
...props,
|
|
1262
|
+
size,
|
|
1263
|
+
viewBox: "0 0 24 24",
|
|
1264
|
+
fill: "none",
|
|
1265
|
+
ref: forwardRef2
|
|
1266
|
+
},
|
|
1267
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1268
|
+
clipPath: "url(#a)"
|
|
1269
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1270
|
+
stroke: "currentColor",
|
|
1271
|
+
strokeLinecap: "round",
|
|
1272
|
+
strokeWidth: 2,
|
|
1273
|
+
d: "M11 7.4v4.05l2.7 2.25M20 11a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
1274
|
+
})),
|
|
1275
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1276
|
+
id: "a"
|
|
1277
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1278
|
+
d: "M0 0h24v24H0z"
|
|
1279
|
+
})))
|
|
1280
|
+
)
|
|
1281
|
+
);
|
|
1282
|
+
|
|
902
1283
|
const IconCluster = forwardRef(
|
|
903
1284
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
904
1285
|
StyledIcon,
|
|
@@ -1106,6 +1487,61 @@ const IconCursor = forwardRef(
|
|
|
1106
1487
|
)
|
|
1107
1488
|
);
|
|
1108
1489
|
|
|
1490
|
+
const IconDistributeHorizontal = forwardRef(
|
|
1491
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1492
|
+
StyledIcon,
|
|
1493
|
+
{
|
|
1494
|
+
...props,
|
|
1495
|
+
size,
|
|
1496
|
+
viewBox: "0 0 24 24",
|
|
1497
|
+
fill: "none",
|
|
1498
|
+
ref: forwardRef2
|
|
1499
|
+
},
|
|
1500
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1501
|
+
stroke: "currentColor",
|
|
1502
|
+
strokeLinecap: "round",
|
|
1503
|
+
strokeWidth: 2,
|
|
1504
|
+
d: "M4 3v18M20 3v18"
|
|
1505
|
+
}),
|
|
1506
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
1507
|
+
width: 4,
|
|
1508
|
+
height: 10,
|
|
1509
|
+
x: 10,
|
|
1510
|
+
y: 7,
|
|
1511
|
+
fill: "currentColor",
|
|
1512
|
+
rx: 2
|
|
1513
|
+
})
|
|
1514
|
+
)
|
|
1515
|
+
);
|
|
1516
|
+
|
|
1517
|
+
const IconDistributeVertical = forwardRef(
|
|
1518
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1519
|
+
StyledIcon,
|
|
1520
|
+
{
|
|
1521
|
+
...props,
|
|
1522
|
+
size,
|
|
1523
|
+
viewBox: "0 0 24 24",
|
|
1524
|
+
fill: "none",
|
|
1525
|
+
ref: forwardRef2
|
|
1526
|
+
},
|
|
1527
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1528
|
+
stroke: "currentColor",
|
|
1529
|
+
strokeLinecap: "round",
|
|
1530
|
+
strokeWidth: 2,
|
|
1531
|
+
d: "M21 4H3m18 16H3"
|
|
1532
|
+
}),
|
|
1533
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
1534
|
+
width: 4,
|
|
1535
|
+
height: 10,
|
|
1536
|
+
x: 17,
|
|
1537
|
+
y: 10,
|
|
1538
|
+
fill: "currentColor",
|
|
1539
|
+
rx: 2,
|
|
1540
|
+
transform: "rotate(90 17 10)"
|
|
1541
|
+
})
|
|
1542
|
+
)
|
|
1543
|
+
);
|
|
1544
|
+
|
|
1109
1545
|
const IconEnvelope = forwardRef(
|
|
1110
1546
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1111
1547
|
StyledIcon,
|
|
@@ -1270,7 +1706,7 @@ const IconGlobe = forwardRef(
|
|
|
1270
1706
|
)
|
|
1271
1707
|
);
|
|
1272
1708
|
|
|
1273
|
-
const
|
|
1709
|
+
const IconGraduationCap = forwardRef(
|
|
1274
1710
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1275
1711
|
StyledIcon,
|
|
1276
1712
|
{
|
|
@@ -1280,16 +1716,25 @@ const IconHandFilled = forwardRef(
|
|
|
1280
1716
|
fill: "none",
|
|
1281
1717
|
ref: forwardRef2
|
|
1282
1718
|
},
|
|
1283
|
-
/* @__PURE__ */ React.createElement("
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1719
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1720
|
+
clipPath: "url(#a)"
|
|
1721
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1722
|
+
stroke: "currentColor",
|
|
1723
|
+
strokeLinecap: "round",
|
|
1724
|
+
strokeLinejoin: "round",
|
|
1725
|
+
strokeMiterlimit: 1.414,
|
|
1726
|
+
strokeWidth: 2,
|
|
1727
|
+
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"
|
|
1728
|
+
})),
|
|
1729
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1730
|
+
id: "a"
|
|
1731
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1732
|
+
d: "M0 0h24v24H0z"
|
|
1733
|
+
})))
|
|
1289
1734
|
)
|
|
1290
1735
|
);
|
|
1291
1736
|
|
|
1292
|
-
const
|
|
1737
|
+
const IconGridFour = forwardRef(
|
|
1293
1738
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1294
1739
|
StyledIcon,
|
|
1295
1740
|
{
|
|
@@ -1302,8 +1747,11 @@ const IconHand = forwardRef(
|
|
|
1302
1747
|
/* @__PURE__ */ React.createElement("g", {
|
|
1303
1748
|
clipPath: "url(#a)"
|
|
1304
1749
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1305
|
-
|
|
1306
|
-
|
|
1750
|
+
stroke: "currentColor",
|
|
1751
|
+
strokeLinecap: "round",
|
|
1752
|
+
strokeLinejoin: "round",
|
|
1753
|
+
strokeWidth: 2,
|
|
1754
|
+
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"
|
|
1307
1755
|
})),
|
|
1308
1756
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1309
1757
|
id: "a"
|
|
@@ -1313,7 +1761,7 @@ const IconHand = forwardRef(
|
|
|
1313
1761
|
)
|
|
1314
1762
|
);
|
|
1315
1763
|
|
|
1316
|
-
const
|
|
1764
|
+
const IconGridSix = forwardRef(
|
|
1317
1765
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1318
1766
|
StyledIcon,
|
|
1319
1767
|
{
|
|
@@ -1323,11 +1771,81 @@ const IconHouse = forwardRef(
|
|
|
1323
1771
|
fill: "none",
|
|
1324
1772
|
ref: forwardRef2
|
|
1325
1773
|
},
|
|
1326
|
-
/* @__PURE__ */ React.createElement("
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1774
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1775
|
+
clipPath: "url(#a)"
|
|
1776
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1777
|
+
stroke: "currentColor",
|
|
1778
|
+
strokeLinecap: "round",
|
|
1779
|
+
strokeLinejoin: "round",
|
|
1780
|
+
strokeWidth: 2,
|
|
1781
|
+
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"
|
|
1782
|
+
})),
|
|
1783
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1784
|
+
id: "a"
|
|
1785
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1786
|
+
d: "M0 0h24v24H0z"
|
|
1787
|
+
})))
|
|
1788
|
+
)
|
|
1789
|
+
);
|
|
1790
|
+
|
|
1791
|
+
const IconHandFilled = forwardRef(
|
|
1792
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1793
|
+
StyledIcon,
|
|
1794
|
+
{
|
|
1795
|
+
...props,
|
|
1796
|
+
size,
|
|
1797
|
+
viewBox: "0 0 24 24",
|
|
1798
|
+
fill: "none",
|
|
1799
|
+
ref: forwardRef2
|
|
1800
|
+
},
|
|
1801
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1802
|
+
fill: "currentColor",
|
|
1803
|
+
fillRule: "evenodd",
|
|
1804
|
+
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",
|
|
1805
|
+
clipRule: "evenodd"
|
|
1806
|
+
})
|
|
1807
|
+
)
|
|
1808
|
+
);
|
|
1809
|
+
|
|
1810
|
+
const IconHand = forwardRef(
|
|
1811
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1812
|
+
StyledIcon,
|
|
1813
|
+
{
|
|
1814
|
+
...props,
|
|
1815
|
+
size,
|
|
1816
|
+
viewBox: "0 0 24 24",
|
|
1817
|
+
fill: "none",
|
|
1818
|
+
ref: forwardRef2
|
|
1819
|
+
},
|
|
1820
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1821
|
+
clipPath: "url(#a)"
|
|
1822
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1823
|
+
fill: "currentColor",
|
|
1824
|
+
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"
|
|
1825
|
+
})),
|
|
1826
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1827
|
+
id: "a"
|
|
1828
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1829
|
+
d: "M0 0h24v24H0z"
|
|
1830
|
+
})))
|
|
1831
|
+
)
|
|
1832
|
+
);
|
|
1833
|
+
|
|
1834
|
+
const IconHouse = forwardRef(
|
|
1835
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1836
|
+
StyledIcon,
|
|
1837
|
+
{
|
|
1838
|
+
...props,
|
|
1839
|
+
size,
|
|
1840
|
+
viewBox: "0 0 24 24",
|
|
1841
|
+
fill: "none",
|
|
1842
|
+
ref: forwardRef2
|
|
1843
|
+
},
|
|
1844
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1845
|
+
fill: "currentColor",
|
|
1846
|
+
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"
|
|
1847
|
+
})
|
|
1848
|
+
)
|
|
1331
1849
|
);
|
|
1332
1850
|
|
|
1333
1851
|
const IconImage = forwardRef(
|
|
@@ -1470,7 +1988,7 @@ const IconLaptop = forwardRef(
|
|
|
1470
1988
|
)
|
|
1471
1989
|
);
|
|
1472
1990
|
|
|
1473
|
-
const
|
|
1991
|
+
const IconLayout = forwardRef(
|
|
1474
1992
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1475
1993
|
StyledIcon,
|
|
1476
1994
|
{
|
|
@@ -1485,8 +2003,9 @@ const IconLineDiagonal = forwardRef(
|
|
|
1485
2003
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1486
2004
|
stroke: "currentColor",
|
|
1487
2005
|
strokeLinecap: "round",
|
|
2006
|
+
strokeLinejoin: "round",
|
|
1488
2007
|
strokeWidth: 2,
|
|
1489
|
-
d: "
|
|
2008
|
+
d: "M3 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12"
|
|
1490
2009
|
})),
|
|
1491
2010
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1492
2011
|
id: "a"
|
|
@@ -1496,7 +2015,7 @@ const IconLineDiagonal = forwardRef(
|
|
|
1496
2015
|
)
|
|
1497
2016
|
);
|
|
1498
2017
|
|
|
1499
|
-
const
|
|
2018
|
+
const IconLifesaver = forwardRef(
|
|
1500
2019
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1501
2020
|
StyledIcon,
|
|
1502
2021
|
{
|
|
@@ -1506,16 +2025,24 @@ const IconLink = forwardRef(
|
|
|
1506
2025
|
fill: "none",
|
|
1507
2026
|
ref: forwardRef2
|
|
1508
2027
|
},
|
|
1509
|
-
/* @__PURE__ */ React.createElement("
|
|
2028
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2029
|
+
clipPath: "url(#a)"
|
|
2030
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1510
2031
|
stroke: "currentColor",
|
|
1511
|
-
strokeLinecap: "
|
|
2032
|
+
strokeLinecap: "square",
|
|
2033
|
+
strokeMiterlimit: 1.414,
|
|
1512
2034
|
strokeWidth: 2,
|
|
1513
|
-
d: "
|
|
1514
|
-
})
|
|
2035
|
+
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"
|
|
2036
|
+
})),
|
|
2037
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2038
|
+
id: "a"
|
|
2039
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2040
|
+
d: "M0 0h24v24H0z"
|
|
2041
|
+
})))
|
|
1515
2042
|
)
|
|
1516
2043
|
);
|
|
1517
2044
|
|
|
1518
|
-
const
|
|
2045
|
+
const IconLightning = forwardRef(
|
|
1519
2046
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1520
2047
|
StyledIcon,
|
|
1521
2048
|
{
|
|
@@ -1525,22 +2052,25 @@ const IconLockClosed = forwardRef(
|
|
|
1525
2052
|
fill: "none",
|
|
1526
2053
|
ref: forwardRef2
|
|
1527
2054
|
},
|
|
1528
|
-
/* @__PURE__ */ React.createElement("
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
r: 1,
|
|
1532
|
-
fill: "currentColor"
|
|
1533
|
-
}),
|
|
1534
|
-
/* @__PURE__ */ React.createElement("path", {
|
|
2055
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2056
|
+
clipPath: "url(#a)"
|
|
2057
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1535
2058
|
stroke: "currentColor",
|
|
1536
|
-
strokeLinecap: "
|
|
2059
|
+
strokeLinecap: "square",
|
|
2060
|
+
strokeLinejoin: "round",
|
|
2061
|
+
strokeMiterlimit: 1.414,
|
|
1537
2062
|
strokeWidth: 2,
|
|
1538
|
-
d: "
|
|
1539
|
-
})
|
|
2063
|
+
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"
|
|
2064
|
+
})),
|
|
2065
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2066
|
+
id: "a"
|
|
2067
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2068
|
+
d: "M0 0h24v24H0z"
|
|
2069
|
+
})))
|
|
1540
2070
|
)
|
|
1541
2071
|
);
|
|
1542
2072
|
|
|
1543
|
-
const
|
|
2073
|
+
const IconLineDiagonal = forwardRef(
|
|
1544
2074
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1545
2075
|
StyledIcon,
|
|
1546
2076
|
{
|
|
@@ -1550,22 +2080,23 @@ const IconLockOpen = forwardRef(
|
|
|
1550
2080
|
fill: "none",
|
|
1551
2081
|
ref: forwardRef2
|
|
1552
2082
|
},
|
|
1553
|
-
/* @__PURE__ */ React.createElement("
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
r: 1,
|
|
1557
|
-
fill: "currentColor"
|
|
1558
|
-
}),
|
|
1559
|
-
/* @__PURE__ */ React.createElement("path", {
|
|
2083
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2084
|
+
clipPath: "url(#a)"
|
|
2085
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1560
2086
|
stroke: "currentColor",
|
|
1561
2087
|
strokeLinecap: "round",
|
|
1562
2088
|
strokeWidth: 2,
|
|
1563
|
-
d: "
|
|
1564
|
-
})
|
|
2089
|
+
d: "M4 20 20 4"
|
|
2090
|
+
})),
|
|
2091
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2092
|
+
id: "a"
|
|
2093
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2094
|
+
d: "M0 0h24v24H0z"
|
|
2095
|
+
})))
|
|
1565
2096
|
)
|
|
1566
2097
|
);
|
|
1567
2098
|
|
|
1568
|
-
const
|
|
2099
|
+
const IconLinesThreeHorizontalLineVerticalCenter = forwardRef(
|
|
1569
2100
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1570
2101
|
StyledIcon,
|
|
1571
2102
|
{
|
|
@@ -1575,16 +2106,24 @@ const IconMagnifyingGlass = forwardRef(
|
|
|
1575
2106
|
fill: "none",
|
|
1576
2107
|
ref: forwardRef2
|
|
1577
2108
|
},
|
|
1578
|
-
/* @__PURE__ */ React.createElement("
|
|
2109
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2110
|
+
clipPath: "url(#a)"
|
|
2111
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1579
2112
|
stroke: "currentColor",
|
|
1580
2113
|
strokeLinecap: "round",
|
|
2114
|
+
strokeLinejoin: "round",
|
|
1581
2115
|
strokeWidth: 2,
|
|
1582
|
-
d: "
|
|
1583
|
-
})
|
|
2116
|
+
d: "M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14"
|
|
2117
|
+
})),
|
|
2118
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2119
|
+
id: "a"
|
|
2120
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2121
|
+
d: "M0 0h24v24H0z"
|
|
2122
|
+
})))
|
|
1584
2123
|
)
|
|
1585
2124
|
);
|
|
1586
2125
|
|
|
1587
|
-
const
|
|
2126
|
+
const IconLinesThreeHorizontal = forwardRef(
|
|
1588
2127
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1589
2128
|
StyledIcon,
|
|
1590
2129
|
{
|
|
@@ -1600,7 +2139,7 @@ const IconMicrophoneSlash = forwardRef(
|
|
|
1600
2139
|
stroke: "currentColor",
|
|
1601
2140
|
strokeLinecap: "round",
|
|
1602
2141
|
strokeWidth: 2,
|
|
1603
|
-
d: "
|
|
2142
|
+
d: "M4 5h16M4 12h16M4 19h16"
|
|
1604
2143
|
})),
|
|
1605
2144
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1606
2145
|
id: "a"
|
|
@@ -1610,7 +2149,7 @@ const IconMicrophoneSlash = forwardRef(
|
|
|
1610
2149
|
)
|
|
1611
2150
|
);
|
|
1612
2151
|
|
|
1613
|
-
const
|
|
2152
|
+
const IconLinesThreeVertical = forwardRef(
|
|
1614
2153
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1615
2154
|
StyledIcon,
|
|
1616
2155
|
{
|
|
@@ -1626,7 +2165,7 @@ const IconMicrophone = forwardRef(
|
|
|
1626
2165
|
stroke: "currentColor",
|
|
1627
2166
|
strokeLinecap: "round",
|
|
1628
2167
|
strokeWidth: 2,
|
|
1629
|
-
d: "
|
|
2168
|
+
d: "M20 4v16M12 4v16M4 4v16"
|
|
1630
2169
|
})),
|
|
1631
2170
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1632
2171
|
id: "a"
|
|
@@ -1636,7 +2175,7 @@ const IconMicrophone = forwardRef(
|
|
|
1636
2175
|
)
|
|
1637
2176
|
);
|
|
1638
2177
|
|
|
1639
|
-
const
|
|
2178
|
+
const IconLink = forwardRef(
|
|
1640
2179
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1641
2180
|
StyledIcon,
|
|
1642
2181
|
{
|
|
@@ -1650,12 +2189,12 @@ const IconMinus = forwardRef(
|
|
|
1650
2189
|
stroke: "currentColor",
|
|
1651
2190
|
strokeLinecap: "round",
|
|
1652
2191
|
strokeWidth: 2,
|
|
1653
|
-
d: "
|
|
2192
|
+
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"
|
|
1654
2193
|
})
|
|
1655
2194
|
)
|
|
1656
2195
|
);
|
|
1657
2196
|
|
|
1658
|
-
const
|
|
2197
|
+
const IconLockClosed = forwardRef(
|
|
1659
2198
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1660
2199
|
StyledIcon,
|
|
1661
2200
|
{
|
|
@@ -1665,20 +2204,47 @@ const IconMouse = forwardRef(
|
|
|
1665
2204
|
fill: "none",
|
|
1666
2205
|
ref: forwardRef2
|
|
1667
2206
|
},
|
|
2207
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
2208
|
+
cx: 12,
|
|
2209
|
+
cy: 16,
|
|
2210
|
+
r: 1,
|
|
2211
|
+
fill: "currentColor"
|
|
2212
|
+
}),
|
|
1668
2213
|
/* @__PURE__ */ React.createElement("path", {
|
|
1669
2214
|
stroke: "currentColor",
|
|
1670
2215
|
strokeLinecap: "round",
|
|
1671
2216
|
strokeWidth: 2,
|
|
1672
|
-
d: "
|
|
2217
|
+
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"
|
|
2218
|
+
})
|
|
2219
|
+
)
|
|
2220
|
+
);
|
|
2221
|
+
|
|
2222
|
+
const IconLockOpen = forwardRef(
|
|
2223
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2224
|
+
StyledIcon,
|
|
2225
|
+
{
|
|
2226
|
+
...props,
|
|
2227
|
+
size,
|
|
2228
|
+
viewBox: "0 0 24 24",
|
|
2229
|
+
fill: "none",
|
|
2230
|
+
ref: forwardRef2
|
|
2231
|
+
},
|
|
2232
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
2233
|
+
cx: 12,
|
|
2234
|
+
cy: 16,
|
|
2235
|
+
r: 1,
|
|
2236
|
+
fill: "currentColor"
|
|
1673
2237
|
}),
|
|
1674
2238
|
/* @__PURE__ */ React.createElement("path", {
|
|
1675
|
-
|
|
1676
|
-
|
|
2239
|
+
stroke: "currentColor",
|
|
2240
|
+
strokeLinecap: "round",
|
|
2241
|
+
strokeWidth: 2,
|
|
2242
|
+
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"
|
|
1677
2243
|
})
|
|
1678
2244
|
)
|
|
1679
2245
|
);
|
|
1680
2246
|
|
|
1681
|
-
const
|
|
2247
|
+
const IconMagnet = forwardRef(
|
|
1682
2248
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1683
2249
|
StyledIcon,
|
|
1684
2250
|
{
|
|
@@ -1692,8 +2258,10 @@ const IconParallelogram = forwardRef(
|
|
|
1692
2258
|
clipPath: "url(#a)"
|
|
1693
2259
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1694
2260
|
stroke: "currentColor",
|
|
2261
|
+
strokeLinecap: "square",
|
|
2262
|
+
strokeMiterlimit: 1.414,
|
|
1695
2263
|
strokeWidth: 2,
|
|
1696
|
-
d: "
|
|
2264
|
+
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"
|
|
1697
2265
|
})),
|
|
1698
2266
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1699
2267
|
id: "a"
|
|
@@ -1703,7 +2271,26 @@ const IconParallelogram = forwardRef(
|
|
|
1703
2271
|
)
|
|
1704
2272
|
);
|
|
1705
2273
|
|
|
1706
|
-
const
|
|
2274
|
+
const IconMagnifyingGlass = forwardRef(
|
|
2275
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2276
|
+
StyledIcon,
|
|
2277
|
+
{
|
|
2278
|
+
...props,
|
|
2279
|
+
size,
|
|
2280
|
+
viewBox: "0 0 24 24",
|
|
2281
|
+
fill: "none",
|
|
2282
|
+
ref: forwardRef2
|
|
2283
|
+
},
|
|
2284
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2285
|
+
stroke: "currentColor",
|
|
2286
|
+
strokeLinecap: "round",
|
|
2287
|
+
strokeWidth: 2,
|
|
2288
|
+
d: "m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"
|
|
2289
|
+
})
|
|
2290
|
+
)
|
|
2291
|
+
);
|
|
2292
|
+
|
|
2293
|
+
const IconMap = forwardRef(
|
|
1707
2294
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1708
2295
|
StyledIcon,
|
|
1709
2296
|
{
|
|
@@ -1718,8 +2305,10 @@ const IconPauseCircle = forwardRef(
|
|
|
1718
2305
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1719
2306
|
stroke: "currentColor",
|
|
1720
2307
|
strokeLinecap: "round",
|
|
2308
|
+
strokeLinejoin: "round",
|
|
2309
|
+
strokeMiterlimit: 1.414,
|
|
1721
2310
|
strokeWidth: 2,
|
|
1722
|
-
d: "
|
|
2311
|
+
d: "M9 4 3 6v15l6-2.5M9 4l6 2M9 4v14.5M15 6l6-2v14.5L15 21m0-15v15m0 0-6-2.5"
|
|
1723
2312
|
})),
|
|
1724
2313
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1725
2314
|
id: "a"
|
|
@@ -1729,7 +2318,7 @@ const IconPauseCircle = forwardRef(
|
|
|
1729
2318
|
)
|
|
1730
2319
|
);
|
|
1731
2320
|
|
|
1732
|
-
const
|
|
2321
|
+
const IconMicrophoneSlash = forwardRef(
|
|
1733
2322
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1734
2323
|
StyledIcon,
|
|
1735
2324
|
{
|
|
@@ -1744,9 +2333,8 @@ const IconPdf = forwardRef(
|
|
|
1744
2333
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1745
2334
|
stroke: "currentColor",
|
|
1746
2335
|
strokeLinecap: "round",
|
|
1747
|
-
strokeLinejoin: "round",
|
|
1748
2336
|
strokeWidth: 2,
|
|
1749
|
-
d: "
|
|
2337
|
+
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"
|
|
1750
2338
|
})),
|
|
1751
2339
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1752
2340
|
id: "a"
|
|
@@ -1756,7 +2344,7 @@ const IconPdf = forwardRef(
|
|
|
1756
2344
|
)
|
|
1757
2345
|
);
|
|
1758
2346
|
|
|
1759
|
-
const
|
|
2347
|
+
const IconMicrophone = forwardRef(
|
|
1760
2348
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1761
2349
|
StyledIcon,
|
|
1762
2350
|
{
|
|
@@ -1766,16 +2354,23 @@ const IconPlaceholder = forwardRef(
|
|
|
1766
2354
|
fill: "none",
|
|
1767
2355
|
ref: forwardRef2
|
|
1768
2356
|
},
|
|
1769
|
-
/* @__PURE__ */ React.createElement("
|
|
2357
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2358
|
+
clipPath: "url(#a)"
|
|
2359
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1770
2360
|
stroke: "currentColor",
|
|
1771
2361
|
strokeLinecap: "round",
|
|
1772
2362
|
strokeWidth: 2,
|
|
1773
|
-
d: "
|
|
1774
|
-
})
|
|
2363
|
+
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"
|
|
2364
|
+
})),
|
|
2365
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2366
|
+
id: "a"
|
|
2367
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2368
|
+
d: "M0 0h24v24H0z"
|
|
2369
|
+
})))
|
|
1775
2370
|
)
|
|
1776
2371
|
);
|
|
1777
2372
|
|
|
1778
|
-
const
|
|
2373
|
+
const IconMinus = forwardRef(
|
|
1779
2374
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1780
2375
|
StyledIcon,
|
|
1781
2376
|
{
|
|
@@ -1785,16 +2380,155 @@ const IconPlayCircle = forwardRef(
|
|
|
1785
2380
|
fill: "none",
|
|
1786
2381
|
ref: forwardRef2
|
|
1787
2382
|
},
|
|
1788
|
-
/* @__PURE__ */ React.createElement("circle", {
|
|
1789
|
-
cx: 12,
|
|
1790
|
-
cy: 12,
|
|
1791
|
-
r: 8.5,
|
|
1792
|
-
stroke: "currentColor",
|
|
1793
|
-
strokeWidth: 2
|
|
1794
|
-
}),
|
|
1795
2383
|
/* @__PURE__ */ React.createElement("path", {
|
|
1796
|
-
|
|
1797
|
-
|
|
2384
|
+
stroke: "currentColor",
|
|
2385
|
+
strokeLinecap: "round",
|
|
2386
|
+
strokeWidth: 2,
|
|
2387
|
+
d: "M5 12h14"
|
|
2388
|
+
})
|
|
2389
|
+
)
|
|
2390
|
+
);
|
|
2391
|
+
|
|
2392
|
+
const IconMouse = forwardRef(
|
|
2393
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2394
|
+
StyledIcon,
|
|
2395
|
+
{
|
|
2396
|
+
...props,
|
|
2397
|
+
size,
|
|
2398
|
+
viewBox: "0 0 24 24",
|
|
2399
|
+
fill: "none",
|
|
2400
|
+
ref: forwardRef2
|
|
2401
|
+
},
|
|
2402
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2403
|
+
stroke: "currentColor",
|
|
2404
|
+
strokeLinecap: "round",
|
|
2405
|
+
strokeWidth: 2,
|
|
2406
|
+
d: "M12 8v3M9 3.5h6a4 4 0 0 1 4 4v6a7 7 0 1 1-14 0v-6a4 4 0 0 1 4-4Z"
|
|
2407
|
+
}),
|
|
2408
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2409
|
+
fill: "currentColor",
|
|
2410
|
+
d: "M0 0h.001v.001H0V0Z"
|
|
2411
|
+
})
|
|
2412
|
+
)
|
|
2413
|
+
);
|
|
2414
|
+
|
|
2415
|
+
const IconParallelogram = forwardRef(
|
|
2416
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2417
|
+
StyledIcon,
|
|
2418
|
+
{
|
|
2419
|
+
...props,
|
|
2420
|
+
size,
|
|
2421
|
+
viewBox: "0 0 24 24",
|
|
2422
|
+
fill: "none",
|
|
2423
|
+
ref: forwardRef2
|
|
2424
|
+
},
|
|
2425
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2426
|
+
clipPath: "url(#a)"
|
|
2427
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2428
|
+
stroke: "currentColor",
|
|
2429
|
+
strokeWidth: 2,
|
|
2430
|
+
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"
|
|
2431
|
+
})),
|
|
2432
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2433
|
+
id: "a"
|
|
2434
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2435
|
+
d: "M0 0h24v24H0z"
|
|
2436
|
+
})))
|
|
2437
|
+
)
|
|
2438
|
+
);
|
|
2439
|
+
|
|
2440
|
+
const IconPauseCircle = forwardRef(
|
|
2441
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2442
|
+
StyledIcon,
|
|
2443
|
+
{
|
|
2444
|
+
...props,
|
|
2445
|
+
size,
|
|
2446
|
+
viewBox: "0 0 24 24",
|
|
2447
|
+
fill: "none",
|
|
2448
|
+
ref: forwardRef2
|
|
2449
|
+
},
|
|
2450
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2451
|
+
clipPath: "url(#a)"
|
|
2452
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2453
|
+
stroke: "currentColor",
|
|
2454
|
+
strokeLinecap: "round",
|
|
2455
|
+
strokeWidth: 2,
|
|
2456
|
+
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"
|
|
2457
|
+
})),
|
|
2458
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2459
|
+
id: "a"
|
|
2460
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2461
|
+
d: "M0 0h24v24H0z"
|
|
2462
|
+
})))
|
|
2463
|
+
)
|
|
2464
|
+
);
|
|
2465
|
+
|
|
2466
|
+
const IconPdf = forwardRef(
|
|
2467
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2468
|
+
StyledIcon,
|
|
2469
|
+
{
|
|
2470
|
+
...props,
|
|
2471
|
+
size,
|
|
2472
|
+
viewBox: "0 0 24 24",
|
|
2473
|
+
fill: "none",
|
|
2474
|
+
ref: forwardRef2
|
|
2475
|
+
},
|
|
2476
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2477
|
+
clipPath: "url(#a)"
|
|
2478
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2479
|
+
stroke: "currentColor",
|
|
2480
|
+
strokeLinecap: "round",
|
|
2481
|
+
strokeLinejoin: "round",
|
|
2482
|
+
strokeWidth: 2,
|
|
2483
|
+
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"
|
|
2484
|
+
})),
|
|
2485
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2486
|
+
id: "a"
|
|
2487
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2488
|
+
d: "M0 0h24v24H0z"
|
|
2489
|
+
})))
|
|
2490
|
+
)
|
|
2491
|
+
);
|
|
2492
|
+
|
|
2493
|
+
const IconPlaceholder = forwardRef(
|
|
2494
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2495
|
+
StyledIcon,
|
|
2496
|
+
{
|
|
2497
|
+
...props,
|
|
2498
|
+
size,
|
|
2499
|
+
viewBox: "0 0 24 24",
|
|
2500
|
+
fill: "none",
|
|
2501
|
+
ref: forwardRef2
|
|
2502
|
+
},
|
|
2503
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2504
|
+
stroke: "currentColor",
|
|
2505
|
+
strokeLinecap: "round",
|
|
2506
|
+
strokeWidth: 2,
|
|
2507
|
+
d: "m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
2508
|
+
})
|
|
2509
|
+
)
|
|
2510
|
+
);
|
|
2511
|
+
|
|
2512
|
+
const IconPlayCircle = forwardRef(
|
|
2513
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2514
|
+
StyledIcon,
|
|
2515
|
+
{
|
|
2516
|
+
...props,
|
|
2517
|
+
size,
|
|
2518
|
+
viewBox: "0 0 24 24",
|
|
2519
|
+
fill: "none",
|
|
2520
|
+
ref: forwardRef2
|
|
2521
|
+
},
|
|
2522
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
2523
|
+
cx: 12,
|
|
2524
|
+
cy: 12,
|
|
2525
|
+
r: 8.5,
|
|
2526
|
+
stroke: "currentColor",
|
|
2527
|
+
strokeWidth: 2
|
|
2528
|
+
}),
|
|
2529
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2530
|
+
fill: "currentColor",
|
|
2531
|
+
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"
|
|
1798
2532
|
})
|
|
1799
2533
|
)
|
|
1800
2534
|
);
|
|
@@ -1860,6 +2594,30 @@ const IconPlus = forwardRef(
|
|
|
1860
2594
|
)
|
|
1861
2595
|
);
|
|
1862
2596
|
|
|
2597
|
+
const IconPushPin = forwardRef(
|
|
2598
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2599
|
+
StyledIcon,
|
|
2600
|
+
{
|
|
2601
|
+
...props,
|
|
2602
|
+
size,
|
|
2603
|
+
viewBox: "0 0 24 24",
|
|
2604
|
+
fill: "none",
|
|
2605
|
+
ref: forwardRef2
|
|
2606
|
+
},
|
|
2607
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2608
|
+
clipPath: "url(#a)"
|
|
2609
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2610
|
+
fill: "currentColor",
|
|
2611
|
+
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"
|
|
2612
|
+
})),
|
|
2613
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2614
|
+
id: "a"
|
|
2615
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2616
|
+
d: "M0 0h24v24H0z"
|
|
2617
|
+
})))
|
|
2618
|
+
)
|
|
2619
|
+
);
|
|
2620
|
+
|
|
1863
2621
|
const IconQuestionMarkCircle = forwardRef(
|
|
1864
2622
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1865
2623
|
StyledIcon,
|
|
@@ -1879,7 +2637,7 @@ const IconQuestionMarkCircle = forwardRef(
|
|
|
1879
2637
|
)
|
|
1880
2638
|
);
|
|
1881
2639
|
|
|
1882
|
-
const
|
|
2640
|
+
const IconRectanglesThreeAligned = forwardRef(
|
|
1883
2641
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1884
2642
|
StyledIcon,
|
|
1885
2643
|
{
|
|
@@ -1890,11 +2648,40 @@ const IconRhombus = forwardRef(
|
|
|
1890
2648
|
ref: forwardRef2
|
|
1891
2649
|
},
|
|
1892
2650
|
/* @__PURE__ */ React.createElement("g", {
|
|
2651
|
+
stroke: "currentColor",
|
|
2652
|
+
strokeLinecap: "round",
|
|
2653
|
+
strokeLinejoin: "round",
|
|
2654
|
+
strokeWidth: 2,
|
|
1893
2655
|
clipPath: "url(#a)"
|
|
1894
2656
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2657
|
+
d: "M11 4H3v8h8V4Zm6.063 12h-14v5h14v-5ZM19 4h-4v4h4V4Z"
|
|
2658
|
+
})),
|
|
2659
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2660
|
+
id: "a"
|
|
2661
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2662
|
+
d: "M0 0h24v24H0z"
|
|
2663
|
+
})))
|
|
2664
|
+
)
|
|
2665
|
+
);
|
|
2666
|
+
|
|
2667
|
+
const IconRectanglesThreeFree = forwardRef(
|
|
2668
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2669
|
+
StyledIcon,
|
|
2670
|
+
{
|
|
2671
|
+
...props,
|
|
2672
|
+
size,
|
|
2673
|
+
viewBox: "0 0 24 24",
|
|
2674
|
+
fill: "none",
|
|
2675
|
+
ref: forwardRef2
|
|
2676
|
+
},
|
|
2677
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1895
2678
|
stroke: "currentColor",
|
|
2679
|
+
strokeLinecap: "round",
|
|
2680
|
+
strokeLinejoin: "round",
|
|
1896
2681
|
strokeWidth: 2,
|
|
1897
|
-
|
|
2682
|
+
clipPath: "url(#a)"
|
|
2683
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2684
|
+
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"
|
|
1898
2685
|
})),
|
|
1899
2686
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1900
2687
|
id: "a"
|
|
@@ -1904,7 +2691,7 @@ const IconRhombus = forwardRef(
|
|
|
1904
2691
|
)
|
|
1905
2692
|
);
|
|
1906
2693
|
|
|
1907
|
-
const
|
|
2694
|
+
const IconRectanglesThreeOverlap = forwardRef(
|
|
1908
2695
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1909
2696
|
StyledIcon,
|
|
1910
2697
|
{
|
|
@@ -1914,16 +2701,24 @@ const IconScrollbarXy = forwardRef(
|
|
|
1914
2701
|
fill: "none",
|
|
1915
2702
|
ref: forwardRef2
|
|
1916
2703
|
},
|
|
1917
|
-
/* @__PURE__ */ React.createElement("
|
|
2704
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2705
|
+
clipPath: "url(#a)"
|
|
2706
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1918
2707
|
stroke: "currentColor",
|
|
1919
2708
|
strokeLinecap: "round",
|
|
2709
|
+
strokeLinejoin: "round",
|
|
1920
2710
|
strokeWidth: 2,
|
|
1921
|
-
d: "
|
|
1922
|
-
})
|
|
2711
|
+
d: "M8 11H4v10h9v-4m-5-6h5v6m-5-6V7h4m1 10h4v-4m-5-6h5v6m-5-6V3h9v10h-4"
|
|
2712
|
+
})),
|
|
2713
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2714
|
+
id: "a"
|
|
2715
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2716
|
+
d: "M0 0h24v24H0z"
|
|
2717
|
+
})))
|
|
1923
2718
|
)
|
|
1924
2719
|
);
|
|
1925
2720
|
|
|
1926
|
-
const
|
|
2721
|
+
const IconRectanglesTwoLine = forwardRef(
|
|
1927
2722
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1928
2723
|
StyledIcon,
|
|
1929
2724
|
{
|
|
@@ -1938,8 +2733,9 @@ const IconShapes = forwardRef(
|
|
|
1938
2733
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1939
2734
|
stroke: "currentColor",
|
|
1940
2735
|
strokeLinecap: "round",
|
|
2736
|
+
strokeLinejoin: "round",
|
|
1941
2737
|
strokeWidth: 2,
|
|
1942
|
-
d: "
|
|
2738
|
+
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"
|
|
1943
2739
|
})),
|
|
1944
2740
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1945
2741
|
id: "a"
|
|
@@ -1949,7 +2745,7 @@ const IconShapes = forwardRef(
|
|
|
1949
2745
|
)
|
|
1950
2746
|
);
|
|
1951
2747
|
|
|
1952
|
-
const
|
|
2748
|
+
const IconRhombus = forwardRef(
|
|
1953
2749
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1954
2750
|
StyledIcon,
|
|
1955
2751
|
{
|
|
@@ -1963,10 +2759,8 @@ const IconShieldCheck = forwardRef(
|
|
|
1963
2759
|
clipPath: "url(#a)"
|
|
1964
2760
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
1965
2761
|
stroke: "currentColor",
|
|
1966
|
-
strokeLinecap: "round",
|
|
1967
|
-
strokeMiterlimit: 1.414,
|
|
1968
2762
|
strokeWidth: 2,
|
|
1969
|
-
d: "
|
|
2763
|
+
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"
|
|
1970
2764
|
})),
|
|
1971
2765
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1972
2766
|
id: "a"
|
|
@@ -1976,7 +2770,7 @@ const IconShieldCheck = forwardRef(
|
|
|
1976
2770
|
)
|
|
1977
2771
|
);
|
|
1978
2772
|
|
|
1979
|
-
const
|
|
2773
|
+
const IconScrollbarXy = forwardRef(
|
|
1980
2774
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1981
2775
|
StyledIcon,
|
|
1982
2776
|
{
|
|
@@ -1986,24 +2780,16 @@ const IconShieldLock = forwardRef(
|
|
|
1986
2780
|
fill: "none",
|
|
1987
2781
|
ref: forwardRef2
|
|
1988
2782
|
},
|
|
1989
|
-
/* @__PURE__ */ React.createElement("rect", {
|
|
1990
|
-
width: 8,
|
|
1991
|
-
height: 5,
|
|
1992
|
-
x: 8,
|
|
1993
|
-
y: 11,
|
|
1994
|
-
fill: "currentColor",
|
|
1995
|
-
rx: 1
|
|
1996
|
-
}),
|
|
1997
2783
|
/* @__PURE__ */ React.createElement("path", {
|
|
1998
2784
|
stroke: "currentColor",
|
|
1999
|
-
|
|
2785
|
+
strokeLinecap: "round",
|
|
2000
2786
|
strokeWidth: 2,
|
|
2001
|
-
d: "
|
|
2787
|
+
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"
|
|
2002
2788
|
})
|
|
2003
2789
|
)
|
|
2004
2790
|
);
|
|
2005
2791
|
|
|
2006
|
-
const
|
|
2792
|
+
const IconShapes = forwardRef(
|
|
2007
2793
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2008
2794
|
StyledIcon,
|
|
2009
2795
|
{
|
|
@@ -2019,7 +2805,7 @@ const IconSlidersX = forwardRef(
|
|
|
2019
2805
|
stroke: "currentColor",
|
|
2020
2806
|
strokeLinecap: "round",
|
|
2021
2807
|
strokeWidth: 2,
|
|
2022
|
-
d: "
|
|
2808
|
+
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"
|
|
2023
2809
|
})),
|
|
2024
2810
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2025
2811
|
id: "a"
|
|
@@ -2029,7 +2815,7 @@ const IconSlidersX = forwardRef(
|
|
|
2029
2815
|
)
|
|
2030
2816
|
);
|
|
2031
2817
|
|
|
2032
|
-
const
|
|
2818
|
+
const IconShieldCheck = forwardRef(
|
|
2033
2819
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2034
2820
|
StyledIcon,
|
|
2035
2821
|
{
|
|
@@ -2044,8 +2830,9 @@ const IconSlidersY = forwardRef(
|
|
|
2044
2830
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2045
2831
|
stroke: "currentColor",
|
|
2046
2832
|
strokeLinecap: "round",
|
|
2833
|
+
strokeMiterlimit: 1.414,
|
|
2047
2834
|
strokeWidth: 2,
|
|
2048
|
-
d: "
|
|
2835
|
+
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"
|
|
2049
2836
|
})),
|
|
2050
2837
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2051
2838
|
id: "a"
|
|
@@ -2055,7 +2842,7 @@ const IconSlidersY = forwardRef(
|
|
|
2055
2842
|
)
|
|
2056
2843
|
);
|
|
2057
2844
|
|
|
2058
|
-
const
|
|
2845
|
+
const IconShieldLock = forwardRef(
|
|
2059
2846
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2060
2847
|
StyledIcon,
|
|
2061
2848
|
{
|
|
@@ -2065,14 +2852,402 @@ const IconSocialFacebook = forwardRef(
|
|
|
2065
2852
|
fill: "none",
|
|
2066
2853
|
ref: forwardRef2
|
|
2067
2854
|
},
|
|
2068
|
-
/* @__PURE__ */ React.createElement("
|
|
2855
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
2856
|
+
width: 8,
|
|
2857
|
+
height: 5,
|
|
2858
|
+
x: 8,
|
|
2859
|
+
y: 11,
|
|
2069
2860
|
fill: "currentColor",
|
|
2070
|
-
|
|
2071
|
-
})
|
|
2861
|
+
rx: 1
|
|
2862
|
+
}),
|
|
2863
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2864
|
+
stroke: "currentColor",
|
|
2865
|
+
strokeMiterlimit: 1.414,
|
|
2866
|
+
strokeWidth: 2,
|
|
2867
|
+
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"
|
|
2868
|
+
})
|
|
2869
|
+
)
|
|
2870
|
+
);
|
|
2871
|
+
|
|
2872
|
+
const IconSidebarClosed = forwardRef(
|
|
2873
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2874
|
+
StyledIcon,
|
|
2875
|
+
{
|
|
2876
|
+
...props,
|
|
2877
|
+
size,
|
|
2878
|
+
viewBox: "0 0 24 24",
|
|
2879
|
+
fill: "none",
|
|
2880
|
+
ref: forwardRef2
|
|
2881
|
+
},
|
|
2882
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2883
|
+
clipPath: "url(#a)"
|
|
2884
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2885
|
+
stroke: "currentColor",
|
|
2886
|
+
strokeLinecap: "round",
|
|
2887
|
+
strokeLinejoin: "round",
|
|
2888
|
+
strokeMiterlimit: 1.414,
|
|
2889
|
+
strokeWidth: 2,
|
|
2890
|
+
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"
|
|
2891
|
+
})),
|
|
2892
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2893
|
+
id: "a"
|
|
2894
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2895
|
+
d: "M0 0h24v24H0z"
|
|
2896
|
+
})))
|
|
2897
|
+
)
|
|
2898
|
+
);
|
|
2899
|
+
|
|
2900
|
+
const IconSidebarOpen = forwardRef(
|
|
2901
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2902
|
+
StyledIcon,
|
|
2903
|
+
{
|
|
2904
|
+
...props,
|
|
2905
|
+
size,
|
|
2906
|
+
viewBox: "0 0 24 24",
|
|
2907
|
+
fill: "none",
|
|
2908
|
+
ref: forwardRef2
|
|
2909
|
+
},
|
|
2910
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2911
|
+
stroke: "currentColor",
|
|
2912
|
+
strokeLinecap: "round",
|
|
2913
|
+
strokeLinejoin: "round",
|
|
2914
|
+
strokeMiterlimit: 1.414,
|
|
2915
|
+
strokeWidth: 2,
|
|
2916
|
+
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"
|
|
2917
|
+
}),
|
|
2918
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2919
|
+
fill: "currentColor",
|
|
2920
|
+
fillRule: "evenodd",
|
|
2921
|
+
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",
|
|
2922
|
+
clipRule: "evenodd"
|
|
2923
|
+
})
|
|
2924
|
+
)
|
|
2925
|
+
);
|
|
2926
|
+
|
|
2927
|
+
const IconSlidersX = forwardRef(
|
|
2928
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2929
|
+
StyledIcon,
|
|
2930
|
+
{
|
|
2931
|
+
...props,
|
|
2932
|
+
size,
|
|
2933
|
+
viewBox: "0 0 24 24",
|
|
2934
|
+
fill: "none",
|
|
2935
|
+
ref: forwardRef2
|
|
2936
|
+
},
|
|
2937
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2938
|
+
clipPath: "url(#a)"
|
|
2939
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2940
|
+
stroke: "currentColor",
|
|
2941
|
+
strokeLinecap: "round",
|
|
2942
|
+
strokeWidth: 2,
|
|
2943
|
+
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"
|
|
2944
|
+
})),
|
|
2945
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2946
|
+
id: "a"
|
|
2947
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2948
|
+
d: "M0 0h24v24H0z"
|
|
2949
|
+
})))
|
|
2950
|
+
)
|
|
2951
|
+
);
|
|
2952
|
+
|
|
2953
|
+
const IconSlidersY = forwardRef(
|
|
2954
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2955
|
+
StyledIcon,
|
|
2956
|
+
{
|
|
2957
|
+
...props,
|
|
2958
|
+
size,
|
|
2959
|
+
viewBox: "0 0 24 24",
|
|
2960
|
+
fill: "none",
|
|
2961
|
+
ref: forwardRef2
|
|
2962
|
+
},
|
|
2963
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2964
|
+
clipPath: "url(#a)"
|
|
2965
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2966
|
+
stroke: "currentColor",
|
|
2967
|
+
strokeLinecap: "round",
|
|
2968
|
+
strokeWidth: 2,
|
|
2969
|
+
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"
|
|
2970
|
+
})),
|
|
2971
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2972
|
+
id: "a"
|
|
2973
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2974
|
+
d: "M0 0h24v24H0z"
|
|
2975
|
+
})))
|
|
2976
|
+
)
|
|
2977
|
+
);
|
|
2978
|
+
|
|
2979
|
+
const IconSocialFacebook = forwardRef(
|
|
2980
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2981
|
+
StyledIcon,
|
|
2982
|
+
{
|
|
2983
|
+
...props,
|
|
2984
|
+
size,
|
|
2985
|
+
viewBox: "0 0 24 24",
|
|
2986
|
+
fill: "none",
|
|
2987
|
+
ref: forwardRef2
|
|
2988
|
+
},
|
|
2989
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2990
|
+
fill: "currentColor",
|
|
2991
|
+
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"
|
|
2992
|
+
})
|
|
2993
|
+
)
|
|
2994
|
+
);
|
|
2995
|
+
|
|
2996
|
+
const IconSocialInstagram = forwardRef(
|
|
2997
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2998
|
+
StyledIcon,
|
|
2999
|
+
{
|
|
3000
|
+
...props,
|
|
3001
|
+
size,
|
|
3002
|
+
viewBox: "0 0 24 24",
|
|
3003
|
+
fill: "none",
|
|
3004
|
+
ref: forwardRef2
|
|
3005
|
+
},
|
|
3006
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3007
|
+
fill: "currentColor",
|
|
3008
|
+
d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
|
|
3009
|
+
}),
|
|
3010
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3011
|
+
fill: "currentColor",
|
|
3012
|
+
fillRule: "evenodd",
|
|
3013
|
+
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",
|
|
3014
|
+
clipRule: "evenodd"
|
|
3015
|
+
})
|
|
3016
|
+
)
|
|
3017
|
+
);
|
|
3018
|
+
|
|
3019
|
+
const IconSocialLinkedin = forwardRef(
|
|
3020
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3021
|
+
StyledIcon,
|
|
3022
|
+
{
|
|
3023
|
+
...props,
|
|
3024
|
+
size,
|
|
3025
|
+
viewBox: "0 0 24 24",
|
|
3026
|
+
fill: "none",
|
|
3027
|
+
ref: forwardRef2
|
|
3028
|
+
},
|
|
3029
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3030
|
+
fill: "currentColor",
|
|
3031
|
+
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"
|
|
3032
|
+
})
|
|
3033
|
+
)
|
|
3034
|
+
);
|
|
3035
|
+
|
|
3036
|
+
const IconSocialTwitter = forwardRef(
|
|
3037
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3038
|
+
StyledIcon,
|
|
3039
|
+
{
|
|
3040
|
+
...props,
|
|
3041
|
+
size,
|
|
3042
|
+
viewBox: "0 0 24 24",
|
|
3043
|
+
fill: "none",
|
|
3044
|
+
ref: forwardRef2
|
|
3045
|
+
},
|
|
3046
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3047
|
+
fill: "currentColor",
|
|
3048
|
+
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"
|
|
3049
|
+
})
|
|
3050
|
+
)
|
|
3051
|
+
);
|
|
3052
|
+
|
|
3053
|
+
const IconSocialYoutube = forwardRef(
|
|
3054
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3055
|
+
StyledIcon,
|
|
3056
|
+
{
|
|
3057
|
+
...props,
|
|
3058
|
+
size,
|
|
3059
|
+
viewBox: "0 0 24 24",
|
|
3060
|
+
fill: "none",
|
|
3061
|
+
ref: forwardRef2
|
|
3062
|
+
},
|
|
3063
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3064
|
+
fill: "currentColor",
|
|
3065
|
+
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"
|
|
3066
|
+
})
|
|
3067
|
+
)
|
|
3068
|
+
);
|
|
3069
|
+
|
|
3070
|
+
const IconSpeakerCross = forwardRef(
|
|
3071
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3072
|
+
StyledIcon,
|
|
3073
|
+
{
|
|
3074
|
+
...props,
|
|
3075
|
+
size,
|
|
3076
|
+
viewBox: "0 0 24 24",
|
|
3077
|
+
fill: "none",
|
|
3078
|
+
ref: forwardRef2
|
|
3079
|
+
},
|
|
3080
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3081
|
+
clipPath: "url(#a)"
|
|
3082
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3083
|
+
stroke: "currentColor",
|
|
3084
|
+
strokeLinecap: "round",
|
|
3085
|
+
strokeWidth: 2,
|
|
3086
|
+
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"
|
|
3087
|
+
})),
|
|
3088
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3089
|
+
id: "a"
|
|
3090
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3091
|
+
d: "M0 0h24v24H0z"
|
|
3092
|
+
})))
|
|
3093
|
+
)
|
|
3094
|
+
);
|
|
3095
|
+
|
|
3096
|
+
const IconSpeakerHigh = forwardRef(
|
|
3097
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3098
|
+
StyledIcon,
|
|
3099
|
+
{
|
|
3100
|
+
...props,
|
|
3101
|
+
size,
|
|
3102
|
+
viewBox: "0 0 24 24",
|
|
3103
|
+
fill: "none",
|
|
3104
|
+
ref: forwardRef2
|
|
3105
|
+
},
|
|
3106
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3107
|
+
clipPath: "url(#a)"
|
|
3108
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3109
|
+
stroke: "currentColor",
|
|
3110
|
+
strokeLinecap: "round",
|
|
3111
|
+
strokeWidth: 2,
|
|
3112
|
+
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"
|
|
3113
|
+
})),
|
|
3114
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3115
|
+
id: "a"
|
|
3116
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3117
|
+
d: "M0 0h24v24H0z"
|
|
3118
|
+
})))
|
|
3119
|
+
)
|
|
3120
|
+
);
|
|
3121
|
+
|
|
3122
|
+
const IconSplitVertical = forwardRef(
|
|
3123
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3124
|
+
StyledIcon,
|
|
3125
|
+
{
|
|
3126
|
+
...props,
|
|
3127
|
+
size,
|
|
3128
|
+
viewBox: "0 0 24 24",
|
|
3129
|
+
fill: "none",
|
|
3130
|
+
ref: forwardRef2
|
|
3131
|
+
},
|
|
3132
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3133
|
+
clipPath: "url(#a)"
|
|
3134
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3135
|
+
stroke: "currentColor",
|
|
3136
|
+
strokeLinecap: "round",
|
|
3137
|
+
strokeLinejoin: "round",
|
|
3138
|
+
strokeWidth: 2,
|
|
3139
|
+
d: "M5 6.5V4h14v2.5M2 12h20M5 17.5V20h14v-2.5"
|
|
3140
|
+
})),
|
|
3141
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3142
|
+
id: "a"
|
|
3143
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3144
|
+
d: "M0 0h24v24H0z"
|
|
3145
|
+
})))
|
|
3146
|
+
)
|
|
3147
|
+
);
|
|
3148
|
+
|
|
3149
|
+
const IconSquareBracketsAngleSlash = forwardRef(
|
|
3150
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3151
|
+
StyledIcon,
|
|
3152
|
+
{
|
|
3153
|
+
...props,
|
|
3154
|
+
size,
|
|
3155
|
+
viewBox: "0 0 24 24",
|
|
3156
|
+
fill: "none",
|
|
3157
|
+
ref: forwardRef2
|
|
3158
|
+
},
|
|
3159
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3160
|
+
clipPath: "url(#a)"
|
|
3161
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3162
|
+
stroke: "currentColor",
|
|
3163
|
+
strokeLinecap: "round",
|
|
3164
|
+
strokeWidth: 2,
|
|
3165
|
+
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"
|
|
3166
|
+
})),
|
|
3167
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3168
|
+
id: "a"
|
|
3169
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3170
|
+
d: "M0 0h24v24H0z"
|
|
3171
|
+
})))
|
|
3172
|
+
)
|
|
3173
|
+
);
|
|
3174
|
+
|
|
3175
|
+
const IconSquareCirclesTwo = forwardRef(
|
|
3176
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3177
|
+
StyledIcon,
|
|
3178
|
+
{
|
|
3179
|
+
...props,
|
|
3180
|
+
size,
|
|
3181
|
+
viewBox: "0 0 24 24",
|
|
3182
|
+
fill: "none",
|
|
3183
|
+
ref: forwardRef2
|
|
3184
|
+
},
|
|
3185
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3186
|
+
stroke: "currentColor",
|
|
3187
|
+
strokeLinecap: "round",
|
|
3188
|
+
strokeWidth: 2,
|
|
3189
|
+
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"
|
|
3190
|
+
}),
|
|
3191
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3192
|
+
fill: "currentColor",
|
|
3193
|
+
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"
|
|
3194
|
+
})
|
|
3195
|
+
)
|
|
3196
|
+
);
|
|
3197
|
+
|
|
3198
|
+
const IconSquareLineSquareDashed = forwardRef(
|
|
3199
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3200
|
+
StyledIcon,
|
|
3201
|
+
{
|
|
3202
|
+
...props,
|
|
3203
|
+
size,
|
|
3204
|
+
viewBox: "0 0 24 24",
|
|
3205
|
+
fill: "none",
|
|
3206
|
+
ref: forwardRef2
|
|
3207
|
+
},
|
|
3208
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3209
|
+
clipPath: "url(#a)"
|
|
3210
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3211
|
+
stroke: "currentColor",
|
|
3212
|
+
strokeLinecap: "round",
|
|
3213
|
+
strokeLinejoin: "round",
|
|
3214
|
+
strokeWidth: 2,
|
|
3215
|
+
d: "M18 3h3v3m0 4v4m0 4v3h-3m-4 0h-4m-4 0H3v-3M3 3h11v11H3V3Z"
|
|
3216
|
+
})),
|
|
3217
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3218
|
+
id: "a"
|
|
3219
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3220
|
+
d: "M0 0h24v24H0z"
|
|
3221
|
+
})))
|
|
3222
|
+
)
|
|
3223
|
+
);
|
|
3224
|
+
|
|
3225
|
+
const IconSquareRounded = forwardRef(
|
|
3226
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3227
|
+
StyledIcon,
|
|
3228
|
+
{
|
|
3229
|
+
...props,
|
|
3230
|
+
size,
|
|
3231
|
+
viewBox: "0 0 24 24",
|
|
3232
|
+
fill: "none",
|
|
3233
|
+
ref: forwardRef2
|
|
3234
|
+
},
|
|
3235
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3236
|
+
clipPath: "url(#a)"
|
|
3237
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3238
|
+
stroke: "currentColor",
|
|
3239
|
+
strokeWidth: 2,
|
|
3240
|
+
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"
|
|
3241
|
+
})),
|
|
3242
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3243
|
+
id: "a"
|
|
3244
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3245
|
+
d: "M0 0h24v24H0z"
|
|
3246
|
+
})))
|
|
2072
3247
|
)
|
|
2073
3248
|
);
|
|
2074
3249
|
|
|
2075
|
-
const
|
|
3250
|
+
const IconSquareTriangleCirclePlus = forwardRef(
|
|
2076
3251
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2077
3252
|
StyledIcon,
|
|
2078
3253
|
{
|
|
@@ -2082,20 +3257,23 @@ const IconSocialInstagram = forwardRef(
|
|
|
2082
3257
|
fill: "none",
|
|
2083
3258
|
ref: forwardRef2
|
|
2084
3259
|
},
|
|
2085
|
-
/* @__PURE__ */ React.createElement("
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
3260
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3261
|
+
clipPath: "url(#a)"
|
|
3262
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3263
|
+
stroke: "currentColor",
|
|
3264
|
+
strokeLinecap: "round",
|
|
3265
|
+
strokeWidth: 2,
|
|
3266
|
+
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"
|
|
3267
|
+
})),
|
|
3268
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3269
|
+
id: "a"
|
|
3270
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3271
|
+
d: "M0 0h24v24H0z"
|
|
3272
|
+
})))
|
|
2095
3273
|
)
|
|
2096
3274
|
);
|
|
2097
3275
|
|
|
2098
|
-
const
|
|
3276
|
+
const IconSquare = forwardRef(
|
|
2099
3277
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2100
3278
|
StyledIcon,
|
|
2101
3279
|
{
|
|
@@ -2105,14 +3283,22 @@ const IconSocialLinkedin = forwardRef(
|
|
|
2105
3283
|
fill: "none",
|
|
2106
3284
|
ref: forwardRef2
|
|
2107
3285
|
},
|
|
2108
|
-
/* @__PURE__ */ React.createElement("
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
3286
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3287
|
+
clipPath: "url(#a)"
|
|
3288
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3289
|
+
stroke: "currentColor",
|
|
3290
|
+
strokeWidth: 2,
|
|
3291
|
+
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"
|
|
3292
|
+
})),
|
|
3293
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3294
|
+
id: "a"
|
|
3295
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3296
|
+
d: "M0 0h24v24H0z"
|
|
3297
|
+
})))
|
|
2112
3298
|
)
|
|
2113
3299
|
);
|
|
2114
3300
|
|
|
2115
|
-
const
|
|
3301
|
+
const IconSquaresFour = forwardRef(
|
|
2116
3302
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2117
3303
|
StyledIcon,
|
|
2118
3304
|
{
|
|
@@ -2122,14 +3308,23 @@ const IconSocialTwitter = forwardRef(
|
|
|
2122
3308
|
fill: "none",
|
|
2123
3309
|
ref: forwardRef2
|
|
2124
3310
|
},
|
|
2125
|
-
/* @__PURE__ */ React.createElement("
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
3311
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3312
|
+
stroke: "currentColor",
|
|
3313
|
+
strokeLinecap: "round",
|
|
3314
|
+
strokeWidth: 2,
|
|
3315
|
+
clipPath: "url(#a)"
|
|
3316
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3317
|
+
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"
|
|
3318
|
+
})),
|
|
3319
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3320
|
+
id: "a"
|
|
3321
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3322
|
+
d: "M0 0h24v24H0z"
|
|
3323
|
+
})))
|
|
2129
3324
|
)
|
|
2130
3325
|
);
|
|
2131
3326
|
|
|
2132
|
-
const
|
|
3327
|
+
const IconSquaresGroup = forwardRef(
|
|
2133
3328
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2134
3329
|
StyledIcon,
|
|
2135
3330
|
{
|
|
@@ -2139,14 +3334,25 @@ const IconSocialYoutube = forwardRef(
|
|
|
2139
3334
|
fill: "none",
|
|
2140
3335
|
ref: forwardRef2
|
|
2141
3336
|
},
|
|
3337
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3338
|
+
stroke: "currentColor",
|
|
3339
|
+
strokeLinecap: "round",
|
|
3340
|
+
strokeLinejoin: "round",
|
|
3341
|
+
strokeWidth: 2,
|
|
3342
|
+
d: "M20 4H4v16h16V4Z"
|
|
3343
|
+
}),
|
|
2142
3344
|
/* @__PURE__ */ React.createElement("path", {
|
|
2143
3345
|
fill: "currentColor",
|
|
2144
|
-
d: "
|
|
3346
|
+
d: "M2 2h3v3H2V2Zm17 0h3v3h-3V2Zm0 17h3v3h-3v-3ZM2 19h3v3H2v-3Zm9-12h6v6h-6V7Z"
|
|
3347
|
+
}),
|
|
3348
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3349
|
+
fill: "currentColor",
|
|
3350
|
+
d: "M7 11h3v3h3v3H7v-6Z"
|
|
2145
3351
|
})
|
|
2146
3352
|
)
|
|
2147
3353
|
);
|
|
2148
3354
|
|
|
2149
|
-
const
|
|
3355
|
+
const IconSquaresMerge = forwardRef(
|
|
2150
3356
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2151
3357
|
StyledIcon,
|
|
2152
3358
|
{
|
|
@@ -2159,10 +3365,8 @@ const IconSpeakerCross = forwardRef(
|
|
|
2159
3365
|
/* @__PURE__ */ React.createElement("g", {
|
|
2160
3366
|
clipPath: "url(#a)"
|
|
2161
3367
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
strokeWidth: 2,
|
|
2165
|
-
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"
|
|
3368
|
+
fill: "currentColor",
|
|
3369
|
+
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"
|
|
2166
3370
|
})),
|
|
2167
3371
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2168
3372
|
id: "a"
|
|
@@ -2172,7 +3376,7 @@ const IconSpeakerCross = forwardRef(
|
|
|
2172
3376
|
)
|
|
2173
3377
|
);
|
|
2174
3378
|
|
|
2175
|
-
const
|
|
3379
|
+
const IconSquaresThree = forwardRef(
|
|
2176
3380
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2177
3381
|
StyledIcon,
|
|
2178
3382
|
{
|
|
@@ -2183,12 +3387,12 @@ const IconSpeakerHigh = forwardRef(
|
|
|
2183
3387
|
ref: forwardRef2
|
|
2184
3388
|
},
|
|
2185
3389
|
/* @__PURE__ */ React.createElement("g", {
|
|
2186
|
-
clipPath: "url(#a)"
|
|
2187
|
-
}, /* @__PURE__ */ React.createElement("path", {
|
|
2188
3390
|
stroke: "currentColor",
|
|
2189
3391
|
strokeLinecap: "round",
|
|
2190
3392
|
strokeWidth: 2,
|
|
2191
|
-
|
|
3393
|
+
clipPath: "url(#a)"
|
|
3394
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3395
|
+
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"
|
|
2192
3396
|
})),
|
|
2193
3397
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2194
3398
|
id: "a"
|
|
@@ -2198,7 +3402,7 @@ const IconSpeakerHigh = forwardRef(
|
|
|
2198
3402
|
)
|
|
2199
3403
|
);
|
|
2200
3404
|
|
|
2201
|
-
const
|
|
3405
|
+
const IconSquaresTwoOverlap = forwardRef(
|
|
2202
3406
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2203
3407
|
StyledIcon,
|
|
2204
3408
|
{
|
|
@@ -2213,8 +3417,9 @@ const IconSquareBracketsAngleSlash = forwardRef(
|
|
|
2213
3417
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2214
3418
|
stroke: "currentColor",
|
|
2215
3419
|
strokeLinecap: "round",
|
|
3420
|
+
strokeLinejoin: "round",
|
|
2216
3421
|
strokeWidth: 2,
|
|
2217
|
-
d: "
|
|
3422
|
+
d: "M9 5V3h12v12h-2M3 9h12v12H3V9Z"
|
|
2218
3423
|
})),
|
|
2219
3424
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2220
3425
|
id: "a"
|
|
@@ -2224,7 +3429,7 @@ const IconSquareBracketsAngleSlash = forwardRef(
|
|
|
2224
3429
|
)
|
|
2225
3430
|
);
|
|
2226
3431
|
|
|
2227
|
-
const
|
|
3432
|
+
const IconSquaresUngroup = forwardRef(
|
|
2228
3433
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2229
3434
|
StyledIcon,
|
|
2230
3435
|
{
|
|
@@ -2237,17 +3442,18 @@ const IconSquareCirclesTwo = forwardRef(
|
|
|
2237
3442
|
/* @__PURE__ */ React.createElement("path", {
|
|
2238
3443
|
stroke: "currentColor",
|
|
2239
3444
|
strokeLinecap: "round",
|
|
3445
|
+
strokeLinejoin: "round",
|
|
2240
3446
|
strokeWidth: 2,
|
|
2241
|
-
d: "
|
|
3447
|
+
d: "M10 10v4h4m-4-4V4h10v10h-6m-4-4H4v10h10v-6"
|
|
2242
3448
|
}),
|
|
2243
3449
|
/* @__PURE__ */ React.createElement("path", {
|
|
2244
3450
|
fill: "currentColor",
|
|
2245
|
-
d: "
|
|
3451
|
+
d: "M8 2h3v3H8V2Zm11 0h3v3h-3V2Zm0 11h3v3h-3v-3ZM8 13h3v3H8v-3ZM2 8h3v3H2V8Zm0 11h3v3H2v-3Zm11 0h3v3h-3v-3Z"
|
|
2246
3452
|
})
|
|
2247
3453
|
)
|
|
2248
3454
|
);
|
|
2249
3455
|
|
|
2250
|
-
const
|
|
3456
|
+
const IconSquaresUnmerge = forwardRef(
|
|
2251
3457
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2252
3458
|
StyledIcon,
|
|
2253
3459
|
{
|
|
@@ -2261,8 +3467,10 @@ const IconSquareRounded = forwardRef(
|
|
|
2261
3467
|
clipPath: "url(#a)"
|
|
2262
3468
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2263
3469
|
stroke: "currentColor",
|
|
3470
|
+
strokeLinecap: "round",
|
|
3471
|
+
strokeLinejoin: "round",
|
|
2264
3472
|
strokeWidth: 2,
|
|
2265
|
-
d: "
|
|
3473
|
+
d: "M9 3h12v12H9V3Zm6 6H3v12h12V9Z"
|
|
2266
3474
|
})),
|
|
2267
3475
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2268
3476
|
id: "a"
|
|
@@ -2272,7 +3480,7 @@ const IconSquareRounded = forwardRef(
|
|
|
2272
3480
|
)
|
|
2273
3481
|
);
|
|
2274
3482
|
|
|
2275
|
-
const
|
|
3483
|
+
const IconStack = forwardRef(
|
|
2276
3484
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2277
3485
|
StyledIcon,
|
|
2278
3486
|
{
|
|
@@ -2287,8 +3495,9 @@ const IconSquareTriangleCirclePlus = forwardRef(
|
|
|
2287
3495
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2288
3496
|
stroke: "currentColor",
|
|
2289
3497
|
strokeLinecap: "round",
|
|
3498
|
+
strokeLinejoin: "round",
|
|
2290
3499
|
strokeWidth: 2,
|
|
2291
|
-
d: "
|
|
3500
|
+
d: "m18 14 4 1.5L12 20 2 15.5 6 14m6-10 10 4.5L12 13 2 8.5 12 4Z"
|
|
2292
3501
|
})),
|
|
2293
3502
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2294
3503
|
id: "a"
|
|
@@ -2298,7 +3507,7 @@ const IconSquareTriangleCirclePlus = forwardRef(
|
|
|
2298
3507
|
)
|
|
2299
3508
|
);
|
|
2300
3509
|
|
|
2301
|
-
const
|
|
3510
|
+
const IconStickyNote = forwardRef(
|
|
2302
3511
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2303
3512
|
StyledIcon,
|
|
2304
3513
|
{
|
|
@@ -2312,8 +3521,9 @@ const IconSquare = forwardRef(
|
|
|
2312
3521
|
clipPath: "url(#a)"
|
|
2313
3522
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2314
3523
|
stroke: "currentColor",
|
|
3524
|
+
strokeLinecap: "square",
|
|
2315
3525
|
strokeWidth: 2,
|
|
2316
|
-
d: "
|
|
3526
|
+
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"
|
|
2317
3527
|
})),
|
|
2318
3528
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2319
3529
|
id: "a"
|
|
@@ -2323,7 +3533,7 @@ const IconSquare = forwardRef(
|
|
|
2323
3533
|
)
|
|
2324
3534
|
);
|
|
2325
3535
|
|
|
2326
|
-
const
|
|
3536
|
+
const IconStopCircle = forwardRef(
|
|
2327
3537
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2328
3538
|
StyledIcon,
|
|
2329
3539
|
{
|
|
@@ -2333,23 +3543,48 @@ const IconSquaresFour = forwardRef(
|
|
|
2333
3543
|
fill: "none",
|
|
2334
3544
|
ref: forwardRef2
|
|
2335
3545
|
},
|
|
2336
|
-
/* @__PURE__ */ React.createElement("
|
|
3546
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
3547
|
+
cx: 12,
|
|
3548
|
+
cy: 12,
|
|
3549
|
+
r: 8.5,
|
|
2337
3550
|
stroke: "currentColor",
|
|
2338
|
-
|
|
3551
|
+
strokeWidth: 2
|
|
3552
|
+
}),
|
|
3553
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3554
|
+
fill: "currentColor",
|
|
3555
|
+
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"
|
|
3556
|
+
})
|
|
3557
|
+
)
|
|
3558
|
+
);
|
|
3559
|
+
|
|
3560
|
+
const IconTag = forwardRef(
|
|
3561
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3562
|
+
StyledIcon,
|
|
3563
|
+
{
|
|
3564
|
+
...props,
|
|
3565
|
+
size,
|
|
3566
|
+
viewBox: "0 0 24 24",
|
|
3567
|
+
fill: "none",
|
|
3568
|
+
ref: forwardRef2
|
|
3569
|
+
},
|
|
3570
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3571
|
+
stroke: "currentColor",
|
|
3572
|
+
strokeLinecap: "square",
|
|
3573
|
+
strokeLinejoin: "round",
|
|
3574
|
+
strokeMiterlimit: 1.414,
|
|
2339
3575
|
strokeWidth: 2,
|
|
2340
|
-
|
|
2341
|
-
},
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
})))
|
|
3576
|
+
d: "M11.953 4H4v8l8.839 8.617 7.778-7.778L11.953 4Z"
|
|
3577
|
+
}),
|
|
3578
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
3579
|
+
cx: 8.5,
|
|
3580
|
+
cy: 8.5,
|
|
3581
|
+
r: 1.5,
|
|
3582
|
+
fill: "currentColor"
|
|
3583
|
+
})
|
|
2349
3584
|
)
|
|
2350
3585
|
);
|
|
2351
3586
|
|
|
2352
|
-
const
|
|
3587
|
+
const IconTextHOne = forwardRef(
|
|
2353
3588
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2354
3589
|
StyledIcon,
|
|
2355
3590
|
{
|
|
@@ -2360,12 +3595,13 @@ const IconSquaresThree = forwardRef(
|
|
|
2360
3595
|
ref: forwardRef2
|
|
2361
3596
|
},
|
|
2362
3597
|
/* @__PURE__ */ React.createElement("g", {
|
|
3598
|
+
clipPath: "url(#a)"
|
|
3599
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2363
3600
|
stroke: "currentColor",
|
|
2364
3601
|
strokeLinecap: "round",
|
|
3602
|
+
strokeLinejoin: "round",
|
|
2365
3603
|
strokeWidth: 2,
|
|
2366
|
-
|
|
2367
|
-
}, /* @__PURE__ */ React.createElement("path", {
|
|
2368
|
-
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"
|
|
3604
|
+
d: "M5 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m5-12h3v12"
|
|
2369
3605
|
})),
|
|
2370
3606
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2371
3607
|
id: "a"
|
|
@@ -2375,7 +3611,7 @@ const IconSquaresThree = forwardRef(
|
|
|
2375
3611
|
)
|
|
2376
3612
|
);
|
|
2377
3613
|
|
|
2378
|
-
const
|
|
3614
|
+
const IconTextHThree = forwardRef(
|
|
2379
3615
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2380
3616
|
StyledIcon,
|
|
2381
3617
|
{
|
|
@@ -2389,9 +3625,10 @@ const IconStickyNote = forwardRef(
|
|
|
2389
3625
|
clipPath: "url(#a)"
|
|
2390
3626
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
2391
3627
|
stroke: "currentColor",
|
|
2392
|
-
strokeLinecap: "
|
|
3628
|
+
strokeLinecap: "round",
|
|
3629
|
+
strokeLinejoin: "round",
|
|
2393
3630
|
strokeWidth: 2,
|
|
2394
|
-
d: "
|
|
3631
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6m-5 0h5m0 0v6h-5"
|
|
2395
3632
|
})),
|
|
2396
3633
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2397
3634
|
id: "a"
|
|
@@ -2401,7 +3638,7 @@ const IconStickyNote = forwardRef(
|
|
|
2401
3638
|
)
|
|
2402
3639
|
);
|
|
2403
3640
|
|
|
2404
|
-
const
|
|
3641
|
+
const IconTextHTwo = forwardRef(
|
|
2405
3642
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2406
3643
|
StyledIcon,
|
|
2407
3644
|
{
|
|
@@ -2411,17 +3648,20 @@ const IconStopCircle = forwardRef(
|
|
|
2411
3648
|
fill: "none",
|
|
2412
3649
|
ref: forwardRef2
|
|
2413
3650
|
},
|
|
2414
|
-
/* @__PURE__ */ React.createElement("
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
r: 8.5,
|
|
3651
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3652
|
+
clipPath: "url(#a)"
|
|
3653
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2418
3654
|
stroke: "currentColor",
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
3655
|
+
strokeLinecap: "round",
|
|
3656
|
+
strokeLinejoin: "round",
|
|
3657
|
+
strokeWidth: 2,
|
|
3658
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6h-5v6h5"
|
|
3659
|
+
})),
|
|
3660
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3661
|
+
id: "a"
|
|
3662
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3663
|
+
d: "M0 0h24v24H0z"
|
|
3664
|
+
})))
|
|
2425
3665
|
)
|
|
2426
3666
|
);
|
|
2427
3667
|
|
|
@@ -2494,6 +3734,29 @@ const IconTicket = forwardRef(
|
|
|
2494
3734
|
)
|
|
2495
3735
|
);
|
|
2496
3736
|
|
|
3737
|
+
const IconTimer = forwardRef(
|
|
3738
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3739
|
+
StyledIcon,
|
|
3740
|
+
{
|
|
3741
|
+
...props,
|
|
3742
|
+
size,
|
|
3743
|
+
viewBox: "0 0 24 24",
|
|
3744
|
+
fill: "none",
|
|
3745
|
+
ref: forwardRef2
|
|
3746
|
+
},
|
|
3747
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3748
|
+
fill: "currentColor",
|
|
3749
|
+
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"
|
|
3750
|
+
}),
|
|
3751
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
3752
|
+
cx: 12,
|
|
3753
|
+
cy: 12,
|
|
3754
|
+
r: 2,
|
|
3755
|
+
fill: "currentColor"
|
|
3756
|
+
})
|
|
3757
|
+
)
|
|
3758
|
+
);
|
|
3759
|
+
|
|
2497
3760
|
const IconTrackpad = forwardRef(
|
|
2498
3761
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2499
3762
|
StyledIcon,
|
|
@@ -2687,6 +3950,62 @@ const IconUsers = forwardRef(
|
|
|
2687
3950
|
)
|
|
2688
3951
|
);
|
|
2689
3952
|
|
|
3953
|
+
const IconViewCenter = forwardRef(
|
|
3954
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3955
|
+
StyledIcon,
|
|
3956
|
+
{
|
|
3957
|
+
...props,
|
|
3958
|
+
size,
|
|
3959
|
+
viewBox: "0 0 24 24",
|
|
3960
|
+
fill: "none",
|
|
3961
|
+
ref: forwardRef2
|
|
3962
|
+
},
|
|
3963
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3964
|
+
stroke: "currentColor",
|
|
3965
|
+
strokeLinecap: "round",
|
|
3966
|
+
strokeLinejoin: "round",
|
|
3967
|
+
strokeWidth: 2,
|
|
3968
|
+
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"
|
|
3969
|
+
}),
|
|
3970
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
3971
|
+
width: 10,
|
|
3972
|
+
height: 8,
|
|
3973
|
+
x: 7,
|
|
3974
|
+
y: 8,
|
|
3975
|
+
fill: "currentColor",
|
|
3976
|
+
rx: 1
|
|
3977
|
+
})
|
|
3978
|
+
)
|
|
3979
|
+
);
|
|
3980
|
+
|
|
3981
|
+
const IconViewSideLeft = forwardRef(
|
|
3982
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3983
|
+
StyledIcon,
|
|
3984
|
+
{
|
|
3985
|
+
...props,
|
|
3986
|
+
size,
|
|
3987
|
+
viewBox: "0 0 24 24",
|
|
3988
|
+
fill: "none",
|
|
3989
|
+
ref: forwardRef2
|
|
3990
|
+
},
|
|
3991
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3992
|
+
stroke: "currentColor",
|
|
3993
|
+
strokeLinecap: "round",
|
|
3994
|
+
strokeLinejoin: "round",
|
|
3995
|
+
strokeWidth: 2,
|
|
3996
|
+
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"
|
|
3997
|
+
}),
|
|
3998
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
3999
|
+
width: 6,
|
|
4000
|
+
height: 10,
|
|
4001
|
+
x: 6,
|
|
4002
|
+
y: 7,
|
|
4003
|
+
fill: "currentColor",
|
|
4004
|
+
rx: 1
|
|
4005
|
+
})
|
|
4006
|
+
)
|
|
4007
|
+
);
|
|
4008
|
+
|
|
2690
4009
|
const IconWallet = forwardRef(
|
|
2691
4010
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2692
4011
|
StyledIcon,
|
|
@@ -2710,5 +4029,5 @@ const IconWallet = forwardRef(
|
|
|
2710
4029
|
)
|
|
2711
4030
|
);
|
|
2712
4031
|
|
|
2713
|
-
export { IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTextT, IconThumbsUp, IconTicket, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconWallet };
|
|
4032
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLayout, IconLifesaver, IconLightning, IconLineDiagonal, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPushPin, IconQuestionMarkCircle, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyNote, IconStopCircle, IconTag, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
2714
4033
|
//# sourceMappingURL=module.js.map
|