foamicons 0.1.0 → 0.2.1
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/index.cjs +2795 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +237 -3
- package/dist/index.d.ts +237 -3
- package/dist/index.js +2679 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
var react = require('react');
|
|
4
4
|
var jsxRuntime = require('react/jsx-runtime');
|
|
5
5
|
|
|
6
|
-
// src/icons/
|
|
7
|
-
var
|
|
8
|
-
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.
|
|
6
|
+
// src/icons/Alert.tsx
|
|
7
|
+
var Alert = react.forwardRef(
|
|
8
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9
9
|
"svg",
|
|
10
10
|
{
|
|
11
11
|
ref,
|
|
@@ -15,15 +15,19 @@ var Bell = react.forwardRef(
|
|
|
15
15
|
fill: "none",
|
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17
17
|
strokeWidth,
|
|
18
|
-
className: ["foamicon", "foamicon-
|
|
18
|
+
className: ["foamicon", "foamicon-alert", className].filter(Boolean).join(" "),
|
|
19
19
|
"aria-hidden": "true",
|
|
20
20
|
...props,
|
|
21
|
-
children:
|
|
21
|
+
children: [
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.25 7.75C11.9574 8.92444 12.7917 10.5497 13.3543 11.6796C13.6688 12.3112 13.2374 13.0502 12.5329 13.0897C11.256 13.1614 9.39596 13.25 8 13.25C6.60404 13.25 4.74404 13.1614 3.46706 13.0897C2.76259 13.0502 2.33116 12.3112 2.64567 11.6796C3.20829 10.5497 4.04258 8.92444 4.75 7.75C5.45152 6.58536 6.49354 5.09165 7.20742 4.09313C7.59827 3.54644 8.40173 3.54644 8.79258 4.09313C9.50646 5.09165 10.5485 6.58536 11.25 7.75Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 9V11.4873", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
24
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "6.875", r: "0.5", fill: "currentColor", stroke: "currentColor", strokeWidth: "0.25" })
|
|
25
|
+
]
|
|
22
26
|
}
|
|
23
27
|
)
|
|
24
28
|
);
|
|
25
|
-
|
|
26
|
-
var
|
|
29
|
+
Alert.displayName = "Alert";
|
|
30
|
+
var ArchiveArrowUp = react.forwardRef(
|
|
27
31
|
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
28
32
|
"svg",
|
|
29
33
|
{
|
|
@@ -34,18 +38,350 @@ var Block = react.forwardRef(
|
|
|
34
38
|
fill: "none",
|
|
35
39
|
xmlns: "http://www.w3.org/2000/svg",
|
|
36
40
|
strokeWidth,
|
|
37
|
-
className: ["foamicon", "foamicon-
|
|
41
|
+
className: ["foamicon", "foamicon-archive-arrow-up", className].filter(Boolean).join(" "),
|
|
38
42
|
"aria-hidden": "true",
|
|
39
43
|
...props,
|
|
40
44
|
children: [
|
|
41
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
42
|
-
/* @__PURE__ */ jsxRuntime.jsx("
|
|
45
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 5.5V11.3426C2.5 12.317 3.20217 13.1475 4.17017 13.2591C5.20658 13.3786 6.60329 13.5 8 13.5C9.39671 13.5 10.7934 13.3786 11.8298 13.2591C12.7978 13.1475 13.5 12.317 13.5 11.3426V5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
46
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 3.11582C1.5 2.84784 1.70959 2.62777 1.97741 2.618C2.99692 2.58079 5.49846 2.5 8 2.5C10.5015 2.5 13.0031 2.58079 14.0226 2.618C14.2904 2.62777 14.5 2.84784 14.5 3.11582V4.88418C14.5 5.15216 14.2904 5.37223 14.0226 5.382C13.0031 5.41921 10.5015 5.5 8 5.5C5.49846 5.5 2.99692 5.41921 1.97741 5.382C1.70959 5.37223 1.5 5.15216 1.5 4.88418V3.11582Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
47
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.33337 9.16667L7.64649 7.85355C7.84175 7.65829 8.15833 7.65829 8.35359 7.85355L9.66671 9.16667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
48
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8.66675V11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
43
49
|
]
|
|
44
50
|
}
|
|
45
51
|
)
|
|
46
52
|
);
|
|
47
|
-
|
|
48
|
-
var
|
|
53
|
+
ArchiveArrowUp.displayName = "ArchiveArrowUp";
|
|
54
|
+
var Archive = react.forwardRef(
|
|
55
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
56
|
+
"svg",
|
|
57
|
+
{
|
|
58
|
+
ref,
|
|
59
|
+
width: size,
|
|
60
|
+
height: size,
|
|
61
|
+
viewBox: "0 0 16 16",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
64
|
+
strokeWidth,
|
|
65
|
+
className: ["foamicon", "foamicon-archive", className].filter(Boolean).join(" "),
|
|
66
|
+
"aria-hidden": "true",
|
|
67
|
+
...props,
|
|
68
|
+
children: [
|
|
69
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 5.5V11.3426C2.5 12.317 3.20217 13.1475 4.17017 13.2591C5.20658 13.3786 6.60329 13.5 8 13.5C9.39671 13.5 10.7934 13.3786 11.8298 13.2591C12.7978 13.1475 13.5 12.317 13.5 11.3426V5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
70
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 3.11582C1.5 2.84784 1.70959 2.62777 1.97741 2.618C2.99692 2.58079 5.49846 2.5 8 2.5C10.5015 2.5 13.0031 2.58079 14.0226 2.618C14.2904 2.62777 14.5 2.84784 14.5 3.11582V4.88418C14.5 5.15216 14.2904 5.37223 14.0226 5.382C13.0031 5.41921 10.5015 5.5 8 5.5C5.49846 5.5 2.99692 5.41921 1.97741 5.382C1.70959 5.37223 1.5 5.15216 1.5 4.88418V3.11582Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
71
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 8H9.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
);
|
|
76
|
+
Archive.displayName = "Archive";
|
|
77
|
+
var ArrowDownNarrowWide = react.forwardRef(
|
|
78
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
79
|
+
"svg",
|
|
80
|
+
{
|
|
81
|
+
ref,
|
|
82
|
+
width: size,
|
|
83
|
+
height: size,
|
|
84
|
+
viewBox: "0 0 16 16",
|
|
85
|
+
fill: "none",
|
|
86
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87
|
+
strokeWidth,
|
|
88
|
+
className: ["foamicon", "foamicon-arrow-down-narrow-wide", className].filter(Boolean).join(" "),
|
|
89
|
+
"aria-hidden": "true",
|
|
90
|
+
...props,
|
|
91
|
+
children: [
|
|
92
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.66675 9.99996L6.35363 13.3131C6.15837 13.5083 5.84179 13.5083 5.64653 13.3131L2.33341 9.99996", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
93
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 13L6 2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
94
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 7H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
95
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 5H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
96
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 3H9", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
)
|
|
100
|
+
);
|
|
101
|
+
ArrowDownNarrowWide.displayName = "ArrowDownNarrowWide";
|
|
102
|
+
var ArrowDownUp = react.forwardRef(
|
|
103
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
104
|
+
"svg",
|
|
105
|
+
{
|
|
106
|
+
ref,
|
|
107
|
+
width: size,
|
|
108
|
+
height: size,
|
|
109
|
+
viewBox: "0 0 16 16",
|
|
110
|
+
fill: "none",
|
|
111
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
112
|
+
strokeWidth,
|
|
113
|
+
className: ["foamicon", "foamicon-arrow-down-up", className].filter(Boolean).join(" "),
|
|
114
|
+
"aria-hidden": "true",
|
|
115
|
+
...props,
|
|
116
|
+
children: [
|
|
117
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 5.66667L10.8131 3.35355C11.0084 3.15829 11.325 3.15829 11.5202 3.35355L13.8333 5.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
118
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.1667 3.66675V12.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
119
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.83337 10.3333L5.52026 12.6464C5.325 12.8417 5.00842 12.8417 4.81315 12.6464L2.50004 10.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
120
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.16663 12.3333L5.16663 3.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
)
|
|
124
|
+
);
|
|
125
|
+
ArrowDownUp.displayName = "ArrowDownUp";
|
|
126
|
+
var ArrowDownWideNarrow = react.forwardRef(
|
|
127
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
128
|
+
"svg",
|
|
129
|
+
{
|
|
130
|
+
ref,
|
|
131
|
+
width: size,
|
|
132
|
+
height: size,
|
|
133
|
+
viewBox: "0 0 16 16",
|
|
134
|
+
fill: "none",
|
|
135
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
136
|
+
strokeWidth,
|
|
137
|
+
className: ["foamicon", "foamicon-arrow-down-wide-narrow", className].filter(Boolean).join(" "),
|
|
138
|
+
"aria-hidden": "true",
|
|
139
|
+
...props,
|
|
140
|
+
children: [
|
|
141
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.66675 9.99996L6.35363 13.3131C6.15837 13.5083 5.84179 13.5083 5.64653 13.3131L2.33341 9.99996", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
142
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 13L6 2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
143
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 3H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
144
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 5H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
145
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 7H9", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
)
|
|
149
|
+
);
|
|
150
|
+
ArrowDownWideNarrow.displayName = "ArrowDownWideNarrow";
|
|
151
|
+
var ArrowDown = react.forwardRef(
|
|
152
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
153
|
+
"svg",
|
|
154
|
+
{
|
|
155
|
+
ref,
|
|
156
|
+
width: size,
|
|
157
|
+
height: size,
|
|
158
|
+
viewBox: "0 0 16 16",
|
|
159
|
+
fill: "none",
|
|
160
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
161
|
+
strokeWidth,
|
|
162
|
+
className: ["foamicon", "foamicon-arrow-down", className].filter(Boolean).join(" "),
|
|
163
|
+
"aria-hidden": "true",
|
|
164
|
+
...props,
|
|
165
|
+
children: [
|
|
166
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.6666 8.33333L8.35351 11.6464C8.15825 11.8417 7.84167 11.8417 7.64641 11.6464L4.33329 8.33333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
167
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.99988 11.3333L7.99988 3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
)
|
|
171
|
+
);
|
|
172
|
+
ArrowDown.displayName = "ArrowDown";
|
|
173
|
+
var ArrowLeft = react.forwardRef(
|
|
174
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
175
|
+
"svg",
|
|
176
|
+
{
|
|
177
|
+
ref,
|
|
178
|
+
width: size,
|
|
179
|
+
height: size,
|
|
180
|
+
viewBox: "0 0 16 16",
|
|
181
|
+
fill: "none",
|
|
182
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
183
|
+
strokeWidth,
|
|
184
|
+
className: ["foamicon", "foamicon-arrow-left", className].filter(Boolean).join(" "),
|
|
185
|
+
"aria-hidden": "true",
|
|
186
|
+
...props,
|
|
187
|
+
children: [
|
|
188
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.66667 12L4.35355 8.68689C4.15829 8.49162 4.15829 8.17504 4.35355 7.97978L7.66667 4.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
189
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.66667 8.33333H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
)
|
|
193
|
+
);
|
|
194
|
+
ArrowLeft.displayName = "ArrowLeft";
|
|
195
|
+
var ArrowRightToLine = react.forwardRef(
|
|
196
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
197
|
+
"svg",
|
|
198
|
+
{
|
|
199
|
+
ref,
|
|
200
|
+
width: size,
|
|
201
|
+
height: size,
|
|
202
|
+
viewBox: "0 0 16 16",
|
|
203
|
+
fill: "none",
|
|
204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
205
|
+
strokeWidth,
|
|
206
|
+
className: ["foamicon", "foamicon-arrow-right-to-line", className].filter(Boolean).join(" "),
|
|
207
|
+
"aria-hidden": "true",
|
|
208
|
+
...props,
|
|
209
|
+
children: [
|
|
210
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83333 4L10.1464 7.31311C10.3417 7.50838 10.3417 7.82496 10.1464 8.02022L6.83333 11.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
211
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.3333 7.66669L3 7.66669", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
212
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 2V14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
)
|
|
216
|
+
);
|
|
217
|
+
ArrowRightToLine.displayName = "ArrowRightToLine";
|
|
218
|
+
var ArrowRight = react.forwardRef(
|
|
219
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
220
|
+
"svg",
|
|
221
|
+
{
|
|
222
|
+
ref,
|
|
223
|
+
width: size,
|
|
224
|
+
height: size,
|
|
225
|
+
viewBox: "0 0 16 16",
|
|
226
|
+
fill: "none",
|
|
227
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
228
|
+
strokeWidth,
|
|
229
|
+
className: ["foamicon", "foamicon-arrow-right", className].filter(Boolean).join(" "),
|
|
230
|
+
"aria-hidden": "true",
|
|
231
|
+
...props,
|
|
232
|
+
children: [
|
|
233
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.33333 4L11.6464 7.31311C11.8417 7.50838 11.8417 7.82496 11.6464 8.02022L8.33333 11.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
234
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.3333 7.66667L3 7.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
)
|
|
238
|
+
);
|
|
239
|
+
ArrowRight.displayName = "ArrowRight";
|
|
240
|
+
var ArrowUpAZ = react.forwardRef(
|
|
241
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
242
|
+
"svg",
|
|
243
|
+
{
|
|
244
|
+
ref,
|
|
245
|
+
width: size,
|
|
246
|
+
height: size,
|
|
247
|
+
viewBox: "0 0 16 16",
|
|
248
|
+
fill: "none",
|
|
249
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
250
|
+
strokeWidth,
|
|
251
|
+
className: ["foamicon", "foamicon-arrow-up-az", className].filter(Boolean).join(" "),
|
|
252
|
+
"aria-hidden": "true",
|
|
253
|
+
...props,
|
|
254
|
+
children: [
|
|
255
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.17 4.66667L4.48311 2.35355C4.67838 2.15829 4.99496 2.15829 5.19022 2.35355L7.50333 4.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
256
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.83675 2.66663L4.83675 13.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
257
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3333 5.33337H10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
258
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 6.66663V4.33329C10 3.89127 10.1756 3.46734 10.4882 3.15478C10.8007 2.84222 11.2246 2.66663 11.6667 2.66663C12.1087 2.66663 12.5326 2.84222 12.8452 3.15478C13.1577 3.46734 13.3333 3.89127 13.3333 4.33329V6.66663", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
259
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 9.33337H12.9063C13.0759 9.33337 13.1685 9.53115 13.06 9.66141L10.2734 13.0053C10.1648 13.1356 10.2574 13.3334 10.427 13.3334H13.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
)
|
|
263
|
+
);
|
|
264
|
+
ArrowUpAZ.displayName = "ArrowUpAZ";
|
|
265
|
+
var ArrowUpNarrowWide = react.forwardRef(
|
|
266
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
267
|
+
"svg",
|
|
268
|
+
{
|
|
269
|
+
ref,
|
|
270
|
+
width: size,
|
|
271
|
+
height: size,
|
|
272
|
+
viewBox: "0 0 16 16",
|
|
273
|
+
fill: "none",
|
|
274
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
275
|
+
strokeWidth,
|
|
276
|
+
className: ["foamicon", "foamicon-arrow-up-narrow-wide", className].filter(Boolean).join(" "),
|
|
277
|
+
"aria-hidden": "true",
|
|
278
|
+
...props,
|
|
279
|
+
children: [
|
|
280
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.66667 5.66667L8.97978 2.35355C9.17504 2.15829 9.49162 2.15829 9.68689 2.35355L13 5.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
281
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.33342 2.66663L9.33341 13.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
282
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 12.6666L2.33341 12.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
283
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 10.6666L4.33341 10.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
284
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 8.66663L6.33341 8.66663", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
285
|
+
]
|
|
286
|
+
}
|
|
287
|
+
)
|
|
288
|
+
);
|
|
289
|
+
ArrowUpNarrowWide.displayName = "ArrowUpNarrowWide";
|
|
290
|
+
var ArrowUpWideNarrow = react.forwardRef(
|
|
291
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
292
|
+
"svg",
|
|
293
|
+
{
|
|
294
|
+
ref,
|
|
295
|
+
width: size,
|
|
296
|
+
height: size,
|
|
297
|
+
viewBox: "0 0 16 16",
|
|
298
|
+
fill: "none",
|
|
299
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
300
|
+
strokeWidth,
|
|
301
|
+
className: ["foamicon", "foamicon-arrow-up-wide-narrow", className].filter(Boolean).join(" "),
|
|
302
|
+
"aria-hidden": "true",
|
|
303
|
+
...props,
|
|
304
|
+
children: [
|
|
305
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.66667 5.66667L8.97978 2.35355C9.17504 2.15829 9.49162 2.15829 9.68689 2.35355L13 5.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
306
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.33342 2.66663L9.33341 13.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
307
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 8.66663L2.33341 8.66663", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
308
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 10.6666L4.33341 10.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
309
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.83341 12.6666L6.33341 12.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
)
|
|
313
|
+
);
|
|
314
|
+
ArrowUpWideNarrow.displayName = "ArrowUpWideNarrow";
|
|
315
|
+
var ArrowUpZA = react.forwardRef(
|
|
316
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
317
|
+
"svg",
|
|
318
|
+
{
|
|
319
|
+
ref,
|
|
320
|
+
width: size,
|
|
321
|
+
height: size,
|
|
322
|
+
viewBox: "0 0 16 16",
|
|
323
|
+
fill: "none",
|
|
324
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
325
|
+
strokeWidth,
|
|
326
|
+
className: ["foamicon", "foamicon-arrow-up-za", className].filter(Boolean).join(" "),
|
|
327
|
+
"aria-hidden": "true",
|
|
328
|
+
...props,
|
|
329
|
+
children: [
|
|
330
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.17 4.66667L4.48311 2.35355C4.67838 2.15829 4.99496 2.15829 5.19022 2.35355L7.50333 4.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
331
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.83675 2.66663L4.83675 13.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
332
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3333 11.8368H10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
333
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 13.17V10.8367C10 10.3947 10.1756 9.97073 10.4882 9.65817C10.8007 9.34561 11.2246 9.17001 11.6667 9.17001C12.1087 9.17001 12.5326 9.34561 12.8452 9.65817C13.1577 9.97073 13.3333 10.3947 13.3333 10.8367V13.17", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
334
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 2.82999H12.9063C13.0759 2.82999 13.1685 3.02776 13.06 3.15802L10.2734 6.50195C10.1648 6.63222 10.2574 6.82999 10.427 6.82999H13.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
335
|
+
]
|
|
336
|
+
}
|
|
337
|
+
)
|
|
338
|
+
);
|
|
339
|
+
ArrowUpZA.displayName = "ArrowUpZA";
|
|
340
|
+
var ArrowUp = react.forwardRef(
|
|
341
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
342
|
+
"svg",
|
|
343
|
+
{
|
|
344
|
+
ref,
|
|
345
|
+
width: size,
|
|
346
|
+
height: size,
|
|
347
|
+
viewBox: "0 0 16 16",
|
|
348
|
+
fill: "none",
|
|
349
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
350
|
+
strokeWidth,
|
|
351
|
+
className: ["foamicon", "foamicon-arrow-up", className].filter(Boolean).join(" "),
|
|
352
|
+
"aria-hidden": "true",
|
|
353
|
+
...props,
|
|
354
|
+
children: [
|
|
355
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.33337 7.66667L7.64649 4.35355C7.84175 4.15829 8.15833 4.15829 8.35359 4.35355L11.6667 7.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
356
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00012 4.66666V13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
357
|
+
]
|
|
358
|
+
}
|
|
359
|
+
)
|
|
360
|
+
);
|
|
361
|
+
ArrowUp.displayName = "ArrowUp";
|
|
362
|
+
var Ban = react.forwardRef(
|
|
363
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
364
|
+
"svg",
|
|
365
|
+
{
|
|
366
|
+
ref,
|
|
367
|
+
width: size,
|
|
368
|
+
height: size,
|
|
369
|
+
viewBox: "0 0 16 16",
|
|
370
|
+
fill: "none",
|
|
371
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
372
|
+
strokeWidth,
|
|
373
|
+
className: ["foamicon", "foamicon-ban", className].filter(Boolean).join(" "),
|
|
374
|
+
"aria-hidden": "true",
|
|
375
|
+
...props,
|
|
376
|
+
children: [
|
|
377
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { clipPath: "url(#clip0_6_105)", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2426 12.2426C9.89949 14.5858 6.10051 14.5858 3.75736 12.2426C1.41421 9.89949 1.41421 6.1005 3.75736 3.75735M12.2426 12.2426C14.5858 9.89949 14.5858 6.1005 12.2426 3.75735C9.89949 1.4142 6.10051 1.4142 3.75736 3.75735M12.2426 12.2426L3.75736 3.75735", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
378
|
+
/* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", { id: "clip0_6_105", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "currentColor" }) }) })
|
|
379
|
+
]
|
|
380
|
+
}
|
|
381
|
+
)
|
|
382
|
+
);
|
|
383
|
+
Ban.displayName = "Ban";
|
|
384
|
+
var Bell = react.forwardRef(
|
|
49
385
|
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
50
386
|
"svg",
|
|
51
387
|
{
|
|
@@ -56,21 +392,2463 @@ var Bookmark = react.forwardRef(
|
|
|
56
392
|
fill: "none",
|
|
57
393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
58
394
|
strokeWidth,
|
|
59
|
-
className: ["foamicon", "foamicon-
|
|
395
|
+
className: ["foamicon", "foamicon-bell", className].filter(Boolean).join(" "),
|
|
60
396
|
"aria-hidden": "true",
|
|
61
397
|
...props,
|
|
62
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
398
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.9047 11.3878C10.9161 11.2678 11.8985 11.0535 12.843 10.7539C13.18 10.647 13.2845 10.2272 13.0817 9.93758C12.4 8.96402 12 7.77873 12 6.5V6.03279C12.0001 6.02187 12.0001 6.01094 12.0001 6C12.0001 3.79086 10.2093 2 8.00013 2C5.79099 2 4.00013 3.79086 4.00013 6L4 6.5C4 7.77873 3.59998 8.96402 2.91826 9.93758C2.71546 10.2272 2.81998 10.647 3.15698 10.7539C4.10155 11.0536 5.08409 11.2679 6.09556 11.3878M9.9047 11.3878C9.28012 11.4619 8.64451 11.5 8 11.5C7.35558 11.5 6.72005 11.4619 6.09556 11.3878M9.9047 11.3878C9.96667 11.5807 10.0001 11.7865 10.0001 12C10.0001 13.1046 9.1047 14 8.00013 14C6.89556 14 6.00013 13.1046 6.00013 12C6.00013 11.7865 6.03359 11.5808 6.09556 11.3878", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
63
399
|
}
|
|
64
400
|
)
|
|
65
401
|
);
|
|
66
|
-
|
|
402
|
+
Bell.displayName = "Bell";
|
|
403
|
+
var Bold = react.forwardRef(
|
|
404
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
405
|
+
"svg",
|
|
406
|
+
{
|
|
407
|
+
ref,
|
|
408
|
+
width: size,
|
|
409
|
+
height: size,
|
|
410
|
+
viewBox: "0 0 16 16",
|
|
411
|
+
fill: "none",
|
|
412
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
413
|
+
strokeWidth,
|
|
414
|
+
className: ["foamicon", "foamicon-bold", className].filter(Boolean).join(" "),
|
|
415
|
+
"aria-hidden": "true",
|
|
416
|
+
...props,
|
|
417
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.71214 13.5H4.35061C3.86539 13.5 3.51774 13.3925 3.30764 13.1774C3.10255 12.9573 3 12.6096 3 12.1344V3.86562C3 3.3804 3.10505 3.03274 3.31514 2.82265C3.53024 2.60755 3.8754 2.5 4.35061 2.5H7.91473C8.43997 2.5 8.89518 2.53251 9.28035 2.59754C9.66553 2.66257 10.0107 2.78763 10.3158 2.97271C10.5759 3.12779 10.806 3.32538 11.0061 3.56548C11.2062 3.80059 11.3588 4.06321 11.4638 4.35334C11.5689 4.63847 11.6214 4.94111 11.6214 5.26126C11.6214 6.36176 11.0712 7.16712 9.97067 7.67735C11.4163 8.13756 12.1392 9.03297 12.1392 10.3636C12.1392 10.9789 11.9816 11.5341 11.6664 12.0293C11.3513 12.5196 10.9261 12.8822 10.3909 13.1173C10.0557 13.2574 9.67053 13.3574 9.23533 13.4175C8.80014 13.4725 8.29241 13.5 7.71214 13.5ZM7.54707 8.61528H5.22851V11.8267H7.6221C9.12779 11.8267 9.88063 11.284 9.88063 10.1985C9.88063 9.64325 9.68554 9.24056 9.29536 8.99045C8.90518 8.74034 8.32242 8.61528 7.54707 8.61528ZM5.22851 4.17326V7.01705H7.26944C7.82469 7.01705 8.25239 6.96453 8.55252 6.85948C8.85766 6.75443 9.09027 6.55434 9.25034 6.25921C9.3754 6.04911 9.43793 5.81401 9.43793 5.55389C9.43793 4.99864 9.24034 4.63097 8.84516 4.45089C8.44998 4.2658 7.8472 4.17326 7.03684 4.17326H5.22851Z", fill: "currentColor" })
|
|
418
|
+
}
|
|
419
|
+
)
|
|
420
|
+
);
|
|
421
|
+
Bold.displayName = "Bold";
|
|
422
|
+
var Bookmark = react.forwardRef(
|
|
423
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
424
|
+
"svg",
|
|
425
|
+
{
|
|
426
|
+
ref,
|
|
427
|
+
width: size,
|
|
428
|
+
height: size,
|
|
429
|
+
viewBox: "0 0 16 16",
|
|
430
|
+
fill: "none",
|
|
431
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
432
|
+
strokeWidth,
|
|
433
|
+
className: ["foamicon", "foamicon-bookmark", className].filter(Boolean).join(" "),
|
|
434
|
+
"aria-hidden": "true",
|
|
435
|
+
...props,
|
|
436
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.25 3.75425C4.25 3.51212 4.42325 3.30546 4.66273 3.26968C5.31772 3.17183 6.65886 3 8 3C9.34114 3 10.6823 3.17183 11.3373 3.26968C11.5767 3.30546 11.75 3.51212 11.75 3.75425V12.6058C11.75 13.0808 11.1392 13.2977 10.8308 12.9364C9.91058 11.8586 8.55417 10.3889 8 10.3889C7.44583 10.3889 6.08942 11.8586 5.16924 12.9364C4.86081 13.2977 4.25 13.0808 4.25 12.6058V3.75425Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
437
|
+
}
|
|
438
|
+
)
|
|
439
|
+
);
|
|
440
|
+
Bookmark.displayName = "Bookmark";
|
|
441
|
+
var Calendar = react.forwardRef(
|
|
442
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
443
|
+
"svg",
|
|
444
|
+
{
|
|
445
|
+
ref,
|
|
446
|
+
width: size,
|
|
447
|
+
height: size,
|
|
448
|
+
viewBox: "0 0 16 16",
|
|
449
|
+
fill: "none",
|
|
450
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
451
|
+
strokeWidth,
|
|
452
|
+
className: ["foamicon", "foamicon-calendar", className].filter(Boolean).join(" "),
|
|
453
|
+
"aria-hidden": "true",
|
|
454
|
+
...props,
|
|
455
|
+
children: [
|
|
456
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 3V4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
457
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 3V4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
458
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 6.17434C2 5.18547 2.7226 4.34728 3.70613 4.24462C4.84726 4.1255 6.42363 4 8 4C9.57637 4 11.1527 4.1255 12.2939 4.24462C13.2774 4.34728 14 5.18547 14 6.17434V11.8257C14 12.8145 13.2774 13.6527 12.2939 13.7554C11.1527 13.8745 9.57637 14 8 14C6.42363 14 4.84726 13.8745 3.70613 13.7554C2.7226 13.6527 2 12.8145 2 11.8257V6.17434Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
459
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8.6675C2 7.90032 2.57803 7.2585 3.34288 7.1987C4.49736 7.10843 6.24868 7 8 7C9.75132 7 11.5026 7.10843 12.6571 7.1987C13.422 7.2585 14 7.90032 14 8.6675V12.3325C14 13.0997 13.422 13.7415 12.6571 13.8013C11.5026 13.8916 9.75132 14 8 14C6.24868 14 4.49736 13.8916 3.34288 13.8013C2.57803 13.7415 2 13.0997 2 12.3325V8.6675Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
460
|
+
]
|
|
461
|
+
}
|
|
462
|
+
)
|
|
463
|
+
);
|
|
464
|
+
Calendar.displayName = "Calendar";
|
|
465
|
+
var ChartColumnSquare = react.forwardRef(
|
|
466
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
467
|
+
"svg",
|
|
468
|
+
{
|
|
469
|
+
ref,
|
|
470
|
+
width: size,
|
|
471
|
+
height: size,
|
|
472
|
+
viewBox: "0 0 16 16",
|
|
473
|
+
fill: "none",
|
|
474
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
475
|
+
strokeWidth,
|
|
476
|
+
className: ["foamicon", "foamicon-chart-column-square", className].filter(Boolean).join(" "),
|
|
477
|
+
"aria-hidden": "true",
|
|
478
|
+
...props,
|
|
479
|
+
children: [
|
|
480
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.66915C2.5 3.70258 3.1911 2.87634 4.15044 2.75834C5.18882 2.63062 6.59441 2.5 8 2.5C9.40559 2.5 10.8112 2.63062 11.8496 2.75834C12.8089 2.87634 13.5 3.70258 13.5 4.66915V11.3308C13.5 12.2974 12.8089 13.1237 11.8496 13.2417C10.8112 13.3694 9.40559 13.5 8 13.5C6.59441 13.5 5.18882 13.3694 4.15044 13.2417C3.1911 13.1237 2.5 12.2974 2.5 11.3308V4.66915Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
481
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 11V7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
482
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 11V5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
483
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 11V9.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
484
|
+
]
|
|
485
|
+
}
|
|
486
|
+
)
|
|
487
|
+
);
|
|
488
|
+
ChartColumnSquare.displayName = "ChartColumnSquare";
|
|
489
|
+
var Checkbox = react.forwardRef(
|
|
490
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
491
|
+
"svg",
|
|
492
|
+
{
|
|
493
|
+
ref,
|
|
494
|
+
width: size,
|
|
495
|
+
height: size,
|
|
496
|
+
viewBox: "0 0 16 16",
|
|
497
|
+
fill: "none",
|
|
498
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
499
|
+
strokeWidth,
|
|
500
|
+
className: ["foamicon", "foamicon-checkbox", className].filter(Boolean).join(" "),
|
|
501
|
+
"aria-hidden": "true",
|
|
502
|
+
...props,
|
|
503
|
+
children: [
|
|
504
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 4.5L8.12275 9.87725C7.91239 10.0876 7.56601 10.0689 7.37957 9.83705L5.5 7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
505
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 8C13 9.91468 12.7334 11.5361 12.6085 12.1904C12.5722 12.3806 12.4251 12.5262 12.235 12.5629C11.5375 12.6972 9.76875 13 8 13C6.23125 13 4.46249 12.6972 3.76503 12.5629C3.57488 12.5262 3.42776 12.3806 3.39146 12.1904C3.26662 11.5361 3 9.91468 3 8C3 6.08532 3.26662 4.46393 3.39146 3.80965C3.42776 3.61943 3.57488 3.47376 3.76503 3.43715C4.46249 3.30284 6.23125 3 8 3C9.22265 3 10.4453 3.1447 11.3141 3.27842", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
506
|
+
]
|
|
507
|
+
}
|
|
508
|
+
)
|
|
509
|
+
);
|
|
510
|
+
Checkbox.displayName = "Checkbox";
|
|
511
|
+
var Checkmark = react.forwardRef(
|
|
512
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
513
|
+
"svg",
|
|
514
|
+
{
|
|
515
|
+
ref,
|
|
516
|
+
width: size,
|
|
517
|
+
height: size,
|
|
518
|
+
viewBox: "0 0 16 16",
|
|
519
|
+
fill: "none",
|
|
520
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
521
|
+
strokeWidth,
|
|
522
|
+
className: ["foamicon", "foamicon-checkmark", className].filter(Boolean).join(" "),
|
|
523
|
+
"aria-hidden": "true",
|
|
524
|
+
...props,
|
|
525
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2712 5.5L6.89399 10.8772C6.68364 11.0876 6.33725 11.0689 6.15081 10.8371L4.27124 8.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
526
|
+
}
|
|
527
|
+
)
|
|
528
|
+
);
|
|
529
|
+
Checkmark.displayName = "Checkmark";
|
|
530
|
+
var ChevronDown = react.forwardRef(
|
|
531
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
532
|
+
"svg",
|
|
533
|
+
{
|
|
534
|
+
ref,
|
|
535
|
+
width: size,
|
|
536
|
+
height: size,
|
|
537
|
+
viewBox: "0 0 16 16",
|
|
538
|
+
fill: "none",
|
|
539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
540
|
+
strokeWidth,
|
|
541
|
+
className: ["foamicon", "foamicon-chevron-down", className].filter(Boolean).join(" "),
|
|
542
|
+
"aria-hidden": "true",
|
|
543
|
+
...props,
|
|
544
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.6667 7.33333L8.35356 9.64645C8.1583 9.84171 7.84171 9.84171 7.64645 9.64645L5.33334 7.33333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
545
|
+
}
|
|
546
|
+
)
|
|
547
|
+
);
|
|
548
|
+
ChevronDown.displayName = "ChevronDown";
|
|
549
|
+
var ChevronLeft = react.forwardRef(
|
|
550
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
551
|
+
"svg",
|
|
552
|
+
{
|
|
553
|
+
ref,
|
|
554
|
+
width: size,
|
|
555
|
+
height: size,
|
|
556
|
+
viewBox: "0 0 16 16",
|
|
557
|
+
fill: "none",
|
|
558
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
559
|
+
strokeWidth,
|
|
560
|
+
className: ["foamicon", "foamicon-chevron-left", className].filter(Boolean).join(" "),
|
|
561
|
+
"aria-hidden": "true",
|
|
562
|
+
...props,
|
|
563
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.66667 10.6667L6.35355 8.35357C6.15829 8.15831 6.15829 7.84173 6.35355 7.64647L8.66667 5.33335", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
564
|
+
}
|
|
565
|
+
)
|
|
566
|
+
);
|
|
567
|
+
ChevronLeft.displayName = "ChevronLeft";
|
|
568
|
+
var ChevronRight = react.forwardRef(
|
|
569
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
570
|
+
"svg",
|
|
571
|
+
{
|
|
572
|
+
ref,
|
|
573
|
+
width: size,
|
|
574
|
+
height: size,
|
|
575
|
+
viewBox: "0 0 16 16",
|
|
576
|
+
fill: "none",
|
|
577
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
578
|
+
strokeWidth,
|
|
579
|
+
className: ["foamicon", "foamicon-chevron-right", className].filter(Boolean).join(" "),
|
|
580
|
+
"aria-hidden": "true",
|
|
581
|
+
...props,
|
|
582
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.33333 5.33331L9.64645 7.64643C9.84171 7.84169 9.84171 8.15827 9.64645 8.35353L7.33333 10.6666", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
583
|
+
}
|
|
584
|
+
)
|
|
585
|
+
);
|
|
586
|
+
ChevronRight.displayName = "ChevronRight";
|
|
587
|
+
var ChevronUp = react.forwardRef(
|
|
588
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
589
|
+
"svg",
|
|
590
|
+
{
|
|
591
|
+
ref,
|
|
592
|
+
width: size,
|
|
593
|
+
height: size,
|
|
594
|
+
viewBox: "0 0 16 16",
|
|
595
|
+
fill: "none",
|
|
596
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
597
|
+
strokeWidth,
|
|
598
|
+
className: ["foamicon", "foamicon-chevron-up", className].filter(Boolean).join(" "),
|
|
599
|
+
"aria-hidden": "true",
|
|
600
|
+
...props,
|
|
601
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.33333 8.66667L7.64644 6.35355C7.8417 6.15829 8.15829 6.15829 8.35355 6.35355L10.6667 8.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
602
|
+
}
|
|
603
|
+
)
|
|
604
|
+
);
|
|
605
|
+
ChevronUp.displayName = "ChevronUp";
|
|
606
|
+
var CircleAlert = react.forwardRef(
|
|
607
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
608
|
+
"svg",
|
|
609
|
+
{
|
|
610
|
+
ref,
|
|
611
|
+
width: size,
|
|
612
|
+
height: size,
|
|
613
|
+
viewBox: "0 0 16 16",
|
|
614
|
+
fill: "none",
|
|
615
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
616
|
+
strokeWidth,
|
|
617
|
+
className: ["foamicon", "foamicon-circle-alert", className].filter(Boolean).join(" "),
|
|
618
|
+
"aria-hidden": "true",
|
|
619
|
+
...props,
|
|
620
|
+
children: [
|
|
621
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
622
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8.43986L8 4.75003", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
623
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "10.8623", r: "0.5", transform: "rotate(-180 8 10.8623)", fill: "currentColor", stroke: "currentColor", strokeWidth: "0.25" })
|
|
624
|
+
]
|
|
625
|
+
}
|
|
626
|
+
)
|
|
627
|
+
);
|
|
628
|
+
CircleAlert.displayName = "CircleAlert";
|
|
629
|
+
var CircleDollarSign = react.forwardRef(
|
|
630
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
631
|
+
"svg",
|
|
632
|
+
{
|
|
633
|
+
ref,
|
|
634
|
+
width: size,
|
|
635
|
+
height: size,
|
|
636
|
+
viewBox: "0 0 16 16",
|
|
637
|
+
fill: "none",
|
|
638
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
639
|
+
strokeWidth,
|
|
640
|
+
className: ["foamicon", "foamicon-circle-dollar-sign", className].filter(Boolean).join(" "),
|
|
641
|
+
"aria-hidden": "true",
|
|
642
|
+
...props,
|
|
643
|
+
children: [
|
|
644
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
645
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.18006 9.20677C6.18006 10.0275 6.99339 10.6928 7.99667 10.6928C8.99995 10.6928 9.81327 10.0275 9.81327 9.20677C9.81327 8.38604 8.99995 7.7207 7.99667 7.7207", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
646
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.81327 6.24155C9.81327 5.42463 8.99995 4.76239 7.99667 4.76239C6.99339 4.76239 6.18006 5.42463 6.18006 6.24155C6.18006 7.05846 6.99339 7.7207 7.99667 7.7207", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
647
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.99966 3.96936V12.0306", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
648
|
+
]
|
|
649
|
+
}
|
|
650
|
+
)
|
|
651
|
+
);
|
|
652
|
+
CircleDollarSign.displayName = "CircleDollarSign";
|
|
653
|
+
var CircleQuestionMark = react.forwardRef(
|
|
654
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
655
|
+
"svg",
|
|
656
|
+
{
|
|
657
|
+
ref,
|
|
658
|
+
width: size,
|
|
659
|
+
height: size,
|
|
660
|
+
viewBox: "0 0 16 16",
|
|
661
|
+
fill: "none",
|
|
662
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
663
|
+
strokeWidth,
|
|
664
|
+
className: ["foamicon", "foamicon-circle-question-mark", className].filter(Boolean).join(" "),
|
|
665
|
+
"aria-hidden": "true",
|
|
666
|
+
...props,
|
|
667
|
+
children: [
|
|
668
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
669
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.05453 8.86291C8.12045 7.91806 9.21944 7.27066 9.5132 6.95069C9.70825 6.73825 9.82337 6.47638 9.82337 6.19312C9.82337 5.48321 9.1003 4.90771 8.20834 4.90771C7.31638 4.90771 6.5933 5.48321 6.5933 6.19312", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
670
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.06641", cy: "10.457", r: "0.644531", fill: "currentColor" })
|
|
671
|
+
]
|
|
672
|
+
}
|
|
673
|
+
)
|
|
674
|
+
);
|
|
675
|
+
CircleQuestionMark.displayName = "CircleQuestionMark";
|
|
676
|
+
var CircleX = react.forwardRef(
|
|
677
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
678
|
+
"svg",
|
|
679
|
+
{
|
|
680
|
+
ref,
|
|
681
|
+
width: size,
|
|
682
|
+
height: size,
|
|
683
|
+
viewBox: "0 0 16 16",
|
|
684
|
+
fill: "none",
|
|
685
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
686
|
+
strokeWidth,
|
|
687
|
+
className: ["foamicon", "foamicon-circle-x", className].filter(Boolean).join(" "),
|
|
688
|
+
"aria-hidden": "true",
|
|
689
|
+
...props,
|
|
690
|
+
children: [
|
|
691
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.182 4.81799L4.81802 11.182", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
692
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.182 11.182L4.81802 4.81805", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
693
|
+
]
|
|
694
|
+
}
|
|
695
|
+
)
|
|
696
|
+
);
|
|
697
|
+
CircleX.displayName = "CircleX";
|
|
698
|
+
var Clock = react.forwardRef(
|
|
699
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
700
|
+
"svg",
|
|
701
|
+
{
|
|
702
|
+
ref,
|
|
703
|
+
width: size,
|
|
704
|
+
height: size,
|
|
705
|
+
viewBox: "0 0 16 16",
|
|
706
|
+
fill: "none",
|
|
707
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
708
|
+
strokeWidth,
|
|
709
|
+
className: ["foamicon", "foamicon-clock", className].filter(Boolean).join(" "),
|
|
710
|
+
"aria-hidden": "true",
|
|
711
|
+
...props,
|
|
712
|
+
children: [
|
|
713
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
714
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 4V7.58579C8 7.851 8.10536 8.10536 8.29289 8.29289L10 10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
715
|
+
]
|
|
716
|
+
}
|
|
717
|
+
)
|
|
718
|
+
);
|
|
719
|
+
Clock.displayName = "Clock";
|
|
720
|
+
var Cog = react.forwardRef(
|
|
721
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
722
|
+
"svg",
|
|
723
|
+
{
|
|
724
|
+
ref,
|
|
725
|
+
width: size,
|
|
726
|
+
height: size,
|
|
727
|
+
viewBox: "0 0 16 16",
|
|
728
|
+
fill: "none",
|
|
729
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
730
|
+
strokeWidth,
|
|
731
|
+
className: ["foamicon", "foamicon-cog", className].filter(Boolean).join(" "),
|
|
732
|
+
"aria-hidden": "true",
|
|
733
|
+
...props,
|
|
734
|
+
children: [
|
|
735
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.3407 10.5061C12.1369 10.8543 12.0671 11.2754 12.2175 11.6497L12.6439 12.7109C12.6717 12.7858 12.672 12.8682 12.6448 12.9433C12.6176 13.0184 12.5647 13.0815 12.4954 13.1213L10.1816 14.4557C10.1122 14.4947 10.0313 14.5079 9.95316 14.4931C9.87498 14.4782 9.80455 14.4363 9.75428 14.3746L8.82164 13.1837C8.77003 13.1184 8.70302 13.0668 8.6266 13.0337C8.55017 13.0006 8.46673 12.987 8.38375 12.9941C8.12457 13.0147 7.86419 13.0156 7.60487 12.9969C7.52329 12.9911 7.44154 13.0054 7.36683 13.0387C7.29212 13.0719 7.22674 13.1231 7.17648 13.1876L6.24607 14.3785C6.19459 14.4401 6.12333 14.4818 6.04448 14.4966C5.96562 14.5115 5.88407 14.4984 5.81375 14.4598L3.49876 13.1232C3.43112 13.0826 3.37933 13.0202 3.35194 12.9462C3.32454 12.8722 3.32317 12.791 3.34804 12.7162L3.91337 11.317C3.9441 11.2402 3.95538 11.157 3.9462 11.0747C3.93701 10.9925 3.90766 10.9138 3.86073 10.8457C3.71476 10.6311 3.58622 10.4052 3.47636 10.1702C3.44108 10.0951 3.38767 10.03 3.32095 9.98067C3.25423 9.93138 3.17629 9.89946 3.09416 9.88779L1.59694 9.67542C1.51841 9.66277 1.44686 9.6228 1.39489 9.56257C1.34293 9.50234 1.31389 9.4257 1.31289 9.34616L1.31165 6.67519C1.31139 6.59527 1.33951 6.51785 1.39099 6.45671C1.44248 6.39558 1.51399 6.3547 1.59279 6.34136L3.09563 6.12649C3.17825 6.11422 3.2565 6.08152 3.32327 6.03135C3.39005 5.98118 3.44324 5.91513 3.47801 5.83919C3.53342 5.72071 3.59247 5.60469 3.65763 5.49183C3.72278 5.37898 3.79253 5.2713 3.86629 5.16667C3.91367 5.09859 3.94337 5.01979 3.95272 4.93738C3.96207 4.85496 3.95076 4.77152 3.91983 4.69456L3.35503 3.28594C3.32818 3.2113 3.32846 3.12958 3.35582 3.05512C3.38317 2.98066 3.43586 2.9182 3.50464 2.87869L5.81839 1.54428C5.88776 1.50531 5.96866 1.49207 6.04684 1.50691C6.12502 1.52174 6.19545 1.5637 6.24572 1.62538L7.17836 2.81624C7.22996 2.88161 7.29698 2.93316 7.3734 2.96626C7.44983 2.99936 7.53327 3.01299 7.61625 3.00591C7.87543 2.98528 8.13581 2.98434 8.39513 3.0031C8.47671 3.00892 8.55846 2.99456 8.63317 2.9613C8.70788 2.92803 8.77326 2.87688 8.82352 2.81237L9.75393 1.62146C9.80541 1.55992 9.87667 1.51817 9.95552 1.50334C10.0344 1.48851 10.1159 1.50153 10.1863 1.54017L12.5012 2.87673C12.5689 2.91736 12.6207 2.97981 12.6481 3.05381C12.6755 3.12781 12.6768 3.20893 12.652 3.28381L12.0866 4.68298C12.0559 4.7598 12.0446 4.84302 12.0538 4.92525C12.063 5.00748 12.0923 5.08617 12.1393 5.15431C12.2852 5.36884 12.4138 5.59473 12.5236 5.82981C12.5589 5.90489 12.6123 5.97001 12.6791 6.01931C12.7458 6.0686 12.8237 6.10052 12.9058 6.11218L14.4031 6.32456C14.4816 6.33721 14.5531 6.37717 14.6051 6.43741C14.6571 6.49764 14.6861 6.57428 14.6871 6.65382L14.6884 9.32478C14.6886 9.40471 14.6605 9.48213 14.609 9.54326C14.5575 9.6044 14.486 9.64528 14.4072 9.65862L12.9044 9.87349C12.8216 9.88546 12.7431 9.91795 12.6761 9.96799C12.6091 10.018 12.5556 10.084 12.5206 10.16C12.4649 10.2772 12.4058 10.3932 12.3407 10.5061Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
736
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.02673", cy: "7.95831", r: "2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
737
|
+
]
|
|
738
|
+
}
|
|
739
|
+
)
|
|
740
|
+
);
|
|
741
|
+
Cog.displayName = "Cog";
|
|
742
|
+
var Columns3 = react.forwardRef(
|
|
743
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
744
|
+
"svg",
|
|
745
|
+
{
|
|
746
|
+
ref,
|
|
747
|
+
width: size,
|
|
748
|
+
height: size,
|
|
749
|
+
viewBox: "0 0 16 16",
|
|
750
|
+
fill: "none",
|
|
751
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
752
|
+
strokeWidth,
|
|
753
|
+
className: ["foamicon", "foamicon-columns3", className].filter(Boolean).join(" "),
|
|
754
|
+
"aria-hidden": "true",
|
|
755
|
+
...props,
|
|
756
|
+
children: [
|
|
757
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.44152C2.5 3.58066 3.06061 2.84096 3.91395 2.72739C4.79328 2.61036 6.12073 2.5 8 2.5C9.87927 2.5 11.2067 2.61036 12.0861 2.72739C12.9394 2.84096 13.5 3.58066 13.5 4.44152V11.5585C13.5 12.4193 12.9394 13.159 12.0861 13.2726C11.2067 13.3896 9.87927 13.5 8 13.5C6.12073 13.5 4.79328 13.3896 3.91395 13.2726C3.06061 13.159 2.5 12.4193 2.5 11.5585V4.44152Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
758
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 2.5V13.5", stroke: "currentColor", strokeLinejoin: "round" }),
|
|
759
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 2.5V13.5", stroke: "currentColor", strokeLinejoin: "round" })
|
|
760
|
+
]
|
|
761
|
+
}
|
|
762
|
+
)
|
|
763
|
+
);
|
|
764
|
+
Columns3.displayName = "Columns3";
|
|
765
|
+
var Command = react.forwardRef(
|
|
766
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
767
|
+
"svg",
|
|
768
|
+
{
|
|
769
|
+
ref,
|
|
770
|
+
width: size,
|
|
771
|
+
height: size,
|
|
772
|
+
viewBox: "0 0 16 16",
|
|
773
|
+
fill: "none",
|
|
774
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
775
|
+
strokeWidth,
|
|
776
|
+
className: ["foamicon", "foamicon-command", className].filter(Boolean).join(" "),
|
|
777
|
+
"aria-hidden": "true",
|
|
778
|
+
...props,
|
|
779
|
+
children: [
|
|
780
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 4.75C3 3.7835 3.7835 3 4.75 3V3C5.7165 3 6.5 3.7835 6.5 4.75V6.5H4.75C3.7835 6.5 3 5.7165 3 4.75V4.75Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
781
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 4.75C9.5 3.7835 10.2835 3 11.25 3V3C12.2165 3 13 3.7835 13 4.75V4.75C13 5.7165 12.2165 6.5 11.25 6.5H9.5V4.75Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
782
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 11.25C3 10.2835 3.7835 9.5 4.75 9.5H6.5V11.25C6.5 12.2165 5.7165 13 4.75 13V13C3.7835 13 3 12.2165 3 11.25V11.25Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
783
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 9.5H11.25C12.2165 9.5 13 10.2835 13 11.25V11.25C13 12.2165 12.2165 13 11.25 13V13C10.2835 13 9.5 12.2165 9.5 11.25V9.5Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
784
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6.5", y: "6.5", width: "3", height: "3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
785
|
+
]
|
|
786
|
+
}
|
|
787
|
+
)
|
|
788
|
+
);
|
|
789
|
+
Command.displayName = "Command";
|
|
790
|
+
var ContentPlus = react.forwardRef(
|
|
791
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
792
|
+
"svg",
|
|
793
|
+
{
|
|
794
|
+
ref,
|
|
795
|
+
width: size,
|
|
796
|
+
height: size,
|
|
797
|
+
viewBox: "0 0 16 16",
|
|
798
|
+
fill: "none",
|
|
799
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
800
|
+
strokeWidth,
|
|
801
|
+
className: ["foamicon", "foamicon-content-plus", className].filter(Boolean).join(" "),
|
|
802
|
+
"aria-hidden": "true",
|
|
803
|
+
...props,
|
|
804
|
+
children: [
|
|
805
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "8", height: "10", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
806
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.45189 13.6945L5.55412 14.471C5.02065 14.6139 4.47231 14.2974 4.32937 13.7639L2.25882 6.03648C2.11588 5.50302 2.43246 4.95468 2.96593 4.81174L3.93185 4.55292", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
807
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 5L10 9", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
808
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7H8", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
809
|
+
]
|
|
810
|
+
}
|
|
811
|
+
)
|
|
812
|
+
);
|
|
813
|
+
ContentPlus.displayName = "ContentPlus";
|
|
814
|
+
var Copy = react.forwardRef(
|
|
815
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
816
|
+
"svg",
|
|
817
|
+
{
|
|
818
|
+
ref,
|
|
819
|
+
width: size,
|
|
820
|
+
height: size,
|
|
821
|
+
viewBox: "0 0 16 16",
|
|
822
|
+
fill: "none",
|
|
823
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
824
|
+
strokeWidth,
|
|
825
|
+
className: ["foamicon", "foamicon-copy", className].filter(Boolean).join(" "),
|
|
826
|
+
"aria-hidden": "true",
|
|
827
|
+
...props,
|
|
828
|
+
children: [
|
|
829
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "7", height: "9", rx: "1", stroke: "currentColor" }),
|
|
830
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 4H5C4.44772 4 4 4.44772 4 5V12C4 12.5523 4.44772 13 5 13H10C10.5523 13 11 12.5523 11 12V11.5", stroke: "currentColor" })
|
|
831
|
+
]
|
|
832
|
+
}
|
|
833
|
+
)
|
|
834
|
+
);
|
|
835
|
+
Copy.displayName = "Copy";
|
|
836
|
+
var Download = react.forwardRef(
|
|
837
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
838
|
+
"svg",
|
|
839
|
+
{
|
|
840
|
+
ref,
|
|
841
|
+
width: size,
|
|
842
|
+
height: size,
|
|
843
|
+
viewBox: "0 0 16 16",
|
|
844
|
+
fill: "none",
|
|
845
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
846
|
+
strokeWidth,
|
|
847
|
+
className: ["foamicon", "foamicon-download", className].filter(Boolean).join(" "),
|
|
848
|
+
"aria-hidden": "true",
|
|
849
|
+
...props,
|
|
850
|
+
children: [
|
|
851
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.6667 7.00002L8.35355 10.3131C8.15829 10.5084 7.84171 10.5084 7.64645 10.3131L4.33333 7.00002", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
852
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 10V3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
853
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 11.2727V12.2556C14 12.9972 13.4577 13.6257 12.7208 13.709C11.5676 13.8393 9.78381 14 8 14C6.21619 14 4.43238 13.8393 3.27924 13.709C2.54228 13.6257 2 12.9972 2 12.2556V11.2727", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
854
|
+
]
|
|
855
|
+
}
|
|
856
|
+
)
|
|
857
|
+
);
|
|
858
|
+
Download.displayName = "Download";
|
|
859
|
+
var Eclipse = react.forwardRef(
|
|
860
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
861
|
+
"svg",
|
|
862
|
+
{
|
|
863
|
+
ref,
|
|
864
|
+
width: size,
|
|
865
|
+
height: size,
|
|
866
|
+
viewBox: "0 0 16 16",
|
|
867
|
+
fill: "none",
|
|
868
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
869
|
+
strokeWidth,
|
|
870
|
+
className: ["foamicon", "foamicon-eclipse", className].filter(Boolean).join(" "),
|
|
871
|
+
"aria-hidden": "true",
|
|
872
|
+
...props,
|
|
873
|
+
children: [
|
|
874
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
875
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2V14Z", fill: "currentColor" })
|
|
876
|
+
]
|
|
877
|
+
}
|
|
878
|
+
)
|
|
879
|
+
);
|
|
880
|
+
Eclipse.displayName = "Eclipse";
|
|
881
|
+
var ExternalLink = react.forwardRef(
|
|
882
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
883
|
+
"svg",
|
|
884
|
+
{
|
|
885
|
+
ref,
|
|
886
|
+
width: size,
|
|
887
|
+
height: size,
|
|
888
|
+
viewBox: "0 0 16 16",
|
|
889
|
+
fill: "none",
|
|
890
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
891
|
+
strokeWidth,
|
|
892
|
+
className: ["foamicon", "foamicon-external-link", className].filter(Boolean).join(" "),
|
|
893
|
+
"aria-hidden": "true",
|
|
894
|
+
...props,
|
|
895
|
+
children: [
|
|
896
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 4C5.63076 4 4.26152 4.18148 3.38927 4.32577C2.81611 4.42059 2.37338 4.86121 2.28326 5.43512C2.15443 6.25552 2 7.54283 2 9C2 10.4572 2.15443 11.7445 2.28326 12.5649C2.37338 13.1388 2.81611 13.5794 3.38927 13.6742C4.26152 13.8185 5.63076 14 7 14C8.36924 14 9.73848 13.8185 10.6107 13.6742C11.1839 13.5794 11.6266 13.1388 11.7167 12.5649C11.8456 11.7445 12 10.4572 12 9", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
897
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 2.5L7.72876 8.27124", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
898
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 2H13.25C13.6642 2 14 2.33579 14 2.75V6.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
899
|
+
]
|
|
900
|
+
}
|
|
901
|
+
)
|
|
902
|
+
);
|
|
903
|
+
ExternalLink.displayName = "ExternalLink";
|
|
904
|
+
var EyeOff = react.forwardRef(
|
|
905
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
906
|
+
"svg",
|
|
907
|
+
{
|
|
908
|
+
ref,
|
|
909
|
+
width: size,
|
|
910
|
+
height: size,
|
|
911
|
+
viewBox: "0 0 16 16",
|
|
912
|
+
fill: "none",
|
|
913
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
914
|
+
strokeWidth,
|
|
915
|
+
className: ["foamicon", "foamicon-eye-off", className].filter(Boolean).join(" "),
|
|
916
|
+
"aria-hidden": "true",
|
|
917
|
+
...props,
|
|
918
|
+
children: [
|
|
919
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.0596 3.31191C9.40844 3.11459 8.7168 3 8 3C4.13401 3 1 6.33333 1 8C1 8.7316 1.60388 9.78435 2.60847 10.7353M11.9704 4.17702C13.8006 5.29999 15 6.96893 15 8C15 9.66667 11.866 13 8 13C6.66349 13 5.41446 12.6016 4.35216 12.0114M4.35216 12.0114C4.31469 11.9906 4.27747 11.9696 4.24047 11.9483L4.35216 12.0114Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
920
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.08844 7.41004C6.06944 7.47169 6.05333 7.53461 6.04029 7.59865L6.08844 7.41004ZM6.08844 7.41004C6.29472 6.74093 6.84265 6.22165 7.52854 6.05591M9.50083 6.67805C9.81152 7.0305 10 7.49325 10 8.00002C10 9.10459 9.10457 10 8 10C7.49772 10 7.03868 9.81486 6.68742 9.50908", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
921
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6667 2.5L2.5 13.67", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
922
|
+
]
|
|
923
|
+
}
|
|
924
|
+
)
|
|
925
|
+
);
|
|
926
|
+
EyeOff.displayName = "EyeOff";
|
|
927
|
+
var Eye = react.forwardRef(
|
|
928
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
929
|
+
"svg",
|
|
930
|
+
{
|
|
931
|
+
ref,
|
|
932
|
+
width: size,
|
|
933
|
+
height: size,
|
|
934
|
+
viewBox: "0 0 16 16",
|
|
935
|
+
fill: "none",
|
|
936
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
937
|
+
strokeWidth,
|
|
938
|
+
className: ["foamicon", "foamicon-eye", className].filter(Boolean).join(" "),
|
|
939
|
+
"aria-hidden": "true",
|
|
940
|
+
...props,
|
|
941
|
+
children: [
|
|
942
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 8C15 9.66667 11.866 13 8 13C4.13401 13 1 9.66667 1 8C1 6.33333 4.13401 3 8 3C11.866 3 15 6.33333 15 8Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
943
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
944
|
+
]
|
|
945
|
+
}
|
|
946
|
+
)
|
|
947
|
+
);
|
|
948
|
+
Eye.displayName = "Eye";
|
|
949
|
+
var Flame = react.forwardRef(
|
|
950
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
951
|
+
"svg",
|
|
952
|
+
{
|
|
953
|
+
ref,
|
|
954
|
+
width: size,
|
|
955
|
+
height: size,
|
|
956
|
+
viewBox: "0 0 16 16",
|
|
957
|
+
fill: "none",
|
|
958
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
959
|
+
strokeWidth,
|
|
960
|
+
className: ["foamicon", "foamicon-flame", className].filter(Boolean).join(" "),
|
|
961
|
+
"aria-hidden": "true",
|
|
962
|
+
...props,
|
|
963
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.8431 1.12598L8.04081 0.666725C7.88134 0.598075 7.69767 0.617062 7.55562 0.716883C7.41357 0.816704 7.33347 0.983068 7.34402 1.15636L7.8431 1.12598ZM10.6663 5.41406L11.1663 5.41408V5.41406H10.6663ZM10.6615 5.58691L10.1618 5.5687V5.5687L10.6615 5.58691ZM8.41732 9.4043L8.15763 8.97703C7.9702 9.09094 7.87889 9.31372 7.93246 9.52641C7.98603 9.73911 8.17196 9.89206 8.391 9.9036L8.41732 9.4043ZM8.66634 9.41406L8.66631 9.91406H8.66634V9.41406ZM12.3197 7.64844L12.7824 7.45912C12.7152 7.29486 12.566 7.17853 12.3903 7.15345C12.2146 7.12838 12.0388 7.19831 11.9283 7.33721L12.3197 7.64844ZM12.6663 9.41406L13.1663 9.4141V9.41405L12.6663 9.41406ZM8.00033 14.0801V14.5801H8.00036L8.00033 14.0801ZM3.33333 9.41406L2.83333 9.41405V9.4141L3.33333 9.41406ZM3.40853 8.57617L3.90049 8.66548L3.90052 8.66532L3.40853 8.57617ZM3.42415 8.50098L2.93374 8.40354L2.93371 8.40371L3.42415 8.50098ZM3.45247 8.36328L3.93971 8.47554L3.93975 8.47536L3.45247 8.36328ZM3.47298 8.28223L2.98785 8.16119L2.98781 8.16138L3.47298 8.28223ZM3.64681 7.73242L4.11313 7.91283L4.11321 7.91262L3.64681 7.73242ZM3.78548 7.41211L3.33404 7.19716L3.33395 7.19735L3.78548 7.41211ZM4.15951 6.76367L4.57075 7.04806L4.57083 7.04794L4.15951 6.76367ZM4.20736 6.69434L3.80129 6.4026L3.80122 6.4027L4.20736 6.69434ZM4.28646 6.58887L4.68416 6.8919L4.68423 6.89182L4.28646 6.58887ZM4.32845 6.5332L3.93529 6.22429L3.93523 6.22437L4.32845 6.5332ZM4.34603 6.51172L4.73736 6.82294L4.73741 6.82287L4.34603 6.51172ZM5.52376 5.45898L5.78957 5.88248C6.01588 5.74044 6.09052 5.44557 5.95905 5.21296C5.82758 4.98036 5.53647 4.89221 5.29805 5.01283L5.52376 5.45898ZM5.45931 5.48926L5.21537 5.0528C4.9863 5.18083 4.89519 5.46417 5.0067 5.70173C5.11821 5.93928 5.3944 6.0502 5.63924 5.95576L5.45931 5.48926ZM7.85384 1.41406L8.35384 1.41408V1.41406H7.85384ZM7.8431 1.12598L7.64539 1.58523C9.12903 2.22393 10.1663 3.69838 10.1663 5.41406H10.6663H11.1663C11.1663 3.2847 9.87807 1.45766 8.04081 0.666725L7.8431 1.12598ZM10.6663 5.41406L10.1663 5.41405C10.1663 5.45998 10.1642 5.50322 10.1618 5.5687L10.6615 5.58691L11.1611 5.60513C11.1629 5.55585 11.1663 5.48392 11.1663 5.41408L10.6663 5.41406ZM10.6615 5.58691L10.1618 5.5687C10.1091 7.01332 9.32049 8.27025 8.15763 8.97703L8.41732 9.4043L8.67701 9.83157C10.1155 8.95726 11.0957 7.39928 11.1611 5.60513L10.6615 5.58691ZM8.41732 9.4043L8.391 9.9036C8.46468 9.90749 8.56579 9.91406 8.66631 9.91406L8.66634 9.41406L8.66638 8.91406C8.59969 8.91406 8.53499 8.90981 8.44364 8.90499L8.41732 9.4043ZM8.66634 9.41406V9.91406C10.3059 9.91406 11.7656 9.1484 12.711 7.95966L12.3197 7.64844L11.9283 7.33721C11.1639 8.29844 9.98727 8.91406 8.66634 8.91406V9.41406ZM12.3197 7.64844L11.8569 7.83775C12.0558 8.3239 12.1663 8.85581 12.1663 9.41408L12.6663 9.41406L13.1663 9.41405C13.1663 8.7226 13.0292 8.0623 12.7824 7.45912L12.3197 7.64844ZM12.6663 9.41406L12.1663 9.41403C12.1662 11.715 10.3012 13.5799 8.00029 13.5801L8.00033 14.0801L8.00036 14.5801C10.8535 14.5799 13.1661 12.2673 13.1663 9.4141L12.6663 9.41406ZM8.00033 14.0801V13.5801C5.69914 13.5801 3.83349 11.715 3.83333 9.41403L3.33333 9.41406L2.83333 9.4141C2.83353 12.2675 5.14706 14.5801 8.00033 14.5801V14.0801ZM3.33333 9.41406L3.83333 9.41408C3.83334 9.1582 3.85645 8.90806 3.90049 8.66548L3.40853 8.57617L2.91657 8.48687C2.86191 8.78794 2.83334 9.09784 2.83333 9.41405L3.33333 9.41406ZM3.40853 8.57617L3.90052 8.66532C3.90638 8.63296 3.90146 8.66449 3.9146 8.59824L3.42415 8.50098L2.93371 8.40371C2.93233 8.41064 2.93089 8.41712 2.92755 8.43255C2.92472 8.44561 2.92047 8.46533 2.91654 8.48703L3.40853 8.57617ZM3.42415 8.50098L3.91457 8.59841C3.92506 8.54558 3.93145 8.5114 3.93971 8.47554L3.45247 8.36328L2.96524 8.25102C2.9525 8.30631 2.94155 8.36423 2.93374 8.40354L3.42415 8.50098ZM3.45247 8.36328L3.93975 8.47536C3.9455 8.45037 3.94583 8.45258 3.95816 8.40307L3.47298 8.28223L2.98781 8.16138C2.98668 8.16589 2.97196 8.22181 2.9652 8.25121L3.45247 8.36328ZM3.47298 8.28223L3.95811 8.40326C4.00011 8.23493 4.05183 8.07127 4.11313 7.91283L3.64681 7.73242L3.18049 7.55202C3.10387 7.75006 3.03969 7.95343 2.98785 8.16119L3.47298 8.28223ZM3.64681 7.73242L4.11321 7.91262C4.14999 7.81742 4.19153 7.72249 4.23701 7.62687L3.78548 7.41211L3.33395 7.19735C3.27974 7.31133 3.2278 7.42956 3.18041 7.55222L3.64681 7.73242ZM3.78548 7.41211L4.23692 7.62706C4.33393 7.42331 4.4452 7.22961 4.57075 7.04806L4.15951 6.76367L3.74826 6.47928C3.59067 6.70717 3.45287 6.9476 3.33404 7.19716L3.78548 7.41211ZM4.15951 6.76367L4.57083 7.04794C4.59501 7.01297 4.59998 7.0048 4.6135 6.98597L4.20736 6.69434L3.80122 6.4027C3.78199 6.42948 3.75594 6.46816 3.74818 6.4794L4.15951 6.76367ZM4.20736 6.69434L4.61342 6.98607C4.63387 6.95761 4.65513 6.93001 4.68416 6.8919L4.28646 6.58887L3.88875 6.28583C3.86454 6.31761 3.83214 6.35966 3.80129 6.4026L4.20736 6.69434ZM4.28646 6.58887L4.68423 6.89182C4.71293 6.85413 4.70727 6.86037 4.72167 6.84204L4.32845 6.5332L3.93523 6.22437C3.9239 6.23879 3.91376 6.25235 3.90639 6.26224C3.89795 6.27358 3.89361 6.27945 3.88869 6.28592L4.28646 6.58887ZM4.32845 6.5332L4.72161 6.84211C4.72095 6.84296 4.72043 6.84361 4.72009 6.84402C4.71992 6.84423 4.71979 6.84439 4.71971 6.8445C4.71962 6.84461 4.71957 6.84466 4.71957 6.84467C4.71957 6.84467 4.71961 6.84462 4.71969 6.84452C4.71977 6.84443 4.71989 6.84428 4.72006 6.84408C4.72041 6.84365 4.72085 6.84312 4.72155 6.84229C4.72265 6.84095 4.72509 6.83804 4.72752 6.83509C4.7301 6.83196 4.73352 6.82777 4.73736 6.82294L4.34603 6.51172L3.95469 6.2005C3.95567 6.19927 3.95618 6.19866 3.95581 6.19911C3.9553 6.19973 3.95476 6.20038 3.9529 6.20261C3.95025 6.2058 3.94305 6.21442 3.93529 6.22429L4.32845 6.5332ZM4.34603 6.51172L4.73741 6.82287C5.03132 6.45319 5.38744 6.13488 5.78957 5.88248L5.52376 5.45898L5.25796 5.03549C4.76049 5.34773 4.31932 5.74186 3.95464 6.20056L4.34603 6.51172ZM5.52376 5.45898L5.29805 5.01283C5.29492 5.01441 5.29187 5.01596 5.28941 5.01722C5.28678 5.01855 5.28473 5.0196 5.28273 5.02061C5.27877 5.02261 5.27646 5.02376 5.27489 5.02452C5.27175 5.02604 5.27398 5.02484 5.27938 5.02275L5.45931 5.48926L5.63924 5.95576C5.69197 5.93542 5.74033 5.90976 5.74947 5.90514L5.52376 5.45898ZM5.45931 5.48926L5.70325 5.92571C7.28257 5.04301 8.35378 3.35473 8.35384 1.41408L7.85384 1.41406L7.35384 1.41405C7.35379 2.97722 6.49202 4.33927 5.21537 5.0528L5.45931 5.48926ZM7.85384 1.41406H8.35384C8.35384 1.30146 8.3481 1.19286 8.34218 1.09559L7.8431 1.12598L7.34402 1.15636C7.3497 1.2496 7.35384 1.33323 7.35384 1.41406H7.85384Z", fill: "currentColor" })
|
|
964
|
+
}
|
|
965
|
+
)
|
|
966
|
+
);
|
|
967
|
+
Flame.displayName = "Flame";
|
|
968
|
+
var Frown = react.forwardRef(
|
|
969
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
970
|
+
"svg",
|
|
971
|
+
{
|
|
972
|
+
ref,
|
|
973
|
+
width: size,
|
|
974
|
+
height: size,
|
|
975
|
+
viewBox: "0 0 16 16",
|
|
976
|
+
fill: "none",
|
|
977
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
978
|
+
strokeWidth,
|
|
979
|
+
className: ["foamicon", "foamicon-frown", className].filter(Boolean).join(" "),
|
|
980
|
+
"aria-hidden": "true",
|
|
981
|
+
...props,
|
|
982
|
+
children: [
|
|
983
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
984
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 10.2639C9.46924 9.78885 8.76835 9.5 8 9.5C7.23165 9.5 6.53076 9.78885 6 10.2639", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
985
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6.25", cy: "6.75", r: "0.75", fill: "currentColor" }),
|
|
986
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9.75", cy: "6.75", r: "0.75", fill: "currentColor" })
|
|
987
|
+
]
|
|
988
|
+
}
|
|
989
|
+
)
|
|
990
|
+
);
|
|
991
|
+
Frown.displayName = "Frown";
|
|
992
|
+
var Fullscreen = react.forwardRef(
|
|
993
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
994
|
+
"svg",
|
|
995
|
+
{
|
|
996
|
+
ref,
|
|
997
|
+
width: size,
|
|
998
|
+
height: size,
|
|
999
|
+
viewBox: "0 0 16 16",
|
|
1000
|
+
fill: "none",
|
|
1001
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1002
|
+
strokeWidth,
|
|
1003
|
+
className: ["foamicon", "foamicon-fullscreen", className].filter(Boolean).join(" "),
|
|
1004
|
+
"aria-hidden": "true",
|
|
1005
|
+
...props,
|
|
1006
|
+
children: [
|
|
1007
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.66915C2.5 3.70258 3.1911 2.87634 4.15044 2.75834C5.18882 2.63062 6.59441 2.5 8 2.5C9.40559 2.5 10.8112 2.63062 11.8496 2.75834C12.8089 2.87634 13.5 3.70258 13.5 4.66915V11.3308C13.5 12.2974 12.8089 13.1237 11.8496 13.2417C10.8112 13.3694 9.40559 13.5 8 13.5C6.59441 13.5 5.18882 13.3694 4.15044 13.2417C3.1911 13.1237 2.5 12.2974 2.5 11.3308V4.66915Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1008
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5004 9.4187C4.5004 9.4187 4.50063 10.4626 4.50055 11.0076C4.50052 11.1939 4.60917 11.354 4.79319 11.3831C5.33766 11.4692 6.36946 11.5106 6.36946 11.5106", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1009
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.4996 9.4187C11.4996 9.4187 11.4994 10.4626 11.4995 11.0076C11.4995 11.1939 11.3908 11.354 11.2068 11.3831C10.6623 11.4692 9.63054 11.5106 9.63054 11.5106", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1010
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5004 6.5813C4.5004 6.5813 4.50063 5.53741 4.50055 4.99241C4.50052 4.80611 4.60917 4.64598 4.79319 4.61689C5.33766 4.53082 6.36946 4.48943 6.36946 4.48943", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1011
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.4996 6.5813C11.4996 6.5813 11.4994 5.53741 11.4995 4.99241C11.4995 4.80611 11.3908 4.64598 11.2068 4.61689C10.6623 4.53082 9.63054 4.48943 9.63054 4.48943", stroke: "currentColor", strokeLinecap: "round" })
|
|
1012
|
+
]
|
|
1013
|
+
}
|
|
1014
|
+
)
|
|
1015
|
+
);
|
|
1016
|
+
Fullscreen.displayName = "Fullscreen";
|
|
1017
|
+
var Globe = react.forwardRef(
|
|
1018
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1019
|
+
"svg",
|
|
1020
|
+
{
|
|
1021
|
+
ref,
|
|
1022
|
+
width: size,
|
|
1023
|
+
height: size,
|
|
1024
|
+
viewBox: "0 0 16 16",
|
|
1025
|
+
fill: "none",
|
|
1026
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1027
|
+
strokeWidth,
|
|
1028
|
+
className: ["foamicon", "foamicon-globe", className].filter(Boolean).join(" "),
|
|
1029
|
+
"aria-hidden": "true",
|
|
1030
|
+
...props,
|
|
1031
|
+
children: [
|
|
1032
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1033
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "8", cy: "8", rx: "2.5", ry: "5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1034
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1035
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1036
|
+
]
|
|
1037
|
+
}
|
|
1038
|
+
)
|
|
1039
|
+
);
|
|
1040
|
+
Globe.displayName = "Globe";
|
|
1041
|
+
var Grid1x2 = react.forwardRef(
|
|
1042
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1043
|
+
"svg",
|
|
1044
|
+
{
|
|
1045
|
+
ref,
|
|
1046
|
+
width: size,
|
|
1047
|
+
height: size,
|
|
1048
|
+
viewBox: "0 0 16 16",
|
|
1049
|
+
fill: "none",
|
|
1050
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1051
|
+
strokeWidth,
|
|
1052
|
+
className: ["foamicon", "foamicon-grid1x2", className].filter(Boolean).join(" "),
|
|
1053
|
+
"aria-hidden": "true",
|
|
1054
|
+
...props,
|
|
1055
|
+
children: [
|
|
1056
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "5", height: "12", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1057
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1058
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "9", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1059
|
+
]
|
|
1060
|
+
}
|
|
1061
|
+
)
|
|
1062
|
+
);
|
|
1063
|
+
Grid1x2.displayName = "Grid1x2";
|
|
1064
|
+
var Grid2x2 = react.forwardRef(
|
|
1065
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1066
|
+
"svg",
|
|
1067
|
+
{
|
|
1068
|
+
ref,
|
|
1069
|
+
width: size,
|
|
1070
|
+
height: size,
|
|
1071
|
+
viewBox: "0 0 16 16",
|
|
1072
|
+
fill: "none",
|
|
1073
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1074
|
+
strokeWidth,
|
|
1075
|
+
className: ["foamicon", "foamicon-grid2x2", className].filter(Boolean).join(" "),
|
|
1076
|
+
"aria-hidden": "true",
|
|
1077
|
+
...props,
|
|
1078
|
+
children: [
|
|
1079
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1080
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "9", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1081
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1082
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "9", width: "5", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1083
|
+
]
|
|
1084
|
+
}
|
|
1085
|
+
)
|
|
1086
|
+
);
|
|
1087
|
+
Grid2x2.displayName = "Grid2x2";
|
|
1088
|
+
var History = react.forwardRef(
|
|
1089
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1090
|
+
"svg",
|
|
1091
|
+
{
|
|
1092
|
+
ref,
|
|
1093
|
+
width: size,
|
|
1094
|
+
height: size,
|
|
1095
|
+
viewBox: "0 0 16 16",
|
|
1096
|
+
fill: "none",
|
|
1097
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1098
|
+
strokeWidth,
|
|
1099
|
+
className: ["foamicon", "foamicon-history", className].filter(Boolean).join(" "),
|
|
1100
|
+
"aria-hidden": "true",
|
|
1101
|
+
...props,
|
|
1102
|
+
children: [
|
|
1103
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 5.25V8.25H9.75", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1104
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.00003 5.3103L3.65515 5.31028C3.37901 5.31027 3.15515 5.08642 3.15515 4.81028L3.15515 2.49997", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1105
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5C6.13984 2.5 4.49537 3.42345 3.5 4.83692", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1106
|
+
]
|
|
1107
|
+
}
|
|
1108
|
+
)
|
|
1109
|
+
);
|
|
1110
|
+
History.displayName = "History";
|
|
1111
|
+
var Hotspot = react.forwardRef(
|
|
1112
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1113
|
+
"svg",
|
|
1114
|
+
{
|
|
1115
|
+
ref,
|
|
1116
|
+
width: size,
|
|
1117
|
+
height: size,
|
|
1118
|
+
viewBox: "0 0 16 16",
|
|
1119
|
+
fill: "none",
|
|
1120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1121
|
+
strokeWidth,
|
|
1122
|
+
className: ["foamicon", "foamicon-hotspot", className].filter(Boolean).join(" "),
|
|
1123
|
+
"aria-hidden": "true",
|
|
1124
|
+
...props,
|
|
1125
|
+
children: [
|
|
1126
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "1.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1127
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.35418 11C4.52375 10.2671 4 9.19469 4 8C4 5.79086 5.79086 4 8 4C10.2091 4 12 5.79086 12 8C12 9.11849 11.5409 10.1298 10.8009 10.8557", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1128
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 12.6904C13.7327 11.5075 14.5 9.84336 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 9.84336 2.26733 11.5075 3.5 12.6904", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1129
|
+
]
|
|
1130
|
+
}
|
|
1131
|
+
)
|
|
1132
|
+
);
|
|
1133
|
+
Hotspot.displayName = "Hotspot";
|
|
1134
|
+
var House = react.forwardRef(
|
|
1135
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1136
|
+
"svg",
|
|
1137
|
+
{
|
|
1138
|
+
ref,
|
|
1139
|
+
width: size,
|
|
1140
|
+
height: size,
|
|
1141
|
+
viewBox: "0 0 16 16",
|
|
1142
|
+
fill: "none",
|
|
1143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1144
|
+
strokeWidth,
|
|
1145
|
+
className: ["foamicon", "foamicon-house", className].filter(Boolean).join(" "),
|
|
1146
|
+
"aria-hidden": "true",
|
|
1147
|
+
...props,
|
|
1148
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 7.35696C2.5 7.12612 2.57775 6.90489 2.72543 6.72747C3.64888 5.61799 7.13471 1.5 8 1.5C8.86529 1.5 12.3511 5.61799 13.2746 6.72747C13.4222 6.90489 13.5 7.12612 13.5 7.35696V12.1654C13.5 12.6487 13.1546 13.0615 12.6764 13.1309C12.2583 13.1916 11.7046 13.2645 11.0708 13.3295C10.4932 13.3887 10 12.9292 10 12.3486V9.49612C10 8.93235 9.53477 8.47607 8.97102 8.48151C8.34823 8.48752 7.58993 8.4922 6.99531 8.49535C6.44452 8.49827 6 8.94539 6 9.49618L6 12.3486C5.99999 12.9292 5.50675 13.3887 4.92916 13.3295C4.2954 13.2645 3.7417 13.1916 3.32363 13.1309C2.84536 13.0615 2.5 12.6487 2.5 12.1654V7.35696Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1149
|
+
}
|
|
1150
|
+
)
|
|
1151
|
+
);
|
|
1152
|
+
House.displayName = "House";
|
|
1153
|
+
var Image = react.forwardRef(
|
|
1154
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1155
|
+
"svg",
|
|
1156
|
+
{
|
|
1157
|
+
ref,
|
|
1158
|
+
width: size,
|
|
1159
|
+
height: size,
|
|
1160
|
+
viewBox: "0 0 16 16",
|
|
1161
|
+
fill: "none",
|
|
1162
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1163
|
+
strokeWidth,
|
|
1164
|
+
className: ["foamicon", "foamicon-image", className].filter(Boolean).join(" "),
|
|
1165
|
+
"aria-hidden": "true",
|
|
1166
|
+
...props,
|
|
1167
|
+
children: [
|
|
1168
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4.74439C2 4.00274 2.54228 3.37428 3.27924 3.29101C4.43238 3.16071 6.21619 3 8 3C9.78381 3 11.5676 3.16071 12.7208 3.29101C13.4577 3.37428 14 4.00274 14 4.74439V11.2556C14 11.9973 13.4577 12.6257 12.7208 12.709C11.5676 12.8393 9.78381 13 8 13C6.21619 13 4.43238 12.8393 3.27924 12.709C2.54228 12.6257 2 11.9973 2 11.2556V4.74439Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1169
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 9L3.45139 7.54861C4.28299 6.71701 5.64915 6.77898 6.40205 7.68245L6.62717 7.9526C7.14763 8.57716 8.01105 8.79558 8.7659 8.49364C9.5053 8.19788 10.3509 8.40098 10.8753 9.0003L13.5 12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1170
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "10.75", cy: "5.75", r: "0.75", fill: "currentColor" })
|
|
1171
|
+
]
|
|
1172
|
+
}
|
|
1173
|
+
)
|
|
1174
|
+
);
|
|
1175
|
+
Image.displayName = "Image";
|
|
1176
|
+
var Images = react.forwardRef(
|
|
1177
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1178
|
+
"svg",
|
|
1179
|
+
{
|
|
1180
|
+
ref,
|
|
1181
|
+
width: size,
|
|
1182
|
+
height: size,
|
|
1183
|
+
viewBox: "0 0 16 16",
|
|
1184
|
+
fill: "none",
|
|
1185
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1186
|
+
strokeWidth,
|
|
1187
|
+
className: ["foamicon", "foamicon-images", className].filter(Boolean).join(" "),
|
|
1188
|
+
"aria-hidden": "true",
|
|
1189
|
+
...props,
|
|
1190
|
+
children: [
|
|
1191
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.2 4.69894C3.2 3.95729 3.74155 3.32886 4.47875 3.24769C5.51778 3.13328 7.05889 3 8.6 3C10.1411 3 11.6822 3.13328 12.7212 3.24769C13.4584 3.32886 14 3.95729 14 4.69894V10.3011C14 11.0427 13.4584 11.6711 12.7213 11.7523C11.6822 11.8667 10.1411 12 8.6 12C7.05889 12 5.51778 11.8667 4.47875 11.7523C3.74155 11.6711 3.2 11.0427 3.2 10.3011V4.69894Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1192
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.2 8.39995L4.40598 7.19397C5.20827 6.39168 6.52626 6.45147 7.25262 7.32309L7.36445 7.45729C7.83287 8.01939 8.60995 8.21597 9.28931 7.94423C9.95477 7.67804 10.7158 7.86083 11.1877 8.40022L13.55 11.1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1193
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11.125", cy: "5.69995", r: "0.75", fill: "currentColor" }),
|
|
1194
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.19104 5.5144C1.19104 5.5144 1.19101 5.87688 1.19104 6.10915C1.19124 7.42246 1.17849 8.53554 1.23113 9.47261C1.19923 11.9535 2.27253 13.3008 4.55519 13.7588C5.14063 13.8762 5.7439 13.8414 6.50112 13.8626C9.08753 13.8626 9.27153 13.8675 11.1581 13.7588C11.382 13.7459 11.8633 13.707 11.8633 13.707", stroke: "currentColor", strokeLinecap: "round" })
|
|
1195
|
+
]
|
|
1196
|
+
}
|
|
1197
|
+
)
|
|
1198
|
+
);
|
|
1199
|
+
Images.displayName = "Images";
|
|
1200
|
+
var Inbox = react.forwardRef(
|
|
1201
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1202
|
+
"svg",
|
|
1203
|
+
{
|
|
1204
|
+
ref,
|
|
1205
|
+
width: size,
|
|
1206
|
+
height: size,
|
|
1207
|
+
viewBox: "0 0 16 16",
|
|
1208
|
+
fill: "none",
|
|
1209
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1210
|
+
strokeWidth,
|
|
1211
|
+
className: ["foamicon", "foamicon-inbox", className].filter(Boolean).join(" "),
|
|
1212
|
+
"aria-hidden": "true",
|
|
1213
|
+
...props,
|
|
1214
|
+
children: [
|
|
1215
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.83352 3.16596C3.93984 2.7697 4.20859 2.44065 4.60557 2.33703C5.19555 2.18302 6.26224 2 8 2C9.73776 2 10.8044 2.18302 11.3944 2.33703C11.7914 2.44065 12.0602 2.7697 12.1665 3.16596L13.9488 9.80903C13.9828 9.9358 14 10.0665 14 10.1977V12.2027C14 12.9276 13.4821 13.5468 12.7638 13.6449C11.6123 13.8023 9.80617 14 8 14C6.19383 14 4.38766 13.8023 3.23618 13.6449C2.51792 13.5468 2 12.9276 2 12.2027V10.1977C2 10.0665 2.01723 9.9358 2.05124 9.80903L3.83352 3.16596Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1216
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.13574 10H5.15879C5.7476 10 6.29712 10.2955 6.62181 10.7867C7.31516 11.8356 8.85452 11.8356 9.54786 10.7867C9.87255 10.2955 10.4221 10 11.0109 10H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1217
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 8H11.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1218
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 6H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1219
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 4H10.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1220
|
+
]
|
|
1221
|
+
}
|
|
1222
|
+
)
|
|
1223
|
+
);
|
|
1224
|
+
Inbox.displayName = "Inbox";
|
|
1225
|
+
var Info = react.forwardRef(
|
|
1226
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1227
|
+
"svg",
|
|
1228
|
+
{
|
|
1229
|
+
ref,
|
|
1230
|
+
width: size,
|
|
1231
|
+
height: size,
|
|
1232
|
+
viewBox: "0 0 16 16",
|
|
1233
|
+
fill: "none",
|
|
1234
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1235
|
+
strokeWidth,
|
|
1236
|
+
className: ["foamicon", "foamicon-info", className].filter(Boolean).join(" "),
|
|
1237
|
+
"aria-hidden": "true",
|
|
1238
|
+
...props,
|
|
1239
|
+
children: [
|
|
1240
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1241
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 7.79751V11.4873", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1242
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "5.375", r: "0.625", fill: "currentColor" })
|
|
1243
|
+
]
|
|
1244
|
+
}
|
|
1245
|
+
)
|
|
1246
|
+
);
|
|
1247
|
+
Info.displayName = "Info";
|
|
1248
|
+
var Italic = react.forwardRef(
|
|
1249
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1250
|
+
"svg",
|
|
1251
|
+
{
|
|
1252
|
+
ref,
|
|
1253
|
+
width: size,
|
|
1254
|
+
height: size,
|
|
1255
|
+
viewBox: "0 0 16 16",
|
|
1256
|
+
fill: "none",
|
|
1257
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1258
|
+
strokeWidth,
|
|
1259
|
+
className: ["foamicon", "foamicon-italic", className].filter(Boolean).join(" "),
|
|
1260
|
+
"aria-hidden": "true",
|
|
1261
|
+
...props,
|
|
1262
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.5 3C7.5 2.72386 7.72386 2.5 8 2.5H14C14.2761 2.5 14.5 2.72386 14.5 3C14.5 3.27614 14.2761 3.5 14 3.5H11.455L6.66387 12.5H9C9.27614 12.5 9.5 12.7239 9.5 13C9.5 13.2761 9.27614 13.5 9 13.5H3C2.72386 13.5 2.5 13.2761 2.5 13C2.5 12.7239 2.72386 12.5 3 12.5H5.531L10.3222 3.5H8C7.72386 3.5 7.5 3.27614 7.5 3Z", fill: "currentColor" })
|
|
1263
|
+
}
|
|
1264
|
+
)
|
|
1265
|
+
);
|
|
1266
|
+
Italic.displayName = "Italic";
|
|
1267
|
+
var Link = react.forwardRef(
|
|
1268
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1269
|
+
"svg",
|
|
1270
|
+
{
|
|
1271
|
+
ref,
|
|
1272
|
+
width: size,
|
|
1273
|
+
height: size,
|
|
1274
|
+
viewBox: "0 0 16 16",
|
|
1275
|
+
fill: "none",
|
|
1276
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1277
|
+
strokeWidth,
|
|
1278
|
+
className: ["foamicon", "foamicon-link", className].filter(Boolean).join(" "),
|
|
1279
|
+
"aria-hidden": "true",
|
|
1280
|
+
...props,
|
|
1281
|
+
children: [
|
|
1282
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.88 8.13L12.7553 7.25171C13.8576 6.14562 13.856 4.35585 12.7518 3.25165C11.6463 2.14611 9.85384 2.14612 8.74831 3.25168L7.88001 4.12M8.12 11.88L7.24996 12.7501C6.14538 13.8547 4.35448 13.8547 3.24989 12.7501C2.1453 11.6455 2.14531 9.85464 3.24991 8.75007L4.12 7.87999", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1283
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.84372 6.15613L5.84372 10.1561", stroke: "currentColor", strokeLinecap: "round" })
|
|
1284
|
+
]
|
|
1285
|
+
}
|
|
1286
|
+
)
|
|
1287
|
+
);
|
|
1288
|
+
Link.displayName = "Link";
|
|
1289
|
+
var ListFilter = react.forwardRef(
|
|
1290
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1291
|
+
"svg",
|
|
1292
|
+
{
|
|
1293
|
+
ref,
|
|
1294
|
+
width: size,
|
|
1295
|
+
height: size,
|
|
1296
|
+
viewBox: "0 0 16 16",
|
|
1297
|
+
fill: "none",
|
|
1298
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1299
|
+
strokeWidth,
|
|
1300
|
+
className: ["foamicon", "foamicon-list-filter", className].filter(Boolean).join(" "),
|
|
1301
|
+
"aria-hidden": "true",
|
|
1302
|
+
...props,
|
|
1303
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.33333 4.66663H12.6667M5.33333 7.99996H10.6667M6.66667 11.3333H9.33333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1304
|
+
}
|
|
1305
|
+
)
|
|
1306
|
+
);
|
|
1307
|
+
ListFilter.displayName = "ListFilter";
|
|
1308
|
+
var ListIndentDecrease = react.forwardRef(
|
|
1309
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1310
|
+
"svg",
|
|
1311
|
+
{
|
|
1312
|
+
ref,
|
|
1313
|
+
width: size,
|
|
1314
|
+
height: size,
|
|
1315
|
+
viewBox: "0 0 16 16",
|
|
1316
|
+
fill: "none",
|
|
1317
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1318
|
+
strokeWidth,
|
|
1319
|
+
className: ["foamicon", "foamicon-list-indent-decrease", className].filter(Boolean).join(" "),
|
|
1320
|
+
"aria-hidden": "true",
|
|
1321
|
+
...props,
|
|
1322
|
+
children: [
|
|
1323
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1324
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1325
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1326
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 9.83325L2.16667 7.99992L4 6.16659", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1327
|
+
]
|
|
1328
|
+
}
|
|
1329
|
+
)
|
|
1330
|
+
);
|
|
1331
|
+
ListIndentDecrease.displayName = "ListIndentDecrease";
|
|
1332
|
+
var ListIndentIncrease = react.forwardRef(
|
|
1333
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1334
|
+
"svg",
|
|
1335
|
+
{
|
|
1336
|
+
ref,
|
|
1337
|
+
width: size,
|
|
1338
|
+
height: size,
|
|
1339
|
+
viewBox: "0 0 16 16",
|
|
1340
|
+
fill: "none",
|
|
1341
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1342
|
+
strokeWidth,
|
|
1343
|
+
className: ["foamicon", "foamicon-list-indent-increase", className].filter(Boolean).join(" "),
|
|
1344
|
+
"aria-hidden": "true",
|
|
1345
|
+
...props,
|
|
1346
|
+
children: [
|
|
1347
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1348
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1349
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1350
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.16667 6.16663L4 7.99996L2.16667 9.83329", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1351
|
+
]
|
|
1352
|
+
}
|
|
1353
|
+
)
|
|
1354
|
+
);
|
|
1355
|
+
ListIndentIncrease.displayName = "ListIndentIncrease";
|
|
1356
|
+
var ListOrdered = react.forwardRef(
|
|
1357
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1358
|
+
"svg",
|
|
1359
|
+
{
|
|
1360
|
+
ref,
|
|
1361
|
+
width: size,
|
|
1362
|
+
height: size,
|
|
1363
|
+
viewBox: "0 0 16 16",
|
|
1364
|
+
fill: "none",
|
|
1365
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1366
|
+
strokeWidth,
|
|
1367
|
+
className: ["foamicon", "foamicon-list-ordered", className].filter(Boolean).join(" "),
|
|
1368
|
+
"aria-hidden": "true",
|
|
1369
|
+
...props,
|
|
1370
|
+
children: [
|
|
1371
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 4H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1372
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 8H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1373
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 12H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1374
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.85938 11.7775C3.03906 11.7775 3.19336 11.7336 3.32227 11.6456C3.45312 11.5577 3.51855 11.4315 3.51855 11.2671C3.51855 11.1417 3.4668 11.0342 3.36328 10.9447C3.25977 10.8535 3.12012 10.8079 2.94434 10.8079C2.8252 10.8079 2.72656 10.8218 2.64844 10.8494C2.57227 10.8771 2.51172 10.9138 2.4668 10.9593C2.42188 11.0049 2.37891 11.0635 2.33789 11.1352C2.29883 11.2068 2.2627 11.2744 2.22949 11.3379C2.20996 11.3721 2.1748 11.399 2.12402 11.4185C2.07324 11.438 2.01465 11.4478 1.94824 11.4478C1.87012 11.4478 1.79785 11.4218 1.73145 11.3697C1.66699 11.3159 1.63477 11.2451 1.63477 11.1572C1.63477 11.0725 1.66504 10.9838 1.72559 10.891C1.78809 10.7965 1.87793 10.707 1.99512 10.6223C2.11426 10.5376 2.26172 10.4701 2.4375 10.4196C2.61328 10.3675 2.80957 10.3414 3.02637 10.3414C3.21582 10.3414 3.38867 10.3634 3.54492 10.4074C3.70117 10.4497 3.83691 10.5116 3.95215 10.593C4.06738 10.6744 4.1543 10.7688 4.21289 10.8763C4.27148 10.9838 4.30078 11.0994 4.30078 11.2231C4.30078 11.3859 4.25781 11.526 4.17188 11.6432C4.08789 11.7588 3.9668 11.872 3.80859 11.9827C3.96094 12.0511 4.08887 12.1292 4.19238 12.2171C4.29785 12.3051 4.37695 12.4028 4.42969 12.5102C4.48242 12.6161 4.50879 12.7308 4.50879 12.8546C4.50879 13.0028 4.47266 13.146 4.40039 13.2844C4.33008 13.4228 4.22559 13.5466 4.08691 13.6557C3.94824 13.7631 3.7832 13.8478 3.5918 13.9097C3.40234 13.9699 3.19238 14 2.96191 14C2.72754 14 2.51758 13.965 2.33203 13.895C2.14648 13.825 1.99316 13.7379 1.87207 13.6337C1.75293 13.5279 1.66211 13.4188 1.59961 13.3064C1.53906 13.1941 1.50879 13.1013 1.50879 13.028C1.50879 12.9336 1.54492 12.8578 1.61719 12.8009C1.69141 12.7422 1.7832 12.7129 1.89258 12.7129C1.94727 12.7129 2 12.7268 2.05078 12.7545C2.10156 12.7805 2.13477 12.8123 2.15039 12.8497C2.25195 13.076 2.36035 13.2446 2.47559 13.3553C2.59277 13.4644 2.75684 13.5189 2.96777 13.5189C3.08887 13.5189 3.20508 13.4945 3.31641 13.4456C3.42969 13.3952 3.52246 13.3211 3.59473 13.2234C3.66895 13.1257 3.70605 13.0125 3.70605 12.8839C3.70605 12.6934 3.64355 12.5444 3.51855 12.437C3.39355 12.3279 3.21973 12.2733 2.99707 12.2733C2.95801 12.2733 2.89746 12.2766 2.81543 12.2831C2.7334 12.2896 2.68066 12.2929 2.65723 12.2929C2.5498 12.2929 2.4668 12.2709 2.4082 12.2269C2.34961 12.1813 2.32031 12.1186 2.32031 12.0389C2.32031 11.9607 2.35547 11.898 2.42578 11.8508C2.49609 11.8019 2.60059 11.7775 2.73926 11.7775H2.85938Z", fill: "currentColor" }),
|
|
1375
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.55469 9.19426H4.08398C4.23633 9.19426 4.35254 9.22032 4.43262 9.27242C4.5127 9.32452 4.55273 9.39535 4.55273 9.4849C4.55273 9.56469 4.52051 9.63226 4.45605 9.68762C4.39355 9.74298 4.29785 9.77066 4.16895 9.77066H2.0127C1.86621 9.77066 1.75195 9.73728 1.66992 9.67052C1.58789 9.60213 1.54688 9.52235 1.54688 9.43117C1.54688 9.37256 1.57324 9.29521 1.62598 9.19915C1.67871 9.10146 1.73633 9.02493 1.79883 8.96957C2.05859 8.74488 2.29297 8.55274 2.50195 8.39318C2.71094 8.23199 2.86035 8.12615 2.9502 8.07568C3.11035 7.98124 3.24316 7.8868 3.34863 7.79236C3.45605 7.6963 3.53711 7.59861 3.5918 7.49928C3.64844 7.39834 3.67676 7.29983 3.67676 7.20376C3.67676 7.09956 3.64648 7.00675 3.58594 6.92534C3.52734 6.8423 3.44629 6.77798 3.34277 6.73239C3.24121 6.6868 3.12988 6.66401 3.00879 6.66401C2.75293 6.66401 2.55176 6.75763 2.40527 6.94488C2.38574 6.9693 2.35254 7.03606 2.30566 7.14515C2.26074 7.25424 2.20898 7.33809 2.15039 7.39671C2.09375 7.45532 2.00977 7.48463 1.89844 7.48463C1.80078 7.48463 1.71973 7.45777 1.65527 7.40403C1.59082 7.3503 1.55859 7.27703 1.55859 7.18422C1.55859 7.07188 1.58887 6.95464 1.64941 6.83253C1.70996 6.71041 1.7998 6.59969 1.91895 6.50037C2.04004 6.40105 2.19238 6.32127 2.37598 6.26102C2.56152 6.19915 2.77832 6.16821 3.02637 6.16821C3.3252 6.16821 3.58008 6.20729 3.79102 6.28544C3.92773 6.33755 4.04785 6.40919 4.15137 6.50037C4.25488 6.59155 4.33496 6.69739 4.3916 6.81787C4.4502 6.93673 4.47949 7.06048 4.47949 7.18911C4.47949 7.39101 4.41895 7.575 4.29785 7.74108C4.17871 7.90553 4.05664 8.03497 3.93164 8.12941C3.80664 8.22222 3.59668 8.36876 3.30176 8.56903C3.00879 8.7693 2.80762 8.92479 2.69824 9.03551C2.65137 9.07947 2.60352 9.13239 2.55469 9.19426Z", fill: "currentColor" }),
|
|
1376
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.90918 5.26784V3.04532C2.41309 3.36282 2.0791 3.52157 1.90723 3.52157C1.8252 3.52157 1.75195 3.49471 1.6875 3.44098C1.625 3.38562 1.59375 3.32212 1.59375 3.25047C1.59375 3.16744 1.625 3.10638 1.6875 3.0673C1.75 3.02822 1.86035 2.97775 2.01855 2.91588C2.25488 2.82307 2.44336 2.72537 2.58398 2.6228C2.72656 2.52022 2.85254 2.40543 2.96191 2.27843C3.07129 2.15142 3.14258 2.07327 3.17578 2.04396C3.20898 2.01465 3.27148 2 3.36328 2C3.4668 2 3.5498 2.03338 3.6123 2.10014C3.6748 2.16689 3.70605 2.25889 3.70605 2.37612V5.17259C3.70605 5.49986 3.57227 5.6635 3.30469 5.6635C3.18555 5.6635 3.08984 5.63012 3.01758 5.56336C2.94531 5.49661 2.90918 5.3981 2.90918 5.26784Z", fill: "currentColor" })
|
|
1377
|
+
]
|
|
1378
|
+
}
|
|
1379
|
+
)
|
|
1380
|
+
);
|
|
1381
|
+
ListOrdered.displayName = "ListOrdered";
|
|
1382
|
+
var List = react.forwardRef(
|
|
1383
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1384
|
+
"svg",
|
|
1385
|
+
{
|
|
1386
|
+
ref,
|
|
1387
|
+
width: size,
|
|
1388
|
+
height: size,
|
|
1389
|
+
viewBox: "0 0 16 16",
|
|
1390
|
+
fill: "none",
|
|
1391
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1392
|
+
strokeWidth,
|
|
1393
|
+
className: ["foamicon", "foamicon-list", className].filter(Boolean).join(" "),
|
|
1394
|
+
"aria-hidden": "true",
|
|
1395
|
+
...props,
|
|
1396
|
+
children: [
|
|
1397
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.75 4H13.25", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1398
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.75 8H13.25", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1399
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.75 12H13.25", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1400
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "3", cy: "4", r: "0.75", fill: "currentColor" }),
|
|
1401
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "3", cy: "8", r: "0.75", fill: "currentColor" }),
|
|
1402
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "3", cy: "12", r: "0.75", fill: "currentColor" })
|
|
1403
|
+
]
|
|
1404
|
+
}
|
|
1405
|
+
)
|
|
1406
|
+
);
|
|
1407
|
+
List.displayName = "List";
|
|
1408
|
+
var LoaderCircle = react.forwardRef(
|
|
1409
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1410
|
+
"svg",
|
|
1411
|
+
{
|
|
1412
|
+
ref,
|
|
1413
|
+
width: size,
|
|
1414
|
+
height: size,
|
|
1415
|
+
viewBox: "0 0 16 16",
|
|
1416
|
+
fill: "none",
|
|
1417
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1418
|
+
strokeWidth,
|
|
1419
|
+
className: ["foamicon", "foamicon-loader-circle", className].filter(Boolean).join(" "),
|
|
1420
|
+
"aria-hidden": "true",
|
|
1421
|
+
...props,
|
|
1422
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 8C13.5 9.21074 13.1005 10.3876 12.3634 11.3482C11.6264 12.3087 10.593 12.9992 9.4235 13.3126C8.25402 13.626 7.01381 13.5447 5.89524 13.0813C4.77666 12.618 3.84223 11.7985 3.23686 10.75C2.63149 9.70147 2.38902 8.48249 2.54705 7.28211C2.70508 6.08173 3.25479 4.96703 4.11091 4.11091C4.96703 3.25479 6.08172 2.70509 7.2821 2.54705C8.48248 2.38902 9.70147 2.63149 10.75 3.23686", stroke: "currentColor", strokeLinecap: "round" })
|
|
1423
|
+
}
|
|
1424
|
+
)
|
|
1425
|
+
);
|
|
1426
|
+
LoaderCircle.displayName = "LoaderCircle";
|
|
1427
|
+
var Lock = react.forwardRef(
|
|
1428
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1429
|
+
"svg",
|
|
1430
|
+
{
|
|
1431
|
+
ref,
|
|
1432
|
+
width: size,
|
|
1433
|
+
height: size,
|
|
1434
|
+
viewBox: "0 0 16 16",
|
|
1435
|
+
fill: "none",
|
|
1436
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1437
|
+
strokeWidth,
|
|
1438
|
+
className: ["foamicon", "foamicon-lock", className].filter(Boolean).join(" "),
|
|
1439
|
+
"aria-hidden": "true",
|
|
1440
|
+
...props,
|
|
1441
|
+
children: [
|
|
1442
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.3335 7.5V5.5C10.3335 4.11929 9.21421 3 7.8335 3C6.45278 3 5.3335 4.11929 5.3335 5.5V7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1443
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "11", r: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1444
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9.13937C3 8.38417 3.56081 7.74849 4.31298 7.68089C5.271 7.59479 6.6355 7.5 8 7.5C9.3645 7.5 10.729 7.59479 11.687 7.68089C12.4392 7.74849 13 8.38417 13 9.13937V12.8606C13 13.6158 12.4392 14.2515 11.687 14.3191C10.729 14.4052 9.3645 14.5 8 14.5C6.6355 14.5 5.271 14.4052 4.31298 14.3191C3.56081 14.2515 3 13.6158 3 12.8606V9.13937Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1445
|
+
]
|
|
1446
|
+
}
|
|
1447
|
+
)
|
|
1448
|
+
);
|
|
1449
|
+
Lock.displayName = "Lock";
|
|
1450
|
+
var LogOut = react.forwardRef(
|
|
1451
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1452
|
+
"svg",
|
|
1453
|
+
{
|
|
1454
|
+
ref,
|
|
1455
|
+
width: size,
|
|
1456
|
+
height: size,
|
|
1457
|
+
viewBox: "0 0 16 16",
|
|
1458
|
+
fill: "none",
|
|
1459
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1460
|
+
strokeWidth,
|
|
1461
|
+
className: ["foamicon", "foamicon-log-out", className].filter(Boolean).join(" "),
|
|
1462
|
+
"aria-hidden": "true",
|
|
1463
|
+
...props,
|
|
1464
|
+
children: [
|
|
1465
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.72705 14L5.74417 14C5.00252 14 4.37406 13.4577 4.29078 12.7208C4.16048 11.5676 3.99978 9.78381 3.99978 8C3.99978 6.21619 4.16048 4.43238 4.29078 3.27924C4.37406 2.54228 5.00252 2 5.74417 2L9.72705 2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1466
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8334 5.33337L12.9698 7.46971C13.2626 7.7626 13.2626 8.23748 12.9698 8.53037L10.8334 10.6667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1467
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8333 8H7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1468
|
+
]
|
|
1469
|
+
}
|
|
1470
|
+
)
|
|
1471
|
+
);
|
|
1472
|
+
LogOut.displayName = "LogOut";
|
|
1473
|
+
var MailMove = react.forwardRef(
|
|
1474
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1475
|
+
"svg",
|
|
1476
|
+
{
|
|
1477
|
+
ref,
|
|
1478
|
+
width: size,
|
|
1479
|
+
height: size,
|
|
1480
|
+
viewBox: "0 0 16 16",
|
|
1481
|
+
fill: "none",
|
|
1482
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1483
|
+
strokeWidth,
|
|
1484
|
+
className: ["foamicon", "foamicon-mail-move", className].filter(Boolean).join(" "),
|
|
1485
|
+
"aria-hidden": "true",
|
|
1486
|
+
...props,
|
|
1487
|
+
children: [
|
|
1488
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.5L6.73353 7.96379C7.47026 8.56657 8.52974 8.56657 9.26648 7.96379L13.5 4.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1489
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 12.5455C2 12.5455 5 13 8 13C9.78381 13 11.5676 12.8393 12.7208 12.709C13.4577 12.6257 14 11.9973 14 11.2556V4.74439C14 4.00274 13.4577 3.37428 12.7208 3.29101C11.5676 3.16071 9.78381 3 8 3C5.66332 3 3.32664 3.27576 2.40757 3.39771C2.17273 3.42886 2 3.62964 2 3.86653C2 4.01034 2.06459 4.14653 2.17594 4.23753L3.78296 5.55078", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1490
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 8H2.91187", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1491
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 10H5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1492
|
+
]
|
|
1493
|
+
}
|
|
1494
|
+
)
|
|
1495
|
+
);
|
|
1496
|
+
MailMove.displayName = "MailMove";
|
|
1497
|
+
var MailPlus = react.forwardRef(
|
|
1498
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1499
|
+
"svg",
|
|
1500
|
+
{
|
|
1501
|
+
ref,
|
|
1502
|
+
width: size,
|
|
1503
|
+
height: size,
|
|
1504
|
+
viewBox: "0 0 16 16",
|
|
1505
|
+
fill: "none",
|
|
1506
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1507
|
+
strokeWidth,
|
|
1508
|
+
className: ["foamicon", "foamicon-mail-plus", className].filter(Boolean).join(" "),
|
|
1509
|
+
"aria-hidden": "true",
|
|
1510
|
+
...props,
|
|
1511
|
+
children: [
|
|
1512
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4.5L6.55014 8.22284C7.10269 8.67493 7.89731 8.67493 8.44986 8.22284L13 4.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1513
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 8V4.74439C13.5 4.00274 12.9577 3.37428 12.2208 3.29101C11.0676 3.16071 9.28381 3 7.5 3C5.71619 3 3.93238 3.16071 2.77924 3.29101C2.04228 3.37428 1.5 4.00274 1.5 4.74439V11.2556C1.5 11.9973 2.04228 12.6257 2.77924 12.709C3.93238 12.8393 5.71619 13 7.5 13C7.9745 13 8.44899 12.9886 8.91162 12.9695", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1514
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.4116 11V14.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1515
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.1616 12.75L11.6616 12.75", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1516
|
+
]
|
|
1517
|
+
}
|
|
1518
|
+
)
|
|
1519
|
+
);
|
|
1520
|
+
MailPlus.displayName = "MailPlus";
|
|
1521
|
+
var Mail = react.forwardRef(
|
|
1522
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1523
|
+
"svg",
|
|
1524
|
+
{
|
|
1525
|
+
ref,
|
|
1526
|
+
width: size,
|
|
1527
|
+
height: size,
|
|
1528
|
+
viewBox: "0 0 16 16",
|
|
1529
|
+
fill: "none",
|
|
1530
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1531
|
+
strokeWidth,
|
|
1532
|
+
className: ["foamicon", "foamicon-mail", className].filter(Boolean).join(" "),
|
|
1533
|
+
"aria-hidden": "true",
|
|
1534
|
+
...props,
|
|
1535
|
+
children: [
|
|
1536
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.5L6.73353 7.96379C7.47026 8.56657 8.52974 8.56657 9.26648 7.96379L13.5 4.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1537
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4.74439C2 4.00274 2.54228 3.37428 3.27924 3.29101C4.43238 3.16071 6.21619 3 8 3C9.78381 3 11.5676 3.16071 12.7208 3.29101C13.4577 3.37428 14 4.00274 14 4.74439V11.2556C14 11.9973 13.4577 12.6257 12.7208 12.709C11.5676 12.8393 9.78381 13 8 13C6.21619 13 4.43238 12.8393 3.27924 12.709C2.54228 12.6257 2 11.9973 2 11.2556V4.74439Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1538
|
+
]
|
|
1539
|
+
}
|
|
1540
|
+
)
|
|
1541
|
+
);
|
|
1542
|
+
Mail.displayName = "Mail";
|
|
1543
|
+
var MapPin = react.forwardRef(
|
|
1544
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1545
|
+
"svg",
|
|
1546
|
+
{
|
|
1547
|
+
ref,
|
|
1548
|
+
width: size,
|
|
1549
|
+
height: size,
|
|
1550
|
+
viewBox: "0 0 16 16",
|
|
1551
|
+
fill: "none",
|
|
1552
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1553
|
+
strokeWidth,
|
|
1554
|
+
className: ["foamicon", "foamicon-map-pin", className].filter(Boolean).join(" "),
|
|
1555
|
+
"aria-hidden": "true",
|
|
1556
|
+
...props,
|
|
1557
|
+
children: [
|
|
1558
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 6.90909C13 9.60241 10.5121 12.0243 9.0462 13.2176C8.42954 13.7196 7.57046 13.7196 6.9538 13.2176C5.4879 12.0243 3 9.60241 3 6.90909C3 5.60712 3.52678 4.35847 4.46447 3.43784C5.40215 2.51721 6.67392 2 8 2C9.32608 2 10.5979 2.51721 11.5355 3.43784C12.4732 4.35847 13 5.60712 13 6.90909Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1559
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 9C9.10457 9 10 8.10457 10 7C10 5.89543 9.10457 5 8 5C6.89543 5 6 5.89543 6 7C6 8.10457 6.89543 9 8 9Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1560
|
+
]
|
|
1561
|
+
}
|
|
1562
|
+
)
|
|
1563
|
+
);
|
|
1564
|
+
MapPin.displayName = "MapPin";
|
|
1565
|
+
var Maximize = react.forwardRef(
|
|
1566
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1567
|
+
"svg",
|
|
1568
|
+
{
|
|
1569
|
+
ref,
|
|
1570
|
+
width: size,
|
|
1571
|
+
height: size,
|
|
1572
|
+
viewBox: "0 0 16 16",
|
|
1573
|
+
fill: "none",
|
|
1574
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1575
|
+
strokeWidth,
|
|
1576
|
+
className: ["foamicon", "foamicon-maximize", className].filter(Boolean).join(" "),
|
|
1577
|
+
"aria-hidden": "true",
|
|
1578
|
+
...props,
|
|
1579
|
+
children: [
|
|
1580
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 3.5H13V7", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1581
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 13H3.5V9.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1582
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 3.5L9.5 7", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1583
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 13L7 9.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1584
|
+
]
|
|
1585
|
+
}
|
|
1586
|
+
)
|
|
1587
|
+
);
|
|
1588
|
+
Maximize.displayName = "Maximize";
|
|
1589
|
+
var MediaKits = react.forwardRef(
|
|
1590
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1591
|
+
"svg",
|
|
1592
|
+
{
|
|
1593
|
+
ref,
|
|
1594
|
+
width: size,
|
|
1595
|
+
height: size,
|
|
1596
|
+
viewBox: "0 0 16 16",
|
|
1597
|
+
fill: "none",
|
|
1598
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1599
|
+
strokeWidth,
|
|
1600
|
+
className: ["foamicon", "foamicon-media-kits", className].filter(Boolean).join(" "),
|
|
1601
|
+
"aria-hidden": "true",
|
|
1602
|
+
...props,
|
|
1603
|
+
children: [
|
|
1604
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9.90907", cy: "4.99568", r: "0.932931", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1605
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.01911 9.35127C8.01911 8.26888 8.82669 7.3385 9.90908 7.3385C10.9915 7.3385 11.799 8.26888 11.799 9.35127V9.78417C11.799 9.80412 11.7848 9.82085 11.765 9.82318C11.5879 9.844 10.7485 9.93721 9.90908 9.93721C9.06966 9.93721 8.23024 9.844 8.05317 9.82318C8.03336 9.82085 8.01911 9.80412 8.01911 9.78417V9.35127Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1606
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "8", height: "10", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1607
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.45189 13.6945L5.55412 14.471C5.02065 14.6139 4.47231 14.2974 4.32937 13.7639L2.25882 6.03648C2.11588 5.50302 2.43246 4.95468 2.96593 4.81174L3.93185 4.55292", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1608
|
+
]
|
|
1609
|
+
}
|
|
1610
|
+
)
|
|
1611
|
+
);
|
|
1612
|
+
MediaKits.displayName = "MediaKits";
|
|
1613
|
+
var MegaphoneActive = react.forwardRef(
|
|
1614
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1615
|
+
"svg",
|
|
1616
|
+
{
|
|
1617
|
+
ref,
|
|
1618
|
+
width: size,
|
|
1619
|
+
height: size,
|
|
1620
|
+
viewBox: "0 0 16 16",
|
|
1621
|
+
fill: "none",
|
|
1622
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1623
|
+
strokeWidth,
|
|
1624
|
+
className: ["foamicon", "foamicon-megaphone-active", className].filter(Boolean).join(" "),
|
|
1625
|
+
"aria-hidden": "true",
|
|
1626
|
+
...props,
|
|
1627
|
+
children: [
|
|
1628
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.44745 12.4475C2.12567 12.1257 2.06173 11.6272 2.29186 11.2346L6.63315 3.8289C6.96429 3.26401 7.73996 3.1645 8.20296 3.62751L12.0759 7.50048C12.5389 7.96348 12.4394 8.73914 11.8745 9.07028L4.46881 13.4116C4.07623 13.6417 3.57776 13.5778 3.25598 13.256L2.44745 12.4475Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1629
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.53553 10.707L9.71231 10.8838C10.3957 11.5672 10.3957 12.6753 9.71231 13.3587L9.53553 13.5355C8.75449 14.3165 7.48816 14.3165 6.70711 13.5355L6 12.8284", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1630
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.957 3.70715L12.957 2.70715", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1631
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7499 5.20711L14.1641 5.20711", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1632
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.4571 2.91426L10.4571 1.50005", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1633
|
+
]
|
|
1634
|
+
}
|
|
1635
|
+
)
|
|
1636
|
+
);
|
|
1637
|
+
MegaphoneActive.displayName = "MegaphoneActive";
|
|
1638
|
+
var Megaphone = react.forwardRef(
|
|
1639
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1640
|
+
"svg",
|
|
1641
|
+
{
|
|
1642
|
+
ref,
|
|
1643
|
+
width: size,
|
|
1644
|
+
height: size,
|
|
1645
|
+
viewBox: "0 0 16 16",
|
|
1646
|
+
fill: "none",
|
|
1647
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1648
|
+
strokeWidth,
|
|
1649
|
+
className: ["foamicon", "foamicon-megaphone", className].filter(Boolean).join(" "),
|
|
1650
|
+
"aria-hidden": "true",
|
|
1651
|
+
...props,
|
|
1652
|
+
children: [
|
|
1653
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 6.7726C2 6.31753 2.30725 5.91985 2.74758 5.80498L12.2476 3.32672C12.8812 3.16144 13.5 3.63955 13.5 4.29434V10.7057C13.5 11.3605 12.8812 11.8386 12.2476 11.6733L2.74758 9.19502C2.30725 9.08015 2 8.68247 2 8.2274V6.7726Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1654
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 11V11.25C9 12.2165 8.2165 13 7.25 13H7C5.89543 13 5 12.1046 5 11V10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1655
|
+
]
|
|
1656
|
+
}
|
|
1657
|
+
)
|
|
1658
|
+
);
|
|
1659
|
+
Megaphone.displayName = "Megaphone";
|
|
1660
|
+
var Menu = react.forwardRef(
|
|
1661
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1662
|
+
"svg",
|
|
1663
|
+
{
|
|
1664
|
+
ref,
|
|
1665
|
+
width: size,
|
|
1666
|
+
height: size,
|
|
1667
|
+
viewBox: "0 0 16 16",
|
|
1668
|
+
fill: "none",
|
|
1669
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1670
|
+
strokeWidth,
|
|
1671
|
+
className: ["foamicon", "foamicon-menu", className].filter(Boolean).join(" "),
|
|
1672
|
+
"aria-hidden": "true",
|
|
1673
|
+
...props,
|
|
1674
|
+
children: [
|
|
1675
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 4H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1676
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 8H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1677
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 12H13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1678
|
+
]
|
|
1679
|
+
}
|
|
1680
|
+
)
|
|
1681
|
+
);
|
|
1682
|
+
Menu.displayName = "Menu";
|
|
1683
|
+
var MessageSquare = react.forwardRef(
|
|
1684
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1685
|
+
"svg",
|
|
1686
|
+
{
|
|
1687
|
+
ref,
|
|
1688
|
+
width: size,
|
|
1689
|
+
height: size,
|
|
1690
|
+
viewBox: "0 0 16 16",
|
|
1691
|
+
fill: "none",
|
|
1692
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1693
|
+
strokeWidth,
|
|
1694
|
+
className: ["foamicon", "foamicon-message-square", className].filter(Boolean).join(" "),
|
|
1695
|
+
"aria-hidden": "true",
|
|
1696
|
+
...props,
|
|
1697
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.79566 5.34648C2.79566 4.24191 3.69175 3.34886 4.79447 3.28506C5.71423 3.23184 6.59712 3.16333 8.23235 3.16333C9.96834 3.16333 10.9226 3.24054 12.0012 3.2947C13.1044 3.35009 14.0005 4.24191 14.0005 5.34648V9.60515C14.0005 10.7097 13.1051 11.6051 12.0005 11.6051H8.73895C8.42048 11.6051 8.12106 11.7568 7.93267 12.0136L6.36241 14.1539C6.24808 14.3097 6.00115 14.2289 6.00115 14.0356V11.8051C6.00115 11.6947 5.91161 11.6051 5.80115 11.6051H4.79566C3.69109 11.6051 2.79566 10.7097 2.79566 9.60515V5.34648Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1698
|
+
}
|
|
1699
|
+
)
|
|
1700
|
+
);
|
|
1701
|
+
MessageSquare.displayName = "MessageSquare";
|
|
1702
|
+
var MessagesSquare = react.forwardRef(
|
|
1703
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1704
|
+
"svg",
|
|
1705
|
+
{
|
|
1706
|
+
ref,
|
|
1707
|
+
width: size,
|
|
1708
|
+
height: size,
|
|
1709
|
+
viewBox: "0 0 16 16",
|
|
1710
|
+
fill: "none",
|
|
1711
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1712
|
+
strokeWidth,
|
|
1713
|
+
className: ["foamicon", "foamicon-messages-square", className].filter(Boolean).join(" "),
|
|
1714
|
+
"aria-hidden": "true",
|
|
1715
|
+
...props,
|
|
1716
|
+
children: [
|
|
1717
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.9 9.5C6.9 9.5 6.8 9.5 6.7 9.5C6.7 9.5 5.1 11.9 5.1 11.5V9.5H3.5C2.7 9.4 2 8.8 2 8V3.7C2 2.5 3 2.3 3.5 2.2C4 2.1 4.9 2 6.7 2C8.5 2 9.2 2 10 2.2C10.8 2.4 11.4 2.60534 11.4 3.7V6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1718
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.31142 11.942L10.7971 12C10.8551 12 10.913 12 10.942 12.087C10.942 12.087 12.1594 13.8841 12.2174 13.6812C12.3333 13.3043 12.7101 12.058 12.7101 12.058C12.7101 12.058 12.7101 12.029 12.7391 12.029L13.5217 11.942C14.1884 11.942 14.7101 11.4783 14.7101 10.8116V7.36232C14.7101 6.69565 14.1594 6.14493 13.4928 6.14493C13.4928 6.14493 12.3333 6 10.8551 6C9.37681 6 8.21739 6.14493 8.21739 6.14493C7.55072 6.14493 7 6.69565 7 7.36232V10.8116C7 11.4783 7.57971 11.942 8.24638 11.942L8.31142 11.942Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1719
|
+
]
|
|
1720
|
+
}
|
|
1721
|
+
)
|
|
1722
|
+
);
|
|
1723
|
+
MessagesSquare.displayName = "MessagesSquare";
|
|
1724
|
+
var Minus = react.forwardRef(
|
|
1725
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1726
|
+
"svg",
|
|
1727
|
+
{
|
|
1728
|
+
ref,
|
|
1729
|
+
width: size,
|
|
1730
|
+
height: size,
|
|
1731
|
+
viewBox: "0 0 16 16",
|
|
1732
|
+
fill: "none",
|
|
1733
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1734
|
+
strokeWidth,
|
|
1735
|
+
className: ["foamicon", "foamicon-minus", className].filter(Boolean).join(" "),
|
|
1736
|
+
"aria-hidden": "true",
|
|
1737
|
+
...props,
|
|
1738
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8L3.5 8", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1739
|
+
}
|
|
1740
|
+
)
|
|
1741
|
+
);
|
|
1742
|
+
Minus.displayName = "Minus";
|
|
1743
|
+
var Moon = react.forwardRef(
|
|
1744
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1745
|
+
"svg",
|
|
1746
|
+
{
|
|
1747
|
+
ref,
|
|
1748
|
+
width: size,
|
|
1749
|
+
height: size,
|
|
1750
|
+
viewBox: "0 0 16 16",
|
|
1751
|
+
fill: "none",
|
|
1752
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1753
|
+
strokeWidth,
|
|
1754
|
+
className: ["foamicon", "foamicon-moon", className].filter(Boolean).join(" "),
|
|
1755
|
+
"aria-hidden": "true",
|
|
1756
|
+
...props,
|
|
1757
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 8C13 11.0376 10.5376 13.5 7.5 13.5C5.18834 13.5 3.56619 12.2471 2.54992 10.3809C2.47093 10.2358 4.73028 10.4917 6.67044 7.55378C8.46277 4.04302 6.50413 2.5 7.5 2.5C10.5376 2.5 13 4.96243 13 8Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1758
|
+
}
|
|
1759
|
+
)
|
|
1760
|
+
);
|
|
1761
|
+
Moon.displayName = "Moon";
|
|
1762
|
+
var MousePointerClick = react.forwardRef(
|
|
1763
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1764
|
+
"svg",
|
|
1765
|
+
{
|
|
1766
|
+
ref,
|
|
1767
|
+
width: size,
|
|
1768
|
+
height: size,
|
|
1769
|
+
viewBox: "0 0 16 16",
|
|
1770
|
+
fill: "none",
|
|
1771
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1772
|
+
strokeWidth,
|
|
1773
|
+
className: ["foamicon", "foamicon-mouse-pointer-click", className].filter(Boolean).join(" "),
|
|
1774
|
+
"aria-hidden": "true",
|
|
1775
|
+
...props,
|
|
1776
|
+
children: [
|
|
1777
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.98653 14.2836V6.17577V5.36499L14.0674 10.4459L9.59935 10.3624L6.98653 14.2836Z", stroke: "currentColor", strokeLinejoin: "round" }),
|
|
1778
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.36495 4.14866L4.14878 2.93248M6.98652 3.33787V1.71631M8.60808 4.14866L9.82426 2.93248M4.55417 5.77022H2.9326", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1779
|
+
]
|
|
1780
|
+
}
|
|
1781
|
+
)
|
|
1782
|
+
);
|
|
1783
|
+
MousePointerClick.displayName = "MousePointerClick";
|
|
1784
|
+
var Move = react.forwardRef(
|
|
1785
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1786
|
+
"svg",
|
|
1787
|
+
{
|
|
1788
|
+
ref,
|
|
1789
|
+
width: size,
|
|
1790
|
+
height: size,
|
|
1791
|
+
viewBox: "0 0 16 16",
|
|
1792
|
+
fill: "none",
|
|
1793
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1794
|
+
strokeWidth,
|
|
1795
|
+
className: ["foamicon", "foamicon-move", className].filter(Boolean).join(" "),
|
|
1796
|
+
"aria-hidden": "true",
|
|
1797
|
+
...props,
|
|
1798
|
+
children: [
|
|
1799
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3.66667L7.31311 2.35355C7.50838 2.15829 7.82496 2.15829 8.02022 2.35355L9.33333 3.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1800
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.33333 12.0001L8.02022 13.3132C7.82496 13.5085 7.50838 13.5085 7.31311 13.3132L6 12.0001", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1801
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.66667 2.66675V13.0001", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1802
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.6667 6L13.1464 7.47978C13.3417 7.67504 13.3417 7.99162 13.1464 8.18689L11.6667 9.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1803
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.66667 9.66675L2.18689 8.18697C1.99162 7.99171 1.99162 7.67512 2.18689 7.47986L3.66667 6.00008", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1804
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8333 7.83325L2.5 7.83325", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1805
|
+
]
|
|
1806
|
+
}
|
|
1807
|
+
)
|
|
1808
|
+
);
|
|
1809
|
+
Move.displayName = "Move";
|
|
1810
|
+
var PanelLeft = react.forwardRef(
|
|
1811
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1812
|
+
"svg",
|
|
1813
|
+
{
|
|
1814
|
+
ref,
|
|
1815
|
+
width: size,
|
|
1816
|
+
height: size,
|
|
1817
|
+
viewBox: "0 0 16 16",
|
|
1818
|
+
fill: "none",
|
|
1819
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1820
|
+
strokeWidth,
|
|
1821
|
+
className: ["foamicon", "foamicon-panel-left", className].filter(Boolean).join(" "),
|
|
1822
|
+
"aria-hidden": "true",
|
|
1823
|
+
...props,
|
|
1824
|
+
children: [
|
|
1825
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.26818 4.23755C3.36204 3.51872 3.98148 3 4.70641 3H11.2936C12.0185 3 12.638 3.51872 12.7318 4.23755C12.8573 5.19855 13 6.59928 13 8C13 9.40072 12.8573 10.8014 12.7318 11.7624C12.638 12.4813 12.0185 13 11.2936 13H4.70641C3.98148 13 3.36204 12.4813 3.26818 11.7625C3.14269 10.8014 3 9.40072 3 8C3 6.59928 3.14269 5.19855 3.26818 4.23755Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1826
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3V13", stroke: "currentColor" })
|
|
1827
|
+
]
|
|
1828
|
+
}
|
|
1829
|
+
)
|
|
1830
|
+
);
|
|
1831
|
+
PanelLeft.displayName = "PanelLeft";
|
|
1832
|
+
var PanelRight = react.forwardRef(
|
|
1833
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1834
|
+
"svg",
|
|
1835
|
+
{
|
|
1836
|
+
ref,
|
|
1837
|
+
width: size,
|
|
1838
|
+
height: size,
|
|
1839
|
+
viewBox: "0 0 16 16",
|
|
1840
|
+
fill: "none",
|
|
1841
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1842
|
+
strokeWidth,
|
|
1843
|
+
className: ["foamicon", "foamicon-panel-right", className].filter(Boolean).join(" "),
|
|
1844
|
+
"aria-hidden": "true",
|
|
1845
|
+
...props,
|
|
1846
|
+
children: [
|
|
1847
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.26818 4.23755C3.36204 3.51872 3.98148 3 4.70641 3H11.2936C12.0185 3 12.638 3.51872 12.7318 4.23755C12.8573 5.19855 13 6.59928 13 8C13 9.40072 12.8573 10.8014 12.7318 11.7624C12.638 12.4813 12.0185 13 11.2936 13H4.70641C3.98148 13 3.36204 12.4813 3.26818 11.7625C3.14269 10.8014 3 9.40072 3 8C3 6.59928 3.14269 5.19855 3.26818 4.23755Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1848
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 3V13", stroke: "currentColor" })
|
|
1849
|
+
]
|
|
1850
|
+
}
|
|
1851
|
+
)
|
|
1852
|
+
);
|
|
1853
|
+
PanelRight.displayName = "PanelRight";
|
|
1854
|
+
var Pencil = react.forwardRef(
|
|
1855
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1856
|
+
"svg",
|
|
1857
|
+
{
|
|
1858
|
+
ref,
|
|
1859
|
+
width: size,
|
|
1860
|
+
height: size,
|
|
1861
|
+
viewBox: "0 0 16 16",
|
|
1862
|
+
fill: "none",
|
|
1863
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1864
|
+
strokeWidth,
|
|
1865
|
+
className: ["foamicon", "foamicon-pencil", className].filter(Boolean).join(" "),
|
|
1866
|
+
"aria-hidden": "true",
|
|
1867
|
+
...props,
|
|
1868
|
+
children: [
|
|
1869
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 13H5.5M12.0707 3.07071L13.4293 4.42929C13.4683 4.46834 13.4683 4.53166 13.4293 4.57071L7.02929 10.9707C7.01054 10.9895 6.9851 11 6.95858 11H5.6C5.54477 11 5.5 10.9552 5.5 10.9V9.54142C5.5 9.5149 5.51054 9.48946 5.52929 9.47071L11.9293 3.07071C11.9683 3.03166 12.0317 3.03166 12.0707 3.07071Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1870
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 5L11.5 6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1871
|
+
]
|
|
1872
|
+
}
|
|
1873
|
+
)
|
|
1874
|
+
);
|
|
1875
|
+
Pencil.displayName = "Pencil";
|
|
1876
|
+
var Pin = react.forwardRef(
|
|
1877
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1878
|
+
"svg",
|
|
1879
|
+
{
|
|
1880
|
+
ref,
|
|
1881
|
+
width: size,
|
|
1882
|
+
height: size,
|
|
1883
|
+
viewBox: "0 0 16 16",
|
|
1884
|
+
fill: "none",
|
|
1885
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1886
|
+
strokeWidth,
|
|
1887
|
+
className: ["foamicon", "foamicon-pin", className].filter(Boolean).join(" "),
|
|
1888
|
+
"aria-hidden": "true",
|
|
1889
|
+
...props,
|
|
1890
|
+
children: [
|
|
1891
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.10663 11L3.12133 12.9853", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1892
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 8.15674L5.88804 7.72834C6.14434 7.69032 6.34438 7.48699 6.37821 7.23009C6.48199 6.44205 6.74655 5.68372 7.1555 5.00215L7.9979 3.59814C8.33262 3.04028 9.10248 2.94551 9.5625 3.40553L12.701 6.54399C13.161 7.00401 13.0662 7.77387 12.5083 8.10859L11.1043 8.95099C10.4228 9.35994 9.66444 9.6245 8.87639 9.72827C8.6195 9.7621 8.41617 9.96214 8.37815 10.2185L7.94975 13.1065L3 8.15674Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1893
|
+
]
|
|
1894
|
+
}
|
|
1895
|
+
)
|
|
1896
|
+
);
|
|
1897
|
+
Pin.displayName = "Pin";
|
|
1898
|
+
var Play = react.forwardRef(
|
|
1899
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1900
|
+
"svg",
|
|
1901
|
+
{
|
|
1902
|
+
ref,
|
|
1903
|
+
width: size,
|
|
1904
|
+
height: size,
|
|
1905
|
+
viewBox: "0 0 16 16",
|
|
1906
|
+
fill: "none",
|
|
1907
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1908
|
+
strokeWidth,
|
|
1909
|
+
className: ["foamicon", "foamicon-play", className].filter(Boolean).join(" "),
|
|
1910
|
+
"aria-hidden": "true",
|
|
1911
|
+
...props,
|
|
1912
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.19615 4.73205C5.19615 3.96225 6.02949 3.48113 6.69615 3.86603L12.6962 7.33013C13.3628 7.71503 13.3628 8.67728 12.6962 9.06218L6.69615 12.5263C6.02949 12.9112 5.19615 12.4301 5.19615 11.6603L5.19615 4.73205Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1913
|
+
}
|
|
1914
|
+
)
|
|
1915
|
+
);
|
|
1916
|
+
Play.displayName = "Play";
|
|
1917
|
+
var Plus = react.forwardRef(
|
|
1918
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1919
|
+
"svg",
|
|
1920
|
+
{
|
|
1921
|
+
ref,
|
|
1922
|
+
width: size,
|
|
1923
|
+
height: size,
|
|
1924
|
+
viewBox: "0 0 16 16",
|
|
1925
|
+
fill: "none",
|
|
1926
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1927
|
+
strokeWidth,
|
|
1928
|
+
className: ["foamicon", "foamicon-plus", className].filter(Boolean).join(" "),
|
|
1929
|
+
"aria-hidden": "true",
|
|
1930
|
+
...props,
|
|
1931
|
+
children: [
|
|
1932
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3.5V12.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1933
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8L3.5 8", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1934
|
+
]
|
|
1935
|
+
}
|
|
1936
|
+
)
|
|
1937
|
+
);
|
|
1938
|
+
Plus.displayName = "Plus";
|
|
1939
|
+
var Reach = react.forwardRef(
|
|
1940
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1941
|
+
"svg",
|
|
1942
|
+
{
|
|
1943
|
+
ref,
|
|
1944
|
+
width: size,
|
|
1945
|
+
height: size,
|
|
1946
|
+
viewBox: "0 0 16 16",
|
|
1947
|
+
fill: "none",
|
|
1948
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1949
|
+
strokeWidth,
|
|
1950
|
+
className: ["foamicon", "foamicon-reach", className].filter(Boolean).join(" "),
|
|
1951
|
+
"aria-hidden": "true",
|
|
1952
|
+
...props,
|
|
1953
|
+
children: [
|
|
1954
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.72934 2.35433L7.64645 1.4371C7.8417 1.24181 8.15831 1.2418 8.35358 1.43707L9.27083 2.35433", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1955
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.9998 1.75V4.25", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1956
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.27066 13.8957L8.35355 14.8129C8.1583 15.0082 7.84169 15.0082 7.64642 14.8129L6.72917 13.8957", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1957
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.0002 14.5V12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1958
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6456 6.72937L14.5629 7.64647C14.7581 7.84173 14.7582 8.15833 14.5629 8.35361L13.6456 9.27086", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1959
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.2498 7.99976L11.7498 7.99976", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1960
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.10404 9.27063L1.18681 8.35353C0.991529 8.15827 0.991518 7.84167 1.18679 7.64639L2.10404 6.72914", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1961
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.49984 8.00024L3.99984 8.00024", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1962
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.0936 3.10939L12.3906 3.1093C12.6668 3.10929 12.8907 3.33315 12.8907 3.6093L12.8907 4.9065", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1963
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4192 3.58032L10.6514 5.34809", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1964
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.72941 13.0674L3.43234 13.0675C3.15619 13.0675 2.93231 12.8436 2.93231 12.5675L2.93231 11.2703", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1965
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.40383 12.5964L5.17159 10.8287", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1966
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8905 11.0937L12.8906 12.3907C12.8907 12.6669 12.6668 12.8908 12.3906 12.8908L11.0934 12.8908", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1967
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4194 12.4192L10.6517 10.6514", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1968
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.93243 4.72958L2.93234 3.43251C2.93232 3.15636 3.15619 2.93248 3.43234 2.93248L4.72953 2.93248", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1969
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.40354 3.40405L5.17131 5.17182", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1970
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "7.99994", cy: "8", r: "1.46558", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1971
|
+
]
|
|
1972
|
+
}
|
|
1973
|
+
)
|
|
1974
|
+
);
|
|
1975
|
+
Reach.displayName = "Reach";
|
|
1976
|
+
var Reel = react.forwardRef(
|
|
1977
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1978
|
+
"svg",
|
|
1979
|
+
{
|
|
1980
|
+
ref,
|
|
1981
|
+
width: size,
|
|
1982
|
+
height: size,
|
|
1983
|
+
viewBox: "0 0 16 16",
|
|
1984
|
+
fill: "none",
|
|
1985
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1986
|
+
strokeWidth,
|
|
1987
|
+
className: ["foamicon", "foamicon-reel", className].filter(Boolean).join(" "),
|
|
1988
|
+
"aria-hidden": "true",
|
|
1989
|
+
...props,
|
|
1990
|
+
children: [
|
|
1991
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 4.79111C1.5 4.28711 1.87445 3.86309 2.37584 3.81187C3.56 3.69088 5.78 3.5 8 3.5C10.22 3.5 12.44 3.69088 13.6242 3.81187C14.1255 3.8631 14.5 4.28711 14.5 4.79111V11.2089C14.5 11.7129 14.1255 12.1369 13.6242 12.1881C12.44 12.3091 10.22 12.5 8 12.5C5.78 12.5 3.56 12.3091 2.37584 12.1881C1.87445 12.1369 1.5 11.7129 1.5 11.2089V4.79111Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1992
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 4V12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1993
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 6H3.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1994
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H3.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1995
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 10H3.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1996
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 6H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1997
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1998
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 10H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1999
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4V12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2000
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.09808 6.36603C6.09808 5.98113 6.51474 5.74056 6.84808 5.93301L9.84808 7.66506C10.1814 7.85751 10.1814 8.33864 9.84808 8.53109L6.84808 10.2631C6.51474 10.4556 6.09808 10.215 6.09808 9.83013L6.09808 6.36603Z", fill: "currentColor" })
|
|
2001
|
+
]
|
|
2002
|
+
}
|
|
2003
|
+
)
|
|
2004
|
+
);
|
|
2005
|
+
Reel.displayName = "Reel";
|
|
2006
|
+
var RefreshCw = react.forwardRef(
|
|
2007
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2008
|
+
"svg",
|
|
2009
|
+
{
|
|
2010
|
+
ref,
|
|
2011
|
+
width: size,
|
|
2012
|
+
height: size,
|
|
2013
|
+
viewBox: "0 0 16 16",
|
|
2014
|
+
fill: "none",
|
|
2015
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2016
|
+
strokeWidth,
|
|
2017
|
+
className: ["foamicon", "foamicon-refresh-cw", className].filter(Boolean).join(" "),
|
|
2018
|
+
"aria-hidden": "true",
|
|
2019
|
+
...props,
|
|
2020
|
+
children: [
|
|
2021
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8233 2.31184L11.2918 4.06047C11.3633 4.3272 11.205 4.60137 10.9383 4.67284L9.18965 5.14138", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2022
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.94795 13.8483L4.47941 12.0997C4.40794 11.833 4.56623 11.5588 4.83296 11.4873L6.58159 11.0188", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2023
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8064 6.8604C13.5214 9.52882 11.9378 12.2716 9.26941 12.9866C7.6229 13.4278 5.94807 12.9939 4.73878 11.9699M3.14318 9.44964C2.42818 6.78122 4.01174 4.03842 6.68016 3.32341C8.32508 2.88266 9.99827 3.31535 11.2073 4.33719", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2024
|
+
]
|
|
2025
|
+
}
|
|
2026
|
+
)
|
|
2027
|
+
);
|
|
2028
|
+
RefreshCw.displayName = "RefreshCw";
|
|
2029
|
+
var RemoveFormatting = react.forwardRef(
|
|
2030
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2031
|
+
"svg",
|
|
2032
|
+
{
|
|
2033
|
+
ref,
|
|
2034
|
+
width: size,
|
|
2035
|
+
height: size,
|
|
2036
|
+
viewBox: "0 0 16 16",
|
|
2037
|
+
fill: "none",
|
|
2038
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2039
|
+
strokeWidth,
|
|
2040
|
+
className: ["foamicon", "foamicon-remove-formatting", className].filter(Boolean).join(" "),
|
|
2041
|
+
"aria-hidden": "true",
|
|
2042
|
+
...props,
|
|
2043
|
+
children: [
|
|
2044
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3251 2.29834L3.06451 12.5588", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2045
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.83789 11.1162C8.83792 11.6584 8.92223 11.9958 9.09082 12.1279C9.25964 12.2554 9.62906 12.3399 10.1982 12.3809V12.6338H6.11719V12.3809C6.70936 12.3353 7.07881 12.2373 7.22461 12.0869C7.37035 11.9365 7.44334 11.558 7.44336 10.9521V10.2969L8.83789 8.90234V11.1162ZM12.124 4.20117L11.5391 4.78613C11.4389 4.564 11.3303 4.3994 11.21 4.29395C10.9594 4.06613 10.4281 3.95219 9.61719 3.95215H8.83789V7.48828L7.44336 8.88281V3.95215H6.66406C5.88949 3.95215 5.36072 4.0639 5.07812 4.28711C4.80013 4.51042 4.59049 4.99805 4.44922 5.75H4.10645L4.18945 3.37109H12.0986L12.124 4.20117ZM12.1738 5.75H11.9902L12.168 5.57129L12.1738 5.75Z", fill: "currentColor" })
|
|
2046
|
+
]
|
|
2047
|
+
}
|
|
2048
|
+
)
|
|
2049
|
+
);
|
|
2050
|
+
RemoveFormatting.displayName = "RemoveFormatting";
|
|
2051
|
+
var Reply = react.forwardRef(
|
|
2052
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2053
|
+
"svg",
|
|
2054
|
+
{
|
|
2055
|
+
ref,
|
|
2056
|
+
width: size,
|
|
2057
|
+
height: size,
|
|
2058
|
+
viewBox: "0 0 16 16",
|
|
2059
|
+
fill: "none",
|
|
2060
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2061
|
+
strokeWidth,
|
|
2062
|
+
className: ["foamicon", "foamicon-reply", className].filter(Boolean).join(" "),
|
|
2063
|
+
"aria-hidden": "true",
|
|
2064
|
+
...props,
|
|
2065
|
+
children: [
|
|
2066
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.66666 10.9998L3.35355 7.68664C3.15829 7.49138 3.15829 7.1748 3.35355 6.97954L6.66666 3.66642", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2067
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.66667 7.33325L8.99653 7.33325C11.1409 7.33325 12.9038 9.02422 12.9931 11.1667L13 11.3333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2068
|
+
]
|
|
2069
|
+
}
|
|
2070
|
+
)
|
|
2071
|
+
);
|
|
2072
|
+
Reply.displayName = "Reply";
|
|
2073
|
+
var RotateCw = react.forwardRef(
|
|
2074
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2075
|
+
"svg",
|
|
2076
|
+
{
|
|
2077
|
+
ref,
|
|
2078
|
+
width: size,
|
|
2079
|
+
height: size,
|
|
2080
|
+
viewBox: "0 0 16 16",
|
|
2081
|
+
fill: "none",
|
|
2082
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2083
|
+
strokeWidth,
|
|
2084
|
+
className: ["foamicon", "foamicon-rotate-cw", className].filter(Boolean).join(" "),
|
|
2085
|
+
"aria-hidden": "true",
|
|
2086
|
+
...props,
|
|
2087
|
+
children: [
|
|
2088
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8233 2.31184L11.2918 4.06047C11.3633 4.3272 11.205 4.60137 10.9383 4.67284L9.18965 5.14138", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2089
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8064 6.8604C13.5214 9.52882 11.9378 12.2716 9.26941 12.9866C7.6229 13.4278 5.94807 12.9939 4.73878 11.9699M3.14318 9.44964C2.42818 6.78122 4.01174 4.03842 6.68016 3.32341C8.32508 2.88266 9.99827 3.31535 11.2073 4.33719", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2090
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.5117 11.6919C9.55828 13.6453 6.39116 13.6453 4.43774 11.6919C3.23242 10.4865 2.77082 8.8191 3.05295 7.25984", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2091
|
+
]
|
|
2092
|
+
}
|
|
2093
|
+
)
|
|
2094
|
+
);
|
|
2095
|
+
RotateCw.displayName = "RotateCw";
|
|
2096
|
+
var Rows2 = react.forwardRef(
|
|
2097
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2098
|
+
"svg",
|
|
2099
|
+
{
|
|
2100
|
+
ref,
|
|
2101
|
+
width: size,
|
|
2102
|
+
height: size,
|
|
2103
|
+
viewBox: "0 0 16 16",
|
|
2104
|
+
fill: "none",
|
|
2105
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2106
|
+
strokeWidth,
|
|
2107
|
+
className: ["foamicon", "foamicon-rows2", className].filter(Boolean).join(" "),
|
|
2108
|
+
"aria-hidden": "true",
|
|
2109
|
+
...props,
|
|
2110
|
+
children: [
|
|
2111
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "12", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2112
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "9", width: "12", height: "5", rx: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2113
|
+
]
|
|
2114
|
+
}
|
|
2115
|
+
)
|
|
2116
|
+
);
|
|
2117
|
+
Rows2.displayName = "Rows2";
|
|
2118
|
+
var Save = react.forwardRef(
|
|
2119
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2120
|
+
"svg",
|
|
2121
|
+
{
|
|
2122
|
+
ref,
|
|
2123
|
+
width: size,
|
|
2124
|
+
height: size,
|
|
2125
|
+
viewBox: "0 0 16 16",
|
|
2126
|
+
fill: "none",
|
|
2127
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2128
|
+
strokeWidth,
|
|
2129
|
+
className: ["foamicon", "foamicon-save", className].filter(Boolean).join(" "),
|
|
2130
|
+
"aria-hidden": "true",
|
|
2131
|
+
...props,
|
|
2132
|
+
children: [
|
|
2133
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4C2.5 3.17157 3.17157 2.5 4 2.5H8H10.1373C10.53 2.5 10.9071 2.65401 11.1875 2.92897L12.168 3.89039L13.0715 4.8126C13.3462 5.09297 13.5 5.46983 13.5 5.86233V8V12C13.5 12.8284 12.8284 13.5 12 13.5H4C3.17157 13.5 2.5 12.8284 2.5 12V4Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2134
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 2.5V4.5C5.5 5.05228 5.94772 5.5 6.5 5.5H8.5C9.05228 5.5 9.5 5.05228 9.5 4.5V2.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2135
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 13.5V9.5C4.5 8.94772 4.94772 8.5 5.5 8.5H10.5C11.0523 8.5 11.5 8.94772 11.5 9.5V13.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2136
|
+
]
|
|
2137
|
+
}
|
|
2138
|
+
)
|
|
2139
|
+
);
|
|
2140
|
+
Save.displayName = "Save";
|
|
2141
|
+
var SearchUser = react.forwardRef(
|
|
2142
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2143
|
+
"svg",
|
|
2144
|
+
{
|
|
2145
|
+
ref,
|
|
2146
|
+
width: size,
|
|
2147
|
+
height: size,
|
|
2148
|
+
viewBox: "0 0 16 16",
|
|
2149
|
+
fill: "none",
|
|
2150
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2151
|
+
strokeWidth,
|
|
2152
|
+
className: ["foamicon", "foamicon-search-user", className].filter(Boolean).join(" "),
|
|
2153
|
+
"aria-hidden": "true",
|
|
2154
|
+
...props,
|
|
2155
|
+
children: [
|
|
2156
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "7", cy: "5.82275", r: "1.32275", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2157
|
+
/* @__PURE__ */ jsxRuntime.jsx("mask", { id: "mask0_6_425", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "2", y: "2", width: "10", height: "10", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7C12 8.38071 11.4404 9.63071 10.5355 10.5355C9.63071 11.4404 8.38071 12 7 12C4.23858 12 2 9.76142 2 7C2 4.23858 4.23858 2 7 2C9.76142 2 12 4.23858 12 7Z", fill: "currentColor" }) }),
|
|
2158
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { mask: "url(#mask0_6_425)", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.32031 11.9983C4.32031 10.4637 5.46533 9.14453 7 9.14453C8.53467 9.14453 9.67969 10.4637 9.67969 11.9983V12.6121C9.67969 12.6404 9.65948 12.6641 9.63139 12.6674C9.38033 12.697 8.19017 12.8291 7 12.8291C5.80983 12.8291 4.61967 12.697 4.36861 12.6674C4.34052 12.6641 4.32031 12.6404 4.32031 12.6121V11.9983Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
2159
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 14L10.5355 10.5355M10.5355 10.5355C11.4404 9.63071 12 8.38071 12 7C12 4.23858 9.76142 2 7 2C4.23858 2 2 4.23858 2 7C2 9.76142 4.23858 12 7 12C8.38071 12 9.63071 11.4404 10.5355 10.5355Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2160
|
+
]
|
|
2161
|
+
}
|
|
2162
|
+
)
|
|
2163
|
+
);
|
|
2164
|
+
SearchUser.displayName = "SearchUser";
|
|
2165
|
+
var Search = react.forwardRef(
|
|
2166
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2167
|
+
"svg",
|
|
2168
|
+
{
|
|
2169
|
+
ref,
|
|
2170
|
+
width: size,
|
|
2171
|
+
height: size,
|
|
2172
|
+
viewBox: "0 0 16 16",
|
|
2173
|
+
fill: "none",
|
|
2174
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2175
|
+
strokeWidth,
|
|
2176
|
+
className: ["foamicon", "foamicon-search", className].filter(Boolean).join(" "),
|
|
2177
|
+
"aria-hidden": "true",
|
|
2178
|
+
...props,
|
|
2179
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 14L10.5355 10.5355M10.5355 10.5355C11.4404 9.63071 12 8.38071 12 7C12 4.23858 9.76142 2 7 2C4.23858 2 2 4.23858 2 7C2 9.76142 4.23858 12 7 12C8.38071 12 9.63071 11.4404 10.5355 10.5355Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2180
|
+
}
|
|
2181
|
+
)
|
|
2182
|
+
);
|
|
2183
|
+
Search.displayName = "Search";
|
|
2184
|
+
var Share = react.forwardRef(
|
|
2185
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2186
|
+
"svg",
|
|
2187
|
+
{
|
|
2188
|
+
ref,
|
|
2189
|
+
width: size,
|
|
2190
|
+
height: size,
|
|
2191
|
+
viewBox: "0 0 16 16",
|
|
2192
|
+
fill: "none",
|
|
2193
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2194
|
+
strokeWidth,
|
|
2195
|
+
className: ["foamicon", "foamicon-share", className].filter(Boolean).join(" "),
|
|
2196
|
+
"aria-hidden": "true",
|
|
2197
|
+
...props,
|
|
2198
|
+
children: [
|
|
2199
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.3335 4.66667L7.64661 2.35355C7.84187 2.15829 8.15845 2.15829 8.35372 2.35355L10.6668 4.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2200
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00024 2.66675L8.00024 9.66675", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2201
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 6.27271V12.2936C13 13.0185 12.4813 13.6379 11.7625 13.7318C10.8014 13.8573 9.40072 14 8 14C6.59928 14 5.19855 13.8573 4.23755 13.7318C3.51872 13.6379 3 13.0185 3 12.2936V6.27271", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2202
|
+
]
|
|
2203
|
+
}
|
|
2204
|
+
)
|
|
2205
|
+
);
|
|
2206
|
+
Share.displayName = "Share";
|
|
2207
|
+
var SlidersHorizontal = react.forwardRef(
|
|
2208
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2209
|
+
"svg",
|
|
2210
|
+
{
|
|
2211
|
+
ref,
|
|
2212
|
+
width: size,
|
|
2213
|
+
height: size,
|
|
2214
|
+
viewBox: "0 0 16 16",
|
|
2215
|
+
fill: "none",
|
|
2216
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2217
|
+
strokeWidth,
|
|
2218
|
+
className: ["foamicon", "foamicon-sliders-horizontal", className].filter(Boolean).join(" "),
|
|
2219
|
+
"aria-hidden": "true",
|
|
2220
|
+
...props,
|
|
2221
|
+
children: [
|
|
2222
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 5H8.5M13.5 5H11.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2223
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 12H4.5M13.5 12H7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2224
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "10", cy: "5", r: "1.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2225
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6", cy: "12", r: "1.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2226
|
+
]
|
|
2227
|
+
}
|
|
2228
|
+
)
|
|
2229
|
+
);
|
|
2230
|
+
SlidersHorizontal.displayName = "SlidersHorizontal";
|
|
2231
|
+
var Sparkles = react.forwardRef(
|
|
2232
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2233
|
+
"svg",
|
|
2234
|
+
{
|
|
2235
|
+
ref,
|
|
2236
|
+
width: size,
|
|
2237
|
+
height: size,
|
|
2238
|
+
viewBox: "0 0 16 16",
|
|
2239
|
+
fill: "none",
|
|
2240
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2241
|
+
strokeWidth,
|
|
2242
|
+
className: ["foamicon", "foamicon-sparkles", className].filter(Boolean).join(" "),
|
|
2243
|
+
"aria-hidden": "true",
|
|
2244
|
+
...props,
|
|
2245
|
+
children: [
|
|
2246
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.9384 6.70777C12.5484 6.42112 11.4686 5.3319 11.1814 3.94452C11.1699 3.87574 11.1125 3.82983 11.032 3.82983C10.9631 3.82983 10.9057 3.87566 10.8827 3.94452C10.5955 5.33192 9.50417 6.42112 8.12565 6.70777C8.05674 6.7192 8.01074 6.77655 8.01074 6.85684C8.01074 6.92563 8.05666 6.98297 8.12565 7.00592C9.51568 7.29257 10.5955 8.38179 10.8827 9.7577C10.8941 9.82648 10.9516 9.87239 11.032 9.87239C11.1009 9.87239 11.1584 9.82656 11.1814 9.7577C11.4686 8.37031 12.5599 7.29257 13.9384 7.00592C14.0073 6.99449 14.0533 6.93714 14.0533 6.85684C14.0533 6.77655 14.0074 6.7192 13.9384 6.70777Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2247
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.92679 11.0555C6.9038 10.8451 6.1023 10.0454 5.89135 9.01436C5.88083 8.96173 5.8386 8.93018 5.78586 8.93018C5.73311 8.93018 5.69096 8.96173 5.68036 9.01436C5.46946 10.0454 4.66788 10.8451 3.64493 11.0555C3.59218 11.066 3.56055 11.1081 3.56055 11.1607C3.56055 11.2134 3.59218 11.2554 3.64493 11.266C4.66792 11.4764 5.46942 12.2761 5.68036 13.2966C5.69088 13.3492 5.73311 13.3808 5.78586 13.3808C5.8386 13.3808 5.88076 13.3492 5.89135 13.2966C6.10226 12.276 6.90383 11.4764 7.92679 11.266C7.97954 11.2555 8.01117 11.2134 8.01117 11.1607C8.01117 11.1081 7.97954 11.0661 7.92679 11.0555Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2248
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.15666 6.57225C4.17352 6.62263 4.21562 6.65625 4.26611 6.65625C4.31661 6.65625 4.36711 6.62269 4.37556 6.57225C4.55237 5.8249 5.15839 5.22866 5.8992 5.05235C5.94969 5.03554 5.9834 4.99354 5.9834 4.94316C5.9834 4.89279 5.94975 4.84241 5.8992 4.83398C5.14162 4.64924 4.55231 4.06143 4.37556 3.30568C4.36717 3.2553 4.31661 3.22168 4.26611 3.22168C4.21562 3.22168 4.16512 3.25524 4.15666 3.30568C3.97147 4.0614 3.39062 4.64927 2.63303 4.83398C2.58253 4.85079 2.54883 4.89279 2.54883 4.94316C2.54883 4.99354 2.58247 5.04391 2.63303 5.05235C3.37382 5.22866 3.97146 5.8249 4.15666 6.57225Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2249
|
+
]
|
|
2250
|
+
}
|
|
2251
|
+
)
|
|
2252
|
+
);
|
|
2253
|
+
Sparkles.displayName = "Sparkles";
|
|
2254
|
+
var SquarePen = react.forwardRef(
|
|
2255
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2256
|
+
"svg",
|
|
2257
|
+
{
|
|
2258
|
+
ref,
|
|
2259
|
+
width: size,
|
|
2260
|
+
height: size,
|
|
2261
|
+
viewBox: "0 0 16 16",
|
|
2262
|
+
fill: "none",
|
|
2263
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2264
|
+
strokeWidth,
|
|
2265
|
+
className: ["foamicon", "foamicon-square-pen", className].filter(Boolean).join(" "),
|
|
2266
|
+
"aria-hidden": "true",
|
|
2267
|
+
...props,
|
|
2268
|
+
children: [
|
|
2269
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 2H4C2.89543 2 2 2.89543 2 4V12C2 13.1046 2.89543 14 4 14H12C13.1046 14 14 13.1046 14 12V8", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2270
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 10.9V9.54142C5.5 9.5149 5.51054 9.48946 5.52929 9.47071L11.9293 3.07071C11.9683 3.03166 12.0317 3.03166 12.0707 3.07071L13.4293 4.42929C13.4683 4.46834 13.4683 4.53166 13.4293 4.57071L7.02929 10.9707C7.01054 10.9895 6.9851 11 6.95858 11H5.6C5.54477 11 5.5 10.9552 5.5 10.9Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2271
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 5L11.5 6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2272
|
+
]
|
|
2273
|
+
}
|
|
2274
|
+
)
|
|
2275
|
+
);
|
|
2276
|
+
SquarePen.displayName = "SquarePen";
|
|
2277
|
+
var Square = react.forwardRef(
|
|
2278
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2279
|
+
"svg",
|
|
2280
|
+
{
|
|
2281
|
+
ref,
|
|
2282
|
+
width: size,
|
|
2283
|
+
height: size,
|
|
2284
|
+
viewBox: "0 0 16 16",
|
|
2285
|
+
fill: "none",
|
|
2286
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2287
|
+
strokeWidth,
|
|
2288
|
+
className: ["foamicon", "foamicon-square", className].filter(Boolean).join(" "),
|
|
2289
|
+
"aria-hidden": "true",
|
|
2290
|
+
...props,
|
|
2291
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4.02087C2.5 3.2021 3.15565 2.53499 3.97435 2.52549C5.02654 2.51329 6.51327 2.5 8 2.5C9.48673 2.5 10.9735 2.51329 12.0256 2.52549C12.8444 2.53499 13.5 3.2021 13.5 4.02087V11.9791C13.5 12.7979 12.8444 13.465 12.0256 13.4745C10.9735 13.4867 9.48673 13.5 8 13.5C6.51327 13.5 5.02654 13.4867 3.97435 13.4745C3.15565 13.465 2.5 12.7979 2.5 11.9791V4.02087Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2292
|
+
}
|
|
2293
|
+
)
|
|
2294
|
+
);
|
|
2295
|
+
Square.displayName = "Square";
|
|
2296
|
+
var Star = react.forwardRef(
|
|
2297
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2298
|
+
"svg",
|
|
2299
|
+
{
|
|
2300
|
+
ref,
|
|
2301
|
+
width: size,
|
|
2302
|
+
height: size,
|
|
2303
|
+
viewBox: "0 0 16 16",
|
|
2304
|
+
fill: "none",
|
|
2305
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2306
|
+
strokeWidth,
|
|
2307
|
+
className: ["foamicon", "foamicon-star", className].filter(Boolean).join(" "),
|
|
2308
|
+
"aria-hidden": "true",
|
|
2309
|
+
...props,
|
|
2310
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.55165 2.56823C7.73506 2.19664 8.26494 2.19664 8.44835 2.56823L9.94378 5.59779C10.0165 5.74521 10.1571 5.84744 10.3198 5.87122L13.6648 6.36014C14.0747 6.42006 14.2381 6.92398 13.9413 7.21306L11.5217 9.56975C11.4038 9.68462 11.35 9.85019 11.3778 10.0125L11.9487 13.3412C12.0188 13.7497 11.59 14.0612 11.2232 13.8683L8.23273 12.2956C8.08703 12.219 7.91297 12.219 7.76727 12.2956L4.77682 13.8683C4.41 14.0612 3.98123 13.7497 4.05129 13.3412L4.62221 10.0125C4.65004 9.85019 4.59621 9.68462 4.47827 9.56975L2.05867 7.21306C1.76188 6.92398 1.92527 6.42006 2.33523 6.36014L5.68018 5.87122C5.84286 5.84744 5.98345 5.74521 6.05622 5.59779L7.55165 2.56823Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2311
|
+
}
|
|
2312
|
+
)
|
|
2313
|
+
);
|
|
2314
|
+
Star.displayName = "Star";
|
|
2315
|
+
var Sun = react.forwardRef(
|
|
2316
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2317
|
+
"svg",
|
|
2318
|
+
{
|
|
2319
|
+
ref,
|
|
2320
|
+
width: size,
|
|
2321
|
+
height: size,
|
|
2322
|
+
viewBox: "0 0 16 16",
|
|
2323
|
+
fill: "none",
|
|
2324
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2325
|
+
strokeWidth,
|
|
2326
|
+
className: ["foamicon", "foamicon-sun", className].filter(Boolean).join(" "),
|
|
2327
|
+
"aria-hidden": "true",
|
|
2328
|
+
...props,
|
|
2329
|
+
children: [
|
|
2330
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 1.5V2.5M8 13.5V14.5M11.5 11.5L12.5 12.5M3.5 3.5L4.5 4.5M1.5 8H2.5M3.5 12.5L4.5 11.5M14.5 8H13.5M12.5 3.5L11.5 4.5", stroke: "currentColor", strokeLinecap: "round" }),
|
|
2331
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "2.5", stroke: "currentColor", strokeLinecap: "round" })
|
|
2332
|
+
]
|
|
2333
|
+
}
|
|
2334
|
+
)
|
|
2335
|
+
);
|
|
2336
|
+
Sun.displayName = "Sun";
|
|
2337
|
+
var TextAlignCenter = react.forwardRef(
|
|
2338
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2339
|
+
"svg",
|
|
2340
|
+
{
|
|
2341
|
+
ref,
|
|
2342
|
+
width: size,
|
|
2343
|
+
height: size,
|
|
2344
|
+
viewBox: "0 0 16 16",
|
|
2345
|
+
fill: "none",
|
|
2346
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2347
|
+
strokeWidth,
|
|
2348
|
+
className: ["foamicon", "foamicon-text-align-center", className].filter(Boolean).join(" "),
|
|
2349
|
+
"aria-hidden": "true",
|
|
2350
|
+
...props,
|
|
2351
|
+
children: [
|
|
2352
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2353
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 4H12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2354
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2355
|
+
]
|
|
2356
|
+
}
|
|
2357
|
+
)
|
|
2358
|
+
);
|
|
2359
|
+
TextAlignCenter.displayName = "TextAlignCenter";
|
|
2360
|
+
var TextAlignEnd = react.forwardRef(
|
|
2361
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2362
|
+
"svg",
|
|
2363
|
+
{
|
|
2364
|
+
ref,
|
|
2365
|
+
width: size,
|
|
2366
|
+
height: size,
|
|
2367
|
+
viewBox: "0 0 16 16",
|
|
2368
|
+
fill: "none",
|
|
2369
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2370
|
+
strokeWidth,
|
|
2371
|
+
className: ["foamicon", "foamicon-text-align-end", className].filter(Boolean).join(" "),
|
|
2372
|
+
"aria-hidden": "true",
|
|
2373
|
+
...props,
|
|
2374
|
+
children: [
|
|
2375
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2376
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 4H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2377
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 12H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2378
|
+
]
|
|
2379
|
+
}
|
|
2380
|
+
)
|
|
2381
|
+
);
|
|
2382
|
+
TextAlignEnd.displayName = "TextAlignEnd";
|
|
2383
|
+
var TextAlignJustify = react.forwardRef(
|
|
2384
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2385
|
+
"svg",
|
|
2386
|
+
{
|
|
2387
|
+
ref,
|
|
2388
|
+
width: size,
|
|
2389
|
+
height: size,
|
|
2390
|
+
viewBox: "0 0 16 16",
|
|
2391
|
+
fill: "none",
|
|
2392
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2393
|
+
strokeWidth,
|
|
2394
|
+
className: ["foamicon", "foamicon-text-align-justify", className].filter(Boolean).join(" "),
|
|
2395
|
+
"aria-hidden": "true",
|
|
2396
|
+
...props,
|
|
2397
|
+
children: [
|
|
2398
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2399
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2400
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 12H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2401
|
+
]
|
|
2402
|
+
}
|
|
2403
|
+
)
|
|
2404
|
+
);
|
|
2405
|
+
TextAlignJustify.displayName = "TextAlignJustify";
|
|
2406
|
+
var TextAlignStart = react.forwardRef(
|
|
2407
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2408
|
+
"svg",
|
|
2409
|
+
{
|
|
2410
|
+
ref,
|
|
2411
|
+
width: size,
|
|
2412
|
+
height: size,
|
|
2413
|
+
viewBox: "0 0 16 16",
|
|
2414
|
+
fill: "none",
|
|
2415
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2416
|
+
strokeWidth,
|
|
2417
|
+
className: ["foamicon", "foamicon-text-align-start", className].filter(Boolean).join(" "),
|
|
2418
|
+
"aria-hidden": "true",
|
|
2419
|
+
...props,
|
|
2420
|
+
children: [
|
|
2421
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H14", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2422
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4H11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2423
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 12H8", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2424
|
+
]
|
|
2425
|
+
}
|
|
2426
|
+
)
|
|
2427
|
+
);
|
|
2428
|
+
TextAlignStart.displayName = "TextAlignStart";
|
|
2429
|
+
var ThumbsDown = react.forwardRef(
|
|
2430
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2431
|
+
"svg",
|
|
2432
|
+
{
|
|
2433
|
+
ref,
|
|
2434
|
+
width: size,
|
|
2435
|
+
height: size,
|
|
2436
|
+
viewBox: "0 0 16 16",
|
|
2437
|
+
fill: "none",
|
|
2438
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2439
|
+
strokeWidth,
|
|
2440
|
+
className: ["foamicon", "foamicon-thumbs-down", className].filter(Boolean).join(" "),
|
|
2441
|
+
"aria-hidden": "true",
|
|
2442
|
+
...props,
|
|
2443
|
+
children: [
|
|
2444
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.79033 9.67211L3.82714 9.67211L6.47534 9.67211C6.64082 9.67211 6.75113 9.8009 6.75113 9.94791L6.75113 12.4306C6.75113 13.5524 7.92809 13.6076 8.49815 13.5708C8.66363 13.5524 8.77395 13.4236 8.75561 13.2582C8.59013 10.0399 10.2085 9.01007 11.0544 8.69744C11.3486 8.58699 11.5326 8.31118 11.5326 7.99859L11.5326 3.97117C11.5326 2.49994 10.0613 2.49994 10.0613 2.49994L4.91213 2.49994C4.17659 2.49994 3.44089 3.05167 3.56969 3.56656C3.60651 3.7137 3.56969 3.86083 3.51453 3.9895L3.29389 4.39408C3.20191 4.57803 3.18357 4.78033 3.29389 4.96413C3.38587 5.14809 3.38587 5.36871 3.27555 5.55268L2.98128 6.03079C2.8893 6.15958 2.87096 6.32506 2.90777 6.47218L3.01809 6.96874C3.07325 7.17104 2.99975 7.37332 2.87095 7.52048L2.687 7.70443C2.59503 7.79641 2.53987 7.92507 2.52152 8.05387C2.3191 9.41467 3.60649 9.6353 3.79033 9.67211Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2445
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1621 8.57837L13.403 8.57837C13.7627 8.57837 14.0326 8.29968 14.0326 7.96874L14.0326 3.10963C14.0326 2.76134 13.7448 2.5 13.403 2.5L12.1621 2.5C11.8024 2.5 11.5326 2.77869 11.5326 3.10963L11.5326 7.96874C11.5326 8.29956 11.8203 8.57837 12.1621 8.57837Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2446
|
+
]
|
|
2447
|
+
}
|
|
2448
|
+
)
|
|
2449
|
+
);
|
|
2450
|
+
ThumbsDown.displayName = "ThumbsDown";
|
|
2451
|
+
var ThumbsUp = react.forwardRef(
|
|
2452
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2453
|
+
"svg",
|
|
2454
|
+
{
|
|
2455
|
+
ref,
|
|
2456
|
+
width: size,
|
|
2457
|
+
height: size,
|
|
2458
|
+
viewBox: "0 0 16 16",
|
|
2459
|
+
fill: "none",
|
|
2460
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2461
|
+
strokeWidth,
|
|
2462
|
+
className: ["foamicon", "foamicon-thumbs-up", className].filter(Boolean).join(" "),
|
|
2463
|
+
"aria-hidden": "true",
|
|
2464
|
+
...props,
|
|
2465
|
+
children: [
|
|
2466
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7422 6.40626L12.7054 6.40626L10.0572 6.40626C9.89175 6.40626 9.78143 6.27747 9.78143 6.13046L9.78143 3.64775C9.78143 2.52596 8.60447 2.47079 8.03441 2.5076C7.86893 2.52594 7.75861 2.65473 7.77696 2.82021C7.94244 6.03846 6.32408 7.0683 5.47821 7.38093C5.18394 7.49138 5 7.76719 5 8.07979L5 12.1072C5 13.5784 6.47123 13.5784 6.47123 13.5784L11.6204 13.5784C12.356 13.5784 13.0917 13.0267 12.9629 12.5118C12.9261 12.3647 12.9629 12.2175 13.018 12.0889L13.2387 11.6843C13.3306 11.5003 13.349 11.298 13.2387 11.1142C13.1467 10.9303 13.1467 10.7097 13.257 10.5257L13.5513 10.0476C13.6433 9.91879 13.6616 9.75331 13.6248 9.60619L13.5145 9.10963C13.4593 8.90733 13.5328 8.70505 13.6616 8.55789L13.8456 8.37394C13.9375 8.28197 13.9927 8.1533 14.011 8.0245C14.2135 6.6637 12.9261 6.44307 12.7422 6.40626Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2467
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.37048 7.5L3.12952 7.5C2.76986 7.5 2.5 7.77869 2.5 8.10963L2.5 12.9687C2.5 13.317 2.78778 13.5784 3.12952 13.5784L4.37048 13.5784C4.73014 13.5784 5 13.2997 5 12.9687L5 8.10963C5 7.77882 4.71222 7.5 4.37048 7.5Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2468
|
+
]
|
|
2469
|
+
}
|
|
2470
|
+
)
|
|
2471
|
+
);
|
|
2472
|
+
ThumbsUp.displayName = "ThumbsUp";
|
|
2473
|
+
var Trash = react.forwardRef(
|
|
2474
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2475
|
+
"svg",
|
|
2476
|
+
{
|
|
2477
|
+
ref,
|
|
2478
|
+
width: size,
|
|
2479
|
+
height: size,
|
|
2480
|
+
viewBox: "0 0 16 16",
|
|
2481
|
+
fill: "none",
|
|
2482
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2483
|
+
strokeWidth,
|
|
2484
|
+
className: ["foamicon", "foamicon-trash", className].filter(Boolean).join(" "),
|
|
2485
|
+
"aria-hidden": "true",
|
|
2486
|
+
...props,
|
|
2487
|
+
children: [
|
|
2488
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4H13.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2489
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.27586 4L3.90367 13.1032C3.95791 13.8897 4.61174 14.5 5.40011 14.5H10.5999C11.3883 14.5 12.0421 13.8897 12.0963 13.1032L12.7241 4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2490
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 4V3.5C10.5 2.39543 9.60457 1.5 8.5 1.5H7.5C6.39543 1.5 5.5 2.39543 5.5 3.5V4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2491
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 12L10 6M6.5 12L6 6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2492
|
+
]
|
|
2493
|
+
}
|
|
2494
|
+
)
|
|
2495
|
+
);
|
|
2496
|
+
Trash.displayName = "Trash";
|
|
2497
|
+
var TrendingDown = react.forwardRef(
|
|
2498
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2499
|
+
"svg",
|
|
2500
|
+
{
|
|
2501
|
+
ref,
|
|
2502
|
+
width: size,
|
|
2503
|
+
height: size,
|
|
2504
|
+
viewBox: "0 0 16 16",
|
|
2505
|
+
fill: "none",
|
|
2506
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2507
|
+
strokeWidth,
|
|
2508
|
+
className: ["foamicon", "foamicon-trending-down", className].filter(Boolean).join(" "),
|
|
2509
|
+
"aria-hidden": "true",
|
|
2510
|
+
...props,
|
|
2511
|
+
children: [
|
|
2512
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 8V11.15C14 11.2052 13.9552 11.25 13.9 11.25H10.75", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2513
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.25 4.5L6.17929 8.42929C6.21834 8.46834 6.28166 8.46834 6.32071 8.42929L8.67929 6.07071C8.71834 6.03166 8.78166 6.03166 8.82071 6.07071L13.75 11", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2514
|
+
]
|
|
2515
|
+
}
|
|
2516
|
+
)
|
|
2517
|
+
);
|
|
2518
|
+
TrendingDown.displayName = "TrendingDown";
|
|
2519
|
+
var TrendingUp = react.forwardRef(
|
|
2520
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2521
|
+
"svg",
|
|
2522
|
+
{
|
|
2523
|
+
ref,
|
|
2524
|
+
width: size,
|
|
2525
|
+
height: size,
|
|
2526
|
+
viewBox: "0 0 16 16",
|
|
2527
|
+
fill: "none",
|
|
2528
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2529
|
+
strokeWidth,
|
|
2530
|
+
className: ["foamicon", "foamicon-trending-up", className].filter(Boolean).join(" "),
|
|
2531
|
+
"aria-hidden": "true",
|
|
2532
|
+
...props,
|
|
2533
|
+
children: [
|
|
2534
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 7.75V4.6C14 4.54477 13.9552 4.5 13.9 4.5H10.75", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2535
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.25 11.25L6.17929 7.32071C6.21834 7.28166 6.28166 7.28166 6.32071 7.32071L8.67929 9.67929C8.71834 9.71834 8.78166 9.71834 8.82071 9.67929L13.75 4.75", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2536
|
+
]
|
|
2537
|
+
}
|
|
2538
|
+
)
|
|
2539
|
+
);
|
|
2540
|
+
TrendingUp.displayName = "TrendingUp";
|
|
2541
|
+
var TriangleDownUp = react.forwardRef(
|
|
2542
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2543
|
+
"svg",
|
|
2544
|
+
{
|
|
2545
|
+
ref,
|
|
2546
|
+
width: size,
|
|
2547
|
+
height: size,
|
|
2548
|
+
viewBox: "0 0 16 16",
|
|
2549
|
+
fill: "none",
|
|
2550
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2551
|
+
strokeWidth,
|
|
2552
|
+
className: ["foamicon", "foamicon-triangle-down-up", className].filter(Boolean).join(" "),
|
|
2553
|
+
"aria-hidden": "true",
|
|
2554
|
+
...props,
|
|
2555
|
+
children: [
|
|
2556
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.78787 4.21213L5.51213 6.48787C5.32314 6.67686 5.45699 7 5.72426 7H10.2757C10.543 7 10.6769 6.67686 10.4879 6.48787L8.21213 4.21213C8.09497 4.09497 7.90503 4.09497 7.78787 4.21213Z", fill: "currentColor" }),
|
|
2557
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.21213 11.7879L10.4879 9.51213C10.6769 9.32314 10.543 9 10.2757 9L5.72426 9C5.45699 9 5.32314 9.32314 5.51213 9.51213L7.78787 11.7879C7.90503 11.905 8.09497 11.905 8.21213 11.7879Z", fill: "currentColor" })
|
|
2558
|
+
]
|
|
2559
|
+
}
|
|
2560
|
+
)
|
|
2561
|
+
);
|
|
2562
|
+
TriangleDownUp.displayName = "TriangleDownUp";
|
|
2563
|
+
var Unlink = react.forwardRef(
|
|
2564
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2565
|
+
"svg",
|
|
2566
|
+
{
|
|
2567
|
+
ref,
|
|
2568
|
+
width: size,
|
|
2569
|
+
height: size,
|
|
2570
|
+
viewBox: "0 0 16 16",
|
|
2571
|
+
fill: "none",
|
|
2572
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2573
|
+
strokeWidth,
|
|
2574
|
+
className: ["foamicon", "foamicon-unlink", className].filter(Boolean).join(" "),
|
|
2575
|
+
"aria-hidden": "true",
|
|
2576
|
+
...props,
|
|
2577
|
+
children: [
|
|
2578
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.88 8.12988L12.7553 7.25159C13.8576 6.1455 13.856 4.35572 12.7518 3.25153C11.6463 2.14598 9.85384 2.146 8.74831 3.25156L7.88001 4.11988M8.12 11.8799L7.24996 12.75C6.14538 13.8546 4.35448 13.8546 3.24989 12.75C2.1453 11.6454 2.14531 9.85452 3.24991 8.74994L4.12 7.87987", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2579
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.84372 6.15601L5.84372 10.156", stroke: "currentColor", strokeLinecap: "round" }),
|
|
2580
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 14V12", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2581
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 10L14 10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2582
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 2L6 4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2583
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6L2 6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2584
|
+
]
|
|
2585
|
+
}
|
|
2586
|
+
)
|
|
2587
|
+
);
|
|
2588
|
+
Unlink.displayName = "Unlink";
|
|
2589
|
+
var Unlock = react.forwardRef(
|
|
2590
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2591
|
+
"svg",
|
|
2592
|
+
{
|
|
2593
|
+
ref,
|
|
2594
|
+
width: size,
|
|
2595
|
+
height: size,
|
|
2596
|
+
viewBox: "0 0 16 16",
|
|
2597
|
+
fill: "none",
|
|
2598
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2599
|
+
strokeWidth,
|
|
2600
|
+
className: ["foamicon", "foamicon-unlock", className].filter(Boolean).join(" "),
|
|
2601
|
+
"aria-hidden": "true",
|
|
2602
|
+
...props,
|
|
2603
|
+
children: [
|
|
2604
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.4151 5.33013L9.16509 3.16506C8.47473 1.96933 6.94576 1.55964 5.75002 2.25C4.55429 2.94036 4.1446 4.46933 4.83496 5.66506L5.89436 7.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2605
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "11", r: "1", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2606
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9.13937C3 8.38417 3.56081 7.74849 4.31298 7.68089C5.271 7.59479 6.6355 7.5 8 7.5C9.3645 7.5 10.729 7.59479 11.687 7.68089C12.4392 7.74849 13 8.38417 13 9.13937V12.8606C13 13.6158 12.4392 14.2515 11.687 14.3191C10.729 14.4052 9.3645 14.5 8 14.5C6.6355 14.5 5.271 14.4052 4.31298 14.3191C3.56081 14.2515 3 13.6158 3 12.8606V9.13937Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2607
|
+
]
|
|
2608
|
+
}
|
|
2609
|
+
)
|
|
2610
|
+
);
|
|
2611
|
+
Unlock.displayName = "Unlock";
|
|
2612
|
+
var Upload = react.forwardRef(
|
|
2613
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2614
|
+
"svg",
|
|
2615
|
+
{
|
|
2616
|
+
ref,
|
|
2617
|
+
width: size,
|
|
2618
|
+
height: size,
|
|
2619
|
+
viewBox: "0 0 16 16",
|
|
2620
|
+
fill: "none",
|
|
2621
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2622
|
+
strokeWidth,
|
|
2623
|
+
className: ["foamicon", "foamicon-upload", className].filter(Boolean).join(" "),
|
|
2624
|
+
"aria-hidden": "true",
|
|
2625
|
+
...props,
|
|
2626
|
+
children: [
|
|
2627
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.3335 6.66667L7.64661 3.35355C7.84187 3.15829 8.15845 3.15829 8.35372 3.35355L11.6668 6.66667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2628
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00025 3.66675L8.00024 10.6667", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2629
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 11.2727V12.2556C14 12.9972 13.4577 13.6257 12.7208 13.709C11.5676 13.8393 9.78381 14 8 14C6.21619 14 4.43238 13.8393 3.27924 13.709C2.54228 13.6257 2 12.9972 2 12.2556V11.2727", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2630
|
+
]
|
|
2631
|
+
}
|
|
2632
|
+
)
|
|
2633
|
+
);
|
|
2634
|
+
Upload.displayName = "Upload";
|
|
2635
|
+
var User = react.forwardRef(
|
|
2636
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2637
|
+
"svg",
|
|
2638
|
+
{
|
|
2639
|
+
ref,
|
|
2640
|
+
width: size,
|
|
2641
|
+
height: size,
|
|
2642
|
+
viewBox: "0 0 16 16",
|
|
2643
|
+
fill: "none",
|
|
2644
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2645
|
+
strokeWidth,
|
|
2646
|
+
className: ["foamicon", "foamicon-user", className].filter(Boolean).join(" "),
|
|
2647
|
+
"aria-hidden": "true",
|
|
2648
|
+
...props,
|
|
2649
|
+
children: [
|
|
2650
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "4.5", r: "2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2651
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12.7599C4 10.4691 5.70919 8.5 8 8.5C10.2908 8.5 12 10.4691 12 12.7599V13.6761C12 13.7183 11.9698 13.7537 11.9279 13.7587C11.5531 13.8027 9.77657 14 8 14C6.22343 14 4.44685 13.8027 4.07209 13.7587C4.03017 13.7537 4 13.7183 4 13.6761V12.7599Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2652
|
+
]
|
|
2653
|
+
}
|
|
2654
|
+
)
|
|
2655
|
+
);
|
|
2656
|
+
User.displayName = "User";
|
|
2657
|
+
var Users = react.forwardRef(
|
|
2658
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2659
|
+
"svg",
|
|
2660
|
+
{
|
|
2661
|
+
ref,
|
|
2662
|
+
width: size,
|
|
2663
|
+
height: size,
|
|
2664
|
+
viewBox: "0 0 16 16",
|
|
2665
|
+
fill: "none",
|
|
2666
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2667
|
+
strokeWidth,
|
|
2668
|
+
className: ["foamicon", "foamicon-users", className].filter(Boolean).join(" "),
|
|
2669
|
+
"aria-hidden": "true",
|
|
2670
|
+
...props,
|
|
2671
|
+
children: [
|
|
2672
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "5.67676", cy: "4.52344", r: "1.72656", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2673
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11.2344", cy: "4.92725", r: "1.32275", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2674
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.38285 11.8491C9.8863 11.8912 10.5603 11.9336 11.2344 11.9336C12.4245 11.9336 13.6147 11.8014 13.8658 11.7719C13.8939 11.7686 13.9141 11.7449 13.9141 11.7166V11.1028C13.9141 9.56816 12.769 8.24902 11.2344 8.24902C11.0021 8.24902 10.7919 8.26032 10.6031 8.27901C9.70685 8.36768 9.03758 9.01992 8.55469 9.78013", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2675
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.08594 12.0742C2.08594 10.0177 3.62032 8.25 5.67685 8.25C7.73337 8.25 9.26776 10.0177 9.26776 12.0742V12.8967C9.26776 12.9346 9.24067 12.9664 9.20304 12.9708C8.8666 13.0104 7.27172 13.1875 5.67685 13.1875C4.08197 13.1875 2.48709 13.0104 2.15066 12.9708C2.11302 12.9664 2.08594 12.9346 2.08594 12.8967V12.0742Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2676
|
+
]
|
|
2677
|
+
}
|
|
2678
|
+
)
|
|
2679
|
+
);
|
|
2680
|
+
Users.displayName = "Users";
|
|
2681
|
+
var Volume2 = react.forwardRef(
|
|
2682
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2683
|
+
"svg",
|
|
2684
|
+
{
|
|
2685
|
+
ref,
|
|
2686
|
+
width: size,
|
|
2687
|
+
height: size,
|
|
2688
|
+
viewBox: "0 0 16 16",
|
|
2689
|
+
fill: "none",
|
|
2690
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2691
|
+
strokeWidth,
|
|
2692
|
+
className: ["foamicon", "foamicon-volume2", className].filter(Boolean).join(" "),
|
|
2693
|
+
"aria-hidden": "true",
|
|
2694
|
+
...props,
|
|
2695
|
+
children: [
|
|
2696
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.55016 5.86327C2.64817 5.61521 2.90004 5.5 3.16676 5.5H4.92157C5.45201 5.5 5.96071 5.28929 6.33579 4.91421L7.5547 3.6953C7.90686 3.34314 8.54843 3.67408 8.48716 4.16833C8.36659 5.14105 8.25 6.47568 8.25 8C8.25 9.52432 8.36659 10.859 8.48716 11.8317C8.54843 12.3259 7.90686 12.6569 7.5547 12.3047L6.33579 11.0858C5.96071 10.7107 5.45201 10.5 4.92157 10.5H3.16676C2.90004 10.5 2.64817 10.3848 2.55016 10.1367C2.41091 9.78429 2.25 9.13211 2.25 8C2.25 6.86789 2.41091 6.21571 2.55016 5.86327Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2697
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.75 3.52783C11.8271 3.59687 11.9025 3.66787 11.9759 3.74075C13.0715 4.82783 13.75 6.3347 13.75 8.00004C13.75 9.66538 13.0715 11.1723 11.9759 12.2593C11.9025 12.3322 11.8271 12.4032 11.75 12.4723", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2698
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5737 5.16699C11.3004 5.89122 11.75 6.89318 11.75 8.00016C11.75 9.10714 11.3004 10.1091 10.5737 10.8333", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2699
|
+
]
|
|
2700
|
+
}
|
|
2701
|
+
)
|
|
2702
|
+
);
|
|
2703
|
+
Volume2.displayName = "Volume2";
|
|
2704
|
+
var VolumeOff = react.forwardRef(
|
|
2705
|
+
({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2706
|
+
"svg",
|
|
2707
|
+
{
|
|
2708
|
+
ref,
|
|
2709
|
+
width: size,
|
|
2710
|
+
height: size,
|
|
2711
|
+
viewBox: "0 0 16 16",
|
|
2712
|
+
fill: "none",
|
|
2713
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2714
|
+
strokeWidth,
|
|
2715
|
+
className: ["foamicon", "foamicon-volume-off", className].filter(Boolean).join(" "),
|
|
2716
|
+
"aria-hidden": "true",
|
|
2717
|
+
...props,
|
|
2718
|
+
children: [
|
|
2719
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.75 10.5L7.5547 12.3047C7.90686 12.6569 8.54843 12.3259 8.48716 11.8317C8.36659 10.859 8.25 9.52432 8.25 8M8.43639 4.60381C8.45299 4.45198 8.46999 4.30693 8.48706 4.16914C8.54831 3.67489 7.90686 3.34314 7.5547 3.6953L6.33579 4.91421C5.96071 5.28929 5.45201 5.5 4.92157 5.5H3.16676C2.90004 5.5 2.64817 5.61521 2.55016 5.86327C2.41091 6.21571 2.25 6.86789 2.25 8C2.25 9.20317 2.43174 9.86428 2.57609 10.1996C2.66438 10.4047 2.87562 10.5 3.09893 10.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2720
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.75 12.4723C11.8271 12.4033 11.9025 12.3323 11.9759 12.2594C13.0715 11.1723 13.75 9.66543 13.75 8.00009C13.75 6.47989 13.1846 5.09174 12.2527 4.03442", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2721
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5737 10.8332C11.3004 10.109 11.75 9.10706 11.75 8.00008C11.75 7.00819 11.389 6.10062 10.7912 5.40161", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
2722
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6667 2.5L2.5 13.67", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
2723
|
+
]
|
|
2724
|
+
}
|
|
2725
|
+
)
|
|
2726
|
+
);
|
|
2727
|
+
VolumeOff.displayName = "VolumeOff";
|
|
67
2728
|
|
|
68
2729
|
// src/index.ts
|
|
69
|
-
var iconNames = ["Bell", "
|
|
2730
|
+
var iconNames = ["Alert", "ArchiveArrowUp", "Archive", "ArrowDownNarrowWide", "ArrowDownUp", "ArrowDownWideNarrow", "ArrowDown", "ArrowLeft", "ArrowRightToLine", "ArrowRight", "ArrowUpAZ", "ArrowUpNarrowWide", "ArrowUpWideNarrow", "ArrowUpZA", "ArrowUp", "Ban", "Bell", "Bold", "Bookmark", "Calendar", "ChartColumnSquare", "Checkbox", "Checkmark", "ChevronDown", "ChevronLeft", "ChevronRight", "ChevronUp", "CircleAlert", "CircleDollarSign", "CircleQuestionMark", "CircleX", "Clock", "Cog", "Columns3", "Command", "ContentPlus", "Copy", "Download", "Eclipse", "ExternalLink", "EyeOff", "Eye", "Flame", "Frown", "Fullscreen", "Globe", "Grid1x2", "Grid2x2", "History", "Hotspot", "House", "Image", "Images", "Inbox", "Info", "Italic", "Link", "ListFilter", "ListIndentDecrease", "ListIndentIncrease", "ListOrdered", "List", "LoaderCircle", "Lock", "LogOut", "MailMove", "MailPlus", "Mail", "MapPin", "Maximize", "MediaKits", "MegaphoneActive", "Megaphone", "Menu", "MessageSquare", "MessagesSquare", "Minus", "Moon", "MousePointerClick", "Move", "PanelLeft", "PanelRight", "Pencil", "Pin", "Play", "Plus", "Reach", "Reel", "RefreshCw", "RemoveFormatting", "Reply", "RotateCw", "Rows2", "Save", "SearchUser", "Search", "Share", "SlidersHorizontal", "Sparkles", "SquarePen", "Square", "Star", "Sun", "TextAlignCenter", "TextAlignEnd", "TextAlignJustify", "TextAlignStart", "ThumbsDown", "ThumbsUp", "Trash", "TrendingDown", "TrendingUp", "TriangleDownUp", "Unlink", "Unlock", "Upload", "User", "Users", "Volume2", "VolumeOff"];
|
|
70
2731
|
|
|
2732
|
+
exports.Alert = Alert;
|
|
2733
|
+
exports.Archive = Archive;
|
|
2734
|
+
exports.ArchiveArrowUp = ArchiveArrowUp;
|
|
2735
|
+
exports.ArrowDown = ArrowDown;
|
|
2736
|
+
exports.ArrowDownNarrowWide = ArrowDownNarrowWide;
|
|
2737
|
+
exports.ArrowDownUp = ArrowDownUp;
|
|
2738
|
+
exports.ArrowDownWideNarrow = ArrowDownWideNarrow;
|
|
2739
|
+
exports.ArrowLeft = ArrowLeft;
|
|
2740
|
+
exports.ArrowRight = ArrowRight;
|
|
2741
|
+
exports.ArrowRightToLine = ArrowRightToLine;
|
|
2742
|
+
exports.ArrowUp = ArrowUp;
|
|
2743
|
+
exports.ArrowUpAZ = ArrowUpAZ;
|
|
2744
|
+
exports.ArrowUpNarrowWide = ArrowUpNarrowWide;
|
|
2745
|
+
exports.ArrowUpWideNarrow = ArrowUpWideNarrow;
|
|
2746
|
+
exports.ArrowUpZA = ArrowUpZA;
|
|
2747
|
+
exports.Ban = Ban;
|
|
71
2748
|
exports.Bell = Bell;
|
|
72
|
-
exports.
|
|
2749
|
+
exports.Bold = Bold;
|
|
73
2750
|
exports.Bookmark = Bookmark;
|
|
2751
|
+
exports.Calendar = Calendar;
|
|
2752
|
+
exports.ChartColumnSquare = ChartColumnSquare;
|
|
2753
|
+
exports.Checkbox = Checkbox;
|
|
2754
|
+
exports.Checkmark = Checkmark;
|
|
2755
|
+
exports.ChevronDown = ChevronDown;
|
|
2756
|
+
exports.ChevronLeft = ChevronLeft;
|
|
2757
|
+
exports.ChevronRight = ChevronRight;
|
|
2758
|
+
exports.ChevronUp = ChevronUp;
|
|
2759
|
+
exports.CircleAlert = CircleAlert;
|
|
2760
|
+
exports.CircleDollarSign = CircleDollarSign;
|
|
2761
|
+
exports.CircleQuestionMark = CircleQuestionMark;
|
|
2762
|
+
exports.CircleX = CircleX;
|
|
2763
|
+
exports.Clock = Clock;
|
|
2764
|
+
exports.Cog = Cog;
|
|
2765
|
+
exports.Columns3 = Columns3;
|
|
2766
|
+
exports.Command = Command;
|
|
2767
|
+
exports.ContentPlus = ContentPlus;
|
|
2768
|
+
exports.Copy = Copy;
|
|
2769
|
+
exports.Download = Download;
|
|
2770
|
+
exports.Eclipse = Eclipse;
|
|
2771
|
+
exports.ExternalLink = ExternalLink;
|
|
2772
|
+
exports.Eye = Eye;
|
|
2773
|
+
exports.EyeOff = EyeOff;
|
|
2774
|
+
exports.Flame = Flame;
|
|
2775
|
+
exports.Frown = Frown;
|
|
2776
|
+
exports.Fullscreen = Fullscreen;
|
|
2777
|
+
exports.Globe = Globe;
|
|
2778
|
+
exports.Grid1x2 = Grid1x2;
|
|
2779
|
+
exports.Grid2x2 = Grid2x2;
|
|
2780
|
+
exports.History = History;
|
|
2781
|
+
exports.Hotspot = Hotspot;
|
|
2782
|
+
exports.House = House;
|
|
2783
|
+
exports.Image = Image;
|
|
2784
|
+
exports.Images = Images;
|
|
2785
|
+
exports.Inbox = Inbox;
|
|
2786
|
+
exports.Info = Info;
|
|
2787
|
+
exports.Italic = Italic;
|
|
2788
|
+
exports.Link = Link;
|
|
2789
|
+
exports.List = List;
|
|
2790
|
+
exports.ListFilter = ListFilter;
|
|
2791
|
+
exports.ListIndentDecrease = ListIndentDecrease;
|
|
2792
|
+
exports.ListIndentIncrease = ListIndentIncrease;
|
|
2793
|
+
exports.ListOrdered = ListOrdered;
|
|
2794
|
+
exports.LoaderCircle = LoaderCircle;
|
|
2795
|
+
exports.Lock = Lock;
|
|
2796
|
+
exports.LogOut = LogOut;
|
|
2797
|
+
exports.Mail = Mail;
|
|
2798
|
+
exports.MailMove = MailMove;
|
|
2799
|
+
exports.MailPlus = MailPlus;
|
|
2800
|
+
exports.MapPin = MapPin;
|
|
2801
|
+
exports.Maximize = Maximize;
|
|
2802
|
+
exports.MediaKits = MediaKits;
|
|
2803
|
+
exports.Megaphone = Megaphone;
|
|
2804
|
+
exports.MegaphoneActive = MegaphoneActive;
|
|
2805
|
+
exports.Menu = Menu;
|
|
2806
|
+
exports.MessageSquare = MessageSquare;
|
|
2807
|
+
exports.MessagesSquare = MessagesSquare;
|
|
2808
|
+
exports.Minus = Minus;
|
|
2809
|
+
exports.Moon = Moon;
|
|
2810
|
+
exports.MousePointerClick = MousePointerClick;
|
|
2811
|
+
exports.Move = Move;
|
|
2812
|
+
exports.PanelLeft = PanelLeft;
|
|
2813
|
+
exports.PanelRight = PanelRight;
|
|
2814
|
+
exports.Pencil = Pencil;
|
|
2815
|
+
exports.Pin = Pin;
|
|
2816
|
+
exports.Play = Play;
|
|
2817
|
+
exports.Plus = Plus;
|
|
2818
|
+
exports.Reach = Reach;
|
|
2819
|
+
exports.Reel = Reel;
|
|
2820
|
+
exports.RefreshCw = RefreshCw;
|
|
2821
|
+
exports.RemoveFormatting = RemoveFormatting;
|
|
2822
|
+
exports.Reply = Reply;
|
|
2823
|
+
exports.RotateCw = RotateCw;
|
|
2824
|
+
exports.Rows2 = Rows2;
|
|
2825
|
+
exports.Save = Save;
|
|
2826
|
+
exports.Search = Search;
|
|
2827
|
+
exports.SearchUser = SearchUser;
|
|
2828
|
+
exports.Share = Share;
|
|
2829
|
+
exports.SlidersHorizontal = SlidersHorizontal;
|
|
2830
|
+
exports.Sparkles = Sparkles;
|
|
2831
|
+
exports.Square = Square;
|
|
2832
|
+
exports.SquarePen = SquarePen;
|
|
2833
|
+
exports.Star = Star;
|
|
2834
|
+
exports.Sun = Sun;
|
|
2835
|
+
exports.TextAlignCenter = TextAlignCenter;
|
|
2836
|
+
exports.TextAlignEnd = TextAlignEnd;
|
|
2837
|
+
exports.TextAlignJustify = TextAlignJustify;
|
|
2838
|
+
exports.TextAlignStart = TextAlignStart;
|
|
2839
|
+
exports.ThumbsDown = ThumbsDown;
|
|
2840
|
+
exports.ThumbsUp = ThumbsUp;
|
|
2841
|
+
exports.Trash = Trash;
|
|
2842
|
+
exports.TrendingDown = TrendingDown;
|
|
2843
|
+
exports.TrendingUp = TrendingUp;
|
|
2844
|
+
exports.TriangleDownUp = TriangleDownUp;
|
|
2845
|
+
exports.Unlink = Unlink;
|
|
2846
|
+
exports.Unlock = Unlock;
|
|
2847
|
+
exports.Upload = Upload;
|
|
2848
|
+
exports.User = User;
|
|
2849
|
+
exports.Users = Users;
|
|
2850
|
+
exports.Volume2 = Volume2;
|
|
2851
|
+
exports.VolumeOff = VolumeOff;
|
|
74
2852
|
exports.iconNames = iconNames;
|
|
75
2853
|
//# sourceMappingURL=index.cjs.map
|
|
76
2854
|
//# sourceMappingURL=index.cjs.map
|