foamicons 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -3,7 +3,189 @@
3
3
  var react = require('react');
4
4
  var jsxRuntime = require('react/jsx-runtime');
5
5
 
6
- // src/icons/Bell.tsx
6
+ // src/icons/AddContent.tsx
7
+ var AddContent = react.forwardRef(
8
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
9
+ "svg",
10
+ {
11
+ ref,
12
+ width: size,
13
+ height: size,
14
+ viewBox: "0 0 16 16",
15
+ fill: "none",
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ strokeWidth,
18
+ className: ["foamicon", "foamicon-add-content", className].filter(Boolean).join(" "),
19
+ "aria-hidden": "true",
20
+ ...props,
21
+ children: [
22
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "8", height: "10", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
23
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
24
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 5L10 9", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
25
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7H8", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
26
+ ]
27
+ }
28
+ )
29
+ );
30
+ AddContent.displayName = "AddContent";
31
+ var Alert = react.forwardRef(
32
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
33
+ "svg",
34
+ {
35
+ ref,
36
+ width: size,
37
+ height: size,
38
+ viewBox: "0 0 16 16",
39
+ fill: "none",
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ strokeWidth,
42
+ className: ["foamicon", "foamicon-alert", className].filter(Boolean).join(" "),
43
+ "aria-hidden": "true",
44
+ ...props,
45
+ children: [
46
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 9V11.4873", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
48
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "6.875", r: "0.5", fill: "black", stroke: "black", strokeWidth: "0.25" })
49
+ ]
50
+ }
51
+ )
52
+ );
53
+ Alert.displayName = "Alert";
54
+ var ArchiveArrowUp = 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-arrow-up", 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: "black", 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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
71
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
72
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8.66675V11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
73
+ ]
74
+ }
75
+ )
76
+ );
77
+ ArchiveArrowUp.displayName = "ArchiveArrowUp";
78
+ var Archive = react.forwardRef(
79
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
80
+ "svg",
81
+ {
82
+ ref,
83
+ width: size,
84
+ height: size,
85
+ viewBox: "0 0 16 16",
86
+ fill: "none",
87
+ xmlns: "http://www.w3.org/2000/svg",
88
+ strokeWidth,
89
+ className: ["foamicon", "foamicon-archive", className].filter(Boolean).join(" "),
90
+ "aria-hidden": "true",
91
+ ...props,
92
+ children: [
93
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
94
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
95
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 8H9.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
96
+ ]
97
+ }
98
+ )
99
+ );
100
+ Archive.displayName = "Archive";
101
+ var ArrowDown = react.forwardRef(
102
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
103
+ "svg",
104
+ {
105
+ ref,
106
+ width: size,
107
+ height: size,
108
+ viewBox: "0 0 16 16",
109
+ fill: "none",
110
+ xmlns: "http://www.w3.org/2000/svg",
111
+ strokeWidth,
112
+ className: ["foamicon", "foamicon-arrow-down", className].filter(Boolean).join(" "),
113
+ "aria-hidden": "true",
114
+ ...props,
115
+ children: [
116
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
117
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.99988 11.3333L7.99988 3", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
118
+ ]
119
+ }
120
+ )
121
+ );
122
+ ArrowDown.displayName = "ArrowDown";
123
+ var ArrowLeft = react.forwardRef(
124
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
125
+ "svg",
126
+ {
127
+ ref,
128
+ width: size,
129
+ height: size,
130
+ viewBox: "0 0 16 16",
131
+ fill: "none",
132
+ xmlns: "http://www.w3.org/2000/svg",
133
+ strokeWidth,
134
+ className: ["foamicon", "foamicon-arrow-left", className].filter(Boolean).join(" "),
135
+ "aria-hidden": "true",
136
+ ...props,
137
+ children: [
138
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
139
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.66666 8.33333H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
140
+ ]
141
+ }
142
+ )
143
+ );
144
+ ArrowLeft.displayName = "ArrowLeft";
145
+ var ArrowRight = react.forwardRef(
146
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
147
+ "svg",
148
+ {
149
+ ref,
150
+ width: size,
151
+ height: size,
152
+ viewBox: "0 0 16 16",
153
+ fill: "none",
154
+ xmlns: "http://www.w3.org/2000/svg",
155
+ strokeWidth,
156
+ className: ["foamicon", "foamicon-arrow-right", className].filter(Boolean).join(" "),
157
+ "aria-hidden": "true",
158
+ ...props,
159
+ children: [
160
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
161
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.3333 7.66667L3 7.66667", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
162
+ ]
163
+ }
164
+ )
165
+ );
166
+ ArrowRight.displayName = "ArrowRight";
167
+ var ArrowUp = react.forwardRef(
168
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
169
+ "svg",
170
+ {
171
+ ref,
172
+ width: size,
173
+ height: size,
174
+ viewBox: "0 0 16 16",
175
+ fill: "none",
176
+ xmlns: "http://www.w3.org/2000/svg",
177
+ strokeWidth,
178
+ className: ["foamicon", "foamicon-arrow-up", className].filter(Boolean).join(" "),
179
+ "aria-hidden": "true",
180
+ ...props,
181
+ children: [
182
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
183
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00012 4.66666V13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
184
+ ]
185
+ }
186
+ )
187
+ );
188
+ ArrowUp.displayName = "ArrowUp";
7
189
  var Bell = react.forwardRef(
8
190
  ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
9
191
  "svg",
@@ -18,7 +200,7 @@ var Bell = react.forwardRef(
18
200
  className: ["foamicon", "foamicon-bell", className].filter(Boolean).join(" "),
19
201
  "aria-hidden": "true",
20
202
  ...props,
21
- children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.90469 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.00012 2C5.79098 2 4.00012 3.79086 4.00012 6L3.99999 6.5C3.99999 7.77873 3.59997 8.96402 2.91825 9.93758C2.71545 10.2272 2.81997 10.647 3.15697 10.7539C4.10154 11.0536 5.08408 11.2679 6.09555 11.3878M9.90469 11.3878C9.28011 11.4619 8.6445 11.5 7.99999 11.5C7.35557 11.5 6.72004 11.4619 6.09555 11.3878M9.90469 11.3878C9.96666 11.5807 10.0001 11.7865 10.0001 12C10.0001 13.1046 9.10469 14 8.00012 14C6.89555 14 6.00012 13.1046 6.00012 12C6.00012 11.7865 6.03358 11.5808 6.09555 11.3878", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
203
+ 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.0818 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.00014 2C5.791 2 4.00014 3.79086 4.00014 6L4.00001 6.5C4.00001 7.77873 3.59999 8.96402 2.91826 9.93758C2.71547 10.2272 2.81998 10.647 3.15699 10.7539C4.10155 11.0536 5.08409 11.2679 6.09556 11.3878M9.9047 11.3878C9.28013 11.4619 8.64452 11.5 8.00001 11.5C7.35558 11.5 6.72006 11.4619 6.09556 11.3878M9.9047 11.3878C9.96667 11.5807 10.0001 11.7865 10.0001 12C10.0001 13.1046 9.10471 14 8.00014 14C6.89557 14 6.00014 13.1046 6.00014 12C6.00014 11.7865 6.0336 11.5808 6.09556 11.3878", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
22
204
  }
23
205
  )
24
206
  );
@@ -38,8 +220,8 @@ var Block = react.forwardRef(
38
220
  "aria-hidden": "true",
39
221
  ...props,
40
222
  children: [
41
- /* @__PURE__ */ jsxRuntime.jsx("g", { clipPath: "url(#clip0_1_14509)", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2426 12.2427C9.89949 14.5858 6.10051 14.5858 3.75736 12.2427C1.41421 9.89955 1.41421 6.10056 3.75736 3.75741M12.2426 12.2427C14.5858 9.89955 14.5858 6.10056 12.2426 3.75741C9.89949 1.41427 6.10051 1.41427 3.75736 3.75741M12.2426 12.2427L3.75736 3.75741", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) }),
42
- /* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", { id: "clip0_1_14509", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white" }) }) })
223
+ /* @__PURE__ */ jsxRuntime.jsx("g", { clipPath: "url(#clip0_1_392)", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2426 12.2426C9.89949 14.5858 6.10051 14.5858 3.75736 12.2426C1.41421 9.8995 1.41421 6.10051 3.75736 3.75737M12.2426 12.2426C14.5858 9.8995 14.5858 6.10051 12.2426 3.75737C9.89949 1.41422 6.10051 1.41422 3.75736 3.75737M12.2426 12.2426L3.75736 3.75737", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }) }),
224
+ /* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", { id: "clip0_1_392", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white" }) }) })
43
225
  ]
44
226
  }
45
227
  )
@@ -59,18 +241,2485 @@ var Bookmark = react.forwardRef(
59
241
  className: ["foamicon", "foamicon-bookmark", className].filter(Boolean).join(" "),
60
242
  "aria-hidden": "true",
61
243
  ...props,
62
- 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" })
244
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
63
245
  }
64
246
  )
65
247
  );
66
248
  Bookmark.displayName = "Bookmark";
249
+ var Calendar = react.forwardRef(
250
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
251
+ "svg",
252
+ {
253
+ ref,
254
+ width: size,
255
+ height: size,
256
+ viewBox: "0 0 16 16",
257
+ fill: "none",
258
+ xmlns: "http://www.w3.org/2000/svg",
259
+ strokeWidth,
260
+ className: ["foamicon", "foamicon-calendar", className].filter(Boolean).join(" "),
261
+ "aria-hidden": "true",
262
+ ...props,
263
+ children: [
264
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 3V4", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
265
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 3V4", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
266
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
267
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
268
+ ]
269
+ }
270
+ )
271
+ );
272
+ Calendar.displayName = "Calendar";
273
+ var Chat = react.forwardRef(
274
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
275
+ "svg",
276
+ {
277
+ ref,
278
+ width: size,
279
+ height: size,
280
+ viewBox: "0 0 16 16",
281
+ fill: "none",
282
+ xmlns: "http://www.w3.org/2000/svg",
283
+ strokeWidth,
284
+ className: ["foamicon", "foamicon-chat", className].filter(Boolean).join(" "),
285
+ "aria-hidden": "true",
286
+ ...props,
287
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.3335 3.16675L8.3335 2.66675H8.3335V3.16675ZM12.2651 3.36304L12.3107 2.86512L12.3107 2.86512L12.2651 3.36304ZM14.0005 5.29858H14.5005V5.29854L14.0005 5.29858ZM14.0005 9.52808L14.5005 9.52818V9.52808H14.0005ZM12.2651 11.4636L12.3107 11.9615H12.3107L12.2651 11.4636ZM8.3667 11.6589L8.36617 11.1589C8.21792 11.1591 8.07739 11.225 7.98251 11.3389L8.3667 11.6589ZM6.00049 14.4998H5.50049C5.50049 14.7103 5.63237 14.8983 5.83033 14.9699C6.0283 15.0416 6.24993 14.9815 6.38467 14.8198L6.00049 14.4998ZM6.00049 11.5828H6.50049C6.50049 11.3182 6.29445 11.0995 6.0304 11.0837L6.00049 11.5828ZM4.40186 11.4636L4.35629 11.9615L4.35629 11.9615L4.40186 11.4636ZM2.6665 9.52808H2.1665V9.52818L2.6665 9.52808ZM2.6665 5.29858L2.1665 5.29854V5.29858H2.6665ZM4.40186 3.36304L4.35629 2.86512L4.35629 2.86512L4.40186 3.36304ZM8.3335 3.16675L8.33349 3.66675C9.74535 3.66676 11.1616 3.76413 12.2196 3.86096L12.2651 3.36304L12.3107 2.86512C11.236 2.76677 9.78693 2.66676 8.3335 2.66675L8.3335 3.16675ZM12.2651 3.36304L12.2196 3.86096C12.9471 3.92755 13.5004 4.54568 13.5005 5.29863L14.0005 5.29858L14.5005 5.29854C14.5004 4.05122 13.5752 2.98086 12.3107 2.86512L12.2651 3.36304ZM14.0005 5.29858H13.5005V9.52808H14.0005H14.5005V5.29858H14.0005ZM14.0005 9.52808L13.5005 9.52797C13.5003 10.2809 12.9469 10.8991 12.2196 10.9657L12.2651 11.4636L12.3107 11.9615C13.5752 11.8458 14.5002 10.7753 14.5005 9.52818L14.0005 9.52808ZM12.2651 11.4636L12.2196 10.9657C11.1701 11.0617 9.76742 11.1574 8.36617 11.1589L8.3667 11.6589L8.36723 12.1589C9.8091 12.1574 11.244 12.0592 12.3107 11.9615L12.2651 11.4636ZM8.3667 11.6589L7.98251 11.3389L5.6163 14.1798L6.00049 14.4998L6.38467 14.8198L8.75089 11.9789L8.3667 11.6589ZM6.00049 14.4998H6.50049V11.5828H6.00049H5.50049V14.4998H6.00049ZM6.00049 11.5828L6.0304 11.0837C5.45163 11.049 4.91334 11.0083 4.44742 10.9657L4.40186 11.4636L4.35629 11.9615C4.83384 12.0052 5.38264 12.0466 5.97058 12.0819L6.00049 11.5828ZM4.40186 11.4636L4.44742 10.9657C3.72005 10.8991 3.16666 10.2809 3.1665 9.52797L2.6665 9.52808L2.1665 9.52818C2.16677 10.7753 3.09182 11.8458 4.35629 11.9615L4.40186 11.4636ZM2.6665 9.52808H3.1665V5.29858H2.6665H2.1665V9.52808H2.6665ZM2.6665 5.29858L3.1665 5.29863C3.16657 4.54566 3.71991 3.92753 4.44742 3.86096L4.40186 3.36304L4.35629 2.86512C3.09179 2.98084 2.16662 4.05122 2.1665 5.29854L2.6665 5.29858ZM4.40186 3.36304L4.44742 3.86096C5.50543 3.76414 6.92176 3.66675 8.3335 3.66675V3.16675V2.66675C6.88018 2.66675 5.43096 2.76678 4.35629 2.86512L4.40186 3.36304Z", fill: "black" })
288
+ }
289
+ )
290
+ );
291
+ Chat.displayName = "Chat";
292
+ var Chats = react.forwardRef(
293
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
294
+ "svg",
295
+ {
296
+ ref,
297
+ width: size,
298
+ height: size,
299
+ viewBox: "0 0 16 16",
300
+ fill: "none",
301
+ xmlns: "http://www.w3.org/2000/svg",
302
+ strokeWidth,
303
+ className: ["foamicon", "foamicon-chats", className].filter(Boolean).join(" "),
304
+ "aria-hidden": "true",
305
+ ...props,
306
+ children: [
307
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
308
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
309
+ ]
310
+ }
311
+ )
312
+ );
313
+ Chats.displayName = "Chats";
314
+ var Checkbox = react.forwardRef(
315
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
316
+ "svg",
317
+ {
318
+ ref,
319
+ width: size,
320
+ height: size,
321
+ viewBox: "0 0 16 16",
322
+ fill: "none",
323
+ xmlns: "http://www.w3.org/2000/svg",
324
+ strokeWidth,
325
+ className: ["foamicon", "foamicon-checkbox", className].filter(Boolean).join(" "),
326
+ "aria-hidden": "true",
327
+ ...props,
328
+ children: [
329
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
330
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
331
+ ]
332
+ }
333
+ )
334
+ );
335
+ Checkbox.displayName = "Checkbox";
336
+ var Checkmark = react.forwardRef(
337
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
338
+ "svg",
339
+ {
340
+ ref,
341
+ width: size,
342
+ height: size,
343
+ viewBox: "0 0 16 16",
344
+ fill: "none",
345
+ xmlns: "http://www.w3.org/2000/svg",
346
+ strokeWidth,
347
+ className: ["foamicon", "foamicon-checkmark", className].filter(Boolean).join(" "),
348
+ "aria-hidden": "true",
349
+ ...props,
350
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
351
+ }
352
+ )
353
+ );
354
+ Checkmark.displayName = "Checkmark";
355
+ var ChevronDown = react.forwardRef(
356
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
357
+ "svg",
358
+ {
359
+ ref,
360
+ width: size,
361
+ height: size,
362
+ viewBox: "0 0 16 16",
363
+ fill: "none",
364
+ xmlns: "http://www.w3.org/2000/svg",
365
+ strokeWidth,
366
+ className: ["foamicon", "foamicon-chevron-down", className].filter(Boolean).join(" "),
367
+ "aria-hidden": "true",
368
+ ...props,
369
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.6667 7.33333L8.35357 9.64645C8.15831 9.84171 7.84173 9.84171 7.64647 9.64645L5.33335 7.33333", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
370
+ }
371
+ )
372
+ );
373
+ ChevronDown.displayName = "ChevronDown";
374
+ var ChevronLeft = react.forwardRef(
375
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
376
+ "svg",
377
+ {
378
+ ref,
379
+ width: size,
380
+ height: size,
381
+ viewBox: "0 0 16 16",
382
+ fill: "none",
383
+ xmlns: "http://www.w3.org/2000/svg",
384
+ strokeWidth,
385
+ className: ["foamicon", "foamicon-chevron-left", className].filter(Boolean).join(" "),
386
+ "aria-hidden": "true",
387
+ ...props,
388
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
389
+ }
390
+ )
391
+ );
392
+ ChevronLeft.displayName = "ChevronLeft";
393
+ var ChevronRight = react.forwardRef(
394
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
395
+ "svg",
396
+ {
397
+ ref,
398
+ width: size,
399
+ height: size,
400
+ viewBox: "0 0 16 16",
401
+ fill: "none",
402
+ xmlns: "http://www.w3.org/2000/svg",
403
+ strokeWidth,
404
+ className: ["foamicon", "foamicon-chevron-right", className].filter(Boolean).join(" "),
405
+ "aria-hidden": "true",
406
+ ...props,
407
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
408
+ }
409
+ )
410
+ );
411
+ ChevronRight.displayName = "ChevronRight";
412
+ var ChevronUp = react.forwardRef(
413
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
414
+ "svg",
415
+ {
416
+ ref,
417
+ width: size,
418
+ height: size,
419
+ viewBox: "0 0 16 16",
420
+ fill: "none",
421
+ xmlns: "http://www.w3.org/2000/svg",
422
+ strokeWidth,
423
+ className: ["foamicon", "foamicon-chevron-up", className].filter(Boolean).join(" "),
424
+ "aria-hidden": "true",
425
+ ...props,
426
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.33331 8.66667L7.64643 6.35355C7.84169 6.15829 8.15827 6.15829 8.35353 6.35355L10.6666 8.66667", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
427
+ }
428
+ )
429
+ );
430
+ ChevronUp.displayName = "ChevronUp";
431
+ var Close = react.forwardRef(
432
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
433
+ "svg",
434
+ {
435
+ ref,
436
+ width: size,
437
+ height: size,
438
+ viewBox: "0 0 16 16",
439
+ fill: "none",
440
+ xmlns: "http://www.w3.org/2000/svg",
441
+ strokeWidth,
442
+ className: ["foamicon", "foamicon-close", className].filter(Boolean).join(" "),
443
+ "aria-hidden": "true",
444
+ ...props,
445
+ children: [
446
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.182 4.81802L4.81802 11.182", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
447
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.182 11.182L4.81802 4.81801", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
448
+ ]
449
+ }
450
+ )
451
+ );
452
+ Close.displayName = "Close";
453
+ var Cogwheel = react.forwardRef(
454
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
455
+ "svg",
456
+ {
457
+ ref,
458
+ width: size,
459
+ height: size,
460
+ viewBox: "0 0 16 16",
461
+ fill: "none",
462
+ xmlns: "http://www.w3.org/2000/svg",
463
+ strokeWidth,
464
+ className: ["foamicon", "foamicon-cogwheel", className].filter(Boolean).join(" "),
465
+ "aria-hidden": "true",
466
+ ...props,
467
+ children: [
468
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.3407 10.506C12.1369 10.8542 12.0671 11.2753 12.2175 11.6497L12.6439 12.7108C12.6717 12.7858 12.672 12.8681 12.6448 12.9432C12.6176 13.0184 12.5647 13.0814 12.4954 13.1212L10.1816 14.4556C10.1122 14.4946 10.0313 14.5078 9.95316 14.493C9.87498 14.4782 9.80455 14.4362 9.75428 14.3745L8.82164 13.1837C8.77004 13.1183 8.70302 13.0668 8.6266 13.0337C8.55017 13.0006 8.46673 12.9869 8.38375 12.994C8.12457 13.0146 7.86419 13.0156 7.60487 12.9968C7.52329 12.991 7.44154 13.0054 7.36683 13.0386C7.29212 13.0719 7.22674 13.123 7.17648 13.1875L6.24607 14.3785C6.19459 14.44 6.12333 14.4817 6.04448 14.4966C5.96562 14.5114 5.88407 14.4984 5.81375 14.4597L3.49876 13.1232C3.43112 13.0826 3.37933 13.0201 3.35194 12.9461C3.32454 12.8721 3.32317 12.791 3.34805 12.7161L3.91337 11.3169C3.9441 11.2401 3.95538 11.1569 3.9462 11.0747C3.93702 10.9924 3.90766 10.9137 3.86074 10.8456C3.71476 10.6311 3.58622 10.4052 3.47636 10.1701C3.44108 10.095 3.38767 10.0299 3.32095 9.98061C3.25423 9.93132 3.17629 9.8994 3.09416 9.88773L1.59694 9.67536C1.51841 9.66271 1.44686 9.62274 1.39489 9.56251C1.34293 9.50228 1.31389 9.42564 1.31289 9.3461L1.31165 6.67513C1.31139 6.59521 1.33951 6.51779 1.391 6.45665C1.44248 6.39552 1.51399 6.35464 1.5928 6.34129L3.09563 6.12643C3.17825 6.11416 3.2565 6.08146 3.32327 6.03129C3.39005 5.98112 3.44324 5.91507 3.47801 5.83913C3.53343 5.72065 3.59247 5.60463 3.65763 5.49177C3.72278 5.37892 3.79253 5.27124 3.86629 5.1666C3.91367 5.09853 3.94338 5.01973 3.95272 4.93732C3.96207 4.8549 3.95077 4.77146 3.91983 4.6945L3.35503 3.28588C3.32819 3.21124 3.32846 3.12952 3.35582 3.05506C3.38317 2.9806 3.43586 2.91814 3.50464 2.87863L5.81839 1.54422C5.88776 1.50525 5.96866 1.49201 6.04684 1.50684C6.12502 1.52168 6.19545 1.56364 6.24572 1.62532L7.17836 2.81618C7.22997 2.88155 7.29698 2.9331 7.37341 2.9662C7.44983 2.9993 7.53327 3.01292 7.61625 3.00585C7.87544 2.98522 8.13581 2.98428 8.39513 3.00304C8.47671 3.00886 8.55846 2.9945 8.63317 2.96123C8.70789 2.92797 8.77326 2.87682 8.82352 2.81231L9.75393 1.6214C9.80542 1.55986 9.87667 1.51811 9.95553 1.50328C10.0344 1.48845 10.1159 1.50147 10.1863 1.54011L12.5012 2.87667C12.5689 2.9173 12.6207 2.97975 12.6481 3.05375C12.6755 3.12775 12.6768 3.20887 12.652 3.28375L12.0866 4.68292C12.0559 4.75974 12.0446 4.84296 12.0538 4.92519C12.063 5.00742 12.0923 5.0861 12.1393 5.15425C12.2852 5.36878 12.4138 5.59467 12.5236 5.82975C12.5589 5.90483 12.6123 5.96995 12.6791 6.01925C12.7458 6.06854 12.8237 6.10046 12.9058 6.11212L14.4031 6.3245C14.4816 6.33715 14.5531 6.37711 14.6051 6.43734C14.6571 6.49758 14.6861 6.57422 14.6871 6.65376L14.6884 9.32472C14.6886 9.40465 14.6605 9.48207 14.609 9.5432C14.5575 9.60434 14.486 9.64521 14.4072 9.65856L12.9044 9.87343C12.8216 9.8854 12.7431 9.91789 12.6761 9.96793C12.6091 10.018 12.5556 10.084 12.5206 10.1599C12.4649 10.2771 12.4058 10.3932 12.3407 10.506Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
469
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.02673", cy: "7.95825", r: "2", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
470
+ ]
471
+ }
472
+ )
473
+ );
474
+ Cogwheel.displayName = "Cogwheel";
475
+ var Columns = react.forwardRef(
476
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
477
+ "svg",
478
+ {
479
+ ref,
480
+ width: size,
481
+ height: size,
482
+ viewBox: "0 0 16 16",
483
+ fill: "none",
484
+ xmlns: "http://www.w3.org/2000/svg",
485
+ strokeWidth,
486
+ className: ["foamicon", "foamicon-columns", className].filter(Boolean).join(" "),
487
+ "aria-hidden": "true",
488
+ ...props,
489
+ children: [
490
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
491
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 2.5V13.5", stroke: "black", strokeLinejoin: "round" }),
492
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 2.5V13.5", stroke: "black", strokeLinejoin: "round" })
493
+ ]
494
+ }
495
+ )
496
+ );
497
+ Columns.displayName = "Columns";
498
+ var Command = react.forwardRef(
499
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
500
+ "svg",
501
+ {
502
+ ref,
503
+ width: size,
504
+ height: size,
505
+ viewBox: "0 0 16 16",
506
+ fill: "none",
507
+ xmlns: "http://www.w3.org/2000/svg",
508
+ strokeWidth,
509
+ className: ["foamicon", "foamicon-command", className].filter(Boolean).join(" "),
510
+ "aria-hidden": "true",
511
+ ...props,
512
+ children: [
513
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
514
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
515
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
516
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
517
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6.5", y: "6.5", width: "3", height: "3", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
518
+ ]
519
+ }
520
+ )
521
+ );
522
+ Command.displayName = "Command";
523
+ var Copy = react.forwardRef(
524
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
525
+ "svg",
526
+ {
527
+ ref,
528
+ width: size,
529
+ height: size,
530
+ viewBox: "0 0 16 16",
531
+ fill: "none",
532
+ xmlns: "http://www.w3.org/2000/svg",
533
+ strokeWidth,
534
+ className: ["foamicon", "foamicon-copy", className].filter(Boolean).join(" "),
535
+ "aria-hidden": "true",
536
+ ...props,
537
+ children: [
538
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "7", height: "9", rx: "1", stroke: "black" }),
539
+ /* @__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: "black" })
540
+ ]
541
+ }
542
+ )
543
+ );
544
+ Copy.displayName = "Copy";
545
+ var Dollar = react.forwardRef(
546
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
547
+ "svg",
548
+ {
549
+ ref,
550
+ width: size,
551
+ height: size,
552
+ viewBox: "0 0 16 16",
553
+ fill: "none",
554
+ xmlns: "http://www.w3.org/2000/svg",
555
+ strokeWidth,
556
+ className: ["foamicon", "foamicon-dollar", className].filter(Boolean).join(" "),
557
+ "aria-hidden": "true",
558
+ ...props,
559
+ children: [
560
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
561
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.18007 9.20677C6.18007 10.0275 6.99339 10.6928 7.99667 10.6928C8.99996 10.6928 9.81328 10.0275 9.81328 9.20677C9.81328 8.38604 8.99996 7.7207 7.99667 7.7207", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
562
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.81328 6.24155C9.81328 5.42463 8.99996 4.76239 7.99667 4.76239C6.99339 4.76239 6.18007 5.42463 6.18007 6.24155C6.18007 7.05846 6.99339 7.7207 7.99667 7.7207", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
563
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.99966 3.96936V12.0306", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
564
+ ]
565
+ }
566
+ )
567
+ );
568
+ Dollar.displayName = "Dollar";
569
+ var Download = react.forwardRef(
570
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
571
+ "svg",
572
+ {
573
+ ref,
574
+ width: size,
575
+ height: size,
576
+ viewBox: "0 0 16 16",
577
+ fill: "none",
578
+ xmlns: "http://www.w3.org/2000/svg",
579
+ strokeWidth,
580
+ className: ["foamicon", "foamicon-download", className].filter(Boolean).join(" "),
581
+ "aria-hidden": "true",
582
+ ...props,
583
+ children: [
584
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.6667 7.00002L8.35356 10.3131C8.1583 10.5084 7.84171 10.5084 7.64645 10.3131L4.33334 7.00002", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
585
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 10V3", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
586
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
587
+ ]
588
+ }
589
+ )
590
+ );
591
+ Download.displayName = "Download";
592
+ var EditDocument = react.forwardRef(
593
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
594
+ "svg",
595
+ {
596
+ ref,
597
+ width: size,
598
+ height: size,
599
+ viewBox: "0 0 16 16",
600
+ fill: "none",
601
+ xmlns: "http://www.w3.org/2000/svg",
602
+ strokeWidth,
603
+ className: ["foamicon", "foamicon-edit-document", className].filter(Boolean).join(" "),
604
+ "aria-hidden": "true",
605
+ ...props,
606
+ children: [
607
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
608
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
609
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 5L11.5 6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
610
+ ]
611
+ }
612
+ )
613
+ );
614
+ EditDocument.displayName = "EditDocument";
615
+ var EditLine = react.forwardRef(
616
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
617
+ "svg",
618
+ {
619
+ ref,
620
+ width: size,
621
+ height: size,
622
+ viewBox: "0 0 16 16",
623
+ fill: "none",
624
+ xmlns: "http://www.w3.org/2000/svg",
625
+ strokeWidth,
626
+ className: ["foamicon", "foamicon-edit-line", className].filter(Boolean).join(" "),
627
+ "aria-hidden": "true",
628
+ ...props,
629
+ children: [
630
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
631
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 5L11.5 6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
632
+ ]
633
+ }
634
+ )
635
+ );
636
+ EditLine.displayName = "EditLine";
637
+ var EmojiSad = react.forwardRef(
638
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
639
+ "svg",
640
+ {
641
+ ref,
642
+ width: size,
643
+ height: size,
644
+ viewBox: "0 0 16 16",
645
+ fill: "none",
646
+ xmlns: "http://www.w3.org/2000/svg",
647
+ strokeWidth,
648
+ className: ["foamicon", "foamicon-emoji-sad", className].filter(Boolean).join(" "),
649
+ "aria-hidden": "true",
650
+ ...props,
651
+ children: [
652
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
653
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
654
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6.25", cy: "6.75", r: "0.75", fill: "black" }),
655
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9.75", cy: "6.75", r: "0.75", fill: "black" })
656
+ ]
657
+ }
658
+ )
659
+ );
660
+ EmojiSad.displayName = "EmojiSad";
661
+ var Engagement = react.forwardRef(
662
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
663
+ "svg",
664
+ {
665
+ ref,
666
+ width: size,
667
+ height: size,
668
+ viewBox: "0 0 16 16",
669
+ fill: "none",
670
+ xmlns: "http://www.w3.org/2000/svg",
671
+ strokeWidth,
672
+ className: ["foamicon", "foamicon-engagement", className].filter(Boolean).join(" "),
673
+ "aria-hidden": "true",
674
+ ...props,
675
+ children: [
676
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.98651 14.2836V6.17574V5.36496L14.0674 10.4458L9.59933 10.3624L6.98651 14.2836Z", stroke: "black", strokeLinejoin: "round" }),
677
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.36497 4.14875L4.14879 2.93257M6.98653 3.33797V1.7164M8.6081 4.14875L9.82427 2.93257M4.55418 5.77032H2.93262", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
678
+ ]
679
+ }
680
+ )
681
+ );
682
+ Engagement.displayName = "Engagement";
683
+ var EnvelopeMove = react.forwardRef(
684
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
685
+ "svg",
686
+ {
687
+ ref,
688
+ width: size,
689
+ height: size,
690
+ viewBox: "0 0 16 16",
691
+ fill: "none",
692
+ xmlns: "http://www.w3.org/2000/svg",
693
+ strokeWidth,
694
+ className: ["foamicon", "foamicon-envelope-move", className].filter(Boolean).join(" "),
695
+ "aria-hidden": "true",
696
+ ...props,
697
+ children: [
698
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
699
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
700
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 8H2.91187", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
701
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 10H5.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
702
+ ]
703
+ }
704
+ )
705
+ );
706
+ EnvelopeMove.displayName = "EnvelopeMove";
707
+ var EnvelopePlus = react.forwardRef(
708
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
709
+ "svg",
710
+ {
711
+ ref,
712
+ width: size,
713
+ height: size,
714
+ viewBox: "0 0 16 16",
715
+ fill: "none",
716
+ xmlns: "http://www.w3.org/2000/svg",
717
+ strokeWidth,
718
+ className: ["foamicon", "foamicon-envelope-plus", className].filter(Boolean).join(" "),
719
+ "aria-hidden": "true",
720
+ ...props,
721
+ children: [
722
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
723
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
724
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.4116 11V14.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
725
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.1616 12.75L11.6616 12.75", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
726
+ ]
727
+ }
728
+ )
729
+ );
730
+ EnvelopePlus.displayName = "EnvelopePlus";
731
+ var Envelope = react.forwardRef(
732
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
733
+ "svg",
734
+ {
735
+ ref,
736
+ width: size,
737
+ height: size,
738
+ viewBox: "0 0 16 16",
739
+ fill: "none",
740
+ xmlns: "http://www.w3.org/2000/svg",
741
+ strokeWidth,
742
+ className: ["foamicon", "foamicon-envelope", className].filter(Boolean).join(" "),
743
+ "aria-hidden": "true",
744
+ ...props,
745
+ children: [
746
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
747
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
748
+ ]
749
+ }
750
+ )
751
+ );
752
+ Envelope.displayName = "Envelope";
753
+ var Error = react.forwardRef(
754
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
755
+ "svg",
756
+ {
757
+ ref,
758
+ width: size,
759
+ height: size,
760
+ viewBox: "0 0 16 16",
761
+ fill: "none",
762
+ xmlns: "http://www.w3.org/2000/svg",
763
+ strokeWidth,
764
+ className: ["foamicon", "foamicon-error", className].filter(Boolean).join(" "),
765
+ "aria-hidden": "true",
766
+ ...props,
767
+ children: [
768
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
769
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8.43984L8 4.75001", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
770
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "10.8623", r: "0.5", transform: "rotate(-180 8 10.8623)", fill: "black", stroke: "black", strokeWidth: "0.25" })
771
+ ]
772
+ }
773
+ )
774
+ );
775
+ Error.displayName = "Error";
776
+ var EyeOff = react.forwardRef(
777
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
778
+ "svg",
779
+ {
780
+ ref,
781
+ width: size,
782
+ height: size,
783
+ viewBox: "0 0 16 16",
784
+ fill: "none",
785
+ xmlns: "http://www.w3.org/2000/svg",
786
+ strokeWidth,
787
+ className: ["foamicon", "foamicon-eye-off", className].filter(Boolean).join(" "),
788
+ "aria-hidden": "true",
789
+ ...props,
790
+ children: [
791
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
792
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.08844 7.41004C6.06943 7.47169 6.05333 7.53461 6.04028 7.59865L6.08844 7.41004ZM6.08844 7.41004C6.29471 6.74093 6.84265 6.22165 7.52854 6.05591M9.50083 6.67805C9.81151 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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
793
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6667 2.5L2.5 13.67", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
794
+ ]
795
+ }
796
+ )
797
+ );
798
+ EyeOff.displayName = "EyeOff";
799
+ var Eye = react.forwardRef(
800
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
801
+ "svg",
802
+ {
803
+ ref,
804
+ width: size,
805
+ height: size,
806
+ viewBox: "0 0 16 16",
807
+ fill: "none",
808
+ xmlns: "http://www.w3.org/2000/svg",
809
+ strokeWidth,
810
+ className: ["foamicon", "foamicon-eye", className].filter(Boolean).join(" "),
811
+ "aria-hidden": "true",
812
+ ...props,
813
+ children: [
814
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
815
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "2", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
816
+ ]
817
+ }
818
+ )
819
+ );
820
+ Eye.displayName = "Eye";
821
+ var FilterDown = react.forwardRef(
822
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
823
+ "svg",
824
+ {
825
+ ref,
826
+ width: size,
827
+ height: size,
828
+ viewBox: "0 0 16 16",
829
+ fill: "none",
830
+ xmlns: "http://www.w3.org/2000/svg",
831
+ strokeWidth,
832
+ className: ["foamicon", "foamicon-filter-down", className].filter(Boolean).join(" "),
833
+ "aria-hidden": "true",
834
+ ...props,
835
+ children: [
836
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
837
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 13L6 2", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
838
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 3H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
839
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 5H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
840
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 7H9", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
841
+ ]
842
+ }
843
+ )
844
+ );
845
+ FilterDown.displayName = "FilterDown";
846
+ var FilterUp = react.forwardRef(
847
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
848
+ "svg",
849
+ {
850
+ ref,
851
+ width: size,
852
+ height: size,
853
+ viewBox: "0 0 16 16",
854
+ fill: "none",
855
+ xmlns: "http://www.w3.org/2000/svg",
856
+ strokeWidth,
857
+ className: ["foamicon", "foamicon-filter-up", className].filter(Boolean).join(" "),
858
+ "aria-hidden": "true",
859
+ ...props,
860
+ children: [
861
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.66666 5.66667L8.97977 2.35355C9.17503 2.15829 9.49161 2.15829 9.68688 2.35355L13 5.66667", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
862
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.3334 2.66663L9.3334 13.6666", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
863
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.8334 12.6666L2.3334 12.6666", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
864
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.8334 10.6666L4.3334 10.6666", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
865
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.8334 8.66663L6.3334 8.66663", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
866
+ ]
867
+ }
868
+ )
869
+ );
870
+ FilterUp.displayName = "FilterUp";
871
+ var Filter = react.forwardRef(
872
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
873
+ "svg",
874
+ {
875
+ ref,
876
+ width: size,
877
+ height: size,
878
+ viewBox: "0 0 16 16",
879
+ fill: "none",
880
+ xmlns: "http://www.w3.org/2000/svg",
881
+ strokeWidth,
882
+ className: ["foamicon", "foamicon-filter", className].filter(Boolean).join(" "),
883
+ "aria-hidden": "true",
884
+ ...props,
885
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.33333 4.66669H12.6667M5.33333 8.00002H10.6667M6.66666 11.3334H9.33333", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
886
+ }
887
+ )
888
+ );
889
+ Filter.displayName = "Filter";
890
+ var Flame = react.forwardRef(
891
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
892
+ "svg",
893
+ {
894
+ ref,
895
+ width: size,
896
+ height: size,
897
+ viewBox: "0 0 16 16",
898
+ fill: "none",
899
+ xmlns: "http://www.w3.org/2000/svg",
900
+ strokeWidth,
901
+ className: ["foamicon", "foamicon-flame", className].filter(Boolean).join(" "),
902
+ "aria-hidden": "true",
903
+ ...props,
904
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.84309 1.12592L8.0408 0.666664C7.88133 0.598014 7.69767 0.617001 7.55562 0.716822C7.41357 0.816643 7.33347 0.983007 7.34402 1.1563L7.84309 1.12592ZM10.6663 5.414L11.1663 5.41402V5.414H10.6663ZM10.6615 5.58685L10.1618 5.56864V5.56864L10.6615 5.58685ZM8.41731 9.40424L8.15762 8.97696C7.97019 9.09088 7.87888 9.31366 7.93245 9.52635C7.98602 9.73905 8.17196 9.892 8.39099 9.90354L8.41731 9.40424ZM8.66634 9.414L8.6663 9.914H8.66634V9.414ZM12.3197 7.64838L12.7824 7.45906C12.7152 7.2948 12.566 7.17847 12.3903 7.15339C12.2146 7.12832 12.0388 7.19825 11.9283 7.33715L12.3197 7.64838ZM12.6663 9.414L13.1663 9.41403V9.41398L12.6663 9.414ZM8.00032 14.08V14.58H8.00035L8.00032 14.08ZM3.33333 9.414L2.83333 9.41398V9.41403L3.33333 9.414ZM3.40852 8.57611L3.90048 8.66542L3.90051 8.66526L3.40852 8.57611ZM3.42415 8.50092L2.93373 8.40348L2.9337 8.40365L3.42415 8.50092ZM3.45247 8.36322L3.9397 8.47548L3.93975 8.4753L3.45247 8.36322ZM3.47298 8.28217L2.98785 8.16113L2.9878 8.16132L3.47298 8.28217ZM3.6468 7.73236L4.11312 7.91277L4.1132 7.91256L3.6468 7.73236ZM3.78548 7.41205L3.33404 7.1971L3.33395 7.19729L3.78548 7.41205ZM4.1595 6.76361L4.57075 7.048L4.57083 7.04788L4.1595 6.76361ZM4.20735 6.69427L3.80129 6.40254L3.80121 6.40264L4.20735 6.69427ZM4.28645 6.58881L4.68416 6.89184L4.68423 6.89175L4.28645 6.58881ZM4.32845 6.53314L3.93529 6.22423L3.93522 6.22431L4.32845 6.53314ZM4.34602 6.51166L4.73736 6.82288L4.73741 6.82281L4.34602 6.51166ZM5.52376 5.45892L5.78957 5.88242C6.01587 5.74038 6.09051 5.44551 5.95904 5.2129C5.82758 4.9803 5.53646 4.89215 5.29805 5.01277L5.52376 5.45892ZM5.4593 5.4892L5.21536 5.05274C4.98629 5.18077 4.89518 5.46411 5.00669 5.70166C5.11821 5.93922 5.39439 6.05014 5.63924 5.9557L5.4593 5.4892ZM7.85384 1.414L8.35384 1.41402V1.414H7.85384ZM7.84309 1.12592L7.64539 1.58517C9.12903 2.22387 10.1663 3.69832 10.1663 5.414H10.6663H11.1663C11.1663 3.28464 9.87806 1.4576 8.0408 0.666664L7.84309 1.12592ZM10.6663 5.414L10.1663 5.41398C10.1663 5.45992 10.1642 5.50316 10.1618 5.56864L10.6615 5.58685L11.1611 5.60507C11.1629 5.55579 11.1663 5.48386 11.1663 5.41402L10.6663 5.414ZM10.6615 5.58685L10.1618 5.56864C10.1091 7.01326 9.32049 8.27019 8.15762 8.97696L8.41731 9.40424L8.677 9.83151C10.1155 8.9572 11.0957 7.39922 11.1611 5.60507L10.6615 5.58685ZM8.41731 9.40424L8.39099 9.90354C8.46467 9.90743 8.56578 9.91399 8.6663 9.914L8.66634 9.414L8.66637 8.914C8.59969 8.914 8.53499 8.90974 8.44363 8.90493L8.41731 9.40424ZM8.66634 9.414V9.914C10.3059 9.914 11.7656 9.14834 12.711 7.9596L12.3197 7.64838L11.9283 7.33715C11.1639 8.29838 9.98726 8.914 8.66634 8.914V9.414ZM12.3197 7.64838L11.8569 7.83769C12.0558 8.32384 12.1663 8.85575 12.1663 9.41402L12.6663 9.414L13.1663 9.41398C13.1663 8.72254 13.0292 8.06224 12.7824 7.45906L12.3197 7.64838ZM12.6663 9.414L12.1663 9.41397C12.1662 11.7149 10.3012 13.5799 8.00029 13.58L8.00032 14.08L8.00035 14.58C10.8535 14.5798 13.1661 12.2672 13.1663 9.41403L12.6663 9.414ZM8.00032 14.08V13.58C5.69914 13.58 3.83348 11.7149 3.83333 9.41397L3.33333 9.414L2.83333 9.41403C2.83352 12.2674 5.14706 14.58 8.00032 14.58V14.08ZM3.33333 9.414L3.83333 9.41402C3.83334 9.15813 3.85645 8.908 3.90048 8.66542L3.40852 8.57611L2.91656 8.4868C2.86191 8.78788 2.83334 9.09777 2.83333 9.41398L3.33333 9.414ZM3.40852 8.57611L3.90051 8.66526C3.90637 8.6329 3.90146 8.66443 3.9146 8.59818L3.42415 8.50092L2.9337 8.40365C2.93233 8.41058 2.93089 8.41706 2.92754 8.43249C2.92471 8.44555 2.92047 8.46527 2.91653 8.48697L3.40852 8.57611ZM3.42415 8.50092L3.91456 8.59835C3.92506 8.54552 3.93144 8.51134 3.9397 8.47548L3.45247 8.36322L2.96523 8.25096C2.9525 8.30625 2.94154 8.36417 2.93373 8.40348L3.42415 8.50092ZM3.45247 8.36322L3.93975 8.4753C3.94549 8.45031 3.94582 8.45252 3.95815 8.40301L3.47298 8.28217L2.9878 8.16132C2.98668 8.16583 2.97195 8.22175 2.96519 8.25114L3.45247 8.36322ZM3.47298 8.28217L3.95811 8.4032C4.0001 8.23487 4.05183 8.07121 4.11312 7.91277L3.6468 7.73236L3.18049 7.55195C3.10387 7.75 3.03968 7.95337 2.98785 8.16113L3.47298 8.28217ZM3.6468 7.73236L4.1132 7.91256C4.14998 7.81736 4.19153 7.72243 4.23701 7.62681L3.78548 7.41205L3.33395 7.19729C3.27974 7.31127 3.2278 7.4295 3.18041 7.55216L3.6468 7.73236ZM3.78548 7.41205L4.23691 7.627C4.33393 7.42325 4.4452 7.22955 4.57075 7.048L4.1595 6.76361L3.74825 6.47922C3.59066 6.70711 3.45287 6.94754 3.33404 7.1971L3.78548 7.41205ZM4.1595 6.76361L4.57083 7.04788C4.595 7.0129 4.59997 7.00474 4.61349 6.98591L4.20735 6.69427L3.80121 6.40264C3.78199 6.42942 3.75594 6.4681 3.74817 6.47934L4.1595 6.76361ZM4.20735 6.69427L4.61342 6.98601C4.63387 6.95755 4.65512 6.92995 4.68416 6.89184L4.28645 6.58881L3.88875 6.28577C3.86454 6.31754 3.83214 6.35959 3.80129 6.40254L4.20735 6.69427ZM4.28645 6.58881L4.68423 6.89175C4.71293 6.85407 4.70727 6.86031 4.72167 6.84197L4.32845 6.53314L3.93522 6.22431C3.9239 6.23873 3.91375 6.25229 3.90639 6.26218C3.89794 6.27352 3.89361 6.27939 3.88868 6.28586L4.28645 6.58881ZM4.32845 6.53314L4.72161 6.84205C4.72094 6.8429 4.72042 6.84355 4.72009 6.84396C4.71992 6.84417 4.71979 6.84433 4.7197 6.84444C4.71962 6.84454 4.71957 6.8446 4.71957 6.84461C4.71956 6.84461 4.7196 6.84456 4.71968 6.84446C4.71976 6.84436 4.71988 6.84422 4.72005 6.84402C4.72041 6.84359 4.72085 6.84306 4.72154 6.84223C4.72265 6.84089 4.72508 6.83797 4.72751 6.83503C4.73009 6.8319 4.73352 6.82771 4.73736 6.82288L4.34602 6.51166L3.95469 6.20044C3.95567 6.19921 3.95617 6.1986 3.95581 6.19904C3.95529 6.19967 3.95476 6.20032 3.9529 6.20255C3.95024 6.20574 3.94305 6.21435 3.93529 6.22423L4.32845 6.53314ZM4.34602 6.51166L4.73741 6.82281C5.03131 6.45313 5.38743 6.13482 5.78957 5.88242L5.52376 5.45892L5.25795 5.03543C4.76049 5.34766 4.31931 5.7418 3.95464 6.2005L4.34602 6.51166ZM5.52376 5.45892L5.29805 5.01277C5.29492 5.01435 5.29187 5.0159 5.28941 5.01715C5.28678 5.01849 5.28472 5.01954 5.28273 5.02055C5.27877 5.02255 5.27646 5.0237 5.27488 5.02446C5.27174 5.02598 5.27397 5.02478 5.27937 5.02269L5.4593 5.4892L5.63924 5.9557C5.69197 5.93536 5.74033 5.9097 5.74947 5.90508L5.52376 5.45892ZM5.4593 5.4892L5.70325 5.92565C7.28257 5.04295 8.35377 3.35467 8.35384 1.41402L7.85384 1.414L7.35384 1.41398C7.35378 2.97716 6.49201 4.33921 5.21536 5.05274L5.4593 5.4892ZM7.85384 1.414H8.35384C8.35384 1.3014 8.34809 1.1928 8.34217 1.09553L7.84309 1.12592L7.34402 1.1563C7.3497 1.24954 7.35384 1.33317 7.35384 1.414H7.85384Z", fill: "black" })
905
+ }
906
+ )
907
+ );
908
+ Flame.displayName = "Flame";
909
+ var Globe = react.forwardRef(
910
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
911
+ "svg",
912
+ {
913
+ ref,
914
+ width: size,
915
+ height: size,
916
+ viewBox: "0 0 16 16",
917
+ fill: "none",
918
+ xmlns: "http://www.w3.org/2000/svg",
919
+ strokeWidth,
920
+ className: ["foamicon", "foamicon-globe", className].filter(Boolean).join(" "),
921
+ "aria-hidden": "true",
922
+ ...props,
923
+ children: [
924
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
925
+ /* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "8", cy: "8", rx: "2.5", ry: "5.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
926
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
927
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
928
+ ]
929
+ }
930
+ )
931
+ );
932
+ Globe.displayName = "Globe";
933
+ var History = react.forwardRef(
934
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
935
+ "svg",
936
+ {
937
+ ref,
938
+ width: size,
939
+ height: size,
940
+ viewBox: "0 0 16 16",
941
+ fill: "none",
942
+ xmlns: "http://www.w3.org/2000/svg",
943
+ strokeWidth,
944
+ className: ["foamicon", "foamicon-history", className].filter(Boolean).join(" "),
945
+ "aria-hidden": "true",
946
+ ...props,
947
+ children: [
948
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
949
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 4V7.58579C8 7.851 8.10536 8.10536 8.29289 8.29289L10 10", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
950
+ ]
951
+ }
952
+ )
953
+ );
954
+ History.displayName = "History";
955
+ var Home = react.forwardRef(
956
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
957
+ "svg",
958
+ {
959
+ ref,
960
+ width: size,
961
+ height: size,
962
+ viewBox: "0 0 16 16",
963
+ fill: "none",
964
+ xmlns: "http://www.w3.org/2000/svg",
965
+ strokeWidth,
966
+ className: ["foamicon", "foamicon-home", className].filter(Boolean).join(" "),
967
+ "aria-hidden": "true",
968
+ ...props,
969
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
970
+ }
971
+ )
972
+ );
973
+ Home.displayName = "Home";
974
+ var Hotspot = react.forwardRef(
975
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
976
+ "svg",
977
+ {
978
+ ref,
979
+ width: size,
980
+ height: size,
981
+ viewBox: "0 0 16 16",
982
+ fill: "none",
983
+ xmlns: "http://www.w3.org/2000/svg",
984
+ strokeWidth,
985
+ className: ["foamicon", "foamicon-hotspot", className].filter(Boolean).join(" "),
986
+ "aria-hidden": "true",
987
+ ...props,
988
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8C14 9.65331 13.332 11.1496 12.2499 12.2354C12.055 12.431 12.0555 12.7476 12.2511 12.9425C12.4467 13.1374 12.7633 13.1369 12.9582 12.9413C14.2194 11.6757 15 9.92855 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 9.92855 1.78056 11.6757 3.0418 12.9413C3.23673 13.1369 3.55332 13.1374 3.74891 12.9425C3.9445 12.7476 3.94504 12.431 3.75011 12.2354C2.66804 11.1496 2 9.65331 2 8ZM8 4.5C6.067 4.5 4.5 6.067 4.5 8C4.5 9.04529 4.9576 9.98307 5.68504 10.6251C5.89208 10.8079 5.91178 11.1238 5.72904 11.3309C5.54631 11.5379 5.23034 11.5576 5.02331 11.3749C4.08991 10.551 3.5 9.3441 3.5 8C3.5 5.51472 5.51472 3.5 8 3.5C10.4853 3.5 12.5 5.51472 12.5 8C12.5 9.23354 12.003 10.352 11.1995 11.1644C11.0053 11.3607 10.6887 11.3624 10.4924 11.1682C10.2961 10.9741 10.2943 10.6575 10.4885 10.4612C11.1144 9.82836 11.5 8.9597 11.5 8C11.5 6.067 9.933 4.5 8 4.5ZM8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7ZM6 8C6 6.89543 6.89543 6 8 6C9.10457 6 10 6.89543 10 8C10 9.10457 9.10457 10 8 10C6.89543 10 6 9.10457 6 8Z", fill: "black" })
989
+ }
990
+ )
991
+ );
992
+ Hotspot.displayName = "Hotspot";
993
+ var Import = react.forwardRef(
994
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
995
+ "svg",
996
+ {
997
+ ref,
998
+ width: size,
999
+ height: size,
1000
+ viewBox: "0 0 16 16",
1001
+ fill: "none",
1002
+ xmlns: "http://www.w3.org/2000/svg",
1003
+ strokeWidth,
1004
+ className: ["foamicon", "foamicon-import", className].filter(Boolean).join(" "),
1005
+ "aria-hidden": "true",
1006
+ ...props,
1007
+ children: [
1008
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1009
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.3333 7.66675L3.00001 7.66675", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1010
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 2V14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1011
+ ]
1012
+ }
1013
+ )
1014
+ );
1015
+ Import.displayName = "Import";
1016
+ var Inbox = react.forwardRef(
1017
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1018
+ "svg",
1019
+ {
1020
+ ref,
1021
+ width: size,
1022
+ height: size,
1023
+ viewBox: "0 0 16 16",
1024
+ fill: "none",
1025
+ xmlns: "http://www.w3.org/2000/svg",
1026
+ strokeWidth,
1027
+ className: ["foamicon", "foamicon-inbox", className].filter(Boolean).join(" "),
1028
+ "aria-hidden": "true",
1029
+ ...props,
1030
+ children: [
1031
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1032
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1033
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 8H11.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1034
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 6H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1035
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 4H10.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1036
+ ]
1037
+ }
1038
+ )
1039
+ );
1040
+ Inbox.displayName = "Inbox";
1041
+ var Info = 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-info", className].filter(Boolean).join(" "),
1053
+ "aria-hidden": "true",
1054
+ ...props,
1055
+ children: [
1056
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1057
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 7.79751V11.4873", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1058
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "5.375", r: "0.625", fill: "black" })
1059
+ ]
1060
+ }
1061
+ )
1062
+ );
1063
+ Info.displayName = "Info";
1064
+ var LayoutColumn = 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-layout-column", className].filter(Boolean).join(" "),
1076
+ "aria-hidden": "true",
1077
+ ...props,
1078
+ children: [
1079
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "5", height: "12", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1080
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1081
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "9", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1082
+ ]
1083
+ }
1084
+ )
1085
+ );
1086
+ LayoutColumn.displayName = "LayoutColumn";
1087
+ var LayoutGrid = react.forwardRef(
1088
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1089
+ "svg",
1090
+ {
1091
+ ref,
1092
+ width: size,
1093
+ height: size,
1094
+ viewBox: "0 0 16 16",
1095
+ fill: "none",
1096
+ xmlns: "http://www.w3.org/2000/svg",
1097
+ strokeWidth,
1098
+ className: ["foamicon", "foamicon-layout-grid", className].filter(Boolean).join(" "),
1099
+ "aria-hidden": "true",
1100
+ ...props,
1101
+ children: [
1102
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1103
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "9", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1104
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1105
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "9", width: "5", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1106
+ ]
1107
+ }
1108
+ )
1109
+ );
1110
+ LayoutGrid.displayName = "LayoutGrid";
1111
+ var LayoutList = react.forwardRef(
1112
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
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-layout-list", className].filter(Boolean).join(" "),
1123
+ "aria-hidden": "true",
1124
+ ...props,
1125
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.75 4.75C3.16421 4.75 3.5 4.41421 3.5 4C3.5 3.58579 3.16421 3.25 2.75 3.25C2.33579 3.25 2 3.58579 2 4C2 4.41421 2.33579 4.75 2.75 4.75ZM5.5 3.5C5.22386 3.5 5 3.72386 5 4C5 4.27614 5.22386 4.5 5.5 4.5H13C13.2761 4.5 13.5 4.27614 13.5 4C13.5 3.72386 13.2761 3.5 13 3.5H5.5ZM5.5 7.5C5.22386 7.5 5 7.72386 5 8C5 8.27614 5.22386 8.5 5.5 8.5H13C13.2761 8.5 13.5 8.27614 13.5 8C13.5 7.72386 13.2761 7.5 13 7.5H5.5ZM5 12C5 11.7239 5.22386 11.5 5.5 11.5H13C13.2761 11.5 13.5 11.7239 13.5 12C13.5 12.2761 13.2761 12.5 13 12.5H5.5C5.22386 12.5 5 12.2761 5 12ZM3.5 8C3.5 8.41421 3.16421 8.75 2.75 8.75C2.33579 8.75 2 8.41421 2 8C2 7.58579 2.33579 7.25 2.75 7.25C3.16421 7.25 3.5 7.58579 3.5 8ZM2.75 12.75C3.16421 12.75 3.5 12.4142 3.5 12C3.5 11.5858 3.16421 11.25 2.75 11.25C2.33579 11.25 2 11.5858 2 12C2 12.4142 2.33579 12.75 2.75 12.75Z", fill: "black" })
1126
+ }
1127
+ )
1128
+ );
1129
+ LayoutList.displayName = "LayoutList";
1130
+ var LayoutRow = react.forwardRef(
1131
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1132
+ "svg",
1133
+ {
1134
+ ref,
1135
+ width: size,
1136
+ height: size,
1137
+ viewBox: "0 0 16 16",
1138
+ fill: "none",
1139
+ xmlns: "http://www.w3.org/2000/svg",
1140
+ strokeWidth,
1141
+ className: ["foamicon", "foamicon-layout-row", className].filter(Boolean).join(" "),
1142
+ "aria-hidden": "true",
1143
+ ...props,
1144
+ children: [
1145
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "2", width: "12", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1146
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "9", width: "12", height: "5", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1147
+ ]
1148
+ }
1149
+ )
1150
+ );
1151
+ LayoutRow.displayName = "LayoutRow";
1152
+ var Link = react.forwardRef(
1153
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1154
+ "svg",
1155
+ {
1156
+ ref,
1157
+ width: size,
1158
+ height: size,
1159
+ viewBox: "0 0 16 16",
1160
+ fill: "none",
1161
+ xmlns: "http://www.w3.org/2000/svg",
1162
+ strokeWidth,
1163
+ className: ["foamicon", "foamicon-link", className].filter(Boolean).join(" "),
1164
+ "aria-hidden": "true",
1165
+ ...props,
1166
+ children: [
1167
+ /* @__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.14539 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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1168
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.84372 6.15613L5.84372 10.1561", stroke: "black", strokeLinecap: "round" })
1169
+ ]
1170
+ }
1171
+ )
1172
+ );
1173
+ Link.displayName = "Link";
1174
+ var List = react.forwardRef(
1175
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1176
+ "svg",
1177
+ {
1178
+ ref,
1179
+ width: size,
1180
+ height: size,
1181
+ viewBox: "0 0 16 16",
1182
+ fill: "none",
1183
+ xmlns: "http://www.w3.org/2000/svg",
1184
+ strokeWidth,
1185
+ className: ["foamicon", "foamicon-list", className].filter(Boolean).join(" "),
1186
+ "aria-hidden": "true",
1187
+ ...props,
1188
+ children: [
1189
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 4H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1190
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 8H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1191
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 12H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1192
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "4", r: "0.75", fill: "black" }),
1193
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "8", r: "0.75", fill: "black" }),
1194
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "12", r: "0.75", fill: "black" })
1195
+ ]
1196
+ }
1197
+ )
1198
+ );
1199
+ List.displayName = "List";
1200
+ var Location = 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-location", className].filter(Boolean).join(" "),
1212
+ "aria-hidden": "true",
1213
+ ...props,
1214
+ children: [
1215
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1216
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1217
+ ]
1218
+ }
1219
+ )
1220
+ );
1221
+ Location.displayName = "Location";
1222
+ var Lock = react.forwardRef(
1223
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1224
+ "svg",
1225
+ {
1226
+ ref,
1227
+ width: size,
1228
+ height: size,
1229
+ viewBox: "0 0 16 16",
1230
+ fill: "none",
1231
+ xmlns: "http://www.w3.org/2000/svg",
1232
+ strokeWidth,
1233
+ className: ["foamicon", "foamicon-lock", className].filter(Boolean).join(" "),
1234
+ "aria-hidden": "true",
1235
+ ...props,
1236
+ children: [
1237
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1238
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "11", r: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1239
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1240
+ ]
1241
+ }
1242
+ )
1243
+ );
1244
+ Lock.displayName = "Lock";
1245
+ var Magic = react.forwardRef(
1246
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1247
+ "svg",
1248
+ {
1249
+ ref,
1250
+ width: size,
1251
+ height: size,
1252
+ viewBox: "0 0 16 16",
1253
+ fill: "none",
1254
+ xmlns: "http://www.w3.org/2000/svg",
1255
+ strokeWidth,
1256
+ className: ["foamicon", "foamicon-magic", className].filter(Boolean).join(" "),
1257
+ "aria-hidden": "true",
1258
+ ...props,
1259
+ children: [
1260
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1261
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.92679 11.0556C6.9038 10.8452 6.1023 10.0455 5.89135 9.01448C5.88083 8.96186 5.8386 8.9303 5.78586 8.9303C5.73311 8.9303 5.69096 8.96186 5.68036 9.01448C5.46946 10.0456 4.66788 10.8452 3.64493 11.0556C3.59218 11.0661 3.56055 11.1082 3.56055 11.1609C3.56055 11.2135 3.59218 11.2555 3.64493 11.2661C4.66792 11.4765 5.46942 12.2762 5.68036 13.2967C5.69088 13.3494 5.73311 13.3809 5.78586 13.3809C5.8386 13.3809 5.88076 13.3494 5.89135 13.2967C6.10226 12.2762 6.90383 11.4766 7.92679 11.2661C7.97954 11.2556 8.01117 11.2135 8.01117 11.1609C8.01117 11.1082 7.97954 11.0662 7.92679 11.0556Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1262
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.15666 6.57238C4.17352 6.62275 4.21562 6.65637 4.26611 6.65637C4.31661 6.65637 4.36711 6.62281 4.37556 6.57238C4.55237 5.82502 5.15839 5.22878 5.8992 5.05247C5.94969 5.03566 5.9834 4.99366 5.9834 4.94329C5.9834 4.89291 5.94975 4.84254 5.8992 4.8341C5.14162 4.64936 4.55231 4.06155 4.37556 3.3058C4.36717 3.25542 4.31661 3.2218 4.26611 3.2218C4.21562 3.2218 4.16512 3.25537 4.15666 3.3058C3.97147 4.06152 3.39062 4.64939 2.63303 4.8341C2.58253 4.85091 2.54883 4.89291 2.54883 4.94329C2.54883 4.99366 2.58247 5.04403 2.63303 5.05247C3.37382 5.22878 3.97146 5.82502 4.15666 6.57238Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1263
+ ]
1264
+ }
1265
+ )
1266
+ );
1267
+ Magic.displayName = "Magic";
1268
+ var Maximize = react.forwardRef(
1269
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1270
+ "svg",
1271
+ {
1272
+ ref,
1273
+ width: size,
1274
+ height: size,
1275
+ viewBox: "0 0 16 16",
1276
+ fill: "none",
1277
+ xmlns: "http://www.w3.org/2000/svg",
1278
+ strokeWidth,
1279
+ className: ["foamicon", "foamicon-maximize", className].filter(Boolean).join(" "),
1280
+ "aria-hidden": "true",
1281
+ ...props,
1282
+ children: [
1283
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 3.5H13V7", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1284
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 13H3.5V9.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1285
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 3.5L9.5 7", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1286
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 13L7 9.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1287
+ ]
1288
+ }
1289
+ )
1290
+ );
1291
+ Maximize.displayName = "Maximize";
1292
+ var MediaPacks = react.forwardRef(
1293
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1294
+ "svg",
1295
+ {
1296
+ ref,
1297
+ width: size,
1298
+ height: size,
1299
+ viewBox: "0 0 16 16",
1300
+ fill: "none",
1301
+ xmlns: "http://www.w3.org/2000/svg",
1302
+ strokeWidth,
1303
+ className: ["foamicon", "foamicon-media-packs", className].filter(Boolean).join(" "),
1304
+ "aria-hidden": "true",
1305
+ ...props,
1306
+ children: [
1307
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9.90907", cy: "4.99568", r: "0.932931", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1308
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.0191 9.35127C8.0191 8.26888 8.82668 7.3385 9.90907 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.90907 9.93721C9.06966 9.93721 8.23024 9.844 8.05317 9.82318C8.03336 9.82085 8.0191 9.80412 8.0191 9.78417V9.35127Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1309
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "2", width: "8", height: "10", rx: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1310
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1311
+ ]
1312
+ }
1313
+ )
1314
+ );
1315
+ MediaPacks.displayName = "MediaPacks";
1316
+ var Menu = react.forwardRef(
1317
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1318
+ "svg",
1319
+ {
1320
+ ref,
1321
+ width: size,
1322
+ height: size,
1323
+ viewBox: "0 0 16 16",
1324
+ fill: "none",
1325
+ xmlns: "http://www.w3.org/2000/svg",
1326
+ strokeWidth,
1327
+ className: ["foamicon", "foamicon-menu", className].filter(Boolean).join(" "),
1328
+ "aria-hidden": "true",
1329
+ ...props,
1330
+ children: [
1331
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 4H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1332
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 8H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1333
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 12H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1334
+ ]
1335
+ }
1336
+ )
1337
+ );
1338
+ Menu.displayName = "Menu";
1339
+ var Minus = react.forwardRef(
1340
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1341
+ "svg",
1342
+ {
1343
+ ref,
1344
+ width: size,
1345
+ height: size,
1346
+ viewBox: "0 0 16 16",
1347
+ fill: "none",
1348
+ xmlns: "http://www.w3.org/2000/svg",
1349
+ strokeWidth,
1350
+ className: ["foamicon", "foamicon-minus", className].filter(Boolean).join(" "),
1351
+ "aria-hidden": "true",
1352
+ ...props,
1353
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8L3.5 8", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1354
+ }
1355
+ )
1356
+ );
1357
+ Minus.displayName = "Minus";
1358
+ var Move = react.forwardRef(
1359
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1360
+ "svg",
1361
+ {
1362
+ ref,
1363
+ width: size,
1364
+ height: size,
1365
+ viewBox: "0 0 16 16",
1366
+ fill: "none",
1367
+ xmlns: "http://www.w3.org/2000/svg",
1368
+ strokeWidth,
1369
+ className: ["foamicon", "foamicon-move", className].filter(Boolean).join(" "),
1370
+ "aria-hidden": "true",
1371
+ ...props,
1372
+ children: [
1373
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1374
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.33334 12L8.02023 13.3131C7.82497 13.5083 7.50839 13.5083 7.31312 13.3131L6.00001 12", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1375
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.66666 2.66663V13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1376
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1377
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.66668 9.66663L2.1869 8.18685C1.99163 7.99158 1.99163 7.675 2.1869 7.47974L3.66668 5.99996", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1378
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8333 7.83337L2.50001 7.83337", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1379
+ ]
1380
+ }
1381
+ )
1382
+ );
1383
+ Move.displayName = "Move";
1384
+ var Open = react.forwardRef(
1385
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1386
+ "svg",
1387
+ {
1388
+ ref,
1389
+ width: size,
1390
+ height: size,
1391
+ viewBox: "0 0 16 16",
1392
+ fill: "none",
1393
+ xmlns: "http://www.w3.org/2000/svg",
1394
+ strokeWidth,
1395
+ className: ["foamicon", "foamicon-open", className].filter(Boolean).join(" "),
1396
+ "aria-hidden": "true",
1397
+ ...props,
1398
+ children: [
1399
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1400
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 2.5L7.72876 8.27124", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1401
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 2H13.25C13.6642 2 14 2.33579 14 2.75V6.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1402
+ ]
1403
+ }
1404
+ )
1405
+ );
1406
+ Open.displayName = "Open";
1407
+ var Options = react.forwardRef(
1408
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1409
+ "svg",
1410
+ {
1411
+ ref,
1412
+ width: size,
1413
+ height: size,
1414
+ viewBox: "0 0 16 16",
1415
+ fill: "none",
1416
+ xmlns: "http://www.w3.org/2000/svg",
1417
+ strokeWidth,
1418
+ className: ["foamicon", "foamicon-options", className].filter(Boolean).join(" "),
1419
+ "aria-hidden": "true",
1420
+ ...props,
1421
+ children: [
1422
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 5H8.5M13.5 5H11.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1423
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 12H4.5M13.5 12H7.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1424
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "10", cy: "5", r: "1.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1425
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6", cy: "12", r: "1.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1426
+ ]
1427
+ }
1428
+ )
1429
+ );
1430
+ Options.displayName = "Options";
1431
+ var Person = react.forwardRef(
1432
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1433
+ "svg",
1434
+ {
1435
+ ref,
1436
+ width: size,
1437
+ height: size,
1438
+ viewBox: "0 0 16 16",
1439
+ fill: "none",
1440
+ xmlns: "http://www.w3.org/2000/svg",
1441
+ strokeWidth,
1442
+ className: ["foamicon", "foamicon-person", className].filter(Boolean).join(" "),
1443
+ "aria-hidden": "true",
1444
+ ...props,
1445
+ children: [
1446
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "4.5", r: "2", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1447
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1448
+ ]
1449
+ }
1450
+ )
1451
+ );
1452
+ Person.displayName = "Person";
1453
+ var Persons = react.forwardRef(
1454
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1455
+ "svg",
1456
+ {
1457
+ ref,
1458
+ width: size,
1459
+ height: size,
1460
+ viewBox: "0 0 16 16",
1461
+ fill: "none",
1462
+ xmlns: "http://www.w3.org/2000/svg",
1463
+ strokeWidth,
1464
+ className: ["foamicon", "foamicon-persons", className].filter(Boolean).join(" "),
1465
+ "aria-hidden": "true",
1466
+ ...props,
1467
+ children: [
1468
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "5.67676", cy: "4.52344", r: "1.72656", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1469
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11.2344", cy: "4.92725", r: "1.32275", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1470
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1471
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1472
+ ]
1473
+ }
1474
+ )
1475
+ );
1476
+ Persons.displayName = "Persons";
1477
+ var Picture = react.forwardRef(
1478
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1479
+ "svg",
1480
+ {
1481
+ ref,
1482
+ width: size,
1483
+ height: size,
1484
+ viewBox: "0 0 16 16",
1485
+ fill: "none",
1486
+ xmlns: "http://www.w3.org/2000/svg",
1487
+ strokeWidth,
1488
+ className: ["foamicon", "foamicon-picture", className].filter(Boolean).join(" "),
1489
+ "aria-hidden": "true",
1490
+ ...props,
1491
+ children: [
1492
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1493
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1494
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "10.75", cy: "5.75", r: "0.75", fill: "black" })
1495
+ ]
1496
+ }
1497
+ )
1498
+ );
1499
+ Picture.displayName = "Picture";
1500
+ var Pictures = react.forwardRef(
1501
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1502
+ "svg",
1503
+ {
1504
+ ref,
1505
+ width: size,
1506
+ height: size,
1507
+ viewBox: "0 0 16 16",
1508
+ fill: "none",
1509
+ xmlns: "http://www.w3.org/2000/svg",
1510
+ strokeWidth,
1511
+ className: ["foamicon", "foamicon-pictures", className].filter(Boolean).join(" "),
1512
+ "aria-hidden": "true",
1513
+ ...props,
1514
+ children: [
1515
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.20001 4.69894C3.20001 3.95729 3.74157 3.32886 4.47876 3.24769C5.51779 3.13328 7.0589 3 8.60001 3C10.1411 3 11.6822 3.13328 12.7213 3.24769C13.4585 3.32886 14 3.95729 14 4.69894V10.3011C14 11.0427 13.4585 11.6711 12.7213 11.7523C11.6822 11.8667 10.1411 12 8.60001 12C7.0589 12 5.51779 11.8667 4.47876 11.7523C3.74157 11.6711 3.20001 11.0427 3.20001 10.3011V4.69894Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1516
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.20001 8.39995L4.40599 7.19397C5.20828 6.39168 6.52628 6.45147 7.25263 7.32309L7.36446 7.45729C7.83288 8.01939 8.60996 8.21597 9.28932 7.94423C9.95478 7.67804 10.7158 7.86083 11.1878 8.40022L13.55 11.1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1517
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11.125", cy: "5.69995", r: "0.75", fill: "black" }),
1518
+ /* @__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: "black", strokeLinecap: "round" })
1519
+ ]
1520
+ }
1521
+ )
1522
+ );
1523
+ Pictures.displayName = "Pictures";
1524
+ var Pin = react.forwardRef(
1525
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1526
+ "svg",
1527
+ {
1528
+ ref,
1529
+ width: size,
1530
+ height: size,
1531
+ viewBox: "0 0 16 16",
1532
+ fill: "none",
1533
+ xmlns: "http://www.w3.org/2000/svg",
1534
+ strokeWidth,
1535
+ className: ["foamicon", "foamicon-pin", className].filter(Boolean).join(" "),
1536
+ "aria-hidden": "true",
1537
+ ...props,
1538
+ children: [
1539
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.10663 11L3.12133 12.9853", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1540
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 8.15686L5.88804 7.72846C6.14434 7.69044 6.34438 7.48711 6.37821 7.23022C6.48199 6.44217 6.74655 5.68385 7.1555 5.00227L7.9979 3.59826C8.33262 3.0404 9.10248 2.94563 9.5625 3.40565L12.701 6.54411C13.161 7.00413 13.0662 7.77399 12.5083 8.10871L11.1043 8.95111C10.4228 9.36006 9.66444 9.62462 8.87639 9.7284C8.6195 9.76223 8.41617 9.96227 8.37815 10.2186L7.94975 13.1066L3 8.15686Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1541
+ ]
1542
+ }
1543
+ )
1544
+ );
1545
+ Pin.displayName = "Pin";
1546
+ var Play = react.forwardRef(
1547
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1548
+ "svg",
1549
+ {
1550
+ ref,
1551
+ width: size,
1552
+ height: size,
1553
+ viewBox: "0 0 16 16",
1554
+ fill: "none",
1555
+ xmlns: "http://www.w3.org/2000/svg",
1556
+ strokeWidth,
1557
+ className: ["foamicon", "foamicon-play", className].filter(Boolean).join(" "),
1558
+ "aria-hidden": "true",
1559
+ ...props,
1560
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1561
+ }
1562
+ )
1563
+ );
1564
+ Play.displayName = "Play";
1565
+ var Plus = 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-plus", className].filter(Boolean).join(" "),
1577
+ "aria-hidden": "true",
1578
+ ...props,
1579
+ children: [
1580
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3.5V12.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1581
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8L3.5 8", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1582
+ ]
1583
+ }
1584
+ )
1585
+ );
1586
+ Plus.displayName = "Plus";
1587
+ var PromoteActive = react.forwardRef(
1588
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1589
+ "svg",
1590
+ {
1591
+ ref,
1592
+ width: size,
1593
+ height: size,
1594
+ viewBox: "0 0 16 16",
1595
+ fill: "none",
1596
+ xmlns: "http://www.w3.org/2000/svg",
1597
+ strokeWidth,
1598
+ className: ["foamicon", "foamicon-promote-active", className].filter(Boolean).join(" "),
1599
+ "aria-hidden": "true",
1600
+ ...props,
1601
+ children: [
1602
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1603
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 11V11.25C9 12.2165 8.2165 13 7.25 13H7C5.89543 13 5 12.1046 5 11V10", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1604
+ ]
1605
+ }
1606
+ )
1607
+ );
1608
+ PromoteActive.displayName = "PromoteActive";
1609
+ var Promote = react.forwardRef(
1610
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1611
+ "svg",
1612
+ {
1613
+ ref,
1614
+ width: size,
1615
+ height: size,
1616
+ viewBox: "0 0 16 16",
1617
+ fill: "none",
1618
+ xmlns: "http://www.w3.org/2000/svg",
1619
+ strokeWidth,
1620
+ className: ["foamicon", "foamicon-promote", className].filter(Boolean).join(" "),
1621
+ "aria-hidden": "true",
1622
+ ...props,
1623
+ children: [
1624
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1625
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1626
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.957 3.70715L12.957 2.70715", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1627
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7499 5.20711L14.1641 5.20711", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1628
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.4571 2.91426L10.4571 1.50005", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1629
+ ]
1630
+ }
1631
+ )
1632
+ );
1633
+ Promote.displayName = "Promote";
1634
+ var Question = react.forwardRef(
1635
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1636
+ "svg",
1637
+ {
1638
+ ref,
1639
+ width: size,
1640
+ height: size,
1641
+ viewBox: "0 0 16 16",
1642
+ fill: "none",
1643
+ xmlns: "http://www.w3.org/2000/svg",
1644
+ strokeWidth,
1645
+ className: ["foamicon", "foamicon-question", className].filter(Boolean).join(" "),
1646
+ "aria-hidden": "true",
1647
+ ...props,
1648
+ children: [
1649
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1650
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.05453 8.86291C8.12045 7.91806 9.21944 7.27066 9.51321 6.95069C9.70825 6.73825 9.82338 6.47638 9.82338 6.19312C9.82338 5.48321 9.1003 4.90771 8.20834 4.90771C7.31638 4.90771 6.59331 5.48321 6.59331 6.19312", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1651
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.06641", cy: "10.457", r: "0.644531", fill: "black" })
1652
+ ]
1653
+ }
1654
+ )
1655
+ );
1656
+ Question.displayName = "Question";
1657
+ var Reach = react.forwardRef(
1658
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1659
+ "svg",
1660
+ {
1661
+ ref,
1662
+ width: size,
1663
+ height: size,
1664
+ viewBox: "0 0 16 16",
1665
+ fill: "none",
1666
+ xmlns: "http://www.w3.org/2000/svg",
1667
+ strokeWidth,
1668
+ className: ["foamicon", "foamicon-reach", className].filter(Boolean).join(" "),
1669
+ "aria-hidden": "true",
1670
+ ...props,
1671
+ children: [
1672
+ /* @__PURE__ */ jsxRuntime.jsxs("g", { clipPath: "url(#clip0_1_474)", children: [
1673
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.72934 2.35433L7.64644 1.4371C7.8417 1.24181 8.1583 1.2418 8.35358 1.43707L9.27083 2.35433", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1674
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.9998 1.75V4.25", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1675
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.27066 13.8957L8.35356 14.8129C8.1583 15.0082 7.8417 15.0082 7.64642 14.8129L6.72917 13.8957", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1676
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.0002 14.5V12", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1677
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1678
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.2498 7.99976L11.7498 7.99976", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1679
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.10404 9.27063L1.18681 8.35353C0.991524 8.15827 0.991512 7.84167 1.18678 7.64639L2.10404 6.72914", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1680
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.49983 8.00024L3.99983 8.00024", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1681
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1682
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4192 3.58032L10.6514 5.34809", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1683
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1684
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.40382 12.5964L5.17159 10.8287", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1685
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1686
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4194 12.4192L10.6517 10.6514", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1687
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.93244 4.72958L2.93235 3.43251C2.93233 3.15636 3.15619 2.93248 3.43235 2.93248L4.72954 2.93248", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1688
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.40353 3.40405L5.1713 5.17182", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1689
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "7.99994", cy: "8", r: "1.46558", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1690
+ ] }),
1691
+ /* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsx("clipPath", { id: "clip0_1_474", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "16", height: "16", fill: "white", transform: "matrix(-1 0 0 -1 16 16)" }) }) })
1692
+ ]
1693
+ }
1694
+ )
1695
+ );
1696
+ Reach.displayName = "Reach";
1697
+ var Recents = react.forwardRef(
1698
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1699
+ "svg",
1700
+ {
1701
+ ref,
1702
+ width: size,
1703
+ height: size,
1704
+ viewBox: "0 0 16 16",
1705
+ fill: "none",
1706
+ xmlns: "http://www.w3.org/2000/svg",
1707
+ strokeWidth,
1708
+ className: ["foamicon", "foamicon-recents", className].filter(Boolean).join(" "),
1709
+ "aria-hidden": "true",
1710
+ ...props,
1711
+ children: [
1712
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 5.25V8.25H9.75", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1713
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.00003 5.3103L3.65514 5.31028C3.379 5.31027 3.15515 5.08642 3.15515 4.81028L3.15515 2.49997", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1714
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1715
+ ]
1716
+ }
1717
+ )
1718
+ );
1719
+ Recents.displayName = "Recents";
1720
+ var Reel = react.forwardRef(
1721
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1722
+ "svg",
1723
+ {
1724
+ ref,
1725
+ width: size,
1726
+ height: size,
1727
+ viewBox: "0 0 16 16",
1728
+ fill: "none",
1729
+ xmlns: "http://www.w3.org/2000/svg",
1730
+ strokeWidth,
1731
+ className: ["foamicon", "foamicon-reel", className].filter(Boolean).join(" "),
1732
+ "aria-hidden": "true",
1733
+ ...props,
1734
+ children: [
1735
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1736
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 4V12", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1737
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 6H3.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1738
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 8H3.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1739
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 10H3.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1740
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 6H14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1741
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 8H14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1742
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 10H14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1743
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4V12", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1744
+ /* @__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: "black" })
1745
+ ]
1746
+ }
1747
+ )
1748
+ );
1749
+ Reel.displayName = "Reel";
1750
+ var Refresh = react.forwardRef(
1751
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1752
+ "svg",
1753
+ {
1754
+ ref,
1755
+ width: size,
1756
+ height: size,
1757
+ viewBox: "0 0 16 16",
1758
+ fill: "none",
1759
+ xmlns: "http://www.w3.org/2000/svg",
1760
+ strokeWidth,
1761
+ className: ["foamicon", "foamicon-refresh", className].filter(Boolean).join(" "),
1762
+ "aria-hidden": "true",
1763
+ ...props,
1764
+ children: [
1765
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1766
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.94796 13.8483L4.47941 12.0997C4.40794 11.833 4.56623 11.5588 4.83297 11.4873L6.58159 11.0188", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1767
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1768
+ ]
1769
+ }
1770
+ )
1771
+ );
1772
+ Refresh.displayName = "Refresh";
1773
+ var Reload = react.forwardRef(
1774
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1775
+ "svg",
1776
+ {
1777
+ ref,
1778
+ width: size,
1779
+ height: size,
1780
+ viewBox: "0 0 16 16",
1781
+ fill: "none",
1782
+ xmlns: "http://www.w3.org/2000/svg",
1783
+ strokeWidth,
1784
+ className: ["foamicon", "foamicon-reload", className].filter(Boolean).join(" "),
1785
+ "aria-hidden": "true",
1786
+ ...props,
1787
+ children: [
1788
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1789
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1790
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.5117 11.6919C9.55829 13.6453 6.39117 13.6453 4.43775 11.6919C3.23242 10.4865 2.77082 8.8191 3.05295 7.25984", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1791
+ ]
1792
+ }
1793
+ )
1794
+ );
1795
+ Reload.displayName = "Reload";
1796
+ var Reply = react.forwardRef(
1797
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1798
+ "svg",
1799
+ {
1800
+ ref,
1801
+ width: size,
1802
+ height: size,
1803
+ viewBox: "0 0 16 16",
1804
+ fill: "none",
1805
+ xmlns: "http://www.w3.org/2000/svg",
1806
+ strokeWidth,
1807
+ className: ["foamicon", "foamicon-reply", className].filter(Boolean).join(" "),
1808
+ "aria-hidden": "true",
1809
+ ...props,
1810
+ children: [
1811
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.33333 4L12.6464 7.31311C12.8417 7.50838 12.8417 7.82496 12.6464 8.02022L9.33333 11.3333", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1812
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.3333 7.66663H7.00345C4.85908 7.66663 3.09619 5.97566 3.00692 3.83315L2.99998 3.66663", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1813
+ ]
1814
+ }
1815
+ )
1816
+ );
1817
+ Reply.displayName = "Reply";
1818
+ var Save = react.forwardRef(
1819
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1820
+ "svg",
1821
+ {
1822
+ ref,
1823
+ width: size,
1824
+ height: size,
1825
+ viewBox: "0 0 16 16",
1826
+ fill: "none",
1827
+ xmlns: "http://www.w3.org/2000/svg",
1828
+ strokeWidth,
1829
+ className: ["foamicon", "foamicon-save", className].filter(Boolean).join(" "),
1830
+ "aria-hidden": "true",
1831
+ ...props,
1832
+ children: [
1833
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1834
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1835
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1836
+ ]
1837
+ }
1838
+ )
1839
+ );
1840
+ Save.displayName = "Save";
1841
+ var SearchPerson = react.forwardRef(
1842
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1843
+ "svg",
1844
+ {
1845
+ ref,
1846
+ width: size,
1847
+ height: size,
1848
+ viewBox: "0 0 16 16",
1849
+ fill: "none",
1850
+ xmlns: "http://www.w3.org/2000/svg",
1851
+ strokeWidth,
1852
+ className: ["foamicon", "foamicon-search-person", className].filter(Boolean).join(" "),
1853
+ "aria-hidden": "true",
1854
+ ...props,
1855
+ children: [
1856
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "7", cy: "5.82275", r: "1.32275", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1857
+ /* @__PURE__ */ jsxRuntime.jsx("mask", { id: "mask0_1_529", 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" }) }),
1858
+ /* @__PURE__ */ jsxRuntime.jsx("g", { mask: "url(#mask0_1_529)", 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: "black", strokeLinecap: "round", strokeLinejoin: "round" }) }),
1859
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1860
+ ]
1861
+ }
1862
+ )
1863
+ );
1864
+ SearchPerson.displayName = "SearchPerson";
1865
+ var Search = react.forwardRef(
1866
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1867
+ "svg",
1868
+ {
1869
+ ref,
1870
+ width: size,
1871
+ height: size,
1872
+ viewBox: "0 0 16 16",
1873
+ fill: "none",
1874
+ xmlns: "http://www.w3.org/2000/svg",
1875
+ strokeWidth,
1876
+ className: ["foamicon", "foamicon-search", className].filter(Boolean).join(" "),
1877
+ "aria-hidden": "true",
1878
+ ...props,
1879
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1880
+ }
1881
+ )
1882
+ );
1883
+ Search.displayName = "Search";
1884
+ var Share = react.forwardRef(
1885
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1886
+ "svg",
1887
+ {
1888
+ ref,
1889
+ width: size,
1890
+ height: size,
1891
+ viewBox: "0 0 16 16",
1892
+ fill: "none",
1893
+ xmlns: "http://www.w3.org/2000/svg",
1894
+ strokeWidth,
1895
+ className: ["foamicon", "foamicon-share", className].filter(Boolean).join(" "),
1896
+ "aria-hidden": "true",
1897
+ ...props,
1898
+ children: [
1899
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1900
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00024 2.66675L8.00024 9.66675", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1901
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1902
+ ]
1903
+ }
1904
+ )
1905
+ );
1906
+ Share.displayName = "Share";
1907
+ var Sidepanel = react.forwardRef(
1908
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1909
+ "svg",
1910
+ {
1911
+ ref,
1912
+ width: size,
1913
+ height: size,
1914
+ viewBox: "0 0 16 16",
1915
+ fill: "none",
1916
+ xmlns: "http://www.w3.org/2000/svg",
1917
+ strokeWidth,
1918
+ className: ["foamicon", "foamicon-sidepanel", className].filter(Boolean).join(" "),
1919
+ "aria-hidden": "true",
1920
+ ...props,
1921
+ children: [
1922
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1923
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 3V13", stroke: "black" })
1924
+ ]
1925
+ }
1926
+ )
1927
+ );
1928
+ Sidepanel.displayName = "Sidepanel";
1929
+ var SignOut = react.forwardRef(
1930
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1931
+ "svg",
1932
+ {
1933
+ ref,
1934
+ width: size,
1935
+ height: size,
1936
+ viewBox: "0 0 16 16",
1937
+ fill: "none",
1938
+ xmlns: "http://www.w3.org/2000/svg",
1939
+ strokeWidth,
1940
+ className: ["foamicon", "foamicon-sign-out", className].filter(Boolean).join(" "),
1941
+ "aria-hidden": "true",
1942
+ ...props,
1943
+ children: [
1944
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1945
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8334 5.33325L12.9697 7.46959C13.2626 7.76248 13.2626 8.23736 12.9697 8.53025L10.8334 10.6666", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1946
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8333 8H7.49998", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1947
+ ]
1948
+ }
1949
+ )
1950
+ );
1951
+ SignOut.displayName = "SignOut";
1952
+ var SortSmall = react.forwardRef(
1953
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1954
+ "svg",
1955
+ {
1956
+ ref,
1957
+ width: size,
1958
+ height: size,
1959
+ viewBox: "0 0 16 16",
1960
+ fill: "none",
1961
+ xmlns: "http://www.w3.org/2000/svg",
1962
+ strokeWidth,
1963
+ className: ["foamicon", "foamicon-sort-small", className].filter(Boolean).join(" "),
1964
+ "aria-hidden": "true",
1965
+ ...props,
1966
+ children: [
1967
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 5.66667L4.81311 3.35355C5.00838 3.15829 5.32496 3.15829 5.52022 3.35355L7.83333 5.66667", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1968
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.16675 3.66675V11.0001", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1969
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.8334 10.3333L11.5203 12.6464C11.325 12.8417 11.0084 12.8417 10.8132 12.6464L8.50004 10.3333", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
1970
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.1666 12.3333L11.1666 4.99992", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
1971
+ ]
1972
+ }
1973
+ )
1974
+ );
1975
+ SortSmall.displayName = "SortSmall";
1976
+ var Sort = 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-sort", className].filter(Boolean).join(" "),
1988
+ "aria-hidden": "true",
1989
+ ...props,
1990
+ children: [
1991
+ /* @__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: "black" }),
1992
+ /* @__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: "black" })
1993
+ ]
1994
+ }
1995
+ )
1996
+ );
1997
+ Sort.displayName = "Sort";
1998
+ var SpeakerOff = react.forwardRef(
1999
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2000
+ "svg",
2001
+ {
2002
+ ref,
2003
+ width: size,
2004
+ height: size,
2005
+ viewBox: "0 0 16 16",
2006
+ fill: "none",
2007
+ xmlns: "http://www.w3.org/2000/svg",
2008
+ strokeWidth,
2009
+ className: ["foamicon", "foamicon-speaker-off", className].filter(Boolean).join(" "),
2010
+ "aria-hidden": "true",
2011
+ ...props,
2012
+ children: [
2013
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2014
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2015
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2016
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6667 2.5L2.5 13.67", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2017
+ ]
2018
+ }
2019
+ )
2020
+ );
2021
+ SpeakerOff.displayName = "SpeakerOff";
2022
+ var Speaker = react.forwardRef(
2023
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2024
+ "svg",
2025
+ {
2026
+ ref,
2027
+ width: size,
2028
+ height: size,
2029
+ viewBox: "0 0 16 16",
2030
+ fill: "none",
2031
+ xmlns: "http://www.w3.org/2000/svg",
2032
+ strokeWidth,
2033
+ className: ["foamicon", "foamicon-speaker", className].filter(Boolean).join(" "),
2034
+ "aria-hidden": "true",
2035
+ ...props,
2036
+ children: [
2037
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2038
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2039
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2040
+ ]
2041
+ }
2042
+ )
2043
+ );
2044
+ Speaker.displayName = "Speaker";
2045
+ var Spinner = react.forwardRef(
2046
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2047
+ "svg",
2048
+ {
2049
+ ref,
2050
+ width: size,
2051
+ height: size,
2052
+ viewBox: "0 0 16 16",
2053
+ fill: "none",
2054
+ xmlns: "http://www.w3.org/2000/svg",
2055
+ strokeWidth,
2056
+ className: ["foamicon", "foamicon-spinner", className].filter(Boolean).join(" "),
2057
+ "aria-hidden": "true",
2058
+ ...props,
2059
+ 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.01382 13.5447 5.89524 13.0813C4.77667 12.618 3.84223 11.7985 3.23686 10.75C2.63149 9.70147 2.38902 8.48249 2.54705 7.28211C2.70509 6.08173 3.25479 4.96703 4.11091 4.11091C4.96703 3.25479 6.08173 2.70509 7.28211 2.54705C8.48249 2.38902 9.70147 2.63149 10.75 3.23686", stroke: "black", strokeLinecap: "round" })
2060
+ }
2061
+ )
2062
+ );
2063
+ Spinner.displayName = "Spinner";
2064
+ var Star = react.forwardRef(
2065
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2066
+ "svg",
2067
+ {
2068
+ ref,
2069
+ width: size,
2070
+ height: size,
2071
+ viewBox: "0 0 16 16",
2072
+ fill: "none",
2073
+ xmlns: "http://www.w3.org/2000/svg",
2074
+ strokeWidth,
2075
+ className: ["foamicon", "foamicon-star", className].filter(Boolean).join(" "),
2076
+ "aria-hidden": "true",
2077
+ ...props,
2078
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.55163 2.56823C7.73504 2.19664 8.26492 2.19664 8.44833 2.56823L9.94376 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.3499 9.85019 11.3778 10.0125L11.9487 13.3412C12.0188 13.7497 11.59 14.0612 11.2232 13.8683L8.2327 12.2956C8.08701 12.219 7.91295 12.219 7.76725 12.2956L4.7768 13.8683C4.40998 14.0612 3.98121 13.7497 4.05127 13.3412L4.62219 10.0125C4.65002 9.85019 4.59619 9.68462 4.47825 9.56975L2.05865 7.21306C1.76186 6.92398 1.92525 6.42006 2.3352 6.36014L5.68016 5.87122C5.84284 5.84744 5.98343 5.74521 6.0562 5.59779L7.55163 2.56823Z", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2079
+ }
2080
+ )
2081
+ );
2082
+ Star.displayName = "Star";
2083
+ var Statistics = react.forwardRef(
2084
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2085
+ "svg",
2086
+ {
2087
+ ref,
2088
+ width: size,
2089
+ height: size,
2090
+ viewBox: "0 0 16 16",
2091
+ fill: "none",
2092
+ xmlns: "http://www.w3.org/2000/svg",
2093
+ strokeWidth,
2094
+ className: ["foamicon", "foamicon-statistics", className].filter(Boolean).join(" "),
2095
+ "aria-hidden": "true",
2096
+ ...props,
2097
+ children: [
2098
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2099
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 11V7.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2100
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 11V5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2101
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 11V9.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2102
+ ]
2103
+ }
2104
+ )
2105
+ );
2106
+ Statistics.displayName = "Statistics";
2107
+ var Stop = react.forwardRef(
2108
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2109
+ "svg",
2110
+ {
2111
+ ref,
2112
+ width: size,
2113
+ height: size,
2114
+ viewBox: "0 0 16 16",
2115
+ fill: "none",
2116
+ xmlns: "http://www.w3.org/2000/svg",
2117
+ strokeWidth,
2118
+ className: ["foamicon", "foamicon-stop", className].filter(Boolean).join(" "),
2119
+ "aria-hidden": "true",
2120
+ ...props,
2121
+ 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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2122
+ }
2123
+ )
2124
+ );
2125
+ Stop.displayName = "Stop";
2126
+ var TextCenter = react.forwardRef(
2127
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2128
+ "svg",
2129
+ {
2130
+ ref,
2131
+ width: size,
2132
+ height: size,
2133
+ viewBox: "0 0 16 16",
2134
+ fill: "none",
2135
+ xmlns: "http://www.w3.org/2000/svg",
2136
+ strokeWidth,
2137
+ className: ["foamicon", "foamicon-text-center", className].filter(Boolean).join(" "),
2138
+ "aria-hidden": "true",
2139
+ ...props,
2140
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.5 4C3.5 3.72386 3.72386 3.5 4 3.5H12C12.2761 3.5 12.5 3.72386 12.5 4C12.5 4.27614 12.2761 4.5 12 4.5H4C3.72386 4.5 3.5 4.27614 3.5 4ZM1.5 8C1.5 7.72386 1.72386 7.5 2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8C14.5 8.27614 14.2761 8.5 14 8.5H2C1.72386 8.5 1.5 8.27614 1.5 8ZM5 11.5C4.72386 11.5 4.5 11.7239 4.5 12C4.5 12.2761 4.72386 12.5 5 12.5H11C11.2761 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.2761 11.5 11 11.5H5Z", fill: "black" })
2141
+ }
2142
+ )
2143
+ );
2144
+ TextCenter.displayName = "TextCenter";
2145
+ var TextDedent = react.forwardRef(
2146
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2147
+ "svg",
2148
+ {
2149
+ ref,
2150
+ width: size,
2151
+ height: size,
2152
+ viewBox: "0 0 16 16",
2153
+ fill: "none",
2154
+ xmlns: "http://www.w3.org/2000/svg",
2155
+ strokeWidth,
2156
+ className: ["foamicon", "foamicon-text-dedent", className].filter(Boolean).join(" "),
2157
+ "aria-hidden": "true",
2158
+ ...props,
2159
+ children: [
2160
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2161
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 8H14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2162
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2163
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.00002 9.83325L2.16669 7.99992L4.00002 6.16659", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2164
+ ]
2165
+ }
2166
+ )
2167
+ );
2168
+ TextDedent.displayName = "TextDedent";
2169
+ var TextIndent = react.forwardRef(
2170
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2171
+ "svg",
2172
+ {
2173
+ ref,
2174
+ width: size,
2175
+ height: size,
2176
+ viewBox: "0 0 16 16",
2177
+ fill: "none",
2178
+ xmlns: "http://www.w3.org/2000/svg",
2179
+ strokeWidth,
2180
+ className: ["foamicon", "foamicon-text-indent", className].filter(Boolean).join(" "),
2181
+ "aria-hidden": "true",
2182
+ ...props,
2183
+ children: [
2184
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2185
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 8H14", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2186
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12H11", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2187
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.16667 6.1665L4 7.99984L2.16667 9.83317", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2188
+ ]
2189
+ }
2190
+ )
2191
+ );
2192
+ TextIndent.displayName = "TextIndent";
2193
+ var TextItalic = react.forwardRef(
2194
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2195
+ "svg",
2196
+ {
2197
+ ref,
2198
+ width: size,
2199
+ height: size,
2200
+ viewBox: "0 0 16 16",
2201
+ fill: "none",
2202
+ xmlns: "http://www.w3.org/2000/svg",
2203
+ strokeWidth,
2204
+ className: ["foamicon", "foamicon-text-italic", className].filter(Boolean).join(" "),
2205
+ "aria-hidden": "true",
2206
+ ...props,
2207
+ 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: "black" })
2208
+ }
2209
+ )
2210
+ );
2211
+ TextItalic.displayName = "TextItalic";
2212
+ var TextJustified = react.forwardRef(
2213
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2214
+ "svg",
2215
+ {
2216
+ ref,
2217
+ width: size,
2218
+ height: size,
2219
+ viewBox: "0 0 16 16",
2220
+ fill: "none",
2221
+ xmlns: "http://www.w3.org/2000/svg",
2222
+ strokeWidth,
2223
+ className: ["foamicon", "foamicon-text-justified", className].filter(Boolean).join(" "),
2224
+ "aria-hidden": "true",
2225
+ ...props,
2226
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 11.5C14.2761 11.5 14.5 11.7239 14.5 12C14.5 12.2761 14.2761 12.5 14 12.5H2C1.72386 12.5 1.5 12.2761 1.5 12C1.5 11.7239 1.72386 11.5 2 11.5H14ZM14 7.5C14.2761 7.5 14.5 7.72386 14.5 8C14.5 8.27614 14.2761 8.5 14 8.5H2C1.72386 8.5 1.5 8.27614 1.5 8C1.5 7.72386 1.72386 7.5 2 7.5H14ZM14 3.5C14.2761 3.5 14.5 3.72386 14.5 4C14.5 4.27614 14.2761 4.5 14 4.5H2C1.72386 4.5 1.5 4.27614 1.5 4C1.5 3.72386 1.72386 3.5 2 3.5H14Z", fill: "black" })
2227
+ }
2228
+ )
2229
+ );
2230
+ TextJustified.displayName = "TextJustified";
2231
+ var TextLeft = react.forwardRef(
2232
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
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-text-left", className].filter(Boolean).join(" "),
2243
+ "aria-hidden": "true",
2244
+ ...props,
2245
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.5 4C1.5 3.72386 1.72386 3.5 2 3.5H11C11.2761 3.5 11.5 3.72386 11.5 4C11.5 4.27614 11.2761 4.5 11 4.5H2C1.72386 4.5 1.5 4.27614 1.5 4ZM1.5 8C1.5 7.72386 1.72386 7.5 2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8C14.5 8.27614 14.2761 8.5 14 8.5H2C1.72386 8.5 1.5 8.27614 1.5 8ZM2 11.5C1.72386 11.5 1.5 11.7239 1.5 12C1.5 12.2761 1.72386 12.5 2 12.5H8C8.27614 12.5 8.5 12.2761 8.5 12C8.5 11.7239 8.27614 11.5 8 11.5H2Z", fill: "black" })
2246
+ }
2247
+ )
2248
+ );
2249
+ TextLeft.displayName = "TextLeft";
2250
+ var TextListNumbered = react.forwardRef(
2251
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2252
+ "svg",
2253
+ {
2254
+ ref,
2255
+ width: size,
2256
+ height: size,
2257
+ viewBox: "0 0 16 16",
2258
+ fill: "none",
2259
+ xmlns: "http://www.w3.org/2000/svg",
2260
+ strokeWidth,
2261
+ className: ["foamicon", "foamicon-text-list-numbered", className].filter(Boolean).join(" "),
2262
+ "aria-hidden": "true",
2263
+ ...props,
2264
+ children: [
2265
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 4H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2266
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 8H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2267
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5 12H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2268
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.85938 11.7774C3.03906 11.7774 3.19336 11.7334 3.32227 11.6455C3.45312 11.5576 3.51855 11.4314 3.51855 11.267C3.51855 11.1416 3.4668 11.0341 3.36328 10.9446C3.25977 10.8534 3.12012 10.8078 2.94434 10.8078C2.8252 10.8078 2.72656 10.8216 2.64844 10.8493C2.57227 10.877 2.51172 10.9136 2.4668 10.9592C2.42188 11.0048 2.37891 11.0634 2.33789 11.1351C2.29883 11.2067 2.2627 11.2743 2.22949 11.3378C2.20996 11.372 2.1748 11.3988 2.12402 11.4184C2.07324 11.4379 2.01465 11.4477 1.94824 11.4477C1.87012 11.4477 1.79785 11.4216 1.73145 11.3695C1.66699 11.3158 1.63477 11.245 1.63477 11.157C1.63477 11.0724 1.66504 10.9836 1.72559 10.8908C1.78809 10.7964 1.87793 10.7068 1.99512 10.6222C2.11426 10.5375 2.26172 10.4699 2.4375 10.4195C2.61328 10.3674 2.80957 10.3413 3.02637 10.3413C3.21582 10.3413 3.38867 10.3633 3.54492 10.4073C3.70117 10.4496 3.83691 10.5115 3.95215 10.5929C4.06738 10.6743 4.1543 10.7687 4.21289 10.8762C4.27148 10.9836 4.30078 11.0992 4.30078 11.223C4.30078 11.3858 4.25781 11.5258 4.17188 11.6431C4.08789 11.7587 3.9668 11.8718 3.80859 11.9826C3.96094 12.0509 4.08887 12.1291 4.19238 12.217C4.29785 12.3049 4.37695 12.4026 4.42969 12.5101C4.48242 12.6159 4.50879 12.7307 4.50879 12.8545C4.50879 13.0026 4.47266 13.1459 4.40039 13.2843C4.33008 13.4227 4.22559 13.5465 4.08691 13.6556C3.94824 13.763 3.7832 13.8477 3.5918 13.9096C3.40234 13.9698 3.19238 13.9999 2.96191 13.9999C2.72754 13.9999 2.51758 13.9649 2.33203 13.8949C2.14648 13.8249 1.99316 13.7378 1.87207 13.6336C1.75293 13.5277 1.66211 13.4186 1.59961 13.3063C1.53906 13.194 1.50879 13.1011 1.50879 13.0279C1.50879 12.9334 1.54492 12.8577 1.61719 12.8007C1.69141 12.7421 1.7832 12.7128 1.89258 12.7128C1.94727 12.7128 2 12.7267 2.05078 12.7543C2.10156 12.7804 2.13477 12.8121 2.15039 12.8496C2.25195 13.0759 2.36035 13.2444 2.47559 13.3551C2.59277 13.4642 2.75684 13.5188 2.96777 13.5188C3.08887 13.5188 3.20508 13.4944 3.31641 13.4455C3.42969 13.395 3.52246 13.321 3.59473 13.2233C3.66895 13.1256 3.70605 13.0124 3.70605 12.8838C3.70605 12.6933 3.64355 12.5443 3.51855 12.4368C3.39355 12.3277 3.21973 12.2732 2.99707 12.2732C2.95801 12.2732 2.89746 12.2765 2.81543 12.283C2.7334 12.2895 2.68066 12.2927 2.65723 12.2927C2.5498 12.2927 2.4668 12.2708 2.4082 12.2268C2.34961 12.1812 2.32031 12.1185 2.32031 12.0387C2.32031 11.9606 2.35547 11.8979 2.42578 11.8507C2.49609 11.8018 2.60059 11.7774 2.73926 11.7774H2.85938Z", fill: "black" }),
2269
+ /* @__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: "black" }),
2270
+ /* @__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: "black" })
2271
+ ]
2272
+ }
2273
+ )
2274
+ );
2275
+ TextListNumbered.displayName = "TextListNumbered";
2276
+ var TextList = react.forwardRef(
2277
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2278
+ "svg",
2279
+ {
2280
+ ref,
2281
+ width: size,
2282
+ height: size,
2283
+ viewBox: "0 0 16 16",
2284
+ fill: "none",
2285
+ xmlns: "http://www.w3.org/2000/svg",
2286
+ strokeWidth,
2287
+ className: ["foamicon", "foamicon-text-list", className].filter(Boolean).join(" "),
2288
+ "aria-hidden": "true",
2289
+ ...props,
2290
+ children: [
2291
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 4H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2292
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 8H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2293
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.5 12H13", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2294
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "4", r: "0.75", fill: "black" }),
2295
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "8", r: "0.75", fill: "black" }),
2296
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "2.75", cy: "12", r: "0.75", fill: "black" })
2297
+ ]
2298
+ }
2299
+ )
2300
+ );
2301
+ TextList.displayName = "TextList";
2302
+ var TextRight = react.forwardRef(
2303
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2304
+ "svg",
2305
+ {
2306
+ ref,
2307
+ width: size,
2308
+ height: size,
2309
+ viewBox: "0 0 16 16",
2310
+ fill: "none",
2311
+ xmlns: "http://www.w3.org/2000/svg",
2312
+ strokeWidth,
2313
+ className: ["foamicon", "foamicon-text-right", className].filter(Boolean).join(" "),
2314
+ "aria-hidden": "true",
2315
+ ...props,
2316
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.5 4C4.5 3.72386 4.72386 3.5 5 3.5H14C14.2761 3.5 14.5 3.72386 14.5 4C14.5 4.27614 14.2761 4.5 14 4.5H5C4.72386 4.5 4.5 4.27614 4.5 4ZM1.5 8C1.5 7.72386 1.72386 7.5 2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8C14.5 8.27614 14.2761 8.5 14 8.5H2C1.72386 8.5 1.5 8.27614 1.5 8ZM8 11.5C7.72386 11.5 7.5 11.7239 7.5 12C7.5 12.2761 7.72386 12.5 8 12.5H14C14.2761 12.5 14.5 12.2761 14.5 12C14.5 11.7239 14.2761 11.5 14 11.5H8Z", fill: "black" })
2317
+ }
2318
+ )
2319
+ );
2320
+ TextRight.displayName = "TextRight";
2321
+ var TextUnformat = react.forwardRef(
2322
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2323
+ "svg",
2324
+ {
2325
+ ref,
2326
+ width: size,
2327
+ height: size,
2328
+ viewBox: "0 0 16 16",
2329
+ fill: "none",
2330
+ xmlns: "http://www.w3.org/2000/svg",
2331
+ strokeWidth,
2332
+ className: ["foamicon", "foamicon-text-unformat", className].filter(Boolean).join(" "),
2333
+ "aria-hidden": "true",
2334
+ ...props,
2335
+ children: [
2336
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3251 2.29834L3.06451 12.5588", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2337
+ /* @__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: "black" })
2338
+ ]
2339
+ }
2340
+ )
2341
+ );
2342
+ TextUnformat.displayName = "TextUnformat";
2343
+ var Text = react.forwardRef(
2344
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2345
+ "svg",
2346
+ {
2347
+ ref,
2348
+ width: size,
2349
+ height: size,
2350
+ viewBox: "0 0 16 16",
2351
+ fill: "none",
2352
+ xmlns: "http://www.w3.org/2000/svg",
2353
+ strokeWidth,
2354
+ className: ["foamicon", "foamicon-text", className].filter(Boolean).join(" "),
2355
+ "aria-hidden": "true",
2356
+ ...props,
2357
+ 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: "black" })
2358
+ }
2359
+ )
2360
+ );
2361
+ Text.displayName = "Text";
2362
+ var ThemeDark = react.forwardRef(
2363
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2364
+ "svg",
2365
+ {
2366
+ ref,
2367
+ width: size,
2368
+ height: size,
2369
+ viewBox: "0 0 16 16",
2370
+ fill: "none",
2371
+ xmlns: "http://www.w3.org/2000/svg",
2372
+ strokeWidth,
2373
+ className: ["foamicon", "foamicon-theme-dark", className].filter(Boolean).join(" "),
2374
+ "aria-hidden": "true",
2375
+ ...props,
2376
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.55273 10.4053L2.46556 9.91293C2.31109 9.94028 2.17841 10.0385 2.10721 10.1783C2.036 10.3181 2.03453 10.4832 2.10322 10.6242L2.55273 10.4053ZM7.16016 2.51074L7.12973 2.01167C6.97323 2.02121 6.83028 2.10361 6.74357 2.23424C6.65686 2.36487 6.63646 2.5286 6.68844 2.67652L7.16016 2.51074ZM7.5 2.5V3C10.2614 3 12.5 5.23858 12.5 8H13H13.5C13.5 4.68629 10.8137 2 7.5 2V2.5ZM13 8H12.5C12.5 10.7614 10.2614 13 7.5 13V13.5V14C10.8137 14 13.5 11.3137 13.5 8H13ZM7.5 13.5V13C5.52353 13 3.81413 11.8531 3.00225 10.1863L2.55273 10.4053L2.10322 10.6242C3.07616 12.6217 5.1265 14 7.5 14V13.5ZM2.55273 10.4053L2.63991 10.8976C5.68572 10.3583 8 7.70143 8 4.5H7.5H7C7 7.20735 5.04274 9.4566 2.46556 9.91293L2.55273 10.4053ZM7.5 4.5H8C8 3.74423 7.86883 3.01922 7.63187 2.34496L7.16016 2.51074L6.68844 2.67652C6.88917 3.24769 7 3.86074 7 4.5H7.5ZM7.16016 2.51074L7.19058 3.00982C7.29412 3.0035 7.3972 3 7.5 3V2.5V2C7.37453 2 7.25101 2.00427 7.12973 2.01167L7.16016 2.51074Z", fill: "black" })
2377
+ }
2378
+ )
2379
+ );
2380
+ ThemeDark.displayName = "ThemeDark";
2381
+ var ThemeLight = react.forwardRef(
2382
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2383
+ "svg",
2384
+ {
2385
+ ref,
2386
+ width: size,
2387
+ height: size,
2388
+ viewBox: "0 0 16 16",
2389
+ fill: "none",
2390
+ xmlns: "http://www.w3.org/2000/svg",
2391
+ strokeWidth,
2392
+ className: ["foamicon", "foamicon-theme-light", className].filter(Boolean).join(" "),
2393
+ "aria-hidden": "true",
2394
+ ...props,
2395
+ children: [
2396
+ /* @__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: "black", strokeLinecap: "round" }),
2397
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "2.5", stroke: "black", strokeLinecap: "round" })
2398
+ ]
2399
+ }
2400
+ )
2401
+ );
2402
+ ThemeLight.displayName = "ThemeLight";
2403
+ var ThemeSystem = react.forwardRef(
2404
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2405
+ "svg",
2406
+ {
2407
+ ref,
2408
+ width: size,
2409
+ height: size,
2410
+ viewBox: "0 0 16 16",
2411
+ fill: "none",
2412
+ xmlns: "http://www.w3.org/2000/svg",
2413
+ strokeWidth,
2414
+ className: ["foamicon", "foamicon-theme-system", className].filter(Boolean).join(" "),
2415
+ "aria-hidden": "true",
2416
+ ...props,
2417
+ children: [
2418
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "8", r: "5.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2419
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2V14Z", fill: "black" })
2420
+ ]
2421
+ }
2422
+ )
2423
+ );
2424
+ ThemeSystem.displayName = "ThemeSystem";
2425
+ var ThumbUp = react.forwardRef(
2426
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2427
+ "svg",
2428
+ {
2429
+ ref,
2430
+ width: size,
2431
+ height: size,
2432
+ viewBox: "0 0 16 16",
2433
+ fill: "none",
2434
+ xmlns: "http://www.w3.org/2000/svg",
2435
+ strokeWidth,
2436
+ className: ["foamicon", "foamicon-thumb-up", className].filter(Boolean).join(" "),
2437
+ "aria-hidden": "true",
2438
+ ...props,
2439
+ children: [
2440
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2441
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2442
+ ]
2443
+ }
2444
+ )
2445
+ );
2446
+ ThumbUp.displayName = "ThumbUp";
2447
+ var ThumbsDown = react.forwardRef(
2448
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2449
+ "svg",
2450
+ {
2451
+ ref,
2452
+ width: size,
2453
+ height: size,
2454
+ viewBox: "0 0 16 16",
2455
+ fill: "none",
2456
+ xmlns: "http://www.w3.org/2000/svg",
2457
+ strokeWidth,
2458
+ className: ["foamicon", "foamicon-thumbs-down", className].filter(Boolean).join(" "),
2459
+ "aria-hidden": "true",
2460
+ ...props,
2461
+ children: [
2462
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2463
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2464
+ ]
2465
+ }
2466
+ )
2467
+ );
2468
+ ThumbsDown.displayName = "ThumbsDown";
2469
+ var Trash = react.forwardRef(
2470
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2471
+ "svg",
2472
+ {
2473
+ ref,
2474
+ width: size,
2475
+ height: size,
2476
+ viewBox: "0 0 16 16",
2477
+ fill: "none",
2478
+ xmlns: "http://www.w3.org/2000/svg",
2479
+ strokeWidth,
2480
+ className: ["foamicon", "foamicon-trash", className].filter(Boolean).join(" "),
2481
+ "aria-hidden": "true",
2482
+ ...props,
2483
+ children: [
2484
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5 4H13.5", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2485
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.27586 4L3.90367 13.1032C3.95791 13.8897 4.61174 14.5 5.40012 14.5H10.5999C11.3883 14.5 12.0421 13.8897 12.0963 13.1032L12.7241 4", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2486
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2487
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 12L10 6M6.5 12L6 6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2488
+ ]
2489
+ }
2490
+ )
2491
+ );
2492
+ Trash.displayName = "Trash";
2493
+ var TrendDown = react.forwardRef(
2494
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2495
+ "svg",
2496
+ {
2497
+ ref,
2498
+ width: size,
2499
+ height: size,
2500
+ viewBox: "0 0 16 16",
2501
+ fill: "none",
2502
+ xmlns: "http://www.w3.org/2000/svg",
2503
+ strokeWidth,
2504
+ className: ["foamicon", "foamicon-trend-down", className].filter(Boolean).join(" "),
2505
+ "aria-hidden": "true",
2506
+ ...props,
2507
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.1667 11.3333C10.1667 11.6094 10.3905 11.8333 10.6667 11.8333H14C14.2761 11.8333 14.5 11.6094 14.5 11.3333V7.99992C14.5 7.72378 14.2761 7.49992 14 7.49992C13.7239 7.49992 13.5 7.72378 13.5 7.99992V10.1261L9.02022 5.64637C8.82496 5.4511 8.50838 5.4511 8.31311 5.64637L6 7.95948L2.35355 4.31303C2.15829 4.11777 1.84171 4.11777 1.64645 4.31303C1.45118 4.50829 1.45118 4.82488 1.64645 5.02014L5.64645 9.02014C5.84171 9.2154 6.15829 9.2154 6.35355 9.02014L8.66667 6.70703L12.7929 10.8333H10.6667C10.3905 10.8333 10.1667 11.0571 10.1667 11.3333Z", fill: "black" })
2508
+ }
2509
+ )
2510
+ );
2511
+ TrendDown.displayName = "TrendDown";
2512
+ var TrendUp = react.forwardRef(
2513
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
2514
+ "svg",
2515
+ {
2516
+ ref,
2517
+ width: size,
2518
+ height: size,
2519
+ viewBox: "0 0 16 16",
2520
+ fill: "none",
2521
+ xmlns: "http://www.w3.org/2000/svg",
2522
+ strokeWidth,
2523
+ className: ["foamicon", "foamicon-trend-up", className].filter(Boolean).join(" "),
2524
+ "aria-hidden": "true",
2525
+ ...props,
2526
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.1667 4.66675C10.1667 4.39061 10.3905 4.16675 10.6667 4.16675H14C14.2761 4.16675 14.5 4.39061 14.5 4.66675V8.00008C14.5 8.27622 14.2761 8.50008 14 8.50008C13.7239 8.50008 13.5 8.27622 13.5 8.00008V5.87386L9.02022 10.3536C8.82496 10.5489 8.50838 10.5489 8.31311 10.3536L6 8.04052L2.35355 11.687C2.15829 11.8822 1.84171 11.8822 1.64645 11.687C1.45118 11.4917 1.45118 11.1751 1.64645 10.9799L5.64645 6.97986C5.84171 6.7846 6.15829 6.7846 6.35355 6.97986L8.66667 9.29297L12.7929 5.16675H10.6667C10.3905 5.16675 10.1667 4.94289 10.1667 4.66675Z", fill: "black" })
2527
+ }
2528
+ )
2529
+ );
2530
+ TrendUp.displayName = "TrendUp";
2531
+ var Unlink = react.forwardRef(
2532
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2533
+ "svg",
2534
+ {
2535
+ ref,
2536
+ width: size,
2537
+ height: size,
2538
+ viewBox: "0 0 16 16",
2539
+ fill: "none",
2540
+ xmlns: "http://www.w3.org/2000/svg",
2541
+ strokeWidth,
2542
+ className: ["foamicon", "foamicon-unlink", className].filter(Boolean).join(" "),
2543
+ "aria-hidden": "true",
2544
+ ...props,
2545
+ children: [
2546
+ /* @__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.14539 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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2547
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.84372 6.15601L5.84372 10.156", stroke: "black", strokeLinecap: "round" }),
2548
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 14V12", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2549
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 10L14 10", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2550
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 2L6 4", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2551
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6L2 6", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2552
+ ]
2553
+ }
2554
+ )
2555
+ );
2556
+ Unlink.displayName = "Unlink";
2557
+ var Unlock = react.forwardRef(
2558
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2559
+ "svg",
2560
+ {
2561
+ ref,
2562
+ width: size,
2563
+ height: size,
2564
+ viewBox: "0 0 16 16",
2565
+ fill: "none",
2566
+ xmlns: "http://www.w3.org/2000/svg",
2567
+ strokeWidth,
2568
+ className: ["foamicon", "foamicon-unlock", className].filter(Boolean).join(" "),
2569
+ "aria-hidden": "true",
2570
+ ...props,
2571
+ children: [
2572
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2573
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8", cy: "11", r: "1", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2574
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2575
+ ]
2576
+ }
2577
+ )
2578
+ );
2579
+ Unlock.displayName = "Unlock";
2580
+ var Upload = react.forwardRef(
2581
+ ({ size = 16, strokeWidth = 1, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
2582
+ "svg",
2583
+ {
2584
+ ref,
2585
+ width: size,
2586
+ height: size,
2587
+ viewBox: "0 0 16 16",
2588
+ fill: "none",
2589
+ xmlns: "http://www.w3.org/2000/svg",
2590
+ strokeWidth,
2591
+ className: ["foamicon", "foamicon-upload", className].filter(Boolean).join(" "),
2592
+ "aria-hidden": "true",
2593
+ ...props,
2594
+ children: [
2595
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2596
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.00024 3.66675L8.00024 10.6667", stroke: "black", strokeLinecap: "round", strokeLinejoin: "round" }),
2597
+ /* @__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: "black", strokeLinecap: "round", strokeLinejoin: "round" })
2598
+ ]
2599
+ }
2600
+ )
2601
+ );
2602
+ Upload.displayName = "Upload";
67
2603
 
68
2604
  // src/index.ts
69
- var iconNames = ["Bell", "Block", "Bookmark"];
2605
+ var iconNames = ["AddContent", "Alert", "ArchiveArrowUp", "Archive", "ArrowDown", "ArrowLeft", "ArrowRight", "ArrowUp", "Bell", "Block", "Bookmark", "Calendar", "Chat", "Chats", "Checkbox", "Checkmark", "ChevronDown", "ChevronLeft", "ChevronRight", "ChevronUp", "Close", "Cogwheel", "Columns", "Command", "Copy", "Dollar", "Download", "EditDocument", "EditLine", "EmojiSad", "Engagement", "EnvelopeMove", "EnvelopePlus", "Envelope", "Error", "EyeOff", "Eye", "FilterDown", "FilterUp", "Filter", "Flame", "Globe", "History", "Home", "Hotspot", "Import", "Inbox", "Info", "LayoutColumn", "LayoutGrid", "LayoutList", "LayoutRow", "Link", "List", "Location", "Lock", "Magic", "Maximize", "MediaPacks", "Menu", "Minus", "Move", "Open", "Options", "Person", "Persons", "Picture", "Pictures", "Pin", "Play", "Plus", "PromoteActive", "Promote", "Question", "Reach", "Recents", "Reel", "Refresh", "Reload", "Reply", "Save", "SearchPerson", "Search", "Share", "Sidepanel", "SignOut", "SortSmall", "Sort", "SpeakerOff", "Speaker", "Spinner", "Star", "Statistics", "Stop", "TextCenter", "TextDedent", "TextIndent", "TextItalic", "TextJustified", "TextLeft", "TextListNumbered", "TextList", "TextRight", "TextUnformat", "Text", "ThemeDark", "ThemeLight", "ThemeSystem", "ThumbUp", "ThumbsDown", "Trash", "TrendDown", "TrendUp", "Unlink", "Unlock", "Upload"];
70
2606
 
2607
+ exports.AddContent = AddContent;
2608
+ exports.Alert = Alert;
2609
+ exports.Archive = Archive;
2610
+ exports.ArchiveArrowUp = ArchiveArrowUp;
2611
+ exports.ArrowDown = ArrowDown;
2612
+ exports.ArrowLeft = ArrowLeft;
2613
+ exports.ArrowRight = ArrowRight;
2614
+ exports.ArrowUp = ArrowUp;
71
2615
  exports.Bell = Bell;
72
2616
  exports.Block = Block;
73
2617
  exports.Bookmark = Bookmark;
2618
+ exports.Calendar = Calendar;
2619
+ exports.Chat = Chat;
2620
+ exports.Chats = Chats;
2621
+ exports.Checkbox = Checkbox;
2622
+ exports.Checkmark = Checkmark;
2623
+ exports.ChevronDown = ChevronDown;
2624
+ exports.ChevronLeft = ChevronLeft;
2625
+ exports.ChevronRight = ChevronRight;
2626
+ exports.ChevronUp = ChevronUp;
2627
+ exports.Close = Close;
2628
+ exports.Cogwheel = Cogwheel;
2629
+ exports.Columns = Columns;
2630
+ exports.Command = Command;
2631
+ exports.Copy = Copy;
2632
+ exports.Dollar = Dollar;
2633
+ exports.Download = Download;
2634
+ exports.EditDocument = EditDocument;
2635
+ exports.EditLine = EditLine;
2636
+ exports.EmojiSad = EmojiSad;
2637
+ exports.Engagement = Engagement;
2638
+ exports.Envelope = Envelope;
2639
+ exports.EnvelopeMove = EnvelopeMove;
2640
+ exports.EnvelopePlus = EnvelopePlus;
2641
+ exports.Error = Error;
2642
+ exports.Eye = Eye;
2643
+ exports.EyeOff = EyeOff;
2644
+ exports.Filter = Filter;
2645
+ exports.FilterDown = FilterDown;
2646
+ exports.FilterUp = FilterUp;
2647
+ exports.Flame = Flame;
2648
+ exports.Globe = Globe;
2649
+ exports.History = History;
2650
+ exports.Home = Home;
2651
+ exports.Hotspot = Hotspot;
2652
+ exports.Import = Import;
2653
+ exports.Inbox = Inbox;
2654
+ exports.Info = Info;
2655
+ exports.LayoutColumn = LayoutColumn;
2656
+ exports.LayoutGrid = LayoutGrid;
2657
+ exports.LayoutList = LayoutList;
2658
+ exports.LayoutRow = LayoutRow;
2659
+ exports.Link = Link;
2660
+ exports.List = List;
2661
+ exports.Location = Location;
2662
+ exports.Lock = Lock;
2663
+ exports.Magic = Magic;
2664
+ exports.Maximize = Maximize;
2665
+ exports.MediaPacks = MediaPacks;
2666
+ exports.Menu = Menu;
2667
+ exports.Minus = Minus;
2668
+ exports.Move = Move;
2669
+ exports.Open = Open;
2670
+ exports.Options = Options;
2671
+ exports.Person = Person;
2672
+ exports.Persons = Persons;
2673
+ exports.Picture = Picture;
2674
+ exports.Pictures = Pictures;
2675
+ exports.Pin = Pin;
2676
+ exports.Play = Play;
2677
+ exports.Plus = Plus;
2678
+ exports.Promote = Promote;
2679
+ exports.PromoteActive = PromoteActive;
2680
+ exports.Question = Question;
2681
+ exports.Reach = Reach;
2682
+ exports.Recents = Recents;
2683
+ exports.Reel = Reel;
2684
+ exports.Refresh = Refresh;
2685
+ exports.Reload = Reload;
2686
+ exports.Reply = Reply;
2687
+ exports.Save = Save;
2688
+ exports.Search = Search;
2689
+ exports.SearchPerson = SearchPerson;
2690
+ exports.Share = Share;
2691
+ exports.Sidepanel = Sidepanel;
2692
+ exports.SignOut = SignOut;
2693
+ exports.Sort = Sort;
2694
+ exports.SortSmall = SortSmall;
2695
+ exports.Speaker = Speaker;
2696
+ exports.SpeakerOff = SpeakerOff;
2697
+ exports.Spinner = Spinner;
2698
+ exports.Star = Star;
2699
+ exports.Statistics = Statistics;
2700
+ exports.Stop = Stop;
2701
+ exports.Text = Text;
2702
+ exports.TextCenter = TextCenter;
2703
+ exports.TextDedent = TextDedent;
2704
+ exports.TextIndent = TextIndent;
2705
+ exports.TextItalic = TextItalic;
2706
+ exports.TextJustified = TextJustified;
2707
+ exports.TextLeft = TextLeft;
2708
+ exports.TextList = TextList;
2709
+ exports.TextListNumbered = TextListNumbered;
2710
+ exports.TextRight = TextRight;
2711
+ exports.TextUnformat = TextUnformat;
2712
+ exports.ThemeDark = ThemeDark;
2713
+ exports.ThemeLight = ThemeLight;
2714
+ exports.ThemeSystem = ThemeSystem;
2715
+ exports.ThumbUp = ThumbUp;
2716
+ exports.ThumbsDown = ThumbsDown;
2717
+ exports.Trash = Trash;
2718
+ exports.TrendDown = TrendDown;
2719
+ exports.TrendUp = TrendUp;
2720
+ exports.Unlink = Unlink;
2721
+ exports.Unlock = Unlock;
2722
+ exports.Upload = Upload;
74
2723
  exports.iconNames = iconNames;
75
2724
  //# sourceMappingURL=index.cjs.map
76
2725
  //# sourceMappingURL=index.cjs.map