@sanity/code-input 4.1.1 → 4.1.3
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/LICENSE +1 -1
- package/README.md +1 -0
- package/lib/_chunks/{CodeMirrorProxy-a4266d26.js → CodeMirrorProxy-6jTWWQ83.js} +2 -2
- package/lib/_chunks/CodeMirrorProxy-6jTWWQ83.js.map +1 -0
- package/lib/_chunks/{CodeMirrorProxy-3018512e.js → CodeMirrorProxy-UbGy745B.cjs} +2 -2
- package/lib/_chunks/CodeMirrorProxy-UbGy745B.cjs.map +1 -0
- package/lib/_chunks/index-KYa8fGra.js +4672 -0
- package/lib/_chunks/index-KYa8fGra.js.map +1 -0
- package/lib/_chunks/index-cttyJsiZ.cjs +4686 -0
- package/lib/_chunks/index-cttyJsiZ.cjs.map +1 -0
- package/lib/index.cjs +11 -0
- package/lib/index.cjs.js +7 -0
- package/lib/index.cjs.map +1 -0
- package/lib/index.d.ts +3 -4
- package/lib/index.js +1 -10
- package/lib/index.js.map +1 -1
- package/package.json +58 -54
- package/src/CodeInput.tsx +3 -3
- package/src/LanguageField.tsx +2 -2
- package/src/LanguageInput.tsx +1 -1
- package/src/codemirror/CodeMirrorProxy.tsx +91 -92
- package/src/codemirror/defaultCodeModes.ts +4 -4
- package/src/codemirror/useLanguageMode.tsx +2 -2
- package/src/useFieldMember.ts +3 -3
- package/lib/_chunks/CodeMirrorProxy-3018512e.js.map +0 -1
- package/lib/_chunks/CodeMirrorProxy-a4266d26.js.map +0 -1
- package/lib/_chunks/index-160c0f7b.js +0 -563
- package/lib/_chunks/index-160c0f7b.js.map +0 -1
- package/lib/_chunks/index-a3bcac3a.js +0 -549
- package/lib/_chunks/index-a3bcac3a.js.map +0 -1
- package/lib/index.esm.js +0 -2
- package/lib/index.esm.js.map +0 -1
|
@@ -0,0 +1,4672 @@
|
|
|
1
|
+
import { forwardRef, createElement, useCallback, lazy, useState, useEffect, useMemo, Suspense, createContext } from 'react';
|
|
2
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
3
|
+
import { set, unset, MemberField, setIfMissing, defineType, definePlugin } from 'sanity';
|
|
4
|
+
import { Select, Card, Box, Text, Stack, Flex, Label } from '@sanity/ui';
|
|
5
|
+
import styled, { css } from 'styled-components';
|
|
6
|
+
const AccessDeniedIcon = forwardRef(function AccessDeniedIcon2(props, ref) {
|
|
7
|
+
return /* @__PURE__ */jsx("svg", {
|
|
8
|
+
"data-sanity-icon": "access-denied",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em",
|
|
11
|
+
viewBox: "0 0 25 25",
|
|
12
|
+
fill: "none",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
ref,
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */jsx("path", {
|
|
17
|
+
d: "M18.1568 6.84315C21.281 9.96734 21.281 15.0327 18.1568 18.1569C15.0326 21.281 9.96733 21.281 6.84313 18.1569C3.71894 15.0327 3.71894 9.96734 6.84313 6.84315C9.96733 3.71895 15.0326 3.71895 18.1568 6.84315ZM18.1568 6.84315L6.844 18.156",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
strokeWidth: 1.2,
|
|
20
|
+
strokeLinejoin: "round"
|
|
21
|
+
})
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
const ActivityIcon = forwardRef(function ActivityIcon2(props, ref) {
|
|
25
|
+
return /* @__PURE__ */jsx("svg", {
|
|
26
|
+
"data-sanity-icon": "activity",
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em",
|
|
29
|
+
viewBox: "0 0 25 25",
|
|
30
|
+
fill: "none",
|
|
31
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
32
|
+
ref,
|
|
33
|
+
...props,
|
|
34
|
+
children: /* @__PURE__ */jsx("path", {
|
|
35
|
+
d: "M21 15H19L15.5 7L11 18L8 12L6 15H4",
|
|
36
|
+
stroke: "currentColor",
|
|
37
|
+
strokeWidth: 1.2,
|
|
38
|
+
strokeLinejoin: "round"
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
const AddCircleIcon = forwardRef(function AddCircleIcon2(props, ref) {
|
|
43
|
+
return /* @__PURE__ */jsx("svg", {
|
|
44
|
+
"data-sanity-icon": "add-circle",
|
|
45
|
+
width: "1em",
|
|
46
|
+
height: "1em",
|
|
47
|
+
viewBox: "0 0 25 25",
|
|
48
|
+
fill: "none",
|
|
49
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
50
|
+
ref,
|
|
51
|
+
...props,
|
|
52
|
+
children: /* @__PURE__ */jsx("path", {
|
|
53
|
+
d: "M8 12.4H17M12.5 8V17M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
54
|
+
stroke: "currentColor",
|
|
55
|
+
strokeWidth: 1.2,
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
})
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
const AddCommentIcon = forwardRef(function AddCommentIcon2(props, ref) {
|
|
61
|
+
return /* @__PURE__ */jsx("svg", {
|
|
62
|
+
"data-sanity-icon": "add-comment",
|
|
63
|
+
width: "1em",
|
|
64
|
+
height: "1em",
|
|
65
|
+
viewBox: "0 0 25 25",
|
|
66
|
+
fill: "none",
|
|
67
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
68
|
+
ref,
|
|
69
|
+
...props,
|
|
70
|
+
children: /* @__PURE__ */jsx("path", {
|
|
71
|
+
d: "M13 6.5H7.5C6.39543 6.5 5.5 7.39543 5.5 8.5V14.5C5.5 15.6046 6.39543 16.5 7.5 16.5H9.5V20.5L13.5 16.5H16.5C17.6046 16.5 18.5 15.6046 18.5 14.5V12M15 6.5H22M18.5 10V3",
|
|
72
|
+
stroke: "currentColor",
|
|
73
|
+
strokeWidth: 1.2,
|
|
74
|
+
strokeLinejoin: "round"
|
|
75
|
+
})
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
const AddIcon = forwardRef(function AddIcon2(props, ref) {
|
|
79
|
+
return /* @__PURE__ */jsx("svg", {
|
|
80
|
+
"data-sanity-icon": "add",
|
|
81
|
+
width: "1em",
|
|
82
|
+
height: "1em",
|
|
83
|
+
viewBox: "0 0 25 25",
|
|
84
|
+
fill: "none",
|
|
85
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
86
|
+
ref,
|
|
87
|
+
...props,
|
|
88
|
+
children: /* @__PURE__ */jsx("path", {
|
|
89
|
+
d: "M12.5 5V20M5 12.5H20",
|
|
90
|
+
stroke: "currentColor",
|
|
91
|
+
strokeWidth: 1.2,
|
|
92
|
+
strokeLinejoin: "round"
|
|
93
|
+
})
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
const ApiIcon = forwardRef(function ApiIcon2(props, ref) {
|
|
97
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
98
|
+
"data-sanity-icon": "api",
|
|
99
|
+
width: "1em",
|
|
100
|
+
height: "1em",
|
|
101
|
+
viewBox: "0 0 25 25",
|
|
102
|
+
fill: "none",
|
|
103
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
104
|
+
ref,
|
|
105
|
+
...props,
|
|
106
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
107
|
+
d: "M5.93047 13.2107L6.66782 10.3728H6.73089L7.45854 13.2107H5.93047ZM8.17164 16H9.66089L7.56041 9H5.93047L3.82999 16H5.20767L5.65396 14.2876H7.73505L8.17164 16Z",
|
|
108
|
+
fill: "currentColor"
|
|
109
|
+
}), /* @__PURE__ */jsx("path", {
|
|
110
|
+
d: "M10.5389 9V16H11.9166V13.7782H13.0323C14.541 13.7782 15.5015 12.8517 15.5015 11.3964C15.5015 9.92654 14.5701 9 13.1003 9H10.5389ZM11.9166 10.1303H12.751C13.6533 10.1303 14.1044 10.5475 14.1044 11.3867C14.1044 12.2308 13.6533 12.6431 12.751 12.6431H11.9166V10.1303Z",
|
|
111
|
+
fill: "currentColor"
|
|
112
|
+
}), /* @__PURE__ */jsx("path", {
|
|
113
|
+
d: "M21.1675 16V14.8164H19.717V10.1836H21.1675V9H16.8889V10.1836H18.3393V14.8164H16.8889V16H21.1675Z",
|
|
114
|
+
fill: "currentColor"
|
|
115
|
+
})]
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
const ArchiveIcon = forwardRef(function ArchiveIcon2(props, ref) {
|
|
119
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
120
|
+
"data-sanity-icon": "archive",
|
|
121
|
+
width: "1em",
|
|
122
|
+
height: "1em",
|
|
123
|
+
viewBox: "0 0 25 25",
|
|
124
|
+
fill: "none",
|
|
125
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
126
|
+
ref,
|
|
127
|
+
...props,
|
|
128
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
129
|
+
d: "M12.5 10.5V17M20.5 7.5V20.5H4.5V7.5L7.5 4.5H17.5L20.5 7.5Z",
|
|
130
|
+
stroke: "currentColor",
|
|
131
|
+
strokeWidth: 1.2,
|
|
132
|
+
strokeLinejoin: "round"
|
|
133
|
+
}), /* @__PURE__ */jsx("path", {
|
|
134
|
+
d: "M4.5 7.5H20.5M16 14L12.5 17.5L9 14",
|
|
135
|
+
stroke: "currentColor",
|
|
136
|
+
strokeWidth: 1.2,
|
|
137
|
+
strokeLinejoin: "round"
|
|
138
|
+
})]
|
|
139
|
+
});
|
|
140
|
+
});
|
|
141
|
+
const ArrowDownIcon = forwardRef(function ArrowDownIcon2(props, ref) {
|
|
142
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
143
|
+
"data-sanity-icon": "arrow-down",
|
|
144
|
+
width: "1em",
|
|
145
|
+
height: "1em",
|
|
146
|
+
viewBox: "0 0 25 25",
|
|
147
|
+
fill: "none",
|
|
148
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
149
|
+
ref,
|
|
150
|
+
...props,
|
|
151
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
152
|
+
d: "M12.5 19.5V5",
|
|
153
|
+
stroke: "currentColor",
|
|
154
|
+
strokeWidth: 1.2,
|
|
155
|
+
strokeLinejoin: "round"
|
|
156
|
+
}), /* @__PURE__ */jsx("path", {
|
|
157
|
+
d: "M18 14L12.5 19.5L7 14",
|
|
158
|
+
stroke: "currentColor",
|
|
159
|
+
strokeWidth: 1.2,
|
|
160
|
+
strokeLinejoin: "round"
|
|
161
|
+
})]
|
|
162
|
+
});
|
|
163
|
+
});
|
|
164
|
+
const ArrowLeftIcon = forwardRef(function ArrowLeftIcon2(props, ref) {
|
|
165
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
166
|
+
"data-sanity-icon": "arrow-left",
|
|
167
|
+
width: "1em",
|
|
168
|
+
height: "1em",
|
|
169
|
+
viewBox: "0 0 25 25",
|
|
170
|
+
fill: "none",
|
|
171
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
172
|
+
ref,
|
|
173
|
+
...props,
|
|
174
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
175
|
+
d: "M5.5 12.5H20",
|
|
176
|
+
stroke: "currentColor",
|
|
177
|
+
strokeWidth: 1.2,
|
|
178
|
+
strokeLinejoin: "round"
|
|
179
|
+
}), /* @__PURE__ */jsx("path", {
|
|
180
|
+
d: "M11 18L5.5 12.5L11 7",
|
|
181
|
+
stroke: "currentColor",
|
|
182
|
+
strokeWidth: 1.2,
|
|
183
|
+
strokeLinejoin: "round"
|
|
184
|
+
})]
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
const ArrowRightIcon = forwardRef(function ArrowRightIcon2(props, ref) {
|
|
188
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
189
|
+
"data-sanity-icon": "arrow-right",
|
|
190
|
+
width: "1em",
|
|
191
|
+
height: "1em",
|
|
192
|
+
viewBox: "0 0 25 25",
|
|
193
|
+
fill: "none",
|
|
194
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
195
|
+
ref,
|
|
196
|
+
...props,
|
|
197
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
198
|
+
d: "M19.5 12.5H5",
|
|
199
|
+
stroke: "currentColor",
|
|
200
|
+
strokeWidth: 1.2,
|
|
201
|
+
strokeLinejoin: "round"
|
|
202
|
+
}), /* @__PURE__ */jsx("path", {
|
|
203
|
+
d: "M14 7L19.5 12.5L14 18",
|
|
204
|
+
stroke: "currentColor",
|
|
205
|
+
strokeWidth: 1.2,
|
|
206
|
+
strokeLinejoin: "round"
|
|
207
|
+
})]
|
|
208
|
+
});
|
|
209
|
+
});
|
|
210
|
+
const ArrowTopRightIcon = forwardRef(function ArrowTopRightIcon2(props, ref) {
|
|
211
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
212
|
+
"data-sanity-icon": "arrow-top-right",
|
|
213
|
+
width: "1em",
|
|
214
|
+
height: "1em",
|
|
215
|
+
viewBox: "0 0 25 25",
|
|
216
|
+
fill: "none",
|
|
217
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
218
|
+
ref,
|
|
219
|
+
...props,
|
|
220
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
221
|
+
d: "M16.5 8.5L7 18",
|
|
222
|
+
stroke: "currentColor",
|
|
223
|
+
strokeWidth: 1.2,
|
|
224
|
+
strokeLinejoin: "round"
|
|
225
|
+
}), /* @__PURE__ */jsx("path", {
|
|
226
|
+
d: "M9 8.5H16.5V16",
|
|
227
|
+
stroke: "currentColor",
|
|
228
|
+
strokeWidth: 1.2,
|
|
229
|
+
strokeLinejoin: "round"
|
|
230
|
+
})]
|
|
231
|
+
});
|
|
232
|
+
});
|
|
233
|
+
const ArrowUpIcon = forwardRef(function ArrowUpIcon2(props, ref) {
|
|
234
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
235
|
+
"data-sanity-icon": "arrow-up",
|
|
236
|
+
width: "1em",
|
|
237
|
+
height: "1em",
|
|
238
|
+
viewBox: "0 0 25 25",
|
|
239
|
+
fill: "none",
|
|
240
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
241
|
+
ref,
|
|
242
|
+
...props,
|
|
243
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
244
|
+
d: "M7 11L12.5 5.5L18 11",
|
|
245
|
+
stroke: "currentColor",
|
|
246
|
+
strokeWidth: 1.2,
|
|
247
|
+
strokeLinejoin: "round"
|
|
248
|
+
}), /* @__PURE__ */jsx("path", {
|
|
249
|
+
d: "M12.5 5.5V20",
|
|
250
|
+
stroke: "currentColor",
|
|
251
|
+
strokeWidth: 1.2,
|
|
252
|
+
strokeLinejoin: "round"
|
|
253
|
+
})]
|
|
254
|
+
});
|
|
255
|
+
});
|
|
256
|
+
const BarChartIcon = forwardRef(function BarChartIcon2(props, ref) {
|
|
257
|
+
return /* @__PURE__ */jsx("svg", {
|
|
258
|
+
"data-sanity-icon": "bar-chart",
|
|
259
|
+
width: "1em",
|
|
260
|
+
height: "1em",
|
|
261
|
+
viewBox: "0 0 25 25",
|
|
262
|
+
fill: "none",
|
|
263
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
264
|
+
ref,
|
|
265
|
+
...props,
|
|
266
|
+
children: /* @__PURE__ */jsx("path", {
|
|
267
|
+
d: "M5.5 5V19.5H20M8.5 18V13M11.5 18V9M14.5 18V11M17.5 18V7",
|
|
268
|
+
stroke: "currentColor",
|
|
269
|
+
strokeWidth: 1.2,
|
|
270
|
+
strokeLinejoin: "round"
|
|
271
|
+
})
|
|
272
|
+
});
|
|
273
|
+
});
|
|
274
|
+
const BasketIcon = forwardRef(function BasketIcon2(props, ref) {
|
|
275
|
+
return /* @__PURE__ */jsx("svg", {
|
|
276
|
+
"data-sanity-icon": "basket",
|
|
277
|
+
width: "1em",
|
|
278
|
+
height: "1em",
|
|
279
|
+
viewBox: "0 0 25 25",
|
|
280
|
+
fill: "none",
|
|
281
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
282
|
+
ref,
|
|
283
|
+
...props,
|
|
284
|
+
children: /* @__PURE__ */jsx("path", {
|
|
285
|
+
d: "M8.5 10.5H5L6.5 19.5H18.5L20 10.5H16.5M8.5 10.5L10.2721 5.18377C10.4082 4.77543 10.7903 4.5 11.2208 4.5H13.7792C14.2097 4.5 14.5918 4.77543 14.7279 5.18377L16.5 10.5M8.5 10.5H16.5M8.5 10.5L9.5 19.5M16.5 10.5L15.5 19.5M12.5 10.5V19.5M19.5 13.5H5.5M19 16.5H6",
|
|
286
|
+
stroke: "currentColor",
|
|
287
|
+
strokeWidth: 1.2,
|
|
288
|
+
strokeLinejoin: "round"
|
|
289
|
+
})
|
|
290
|
+
});
|
|
291
|
+
});
|
|
292
|
+
const BellIcon = forwardRef(function BellIcon2(props, ref) {
|
|
293
|
+
return /* @__PURE__ */jsx("svg", {
|
|
294
|
+
"data-sanity-icon": "bell",
|
|
295
|
+
width: "1em",
|
|
296
|
+
height: "1em",
|
|
297
|
+
viewBox: "0 0 25 25",
|
|
298
|
+
fill: "none",
|
|
299
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
300
|
+
ref,
|
|
301
|
+
...props,
|
|
302
|
+
children: /* @__PURE__ */jsx("path", {
|
|
303
|
+
d: "M10.5 17.5V18.5C10.5 20 11.5 20.5 12.5 20.5C13.5 20.5 14.5 20 14.5 18.5V17.5M5.5 17.5C6.5 16 6.5 15 6.5 12C6.5 8 8.5 5.5 12.5 5.5C16.5 5.5 18.5 8 18.5 12C18.5 15 18.5 16 19.5 17.5H5.5Z",
|
|
304
|
+
stroke: "currentColor",
|
|
305
|
+
strokeWidth: 1.2,
|
|
306
|
+
strokeLinejoin: "round"
|
|
307
|
+
})
|
|
308
|
+
});
|
|
309
|
+
});
|
|
310
|
+
const BillIcon = forwardRef(function BillIcon2(props, ref) {
|
|
311
|
+
return /* @__PURE__ */jsx("svg", {
|
|
312
|
+
"data-sanity-icon": "bill",
|
|
313
|
+
width: "1em",
|
|
314
|
+
height: "1em",
|
|
315
|
+
viewBox: "0 0 25 25",
|
|
316
|
+
fill: "none",
|
|
317
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
318
|
+
ref,
|
|
319
|
+
...props,
|
|
320
|
+
children: /* @__PURE__ */jsx("path", {
|
|
321
|
+
d: "M6.50001 5.5C8.50003 5.5 8.50003 8 8.50003 8V9.5M6.50001 5.5C4.5 5.5 4.5 8 4.5 8L4.50001 9.5H8.50003M6.50001 5.5C6.50001 5.5 15.8333 5.5 17.6667 5.5C19.5 5.5 19.5 8.5 19.5 8.5V20L17.6667 19L15.8333 20L14 19L12.1667 20L10.3334 19L8.50003 20V9.5M11 12.5H15M11 9.5H16M11 15.5H16",
|
|
322
|
+
stroke: "currentColor",
|
|
323
|
+
strokeWidth: 1.2,
|
|
324
|
+
strokeLinejoin: "round"
|
|
325
|
+
})
|
|
326
|
+
});
|
|
327
|
+
});
|
|
328
|
+
const BinaryDocumentIcon = forwardRef(function BinaryDocumentIcon2(props, ref) {
|
|
329
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
330
|
+
"data-sanity-icon": "binary-document",
|
|
331
|
+
width: "1em",
|
|
332
|
+
height: "1em",
|
|
333
|
+
viewBox: "0 0 25 25",
|
|
334
|
+
fill: "none",
|
|
335
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
336
|
+
ref,
|
|
337
|
+
...props,
|
|
338
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
339
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
340
|
+
stroke: "currentColor",
|
|
341
|
+
strokeWidth: 1.2,
|
|
342
|
+
strokeLinejoin: "round"
|
|
343
|
+
}), /* @__PURE__ */jsx("path", {
|
|
344
|
+
d: "M9.5 12.5V17.5M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5ZM12.5 12.5V17.5H15.5V12.5H12.5Z",
|
|
345
|
+
stroke: "currentColor",
|
|
346
|
+
strokeWidth: 1.2,
|
|
347
|
+
strokeLinecap: "square",
|
|
348
|
+
strokeLinejoin: "round"
|
|
349
|
+
})]
|
|
350
|
+
});
|
|
351
|
+
});
|
|
352
|
+
const BlockContentIcon = forwardRef(function BlockContentIcon2(props, ref) {
|
|
353
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
354
|
+
"data-sanity-icon": "block-content",
|
|
355
|
+
width: "1em",
|
|
356
|
+
height: "1em",
|
|
357
|
+
viewBox: "0 0 25 25",
|
|
358
|
+
fill: "none",
|
|
359
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
360
|
+
ref,
|
|
361
|
+
...props,
|
|
362
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
363
|
+
fillRule: "evenodd",
|
|
364
|
+
clipRule: "evenodd",
|
|
365
|
+
d: "M21 7.60002L11 7.60003V6.40003L21 6.40002V7.60002Z",
|
|
366
|
+
fill: "currentColor"
|
|
367
|
+
}), /* @__PURE__ */jsx("path", {
|
|
368
|
+
fillRule: "evenodd",
|
|
369
|
+
clipRule: "evenodd",
|
|
370
|
+
d: "M21 11.2667L12.4833 11.2667V10.0667L21 10.0667V11.2667Z",
|
|
371
|
+
fill: "currentColor"
|
|
372
|
+
}), /* @__PURE__ */jsx("path", {
|
|
373
|
+
fillRule: "evenodd",
|
|
374
|
+
clipRule: "evenodd",
|
|
375
|
+
d: "M21 14.9334H13.9254V13.7334L21 13.7334V14.9334Z",
|
|
376
|
+
fill: "currentColor"
|
|
377
|
+
}), /* @__PURE__ */jsx("path", {
|
|
378
|
+
fillRule: "evenodd",
|
|
379
|
+
clipRule: "evenodd",
|
|
380
|
+
d: "M21 18.6002H4V17.4002H21V18.6002Z",
|
|
381
|
+
fill: "currentColor"
|
|
382
|
+
}), /* @__PURE__ */jsx("path", {
|
|
383
|
+
d: "M9.86438 15.6H11.2L8.27623 7.60003H6.92377L4 15.6H5.29072L6.0371 13.4767H9.12362L9.86438 15.6ZM7.53546 9.05255H7.63086L8.80374 12.4344H6.35698L7.53546 9.05255Z",
|
|
384
|
+
fill: "currentColor"
|
|
385
|
+
})]
|
|
386
|
+
});
|
|
387
|
+
});
|
|
388
|
+
const BlockElementIcon = forwardRef(function BlockElementIcon2(props, ref) {
|
|
389
|
+
return /* @__PURE__ */jsx("svg", {
|
|
390
|
+
"data-sanity-icon": "block-element",
|
|
391
|
+
width: "1em",
|
|
392
|
+
height: "1em",
|
|
393
|
+
viewBox: "0 0 25 25",
|
|
394
|
+
fill: "none",
|
|
395
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
396
|
+
ref,
|
|
397
|
+
...props,
|
|
398
|
+
children: /* @__PURE__ */jsx("path", {
|
|
399
|
+
d: "M5 19.5H20M5 5.5H20M6.5 8.5H18.5V16.5H6.5V8.5Z",
|
|
400
|
+
stroke: "currentColor",
|
|
401
|
+
strokeWidth: 1.2,
|
|
402
|
+
strokeLinejoin: "round"
|
|
403
|
+
})
|
|
404
|
+
});
|
|
405
|
+
});
|
|
406
|
+
const BlockquoteIcon = forwardRef(function BlockquoteIcon2(props, ref) {
|
|
407
|
+
return /* @__PURE__ */jsx("svg", {
|
|
408
|
+
"data-sanity-icon": "blockquote",
|
|
409
|
+
width: "1em",
|
|
410
|
+
height: "1em",
|
|
411
|
+
viewBox: "0 0 25 25",
|
|
412
|
+
fill: "none",
|
|
413
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
414
|
+
ref,
|
|
415
|
+
...props,
|
|
416
|
+
children: /* @__PURE__ */jsx("path", {
|
|
417
|
+
d: "M10 17.5H19M6 7.5H19M10 12.5H17M6.5 12V18",
|
|
418
|
+
stroke: "currentColor",
|
|
419
|
+
strokeWidth: 1.2,
|
|
420
|
+
strokeLinejoin: "round"
|
|
421
|
+
})
|
|
422
|
+
});
|
|
423
|
+
});
|
|
424
|
+
const BoldIcon = forwardRef(function BoldIcon2(props, ref) {
|
|
425
|
+
return /* @__PURE__ */jsx("svg", {
|
|
426
|
+
"data-sanity-icon": "bold",
|
|
427
|
+
width: "1em",
|
|
428
|
+
height: "1em",
|
|
429
|
+
viewBox: "0 0 25 25",
|
|
430
|
+
fill: "none",
|
|
431
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
432
|
+
ref,
|
|
433
|
+
...props,
|
|
434
|
+
children: /* @__PURE__ */jsx("path", {
|
|
435
|
+
d: "M13.2087 18C15.5322 18 16.9731 16.793 16.9731 14.8844C16.9731 13.4812 15.9245 12.3949 14.4836 12.2892V12.1534C15.6001 11.9875 16.4526 10.9841 16.4526 9.82991C16.4526 8.14761 15.1927 7.11409 13.0804 7.11409H8.32019V18H13.2087ZM10.5985 8.85674H12.4995C13.5859 8.85674 14.212 9.37727 14.212 10.2448C14.212 11.1199 13.5406 11.6254 12.3109 11.6254H10.5985V8.85674ZM10.5985 16.2574V13.1643H12.575C13.9178 13.1643 14.6496 13.6924 14.6496 14.6882C14.6496 15.7066 13.9404 16.2574 12.6278 16.2574H10.5985Z",
|
|
436
|
+
fill: "currentColor"
|
|
437
|
+
})
|
|
438
|
+
});
|
|
439
|
+
});
|
|
440
|
+
const BoltIcon = forwardRef(function BoltIcon2(props, ref) {
|
|
441
|
+
return /* @__PURE__ */jsx("svg", {
|
|
442
|
+
"data-sanity-icon": "bolt",
|
|
443
|
+
width: "1em",
|
|
444
|
+
height: "1em",
|
|
445
|
+
viewBox: "0 0 25 25",
|
|
446
|
+
fill: "none",
|
|
447
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
448
|
+
ref,
|
|
449
|
+
...props,
|
|
450
|
+
children: /* @__PURE__ */jsx("path", {
|
|
451
|
+
d: "M18 11.5L9 21L11 13.5H7L16 4L14 11.5H18Z",
|
|
452
|
+
stroke: "currentColor",
|
|
453
|
+
strokeWidth: 1.2,
|
|
454
|
+
strokeLinejoin: "round"
|
|
455
|
+
})
|
|
456
|
+
});
|
|
457
|
+
});
|
|
458
|
+
const BookIcon = forwardRef(function BookIcon2(props, ref) {
|
|
459
|
+
return /* @__PURE__ */jsx("svg", {
|
|
460
|
+
"data-sanity-icon": "book",
|
|
461
|
+
width: "1em",
|
|
462
|
+
height: "1em",
|
|
463
|
+
viewBox: "0 0 25 25",
|
|
464
|
+
fill: "none",
|
|
465
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
466
|
+
ref,
|
|
467
|
+
...props,
|
|
468
|
+
children: /* @__PURE__ */jsx("path", {
|
|
469
|
+
d: "M20.5 17.5V5.5L12.5 6.5M20.5 17.5L12.5 18.5M20.5 17.5V18.5M4.5 17.5V5.5L12.5 6.5M4.5 17.5L12.5 18.5M4.5 17.5V18.5M12.5 18.5L4.5 19.5V18.5M12.5 18.5L20.5 19.5V18.5M12.5 18.5V6.5M12.5 18.5H4.5M12.5 18.5H20.5",
|
|
470
|
+
stroke: "currentColor",
|
|
471
|
+
strokeWidth: 1.2,
|
|
472
|
+
strokeLinejoin: "round"
|
|
473
|
+
})
|
|
474
|
+
});
|
|
475
|
+
});
|
|
476
|
+
const BottleIcon = forwardRef(function BottleIcon2(props, ref) {
|
|
477
|
+
return /* @__PURE__ */jsx("svg", {
|
|
478
|
+
"data-sanity-icon": "bottle",
|
|
479
|
+
width: "1em",
|
|
480
|
+
height: "1em",
|
|
481
|
+
viewBox: "0 0 25 25",
|
|
482
|
+
fill: "none",
|
|
483
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
484
|
+
ref,
|
|
485
|
+
...props,
|
|
486
|
+
children: /* @__PURE__ */jsx("path", {
|
|
487
|
+
d: "M7.5 17.5L17.5 17.5M17.5 13C17.5 12.087 17.5 11.3518 17.5 11C17.5 8.5 14.5 9 14.5 7.37494L14.5 5.5M17.5 13C17.5 15.1229 17.5 18.7543 17.5 20.5022C17.5 21.0545 17.0523 21.5 16.5 21.5L8.5 21.5C7.94772 21.5 7.5 21.0547 7.5 20.5024C7.5 18.8157 7.5 15.3546 7.5 13M17.5 13L7.5 13M7.5 13C7.5 12.2538 7.5 11.5648 7.5 11C7.5 8.5 10.5 9 10.5 7.37494L10.5 5.5M10.5 5.5L10.5 3.99999C10.5 3.72385 10.7239 3.49999 11 3.49999L14 3.49999C14.2761 3.49999 14.5 3.72385 14.5 3.99999L14.5 5.5M10.5 5.5L14.5 5.5",
|
|
488
|
+
stroke: "currentColor",
|
|
489
|
+
strokeWidth: 1.2,
|
|
490
|
+
strokeLinejoin: "round"
|
|
491
|
+
})
|
|
492
|
+
});
|
|
493
|
+
});
|
|
494
|
+
const BulbFilledIcon = forwardRef(function BulbFilledIcon2(props, ref) {
|
|
495
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
496
|
+
"data-sanity-icon": "bulb-filled",
|
|
497
|
+
width: "1em",
|
|
498
|
+
height: "1em",
|
|
499
|
+
viewBox: "0 0 25 25",
|
|
500
|
+
fill: "none",
|
|
501
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
502
|
+
ref,
|
|
503
|
+
...props,
|
|
504
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
505
|
+
fillRule: "evenodd",
|
|
506
|
+
clipRule: "evenodd",
|
|
507
|
+
d: "M16.4272 14.3368C15.8273 15.1773 15.5 16.1794 15.5 17.212V18.5C15.5 19.0523 15.0523 19.5 14.5 19.5H14V20.5C14 21.0523 13.5523 21.5 13 21.5H12C11.4477 21.5 11 21.0523 11 20.5V19.5H10.5C9.94772 19.5 9.5 19.0523 9.5 18.5V17.212C9.5 16.1794 9.17266 15.1773 8.57284 14.3368C7.60216 12.9767 7 11.94 7 10C7 7 9.5 4.5 12.5 4.5C15.5 4.5 18 7 18 10C18 11.94 17.3978 12.9767 16.4272 14.3368Z",
|
|
508
|
+
fill: "currentColor"
|
|
509
|
+
}), /* @__PURE__ */jsx("path", {
|
|
510
|
+
d: "M16.4272 14.3368L15.9388 13.9883L16.4272 14.3368ZM14 19.5V18.9H13.4V19.5H14ZM11 19.5H11.6V18.9H11V19.5ZM8.57284 14.3368L9.06122 13.9883H9.06122L8.57284 14.3368ZM16.1 17.212C16.1 16.3069 16.3868 15.4261 16.9155 14.6853L15.9388 13.9883C15.2678 14.9284 14.9 16.0519 14.9 17.212H16.1ZM16.1 18.5V17.212H14.9V18.5H16.1ZM14.5 20.1C15.3837 20.1 16.1 19.3837 16.1 18.5H14.9C14.9 18.7209 14.7209 18.9 14.5 18.9V20.1ZM14 20.1H14.5V18.9H14V20.1ZM13.4 19.5V20.5H14.6V19.5H13.4ZM13.4 20.5C13.4 20.7209 13.2209 20.9 13 20.9V22.1C13.8837 22.1 14.6 21.3837 14.6 20.5H13.4ZM13 20.9H12V22.1H13V20.9ZM12 20.9C11.7791 20.9 11.6 20.7209 11.6 20.5H10.4C10.4 21.3837 11.1163 22.1 12 22.1V20.9ZM11.6 20.5V19.5H10.4V20.5H11.6ZM10.5 20.1H11V18.9H10.5V20.1ZM8.9 18.5C8.9 19.3837 9.61634 20.1 10.5 20.1V18.9C10.2791 18.9 10.1 18.7209 10.1 18.5H8.9ZM8.9 17.212V18.5H10.1V17.212H8.9ZM8.08446 14.6853C8.61315 15.4261 8.9 16.3069 8.9 17.212H10.1C10.1 16.0519 9.73217 14.9284 9.06122 13.9883L8.08446 14.6853ZM6.4 10C6.4 11.0377 6.56208 11.8595 6.86624 12.611C7.16624 13.3521 7.59495 13.9995 8.08446 14.6853L9.06122 13.9883C8.58004 13.314 8.22233 12.7629 7.97858 12.1607C7.739 11.5688 7.6 10.9023 7.6 10H6.4ZM12.5 3.9C9.16863 3.9 6.4 6.66863 6.4 10H7.6C7.6 7.33137 9.83137 5.1 12.5 5.1V3.9ZM18.6 10C18.6 6.66863 15.8314 3.9 12.5 3.9V5.1C15.1686 5.1 17.4 7.33137 17.4 10H18.6ZM16.9155 14.6853C17.4051 13.9995 17.8338 13.3521 18.1338 12.611C18.4379 11.8595 18.6 11.0377 18.6 10H17.4C17.4 10.9023 17.261 11.5688 17.0214 12.1607C16.7777 12.7629 16.42 13.314 15.9388 13.9883L16.9155 14.6853Z",
|
|
511
|
+
fill: "currentColor"
|
|
512
|
+
})]
|
|
513
|
+
});
|
|
514
|
+
});
|
|
515
|
+
const BulbOutlineIcon = forwardRef(function BulbOutlineIcon2(props, ref) {
|
|
516
|
+
return /* @__PURE__ */jsx("svg", {
|
|
517
|
+
"data-sanity-icon": "bulb-outline",
|
|
518
|
+
width: "1em",
|
|
519
|
+
height: "1em",
|
|
520
|
+
viewBox: "0 0 25 25",
|
|
521
|
+
fill: "none",
|
|
522
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
523
|
+
ref,
|
|
524
|
+
...props,
|
|
525
|
+
children: /* @__PURE__ */jsx("path", {
|
|
526
|
+
d: "M9.5 16.5H15.5M11 20V20.5C11 21.0523 11.4477 21.5 12 21.5H13C13.5523 21.5 14 21.0523 14 20.5V20M18 10C18 11.94 17.3978 12.9767 16.4272 14.3368C15.8273 15.1773 15.5 16.1794 15.5 17.212V18.5C15.5 19.0523 15.0523 19.5 14.5 19.5H10.5C9.94772 19.5 9.5 19.0523 9.5 18.5V17.212C9.5 16.1794 9.17266 15.1773 8.57284 14.3368C7.60216 12.9767 7 11.94 7 10C7 7 9.5 4.5 12.5 4.5C15.5 4.5 18 7 18 10Z",
|
|
527
|
+
stroke: "currentColor",
|
|
528
|
+
strokeWidth: 1.2
|
|
529
|
+
})
|
|
530
|
+
});
|
|
531
|
+
});
|
|
532
|
+
const CalendarIcon = forwardRef(function CalendarIcon2(props, ref) {
|
|
533
|
+
return /* @__PURE__ */jsx("svg", {
|
|
534
|
+
"data-sanity-icon": "calendar",
|
|
535
|
+
width: "1em",
|
|
536
|
+
height: "1em",
|
|
537
|
+
viewBox: "0 0 25 25",
|
|
538
|
+
fill: "none",
|
|
539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
540
|
+
ref,
|
|
541
|
+
...props,
|
|
542
|
+
children: /* @__PURE__ */jsx("path", {
|
|
543
|
+
d: "M4.5 10.5V19.5H20.5V10.5M4.5 10.5V5.5H20.5V10.5M4.5 10.5H12.5H20.5M20.5 13.5H16.5M16.5 13.5H12.5M16.5 13.5V10.5M16.5 13.5V16.5M12.5 13.5H8.5M12.5 13.5V16.5M12.5 13.5V10.5M8.5 13.5H4.5M8.5 13.5V10.5M8.5 13.5V16.5M20.5 16.5H16.5M16.5 16.5H12.5M16.5 16.5V19.5M12.5 16.5H8.5M12.5 16.5V19.5M8.5 16.5H4.5M8.5 16.5V19.5M17.5 8V3M7.5 8V3",
|
|
544
|
+
stroke: "currentColor",
|
|
545
|
+
strokeWidth: 1.2,
|
|
546
|
+
strokeLinejoin: "round"
|
|
547
|
+
})
|
|
548
|
+
});
|
|
549
|
+
});
|
|
550
|
+
const CaseIcon = forwardRef(function CaseIcon2(props, ref) {
|
|
551
|
+
return /* @__PURE__ */jsx("svg", {
|
|
552
|
+
"data-sanity-icon": "case",
|
|
553
|
+
width: "1em",
|
|
554
|
+
height: "1em",
|
|
555
|
+
viewBox: "0 0 25 25",
|
|
556
|
+
fill: "none",
|
|
557
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
558
|
+
ref,
|
|
559
|
+
...props,
|
|
560
|
+
children: /* @__PURE__ */jsx("path", {
|
|
561
|
+
d: "M9 8.5122V6C9 5.44772 9.44772 5 10 5H15C15.5523 5 16 5.44772 16 6V8.5122M4.5 12V18.5C4.5 19.0523 4.94772 19.5 5.5 19.5H19.5C20.0523 19.5 20.5 19.0523 20.5 18.5V12M4.5 12V9.5122C4.5 8.95991 4.94772 8.5122 5.5 8.5122H19.5C20.0523 8.5122 20.5 8.95991 20.5 9.5122V12M4.5 12L11.7978 14.7367C12.2505 14.9064 12.7495 14.9064 13.2022 14.7367L20.5 12",
|
|
562
|
+
stroke: "currentColor",
|
|
563
|
+
strokeWidth: 1.2,
|
|
564
|
+
strokeLinejoin: "round"
|
|
565
|
+
})
|
|
566
|
+
});
|
|
567
|
+
});
|
|
568
|
+
const ChartUpwardIcon = forwardRef(function ChartUpwardIcon2(props, ref) {
|
|
569
|
+
return /* @__PURE__ */jsx("svg", {
|
|
570
|
+
"data-sanity-icon": "chart-upward",
|
|
571
|
+
width: "1em",
|
|
572
|
+
height: "1em",
|
|
573
|
+
viewBox: "0 0 25 25",
|
|
574
|
+
fill: "none",
|
|
575
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
576
|
+
ref,
|
|
577
|
+
...props,
|
|
578
|
+
children: /* @__PURE__ */jsx("path", {
|
|
579
|
+
d: "M5.5 5V19.5H20M7.5 16L11.5 11.5L15.5 14L19.5 8.5",
|
|
580
|
+
stroke: "currentColor",
|
|
581
|
+
strokeWidth: 1.2,
|
|
582
|
+
strokeLinejoin: "round"
|
|
583
|
+
})
|
|
584
|
+
});
|
|
585
|
+
});
|
|
586
|
+
const CheckmarkCircleIcon = forwardRef(function CheckmarkCircleIcon2(props, ref) {
|
|
587
|
+
return /* @__PURE__ */jsx("svg", {
|
|
588
|
+
"data-sanity-icon": "checkmark-circle",
|
|
589
|
+
width: "1em",
|
|
590
|
+
height: "1em",
|
|
591
|
+
viewBox: "0 0 25 25",
|
|
592
|
+
fill: "none",
|
|
593
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
594
|
+
ref,
|
|
595
|
+
...props,
|
|
596
|
+
children: /* @__PURE__ */jsx("path", {
|
|
597
|
+
d: "M9.5 12.1316L11.7414 14.5L16 10M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
598
|
+
stroke: "currentColor",
|
|
599
|
+
strokeWidth: 1.2,
|
|
600
|
+
strokeLinejoin: "round"
|
|
601
|
+
})
|
|
602
|
+
});
|
|
603
|
+
});
|
|
604
|
+
const CheckmarkIcon = forwardRef(function CheckmarkIcon2(props, ref) {
|
|
605
|
+
return /* @__PURE__ */jsx("svg", {
|
|
606
|
+
"data-sanity-icon": "checkmark",
|
|
607
|
+
width: "1em",
|
|
608
|
+
height: "1em",
|
|
609
|
+
viewBox: "0 0 25 25",
|
|
610
|
+
fill: "none",
|
|
611
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
612
|
+
ref,
|
|
613
|
+
...props,
|
|
614
|
+
children: /* @__PURE__ */jsx("path", {
|
|
615
|
+
d: "M5.5 11.5L10.5 16.5L19.5 7.60001",
|
|
616
|
+
stroke: "currentColor",
|
|
617
|
+
strokeWidth: 1.2,
|
|
618
|
+
strokeLinejoin: "round"
|
|
619
|
+
})
|
|
620
|
+
});
|
|
621
|
+
});
|
|
622
|
+
const ChevronDownIcon = forwardRef(function ChevronDownIcon2(props, ref) {
|
|
623
|
+
return /* @__PURE__ */jsx("svg", {
|
|
624
|
+
"data-sanity-icon": "chevron-down",
|
|
625
|
+
width: "1em",
|
|
626
|
+
height: "1em",
|
|
627
|
+
viewBox: "0 0 25 25",
|
|
628
|
+
fill: "none",
|
|
629
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
630
|
+
ref,
|
|
631
|
+
...props,
|
|
632
|
+
children: /* @__PURE__ */jsx("path", {
|
|
633
|
+
d: "M17 10.5L12.5 15L8 10.5",
|
|
634
|
+
stroke: "currentColor",
|
|
635
|
+
strokeWidth: 1.2,
|
|
636
|
+
strokeLinejoin: "round"
|
|
637
|
+
})
|
|
638
|
+
});
|
|
639
|
+
});
|
|
640
|
+
const ChevronLeftIcon = forwardRef(function ChevronLeftIcon2(props, ref) {
|
|
641
|
+
return /* @__PURE__ */jsx("svg", {
|
|
642
|
+
"data-sanity-icon": "chevron-left",
|
|
643
|
+
width: "1em",
|
|
644
|
+
height: "1em",
|
|
645
|
+
viewBox: "0 0 25 25",
|
|
646
|
+
fill: "none",
|
|
647
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
648
|
+
ref,
|
|
649
|
+
...props,
|
|
650
|
+
children: /* @__PURE__ */jsx("path", {
|
|
651
|
+
d: "M14.5 17L10 12.5L14.5 8",
|
|
652
|
+
stroke: "currentColor",
|
|
653
|
+
strokeWidth: 1.2,
|
|
654
|
+
strokeLinejoin: "round"
|
|
655
|
+
})
|
|
656
|
+
});
|
|
657
|
+
});
|
|
658
|
+
const ChevronRightIcon = forwardRef(function ChevronRightIcon2(props, ref) {
|
|
659
|
+
return /* @__PURE__ */jsx("svg", {
|
|
660
|
+
"data-sanity-icon": "chevron-right",
|
|
661
|
+
width: "1em",
|
|
662
|
+
height: "1em",
|
|
663
|
+
viewBox: "0 0 25 25",
|
|
664
|
+
fill: "none",
|
|
665
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
666
|
+
ref,
|
|
667
|
+
...props,
|
|
668
|
+
children: /* @__PURE__ */jsx("path", {
|
|
669
|
+
d: "M10.5 8L15 12.5L10.5 17",
|
|
670
|
+
stroke: "currentColor",
|
|
671
|
+
strokeWidth: 1.2,
|
|
672
|
+
strokeLinejoin: "round"
|
|
673
|
+
})
|
|
674
|
+
});
|
|
675
|
+
});
|
|
676
|
+
const ChevronUpIcon = forwardRef(function ChevronUpIcon2(props, ref) {
|
|
677
|
+
return /* @__PURE__ */jsx("svg", {
|
|
678
|
+
"data-sanity-icon": "chevron-up",
|
|
679
|
+
width: "1em",
|
|
680
|
+
height: "1em",
|
|
681
|
+
viewBox: "0 0 25 25",
|
|
682
|
+
fill: "none",
|
|
683
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
684
|
+
ref,
|
|
685
|
+
...props,
|
|
686
|
+
children: /* @__PURE__ */jsx("path", {
|
|
687
|
+
d: "M8 14.5L12.5 10L17 14.5",
|
|
688
|
+
stroke: "currentColor",
|
|
689
|
+
strokeWidth: 1.2,
|
|
690
|
+
strokeLinejoin: "round"
|
|
691
|
+
})
|
|
692
|
+
});
|
|
693
|
+
});
|
|
694
|
+
const CircleIcon = forwardRef(function CircleIcon2(props, ref) {
|
|
695
|
+
return /* @__PURE__ */jsx("svg", {
|
|
696
|
+
"data-sanity-icon": "circle",
|
|
697
|
+
width: "1em",
|
|
698
|
+
height: "1em",
|
|
699
|
+
viewBox: "0 0 25 25",
|
|
700
|
+
fill: "none",
|
|
701
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
702
|
+
ref,
|
|
703
|
+
...props,
|
|
704
|
+
children: /* @__PURE__ */jsx("circle", {
|
|
705
|
+
cx: 12.5,
|
|
706
|
+
cy: 12.5,
|
|
707
|
+
r: 8,
|
|
708
|
+
stroke: "currentColor",
|
|
709
|
+
strokeWidth: 1.2,
|
|
710
|
+
strokeLinejoin: "round"
|
|
711
|
+
})
|
|
712
|
+
});
|
|
713
|
+
});
|
|
714
|
+
const ClipboardIcon = forwardRef(function ClipboardIcon2(props, ref) {
|
|
715
|
+
return /* @__PURE__ */jsx("svg", {
|
|
716
|
+
"data-sanity-icon": "clipboard",
|
|
717
|
+
width: "1em",
|
|
718
|
+
height: "1em",
|
|
719
|
+
viewBox: "0 0 25 25",
|
|
720
|
+
fill: "none",
|
|
721
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
722
|
+
ref,
|
|
723
|
+
...props,
|
|
724
|
+
children: /* @__PURE__ */jsx("path", {
|
|
725
|
+
d: "M8 5.5H6.5V19.5H18.5V5.5H17M12.5 3C11.5 3 11.5 4.5 11 4.5C10 4.5 9.5 5 9.5 6.5H15.6C15.6 5 15 4.5 14 4.5C13.5 4.5 13.5 3 12.5 3Z",
|
|
726
|
+
stroke: "currentColor",
|
|
727
|
+
strokeWidth: 1.2,
|
|
728
|
+
strokeLinejoin: "round"
|
|
729
|
+
})
|
|
730
|
+
});
|
|
731
|
+
});
|
|
732
|
+
const ClipboardImageIcon = forwardRef(function ClipboardImageIcon2(props, ref) {
|
|
733
|
+
return /* @__PURE__ */jsx("svg", {
|
|
734
|
+
"data-sanity-icon": "clipboard-image",
|
|
735
|
+
width: "1em",
|
|
736
|
+
height: "1em",
|
|
737
|
+
viewBox: "0 0 25 25",
|
|
738
|
+
fill: "none",
|
|
739
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
740
|
+
ref,
|
|
741
|
+
...props,
|
|
742
|
+
children: /* @__PURE__ */jsx("path", {
|
|
743
|
+
d: "M8 5.5H6.5V19.5H10.5M17 5.5H18.5V11.5M10.5 18.5L12.73 15.8983C13.1327 15.4285 13.8613 15.4335 14.2575 15.909L15.299 17.1588C15.6754 17.6105 16.3585 17.6415 16.7743 17.2257L16.9903 17.0097C17.2947 16.7053 17.7597 16.6298 18.1447 16.8223L20.5 18M10.5 11.5H20.5V21.5H10.5V11.5ZM12.5 3C11.5 3 11.5 4.5 11 4.5C10 4.5 9.5 5 9.5 6.5H15.6C15.6 5 15 4.5 14 4.5C13.5 4.5 13.5 3 12.5 3Z",
|
|
744
|
+
stroke: "currentColor",
|
|
745
|
+
strokeWidth: 1.2,
|
|
746
|
+
strokeLinejoin: "round"
|
|
747
|
+
})
|
|
748
|
+
});
|
|
749
|
+
});
|
|
750
|
+
const ClockIcon = forwardRef(function ClockIcon2(props, ref) {
|
|
751
|
+
return /* @__PURE__ */jsx("svg", {
|
|
752
|
+
"data-sanity-icon": "clock",
|
|
753
|
+
width: "1em",
|
|
754
|
+
height: "1em",
|
|
755
|
+
viewBox: "0 0 25 25",
|
|
756
|
+
fill: "none",
|
|
757
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
758
|
+
ref,
|
|
759
|
+
...props,
|
|
760
|
+
children: /* @__PURE__ */jsx("path", {
|
|
761
|
+
d: "M12.5 8V12.5L15.5 15.5M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
762
|
+
stroke: "currentColor",
|
|
763
|
+
strokeWidth: 1.2,
|
|
764
|
+
strokeLinejoin: "round"
|
|
765
|
+
})
|
|
766
|
+
});
|
|
767
|
+
});
|
|
768
|
+
const CloseCircleIcon = forwardRef(function CloseCircleIcon2(props, ref) {
|
|
769
|
+
return /* @__PURE__ */jsx("svg", {
|
|
770
|
+
"data-sanity-icon": "close-circle",
|
|
771
|
+
width: "1em",
|
|
772
|
+
height: "1em",
|
|
773
|
+
viewBox: "0 0 25 25",
|
|
774
|
+
fill: "none",
|
|
775
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
776
|
+
ref,
|
|
777
|
+
...props,
|
|
778
|
+
children: /* @__PURE__ */jsx("path", {
|
|
779
|
+
d: "M9.5 15.5L12.5 12.5M12.5 12.5L15.5 9.5M12.5 12.5L9.5 9.5M12.5 12.5L15.5 15.5M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
780
|
+
stroke: "currentColor",
|
|
781
|
+
strokeWidth: 1.2,
|
|
782
|
+
strokeLinejoin: "round"
|
|
783
|
+
})
|
|
784
|
+
});
|
|
785
|
+
});
|
|
786
|
+
const CloseIcon = forwardRef(function CloseIcon2(props, ref) {
|
|
787
|
+
return /* @__PURE__ */jsx("svg", {
|
|
788
|
+
"data-sanity-icon": "close",
|
|
789
|
+
width: "1em",
|
|
790
|
+
height: "1em",
|
|
791
|
+
viewBox: "0 0 25 25",
|
|
792
|
+
fill: "none",
|
|
793
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
794
|
+
ref,
|
|
795
|
+
...props,
|
|
796
|
+
children: /* @__PURE__ */jsx("path", {
|
|
797
|
+
d: "M18 7L7 18M7 7L18 18",
|
|
798
|
+
stroke: "currentColor",
|
|
799
|
+
strokeWidth: 1.2,
|
|
800
|
+
strokeLinejoin: "round"
|
|
801
|
+
})
|
|
802
|
+
});
|
|
803
|
+
});
|
|
804
|
+
const CodeBlockIcon = forwardRef(function CodeBlockIcon2(props, ref) {
|
|
805
|
+
return /* @__PURE__ */jsx("svg", {
|
|
806
|
+
"data-sanity-icon": "code-block",
|
|
807
|
+
width: "1em",
|
|
808
|
+
height: "1em",
|
|
809
|
+
viewBox: "0 0 25 25",
|
|
810
|
+
fill: "none",
|
|
811
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
812
|
+
ref,
|
|
813
|
+
...props,
|
|
814
|
+
children: /* @__PURE__ */jsx("path", {
|
|
815
|
+
d: "M11 15L8.5 12.5L11 10M14 10L16.5 12.5L14 15M5.5 6.5H19.5V18.5H5.5V6.5Z",
|
|
816
|
+
stroke: "currentColor",
|
|
817
|
+
strokeWidth: 1.2,
|
|
818
|
+
strokeLinejoin: "round"
|
|
819
|
+
})
|
|
820
|
+
});
|
|
821
|
+
});
|
|
822
|
+
const CodeIcon = forwardRef(function CodeIcon2(props, ref) {
|
|
823
|
+
return /* @__PURE__ */jsx("svg", {
|
|
824
|
+
"data-sanity-icon": "code",
|
|
825
|
+
width: "1em",
|
|
826
|
+
height: "1em",
|
|
827
|
+
viewBox: "0 0 25 25",
|
|
828
|
+
fill: "none",
|
|
829
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
830
|
+
ref,
|
|
831
|
+
...props,
|
|
832
|
+
children: /* @__PURE__ */jsx("path", {
|
|
833
|
+
d: "M11 16L7.5 12.5L11 9M14 9L17.5 12.5L14 16",
|
|
834
|
+
stroke: "currentColor",
|
|
835
|
+
strokeWidth: 1.2,
|
|
836
|
+
strokeLinejoin: "round"
|
|
837
|
+
})
|
|
838
|
+
});
|
|
839
|
+
});
|
|
840
|
+
const CogIcon = forwardRef(function CogIcon2(props, ref) {
|
|
841
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
842
|
+
"data-sanity-icon": "cog",
|
|
843
|
+
width: "1em",
|
|
844
|
+
height: "1em",
|
|
845
|
+
viewBox: "0 0 25 25",
|
|
846
|
+
fill: "none",
|
|
847
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
848
|
+
ref,
|
|
849
|
+
...props,
|
|
850
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
851
|
+
d: "M14.2624 5.40607L13.8714 4.42848C13.6471 3.86771 13.104 3.5 12.5 3.5C11.896 3.5 11.3529 3.86771 11.1286 4.42848L10.7376 5.40607C10.5857 5.78585 10.2869 6.08826 9.90901 6.2448C9.53111 6.40133 9.10603 6.39874 8.73006 6.23761L7.76229 5.82285C7.20716 5.58494 6.56311 5.70897 6.13604 6.13604C5.70897 6.56311 5.58494 7.20716 5.82285 7.76229L6.23761 8.73006C6.39874 9.10602 6.40133 9.53111 6.2448 9.90901C6.08826 10.2869 5.78585 10.5857 5.40607 10.7376L4.42848 11.1286C3.86771 11.3529 3.5 11.896 3.5 12.5C3.5 13.104 3.86771 13.6471 4.42848 13.8714L5.40607 14.2624C5.78585 14.4143 6.08826 14.7131 6.2448 15.091C6.40133 15.4689 6.39874 15.894 6.23761 16.2699L5.82285 17.2377C5.58494 17.7928 5.70897 18.4369 6.13604 18.864C6.56311 19.291 7.20716 19.4151 7.76229 19.1772L8.73006 18.7624C9.10603 18.6013 9.53111 18.5987 9.90901 18.7552C10.2869 18.9117 10.5857 19.2141 10.7376 19.5939L11.1286 20.5715C11.3529 21.1323 11.896 21.5 12.5 21.5C13.104 21.5 13.6471 21.1323 13.8714 20.5715L14.2624 19.5939C14.4143 19.2141 14.7131 18.9117 15.091 18.7552C15.4689 18.5987 15.894 18.6013 16.2699 18.7624L17.2377 19.1771C17.7928 19.4151 18.4369 19.291 18.864 18.864C19.291 18.4369 19.4151 17.7928 19.1771 17.2377L18.7624 16.2699C18.6013 15.894 18.5987 15.4689 18.7552 15.091C18.9117 14.7131 19.2141 14.4143 19.5939 14.2624L20.5715 13.8714C21.1323 13.6471 21.5 13.104 21.5 12.5C21.5 11.896 21.1323 11.3529 20.5715 11.1286L19.5939 10.7376C19.2141 10.5857 18.9117 10.2869 18.7552 9.90901C18.5987 9.53111 18.6013 9.10602 18.7624 8.73006L19.1772 7.76229C19.4151 7.20716 19.291 6.56311 18.864 6.13604C18.4369 5.70897 17.7928 5.58494 17.2377 5.82285L16.2699 6.23761C15.894 6.39874 15.4689 6.40133 15.091 6.2448C14.7131 6.08826 14.4143 5.78585 14.2624 5.40607Z",
|
|
852
|
+
stroke: "currentColor",
|
|
853
|
+
strokeWidth: 1.2,
|
|
854
|
+
strokeLinejoin: "round"
|
|
855
|
+
}), /* @__PURE__ */jsx("path", {
|
|
856
|
+
d: "M16.5 12.5C16.5 14.7091 14.7091 16.5 12.5 16.5C10.2909 16.5 8.5 14.7091 8.5 12.5C8.5 10.2909 10.2909 8.5 12.5 8.5C14.7091 8.5 16.5 10.2909 16.5 12.5Z",
|
|
857
|
+
stroke: "currentColor",
|
|
858
|
+
strokeWidth: 1.2,
|
|
859
|
+
strokeLinejoin: "round"
|
|
860
|
+
})]
|
|
861
|
+
});
|
|
862
|
+
});
|
|
863
|
+
const CollapseIcon = forwardRef(function CollapseIcon2(props, ref) {
|
|
864
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
865
|
+
"data-sanity-icon": "collapse",
|
|
866
|
+
width: "1em",
|
|
867
|
+
height: "1em",
|
|
868
|
+
viewBox: "0 0 25 25",
|
|
869
|
+
fill: "none",
|
|
870
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
871
|
+
ref,
|
|
872
|
+
...props,
|
|
873
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
874
|
+
d: "M6 14.5L10.5 14.5V19M19 10.5H14.5L14.5 6",
|
|
875
|
+
stroke: "currentColor",
|
|
876
|
+
strokeWidth: 1.2,
|
|
877
|
+
strokeLinejoin: "round"
|
|
878
|
+
}), /* @__PURE__ */jsx("path", {
|
|
879
|
+
d: "M10.5 14.5L6 19M14.5 10.5L19 6",
|
|
880
|
+
stroke: "currentColor",
|
|
881
|
+
strokeWidth: 1.2,
|
|
882
|
+
strokeLinejoin: "round"
|
|
883
|
+
})]
|
|
884
|
+
});
|
|
885
|
+
});
|
|
886
|
+
const ColorWheelIcon = forwardRef(function ColorWheelIcon2(props, ref) {
|
|
887
|
+
return /* @__PURE__ */jsx("svg", {
|
|
888
|
+
"data-sanity-icon": "color-wheel",
|
|
889
|
+
width: "1em",
|
|
890
|
+
height: "1em",
|
|
891
|
+
viewBox: "0 0 25 25",
|
|
892
|
+
fill: "none",
|
|
893
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
894
|
+
ref,
|
|
895
|
+
...props,
|
|
896
|
+
children: /* @__PURE__ */jsx("path", {
|
|
897
|
+
d: "M9.43853 5.10896L11.1606 9.26642M13.8394 15.7336L15.5615 19.891M15.7336 11.1606L19.891 9.43853M9.26642 13.8394L5.10896 15.5615M5.3139 9.52342L9.23359 11.147M15.7664 13.853L19.6861 15.4766M13.853 9.23359L15.4766 5.3139M9.52342 19.6861L11.147 15.7664M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5ZM16 12.5C16 14.433 14.433 16 12.5 16C10.567 16 9 14.433 9 12.5C9 10.567 10.567 9 12.5 9C14.433 9 16 10.567 16 12.5Z",
|
|
898
|
+
stroke: "currentColor",
|
|
899
|
+
strokeWidth: 1.2,
|
|
900
|
+
strokeLinejoin: "round"
|
|
901
|
+
})
|
|
902
|
+
});
|
|
903
|
+
});
|
|
904
|
+
const CommentIcon = forwardRef(function CommentIcon2(props, ref) {
|
|
905
|
+
return /* @__PURE__ */jsx("svg", {
|
|
906
|
+
"data-sanity-icon": "comment",
|
|
907
|
+
width: "1em",
|
|
908
|
+
height: "1em",
|
|
909
|
+
viewBox: "0 0 25 25",
|
|
910
|
+
fill: "none",
|
|
911
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
912
|
+
ref,
|
|
913
|
+
...props,
|
|
914
|
+
children: /* @__PURE__ */jsx("path", {
|
|
915
|
+
d: "M7.5 16.5H9.5V20.5L13.5 16.5H17.5C18.6046 16.5 19.5 15.6046 19.5 14.5V8.5C19.5 7.39543 18.6046 6.5 17.5 6.5H7.5C6.39543 6.5 5.5 7.39543 5.5 8.5V14.5C5.5 15.6046 6.39543 16.5 7.5 16.5Z",
|
|
916
|
+
stroke: "currentColor",
|
|
917
|
+
strokeWidth: 1.2,
|
|
918
|
+
strokeLinejoin: "round"
|
|
919
|
+
})
|
|
920
|
+
});
|
|
921
|
+
});
|
|
922
|
+
const ComponentIcon = forwardRef(function ComponentIcon2(props, ref) {
|
|
923
|
+
return /* @__PURE__ */jsx("svg", {
|
|
924
|
+
"data-sanity-icon": "component",
|
|
925
|
+
width: "1em",
|
|
926
|
+
height: "1em",
|
|
927
|
+
viewBox: "0 0 25 25",
|
|
928
|
+
fill: "none",
|
|
929
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
930
|
+
ref,
|
|
931
|
+
...props,
|
|
932
|
+
children: /* @__PURE__ */jsx("path", {
|
|
933
|
+
d: "M8.5 8.5L12.5 12.5M12.5 12.5L16.5 16.5M12.5 12.5L16.5 8.5M12.5 12.5L8.5 16.5M12.5 4L21 12.5L12.5 21L4 12.5L12.5 4Z",
|
|
934
|
+
stroke: "currentColor",
|
|
935
|
+
strokeWidth: 1.2,
|
|
936
|
+
strokeLinejoin: "round"
|
|
937
|
+
})
|
|
938
|
+
});
|
|
939
|
+
});
|
|
940
|
+
const ComposeIcon = forwardRef(function ComposeIcon2(props, ref) {
|
|
941
|
+
return /* @__PURE__ */jsx("svg", {
|
|
942
|
+
"data-sanity-icon": "compose",
|
|
943
|
+
width: "1em",
|
|
944
|
+
height: "1em",
|
|
945
|
+
viewBox: "0 0 25 25",
|
|
946
|
+
fill: "none",
|
|
947
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
948
|
+
ref,
|
|
949
|
+
...props,
|
|
950
|
+
children: /* @__PURE__ */jsx("path", {
|
|
951
|
+
d: "M17 6L19 8M14 5.5H5.5V19.5H19.5V11M9 16L9.5 13.5L19 4L21 6L11.5 15.5L9 16Z",
|
|
952
|
+
stroke: "currentColor",
|
|
953
|
+
strokeWidth: 1.2,
|
|
954
|
+
strokeLinejoin: "round"
|
|
955
|
+
})
|
|
956
|
+
});
|
|
957
|
+
});
|
|
958
|
+
const ControlsIcon = forwardRef(function ControlsIcon2(props, ref) {
|
|
959
|
+
return /* @__PURE__ */jsx("svg", {
|
|
960
|
+
"data-sanity-icon": "controls",
|
|
961
|
+
width: "1em",
|
|
962
|
+
height: "1em",
|
|
963
|
+
viewBox: "0 0 25 25",
|
|
964
|
+
fill: "none",
|
|
965
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
966
|
+
ref,
|
|
967
|
+
...props,
|
|
968
|
+
children: /* @__PURE__ */jsx("path", {
|
|
969
|
+
d: "M6.5 5V7.5M6.5 7.5C5.39543 7.5 4.5 8.39543 4.5 9.5C4.5 10.6046 5.39543 11.5 6.5 11.5M6.5 7.5C7.60457 7.5 8.5 8.39543 8.5 9.5C8.5 10.6046 7.60457 11.5 6.5 11.5M6.5 11.5V20M12.5 5V13.5M12.5 13.5C11.3954 13.5 10.5 14.3954 10.5 15.5C10.5 16.6046 11.3954 17.5 12.5 17.5M12.5 13.5C13.6046 13.5 14.5 14.3954 14.5 15.5C14.5 16.6046 13.6046 17.5 12.5 17.5M12.5 17.5V20M18.5 5V7.5M18.5 7.5C17.3954 7.5 16.5 8.39543 16.5 9.5C16.5 10.6046 17.3954 11.5 18.5 11.5M18.5 7.5C19.6046 7.5 20.5 8.39543 20.5 9.5C20.5 10.6046 19.6046 11.5 18.5 11.5M18.5 11.5V20",
|
|
970
|
+
stroke: "currentColor",
|
|
971
|
+
strokeWidth: 1.2,
|
|
972
|
+
strokeLinejoin: "round"
|
|
973
|
+
})
|
|
974
|
+
});
|
|
975
|
+
});
|
|
976
|
+
const CopyIcon = forwardRef(function CopyIcon2(props, ref) {
|
|
977
|
+
return /* @__PURE__ */jsx("svg", {
|
|
978
|
+
"data-sanity-icon": "copy",
|
|
979
|
+
width: "1em",
|
|
980
|
+
height: "1em",
|
|
981
|
+
viewBox: "0 0 25 25",
|
|
982
|
+
fill: "none",
|
|
983
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
984
|
+
ref,
|
|
985
|
+
...props,
|
|
986
|
+
children: /* @__PURE__ */jsx("path", {
|
|
987
|
+
d: "M8.5 8.5H5.5V20.5H16.5V16.5M19.5 4.5H8.5V16.5H19.5V4.5Z",
|
|
988
|
+
stroke: "currentColor",
|
|
989
|
+
strokeWidth: 1.2,
|
|
990
|
+
strokeLinejoin: "round"
|
|
991
|
+
})
|
|
992
|
+
});
|
|
993
|
+
});
|
|
994
|
+
const CreditCardIcon = forwardRef(function CreditCardIcon2(props, ref) {
|
|
995
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
996
|
+
"data-sanity-icon": "credit-card",
|
|
997
|
+
width: "1em",
|
|
998
|
+
height: "1em",
|
|
999
|
+
viewBox: "0 0 25 25",
|
|
1000
|
+
fill: "none",
|
|
1001
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1002
|
+
ref,
|
|
1003
|
+
...props,
|
|
1004
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1005
|
+
d: "M20.5 9.5H4.5V11.5H20.5V9.5Z",
|
|
1006
|
+
fill: "currentColor",
|
|
1007
|
+
stroke: "currentColor",
|
|
1008
|
+
strokeWidth: 1.2,
|
|
1009
|
+
strokeLinejoin: "round"
|
|
1010
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1011
|
+
d: "M7 15.5H14M5.5 18.5H19.5C20.0523 18.5 20.5 18.0523 20.5 17.5V7.5C20.5 6.94772 20.0523 6.5 19.5 6.5H5.5C4.94772 6.5 4.5 6.94772 4.5 7.5V17.5C4.5 18.0523 4.94772 18.5 5.5 18.5Z",
|
|
1012
|
+
stroke: "currentColor",
|
|
1013
|
+
strokeWidth: 1.2,
|
|
1014
|
+
strokeLinejoin: "round"
|
|
1015
|
+
})]
|
|
1016
|
+
});
|
|
1017
|
+
});
|
|
1018
|
+
const CropIcon = forwardRef(function CropIcon2(props, ref) {
|
|
1019
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1020
|
+
"data-sanity-icon": "crop",
|
|
1021
|
+
width: "1em",
|
|
1022
|
+
height: "1em",
|
|
1023
|
+
viewBox: "0 0 25 25",
|
|
1024
|
+
fill: "none",
|
|
1025
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1026
|
+
ref,
|
|
1027
|
+
...props,
|
|
1028
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1029
|
+
d: "M9.5 5V15.5H20M5 9.5H15.5V20",
|
|
1030
|
+
stroke: "currentColor",
|
|
1031
|
+
strokeWidth: 1.2,
|
|
1032
|
+
strokeLinejoin: "round"
|
|
1033
|
+
})
|
|
1034
|
+
});
|
|
1035
|
+
});
|
|
1036
|
+
const CubeIcon = forwardRef(function CubeIcon2(props, ref) {
|
|
1037
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1038
|
+
"data-sanity-icon": "cube",
|
|
1039
|
+
width: "1em",
|
|
1040
|
+
height: "1em",
|
|
1041
|
+
viewBox: "0 0 25 25",
|
|
1042
|
+
fill: "none",
|
|
1043
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1044
|
+
ref,
|
|
1045
|
+
...props,
|
|
1046
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1047
|
+
d: "M4.5 8L12.5 3L20.5 8V17L12.5 22L4.5 17V8Z",
|
|
1048
|
+
stroke: "currentColor",
|
|
1049
|
+
strokeWidth: 1.2,
|
|
1050
|
+
strokeLinejoin: "round"
|
|
1051
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1052
|
+
d: "M12.5 22V13M12.5 13L4.5 8M12.5 13L20.5 8",
|
|
1053
|
+
stroke: "currentColor",
|
|
1054
|
+
strokeWidth: 1.2,
|
|
1055
|
+
strokeLinejoin: "round"
|
|
1056
|
+
})]
|
|
1057
|
+
});
|
|
1058
|
+
});
|
|
1059
|
+
const DashboardIcon = forwardRef(function DashboardIcon2(props, ref) {
|
|
1060
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1061
|
+
"data-sanity-icon": "dashboard",
|
|
1062
|
+
width: "1em",
|
|
1063
|
+
height: "1em",
|
|
1064
|
+
viewBox: "0 0 25 25",
|
|
1065
|
+
fill: "none",
|
|
1066
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1067
|
+
ref,
|
|
1068
|
+
...props,
|
|
1069
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1070
|
+
d: "M14.5 19.5V12.5M10.5 12.5V5.5M5.5 12.5H19.5M5.5 19.5H19.5V5.5H5.5V19.5Z",
|
|
1071
|
+
stroke: "currentColor",
|
|
1072
|
+
strokeWidth: 1.2,
|
|
1073
|
+
strokeLinejoin: "round"
|
|
1074
|
+
})
|
|
1075
|
+
});
|
|
1076
|
+
});
|
|
1077
|
+
const DatabaseIcon = forwardRef(function DatabaseIcon2(props, ref) {
|
|
1078
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1079
|
+
"data-sanity-icon": "database",
|
|
1080
|
+
width: "1em",
|
|
1081
|
+
height: "1em",
|
|
1082
|
+
viewBox: "0 0 25 25",
|
|
1083
|
+
fill: "none",
|
|
1084
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1085
|
+
ref,
|
|
1086
|
+
...props,
|
|
1087
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1088
|
+
d: "M18.5 7V17.5C18.5 19.0594 16.0504 20.5 12.5 20.5C8.9496 20.5 6.5 19.0594 6.5 17.5V7M18.5 7C18.5 8.45543 15.8137 9.5 12.5 9.5C9.18629 9.5 6.5 8.45543 6.5 7C6.5 5.54457 9.18629 4.5 12.5 4.5C15.8137 4.5 18.5 5.54457 18.5 7Z",
|
|
1089
|
+
stroke: "currentColor",
|
|
1090
|
+
strokeWidth: 1.2,
|
|
1091
|
+
strokeLinejoin: "round"
|
|
1092
|
+
})
|
|
1093
|
+
});
|
|
1094
|
+
});
|
|
1095
|
+
const DesktopIcon = forwardRef(function DesktopIcon2(props, ref) {
|
|
1096
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1097
|
+
"data-sanity-icon": "desktop",
|
|
1098
|
+
width: "1em",
|
|
1099
|
+
height: "1em",
|
|
1100
|
+
viewBox: "0 0 25 25",
|
|
1101
|
+
fill: "none",
|
|
1102
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1103
|
+
ref,
|
|
1104
|
+
...props,
|
|
1105
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1106
|
+
d: "M4.5 13.5V15.5C4.5 16.0523 4.94772 16.5 5.5 16.5H12.5M4.5 13.5V6.5C4.5 5.94772 4.94772 5.5 5.5 5.5H19.5C20.0523 5.5 20.5 5.94772 20.5 6.5V13.5M4.5 13.5H20.5M20.5 13.5V15.5C20.5 16.0523 20.0523 16.5 19.5 16.5H12.5M12.5 16.5V19.5M12.5 19.5H8M12.5 19.5H17",
|
|
1107
|
+
stroke: "currentColor",
|
|
1108
|
+
strokeWidth: 1.2,
|
|
1109
|
+
strokeLinejoin: "round"
|
|
1110
|
+
})
|
|
1111
|
+
});
|
|
1112
|
+
});
|
|
1113
|
+
const DocumentIcon = forwardRef(function DocumentIcon2(props, ref) {
|
|
1114
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1115
|
+
"data-sanity-icon": "document",
|
|
1116
|
+
width: "1em",
|
|
1117
|
+
height: "1em",
|
|
1118
|
+
viewBox: "0 0 25 25",
|
|
1119
|
+
fill: "none",
|
|
1120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1121
|
+
ref,
|
|
1122
|
+
...props,
|
|
1123
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1124
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1125
|
+
stroke: "currentColor",
|
|
1126
|
+
strokeWidth: 1.2,
|
|
1127
|
+
strokeLinejoin: "round"
|
|
1128
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1129
|
+
d: "M11.5 4.5H18.5V20.5H6.5L6.5 9.5M11.5 4.5L6.5 9.5M11.5 4.5V9.5H6.5",
|
|
1130
|
+
stroke: "currentColor",
|
|
1131
|
+
strokeWidth: 1.2,
|
|
1132
|
+
strokeLinejoin: "round"
|
|
1133
|
+
})]
|
|
1134
|
+
});
|
|
1135
|
+
});
|
|
1136
|
+
const DocumentPdfIcon = forwardRef(function DocumentPdfIcon2(props, ref) {
|
|
1137
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1138
|
+
"data-sanity-icon": "document-pdf",
|
|
1139
|
+
width: "1em",
|
|
1140
|
+
height: "1em",
|
|
1141
|
+
viewBox: "0 0 25 25",
|
|
1142
|
+
fill: "none",
|
|
1143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1144
|
+
ref,
|
|
1145
|
+
...props,
|
|
1146
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1147
|
+
d: "M12.7127 13.8012L12.7193 13.77C12.8488 13.2366 13.0117 12.5716 12.8845 11.969C12.7997 11.4937 12.4493 11.3084 12.1503 11.295C11.7977 11.2794 11.483 11.4803 11.4049 11.7726C11.2576 12.3082 11.3893 13.0402 11.6303 13.973C11.3268 14.6961 10.8425 15.7472 10.4877 16.3721C9.8271 16.7135 8.94113 17.2402 8.80946 17.9053C8.78268 18.028 8.81392 18.1842 8.88757 18.3248C8.97014 18.481 9.10181 18.6015 9.25579 18.6596C9.32274 18.6841 9.40308 18.7042 9.49681 18.7042C9.88959 18.7042 10.5256 18.3873 11.3736 16.9322C11.5031 16.8898 11.637 16.8452 11.7664 16.8006C12.3734 16.5953 13.0028 16.381 13.5718 16.2851C14.2012 16.622 14.9175 16.8385 15.404 16.8385C15.8861 16.8385 16.0758 16.5529 16.1472 16.381C16.2722 16.0797 16.2119 15.7004 16.0088 15.4973C15.7143 15.2072 14.9979 15.1313 13.882 15.2696C13.3331 14.9349 12.9738 14.4796 12.7127 13.8012ZM10.2645 17.1911C9.95431 17.6419 9.71998 17.8673 9.59278 17.9655C9.7423 17.691 10.0346 17.4009 10.2645 17.1911ZM12.2195 11.9355C12.3355 12.1341 12.3199 12.7345 12.2306 13.038C12.1213 12.5939 12.1056 11.9645 12.1704 11.8909L12.2195 11.9355ZM12.1837 14.6247C12.4225 15.0376 12.7238 15.3924 13.0563 15.6557C12.5743 15.7651 12.1346 15.9458 11.7419 16.1065C11.6481 16.1445 11.5566 16.1824 11.4674 16.2181C11.7642 15.6803 12.0119 15.071 12.1837 14.6247ZM15.6562 16.0864L15.6428 16.1065C15.6428 16.1065 15.4375 16.2315 14.6497 15.9213C15.5558 15.8789 15.6562 16.0864 15.6562 16.0864Z",
|
|
1148
|
+
fill: "currentColor"
|
|
1149
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1150
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1151
|
+
stroke: "currentColor",
|
|
1152
|
+
strokeWidth: 1.2,
|
|
1153
|
+
strokeLinejoin: "round"
|
|
1154
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1155
|
+
d: "M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5Z",
|
|
1156
|
+
stroke: "currentColor",
|
|
1157
|
+
strokeWidth: 1.2,
|
|
1158
|
+
strokeLinejoin: "round"
|
|
1159
|
+
})]
|
|
1160
|
+
});
|
|
1161
|
+
});
|
|
1162
|
+
const DocumentRemoveIcon = forwardRef(function DocumentRemoveIcon2(props, ref) {
|
|
1163
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1164
|
+
"data-sanity-icon": "document-remove",
|
|
1165
|
+
width: "1em",
|
|
1166
|
+
height: "1em",
|
|
1167
|
+
viewBox: "0 0 25 25",
|
|
1168
|
+
fill: "none",
|
|
1169
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1170
|
+
ref,
|
|
1171
|
+
...props,
|
|
1172
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1173
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1174
|
+
stroke: "currentColor",
|
|
1175
|
+
strokeWidth: 1.2,
|
|
1176
|
+
strokeLinejoin: "round"
|
|
1177
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1178
|
+
d: "M6.5 14V20.5H18.5V14M6.5 11V9.5L11.5 4.5H18.5V11M3 12.5H22",
|
|
1179
|
+
stroke: "currentColor",
|
|
1180
|
+
strokeWidth: 1.2,
|
|
1181
|
+
strokeLinejoin: "round"
|
|
1182
|
+
})]
|
|
1183
|
+
});
|
|
1184
|
+
});
|
|
1185
|
+
const DocumentSheetIcon = forwardRef(function DocumentSheetIcon2(props, ref) {
|
|
1186
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1187
|
+
"data-sanity-icon": "document-sheet",
|
|
1188
|
+
width: "1em",
|
|
1189
|
+
height: "1em",
|
|
1190
|
+
viewBox: "0 0 25 25",
|
|
1191
|
+
fill: "none",
|
|
1192
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1193
|
+
ref,
|
|
1194
|
+
...props,
|
|
1195
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1196
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1197
|
+
stroke: "currentColor",
|
|
1198
|
+
strokeWidth: 1.2,
|
|
1199
|
+
strokeLinejoin: "round"
|
|
1200
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1201
|
+
d: "M10.4 19V16.4M10.4 16.4L10.4 13.4M10.4 16.4H8M10.4 16.4H14.4M10.4 13.4V11M10.4 13.4H8M10.4 13.4H14.4M14.4 19V16.4M14.4 16.4V13.4M14.4 16.4H17M14.4 13.4V11M14.4 13.4H17M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5Z",
|
|
1202
|
+
stroke: "currentColor",
|
|
1203
|
+
strokeWidth: 1.2,
|
|
1204
|
+
strokeLinejoin: "round"
|
|
1205
|
+
})]
|
|
1206
|
+
});
|
|
1207
|
+
});
|
|
1208
|
+
const DocumentTextIcon = forwardRef(function DocumentTextIcon2(props, ref) {
|
|
1209
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1210
|
+
"data-sanity-icon": "document-text",
|
|
1211
|
+
width: "1em",
|
|
1212
|
+
height: "1em",
|
|
1213
|
+
viewBox: "0 0 25 25",
|
|
1214
|
+
fill: "none",
|
|
1215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1216
|
+
ref,
|
|
1217
|
+
...props,
|
|
1218
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1219
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1220
|
+
stroke: "currentColor",
|
|
1221
|
+
strokeWidth: 1.2,
|
|
1222
|
+
strokeLinejoin: "round"
|
|
1223
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1224
|
+
d: "M16 13H9M14 16H9M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5Z",
|
|
1225
|
+
stroke: "currentColor",
|
|
1226
|
+
strokeWidth: 1.2,
|
|
1227
|
+
strokeLinejoin: "round"
|
|
1228
|
+
})]
|
|
1229
|
+
});
|
|
1230
|
+
});
|
|
1231
|
+
const DocumentVideoIcon = forwardRef(function DocumentVideoIcon2(props, ref) {
|
|
1232
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1233
|
+
"data-sanity-icon": "document-video",
|
|
1234
|
+
width: "1em",
|
|
1235
|
+
height: "1em",
|
|
1236
|
+
viewBox: "0 0 25 25",
|
|
1237
|
+
fill: "none",
|
|
1238
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1239
|
+
ref,
|
|
1240
|
+
...props,
|
|
1241
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1242
|
+
d: "M11.5 16.5V13.5L14 15L11.5 16.5Z",
|
|
1243
|
+
fill: "currentColor",
|
|
1244
|
+
stroke: "currentColor",
|
|
1245
|
+
strokeWidth: 1.2
|
|
1246
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1247
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1248
|
+
stroke: "currentColor",
|
|
1249
|
+
strokeWidth: 1.2,
|
|
1250
|
+
strokeLinejoin: "round"
|
|
1251
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1252
|
+
d: "M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5Z",
|
|
1253
|
+
stroke: "currentColor",
|
|
1254
|
+
strokeWidth: 1.2,
|
|
1255
|
+
strokeLinejoin: "round"
|
|
1256
|
+
})]
|
|
1257
|
+
});
|
|
1258
|
+
});
|
|
1259
|
+
const DocumentWordIcon = forwardRef(function DocumentWordIcon2(props, ref) {
|
|
1260
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1261
|
+
"data-sanity-icon": "document-word",
|
|
1262
|
+
width: "1em",
|
|
1263
|
+
height: "1em",
|
|
1264
|
+
viewBox: "0 0 25 25",
|
|
1265
|
+
fill: "none",
|
|
1266
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1267
|
+
ref,
|
|
1268
|
+
...props,
|
|
1269
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1270
|
+
d: "M12.4699 13.4588H12.5263L13.6328 17H14.5435L16 12H14.9952L14.0656 15.7214H14.0129L12.929 12H12.0672L10.9984 15.7214H10.9419L10.0124 12H9L10.4565 17H11.371L12.4699 13.4588Z",
|
|
1271
|
+
fill: "currentColor"
|
|
1272
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1273
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1274
|
+
stroke: "currentColor",
|
|
1275
|
+
strokeWidth: 1.2,
|
|
1276
|
+
strokeLinejoin: "round"
|
|
1277
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1278
|
+
d: "M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5Z",
|
|
1279
|
+
stroke: "currentColor",
|
|
1280
|
+
strokeWidth: 1.2,
|
|
1281
|
+
strokeLinejoin: "round"
|
|
1282
|
+
})]
|
|
1283
|
+
});
|
|
1284
|
+
});
|
|
1285
|
+
const DocumentZipIcon = forwardRef(function DocumentZipIcon2(props, ref) {
|
|
1286
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1287
|
+
"data-sanity-icon": "document-zip",
|
|
1288
|
+
width: "1em",
|
|
1289
|
+
height: "1em",
|
|
1290
|
+
viewBox: "0 0 25 25",
|
|
1291
|
+
fill: "none",
|
|
1292
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1293
|
+
ref,
|
|
1294
|
+
...props,
|
|
1295
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1296
|
+
d: "M11.5 4.5V9.5H6.5",
|
|
1297
|
+
stroke: "currentColor",
|
|
1298
|
+
strokeWidth: 1.2,
|
|
1299
|
+
strokeLinejoin: "round"
|
|
1300
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1301
|
+
d: "M15 4.5L13.5 5L15.5 6L13.5 7L15.5 8L13.5 9L15.5 10L13.5 11L14.5 11.5V13M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5ZM13.5 13H15.5L16 17H13L13.5 13Z",
|
|
1302
|
+
stroke: "currentColor",
|
|
1303
|
+
strokeWidth: 1.2,
|
|
1304
|
+
strokeLinejoin: "round"
|
|
1305
|
+
})]
|
|
1306
|
+
});
|
|
1307
|
+
});
|
|
1308
|
+
const DocumentsIcon = forwardRef(function DocumentsIcon2(props, ref) {
|
|
1309
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1310
|
+
"data-sanity-icon": "documents",
|
|
1311
|
+
width: "1em",
|
|
1312
|
+
height: "1em",
|
|
1313
|
+
viewBox: "0 0 25 25",
|
|
1314
|
+
fill: "none",
|
|
1315
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1316
|
+
ref,
|
|
1317
|
+
...props,
|
|
1318
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1319
|
+
d: "M10.5 4.5V9.5H5.5",
|
|
1320
|
+
stroke: "currentColor",
|
|
1321
|
+
strokeWidth: 1.2,
|
|
1322
|
+
strokeLinejoin: "round"
|
|
1323
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1324
|
+
d: "M16.5 7.5H19.5V21.5H8.5V18.5M10.5 4.5H16.5V18.5H5.5V9.5L10.5 4.5Z",
|
|
1325
|
+
stroke: "currentColor",
|
|
1326
|
+
strokeWidth: 1.2,
|
|
1327
|
+
strokeLinejoin: "round"
|
|
1328
|
+
})]
|
|
1329
|
+
});
|
|
1330
|
+
});
|
|
1331
|
+
const DotIcon = forwardRef(function DotIcon2(props, ref) {
|
|
1332
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1333
|
+
"data-sanity-icon": "dot",
|
|
1334
|
+
width: "1em",
|
|
1335
|
+
height: "1em",
|
|
1336
|
+
viewBox: "0 0 25 25",
|
|
1337
|
+
fill: "none",
|
|
1338
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1339
|
+
ref,
|
|
1340
|
+
...props,
|
|
1341
|
+
children: /* @__PURE__ */jsx("circle", {
|
|
1342
|
+
cx: 12.5,
|
|
1343
|
+
cy: 12.5,
|
|
1344
|
+
r: 2.5,
|
|
1345
|
+
fill: "currentColor",
|
|
1346
|
+
stroke: "currentColor",
|
|
1347
|
+
strokeWidth: 1.2
|
|
1348
|
+
})
|
|
1349
|
+
});
|
|
1350
|
+
});
|
|
1351
|
+
const DoubleChevronDownIcon = forwardRef(function DoubleChevronDownIcon2(props, ref) {
|
|
1352
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1353
|
+
"data-sanity-icon": "double-chevron-down",
|
|
1354
|
+
width: "1em",
|
|
1355
|
+
height: "1em",
|
|
1356
|
+
viewBox: "0 0 25 25",
|
|
1357
|
+
fill: "none",
|
|
1358
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1359
|
+
ref,
|
|
1360
|
+
...props,
|
|
1361
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1362
|
+
d: "M17 8L12.5 12.5L8 8M17 13L12.5 17.5L8 13",
|
|
1363
|
+
stroke: "currentColor",
|
|
1364
|
+
strokeWidth: 1.2,
|
|
1365
|
+
strokeLinejoin: "round"
|
|
1366
|
+
})
|
|
1367
|
+
});
|
|
1368
|
+
});
|
|
1369
|
+
const DoubleChevronLeftIcon = forwardRef(function DoubleChevronLeftIcon2(props, ref) {
|
|
1370
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1371
|
+
"data-sanity-icon": "double-chevron-left",
|
|
1372
|
+
width: "1em",
|
|
1373
|
+
height: "1em",
|
|
1374
|
+
viewBox: "0 0 25 25",
|
|
1375
|
+
fill: "none",
|
|
1376
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1377
|
+
ref,
|
|
1378
|
+
...props,
|
|
1379
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1380
|
+
d: "M12 17L7.5 12.5L12 8M17 17L12.5 12.5L17 8",
|
|
1381
|
+
stroke: "currentColor",
|
|
1382
|
+
strokeWidth: 1.2,
|
|
1383
|
+
strokeLinejoin: "round"
|
|
1384
|
+
})
|
|
1385
|
+
});
|
|
1386
|
+
});
|
|
1387
|
+
const DoubleChevronRightIcon = forwardRef(function DoubleChevronRightIcon2(props, ref) {
|
|
1388
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1389
|
+
"data-sanity-icon": "double-chevron-right",
|
|
1390
|
+
width: "1em",
|
|
1391
|
+
height: "1em",
|
|
1392
|
+
viewBox: "0 0 25 25",
|
|
1393
|
+
fill: "none",
|
|
1394
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1395
|
+
ref,
|
|
1396
|
+
...props,
|
|
1397
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1398
|
+
d: "M13 8L17.5 12.5L13 17M8 8L12.5 12.5L8 17",
|
|
1399
|
+
stroke: "currentColor",
|
|
1400
|
+
strokeWidth: 1.2,
|
|
1401
|
+
strokeLinejoin: "round"
|
|
1402
|
+
})
|
|
1403
|
+
});
|
|
1404
|
+
});
|
|
1405
|
+
const DoubleChevronUpIcon = forwardRef(function DoubleChevronUpIcon2(props, ref) {
|
|
1406
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1407
|
+
"data-sanity-icon": "double-chevron-up",
|
|
1408
|
+
width: "1em",
|
|
1409
|
+
height: "1em",
|
|
1410
|
+
viewBox: "0 0 25 25",
|
|
1411
|
+
fill: "none",
|
|
1412
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1413
|
+
ref,
|
|
1414
|
+
...props,
|
|
1415
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1416
|
+
d: "M8 12L12.5 7.5L17 12M8 17L12.5 12.5L17 17",
|
|
1417
|
+
stroke: "currentColor",
|
|
1418
|
+
strokeWidth: 1.2,
|
|
1419
|
+
strokeLinejoin: "round"
|
|
1420
|
+
})
|
|
1421
|
+
});
|
|
1422
|
+
});
|
|
1423
|
+
const DownloadIcon = forwardRef(function DownloadIcon2(props, ref) {
|
|
1424
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1425
|
+
"data-sanity-icon": "download",
|
|
1426
|
+
width: "1em",
|
|
1427
|
+
height: "1em",
|
|
1428
|
+
viewBox: "0 0 25 25",
|
|
1429
|
+
fill: "none",
|
|
1430
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1431
|
+
ref,
|
|
1432
|
+
...props,
|
|
1433
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1434
|
+
d: "M19.5 17V19.5H5.5V17M12.5 16L12.5 5",
|
|
1435
|
+
stroke: "currentColor",
|
|
1436
|
+
strokeWidth: 1.2,
|
|
1437
|
+
strokeLinejoin: "round"
|
|
1438
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1439
|
+
d: "M17.5 11L12.5 16L7.5 11",
|
|
1440
|
+
stroke: "currentColor",
|
|
1441
|
+
strokeWidth: 1.2,
|
|
1442
|
+
strokeLinejoin: "round"
|
|
1443
|
+
})]
|
|
1444
|
+
});
|
|
1445
|
+
});
|
|
1446
|
+
const DragHandleIcon = forwardRef(function DragHandleIcon2(props, ref) {
|
|
1447
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1448
|
+
"data-sanity-icon": "drag-handle",
|
|
1449
|
+
width: "1em",
|
|
1450
|
+
height: "1em",
|
|
1451
|
+
viewBox: "0 0 25 25",
|
|
1452
|
+
fill: "none",
|
|
1453
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1454
|
+
ref,
|
|
1455
|
+
...props,
|
|
1456
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1457
|
+
d: "M9.5 8C10.3284 8 11 7.32843 11 6.5C11 5.67157 10.3284 5 9.5 5C8.67157 5 8 5.67157 8 6.5C8 7.32843 8.67157 8 9.5 8Z",
|
|
1458
|
+
fill: "currentColor"
|
|
1459
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1460
|
+
d: "M9.5 14C10.3284 14 11 13.3284 11 12.5C11 11.6716 10.3284 11 9.5 11C8.67157 11 8 11.6716 8 12.5C8 13.3284 8.67157 14 9.5 14Z",
|
|
1461
|
+
fill: "currentColor"
|
|
1462
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1463
|
+
d: "M11 18.5C11 19.3284 10.3284 20 9.5 20C8.67157 20 8 19.3284 8 18.5C8 17.6716 8.67157 17 9.5 17C10.3284 17 11 17.6716 11 18.5Z",
|
|
1464
|
+
fill: "currentColor"
|
|
1465
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1466
|
+
d: "M15.5 8C16.3284 8 17 7.32843 17 6.5C17 5.67157 16.3284 5 15.5 5C14.6716 5 14 5.67157 14 6.5C14 7.32843 14.6716 8 15.5 8Z",
|
|
1467
|
+
fill: "currentColor"
|
|
1468
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1469
|
+
d: "M17 12.5C17 13.3284 16.3284 14 15.5 14C14.6716 14 14 13.3284 14 12.5C14 11.6716 14.6716 11 15.5 11C16.3284 11 17 11.6716 17 12.5Z",
|
|
1470
|
+
fill: "currentColor"
|
|
1471
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1472
|
+
d: "M15.5 20C16.3284 20 17 19.3284 17 18.5C17 17.6716 16.3284 17 15.5 17C14.6716 17 14 17.6716 14 18.5C14 19.3284 14.6716 20 15.5 20Z",
|
|
1473
|
+
fill: "currentColor"
|
|
1474
|
+
})]
|
|
1475
|
+
});
|
|
1476
|
+
});
|
|
1477
|
+
const DropIcon = forwardRef(function DropIcon2(props, ref) {
|
|
1478
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1479
|
+
"data-sanity-icon": "drop",
|
|
1480
|
+
width: "1em",
|
|
1481
|
+
height: "1em",
|
|
1482
|
+
viewBox: "0 0 25 25",
|
|
1483
|
+
fill: "none",
|
|
1484
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1485
|
+
ref,
|
|
1486
|
+
...props,
|
|
1487
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1488
|
+
d: "M18.5 14.5C18.5 18 16 20.5 12.5 20.5C9 20.5 6.5 18 6.5 14.5C6.5 11 9.5 7.50001 12.5 4.5C15.5 7.5 18.5 11 18.5 14.5Z",
|
|
1489
|
+
stroke: "currentColor",
|
|
1490
|
+
strokeWidth: 1.2,
|
|
1491
|
+
strokeLinejoin: "round"
|
|
1492
|
+
})
|
|
1493
|
+
});
|
|
1494
|
+
});
|
|
1495
|
+
const EarthAmericasIcon = forwardRef(function EarthAmericasIcon2(props, ref) {
|
|
1496
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1497
|
+
"data-sanity-icon": "earth-americas",
|
|
1498
|
+
width: "1em",
|
|
1499
|
+
height: "1em",
|
|
1500
|
+
viewBox: "0 0 25 25",
|
|
1501
|
+
fill: "none",
|
|
1502
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1503
|
+
ref,
|
|
1504
|
+
...props,
|
|
1505
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1506
|
+
d: "M7 13L5.5 9L10 5H15V10L14 9H11L9.5 11L10.5 12H12V13L13 14.5H15.5L18.5 17L15.5 19.5L10.5 20V17L12.5 15L9 13L7 10.5V13Z",
|
|
1507
|
+
fill: "currentColor",
|
|
1508
|
+
stroke: "currentColor",
|
|
1509
|
+
strokeWidth: 1.2,
|
|
1510
|
+
strokeLinejoin: "round"
|
|
1511
|
+
}), /* @__PURE__ */jsx("circle", {
|
|
1512
|
+
cx: 12.5,
|
|
1513
|
+
cy: 12.5,
|
|
1514
|
+
r: 8,
|
|
1515
|
+
stroke: "currentColor",
|
|
1516
|
+
strokeWidth: 1.2,
|
|
1517
|
+
strokeLinejoin: "round"
|
|
1518
|
+
})]
|
|
1519
|
+
});
|
|
1520
|
+
});
|
|
1521
|
+
const EarthGlobeIcon = forwardRef(function EarthGlobeIcon2(props, ref) {
|
|
1522
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1523
|
+
"data-sanity-icon": "earth-globe",
|
|
1524
|
+
width: "1em",
|
|
1525
|
+
height: "1em",
|
|
1526
|
+
viewBox: "0 0 25 25",
|
|
1527
|
+
fill: "none",
|
|
1528
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1529
|
+
ref,
|
|
1530
|
+
...props,
|
|
1531
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1532
|
+
d: "M5.5 16.5H19.5M5.5 8.5H19.5M4.5 12.5H20.5M12.5 20.5C12.5 20.5 8 18.5 8 12.5C8 6.5 12.5 4.5 12.5 4.5M12.5 4.5C12.5 4.5 17 6.5 17 12.5C17 18.5 12.5 20.5 12.5 20.5M12.5 4.5V20.5M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
1533
|
+
stroke: "currentColor",
|
|
1534
|
+
strokeWidth: 1.2,
|
|
1535
|
+
strokeLinejoin: "round"
|
|
1536
|
+
})
|
|
1537
|
+
});
|
|
1538
|
+
});
|
|
1539
|
+
const EditIcon = forwardRef(function EditIcon2(props, ref) {
|
|
1540
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1541
|
+
"data-sanity-icon": "edit",
|
|
1542
|
+
width: "1em",
|
|
1543
|
+
height: "1em",
|
|
1544
|
+
viewBox: "0 0 25 25",
|
|
1545
|
+
fill: "none",
|
|
1546
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1547
|
+
ref,
|
|
1548
|
+
...props,
|
|
1549
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1550
|
+
d: "M15 7L18 10M6 19L7 15L17 5L20 8L10 18L6 19Z",
|
|
1551
|
+
stroke: "currentColor",
|
|
1552
|
+
strokeWidth: 1.2,
|
|
1553
|
+
strokeLinejoin: "round"
|
|
1554
|
+
})
|
|
1555
|
+
});
|
|
1556
|
+
});
|
|
1557
|
+
const EllipsisHorizontalIcon = forwardRef(function EllipsisHorizontalIcon2(props, ref) {
|
|
1558
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1559
|
+
"data-sanity-icon": "ellipsis-horizontal",
|
|
1560
|
+
width: "1em",
|
|
1561
|
+
height: "1em",
|
|
1562
|
+
viewBox: "0 0 25 25",
|
|
1563
|
+
fill: "none",
|
|
1564
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1565
|
+
ref,
|
|
1566
|
+
...props,
|
|
1567
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1568
|
+
d: "M6.5 11C7.32843 11 8 11.6716 8 12.5C8 13.3284 7.32843 14 6.5 14C5.67157 14 5 13.3284 5 12.5C5 11.6716 5.67157 11 6.5 11Z",
|
|
1569
|
+
fill: "currentColor"
|
|
1570
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1571
|
+
d: "M12.5 11C13.3284 11 14 11.6716 14 12.5C14 13.3284 13.3284 14 12.5 14C11.6716 14 11 13.3284 11 12.5C11 11.6716 11.6716 11 12.5 11Z",
|
|
1572
|
+
fill: "currentColor"
|
|
1573
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1574
|
+
d: "M18.5 11C19.3284 11 20 11.6716 20 12.5C20 13.3284 19.3284 14 18.5 14C17.6716 14 17 13.3284 17 12.5C17 11.6716 17.6716 11 18.5 11Z",
|
|
1575
|
+
fill: "currentColor"
|
|
1576
|
+
})]
|
|
1577
|
+
});
|
|
1578
|
+
});
|
|
1579
|
+
const EllipsisVerticalIcon = forwardRef(function EllipsisVerticalIcon2(props, ref) {
|
|
1580
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1581
|
+
"data-sanity-icon": "ellipsis-vertical",
|
|
1582
|
+
width: "1em",
|
|
1583
|
+
height: "1em",
|
|
1584
|
+
viewBox: "0 0 25 25",
|
|
1585
|
+
fill: "none",
|
|
1586
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1587
|
+
ref,
|
|
1588
|
+
...props,
|
|
1589
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1590
|
+
d: "M14 6.5C14 7.32843 13.3284 8 12.5 8C11.6716 8 11 7.32843 11 6.5C11 5.67157 11.6716 5 12.5 5C13.3284 5 14 5.67157 14 6.5Z",
|
|
1591
|
+
fill: "currentColor"
|
|
1592
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1593
|
+
d: "M14 12.5C14 13.3284 13.3284 14 12.5 14C11.6716 14 11 13.3284 11 12.5C11 11.6716 11.6716 11 12.5 11C13.3284 11 14 11.6716 14 12.5Z",
|
|
1594
|
+
fill: "currentColor"
|
|
1595
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1596
|
+
d: "M14 18.5C14 19.3284 13.3284 20 12.5 20C11.6716 20 11 19.3284 11 18.5C11 17.6716 11.6716 17 12.5 17C13.3284 17 14 17.6716 14 18.5Z",
|
|
1597
|
+
fill: "currentColor"
|
|
1598
|
+
})]
|
|
1599
|
+
});
|
|
1600
|
+
});
|
|
1601
|
+
const EnterIcon = forwardRef(function EnterIcon2(props, ref) {
|
|
1602
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1603
|
+
"data-sanity-icon": "enter",
|
|
1604
|
+
width: "1em",
|
|
1605
|
+
height: "1em",
|
|
1606
|
+
viewBox: "0 0 25 25",
|
|
1607
|
+
fill: "none",
|
|
1608
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1609
|
+
ref,
|
|
1610
|
+
...props,
|
|
1611
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1612
|
+
d: "M6 14.5H19.5V7",
|
|
1613
|
+
stroke: "currentColor",
|
|
1614
|
+
strokeWidth: 1.2,
|
|
1615
|
+
strokeLinejoin: "round"
|
|
1616
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1617
|
+
d: "M10 18.5L6 14.5L10 10.5",
|
|
1618
|
+
stroke: "currentColor",
|
|
1619
|
+
strokeWidth: 1.2,
|
|
1620
|
+
strokeLinejoin: "round"
|
|
1621
|
+
})]
|
|
1622
|
+
});
|
|
1623
|
+
});
|
|
1624
|
+
const EnterRightIcon = forwardRef(function EnterRightIcon2(props, ref) {
|
|
1625
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1626
|
+
"data-sanity-icon": "enter-right",
|
|
1627
|
+
width: "1em",
|
|
1628
|
+
height: "1em",
|
|
1629
|
+
viewBox: "0 0 25 25",
|
|
1630
|
+
fill: "none",
|
|
1631
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1632
|
+
ref,
|
|
1633
|
+
...props,
|
|
1634
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1635
|
+
d: "M19 14.5H5.5V7",
|
|
1636
|
+
stroke: "currentColor",
|
|
1637
|
+
strokeWidth: 1.2,
|
|
1638
|
+
strokeLinejoin: "round"
|
|
1639
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1640
|
+
d: "M15 18.5L19 14.5L15 10.5",
|
|
1641
|
+
stroke: "currentColor",
|
|
1642
|
+
strokeWidth: 1.2,
|
|
1643
|
+
strokeLinejoin: "round"
|
|
1644
|
+
})]
|
|
1645
|
+
});
|
|
1646
|
+
});
|
|
1647
|
+
const EnvelopeIcon = forwardRef(function EnvelopeIcon2(props, ref) {
|
|
1648
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1649
|
+
"data-sanity-icon": "envelope",
|
|
1650
|
+
width: "1em",
|
|
1651
|
+
height: "1em",
|
|
1652
|
+
viewBox: "0 0 25 25",
|
|
1653
|
+
fill: "none",
|
|
1654
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1655
|
+
ref,
|
|
1656
|
+
...props,
|
|
1657
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1658
|
+
d: "M20.5 18.5H4.5V6.5H20.5V18.5Z",
|
|
1659
|
+
stroke: "currentColor",
|
|
1660
|
+
strokeWidth: 1.2,
|
|
1661
|
+
strokeLinejoin: "round"
|
|
1662
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1663
|
+
d: "M20.5 18.5L17.75 15.5L15 12.5M4.5 18.5L10 12.5M20.5 6.5L12.5 15L4.5 6.5",
|
|
1664
|
+
stroke: "currentColor",
|
|
1665
|
+
strokeWidth: 1.2,
|
|
1666
|
+
strokeLinejoin: "round"
|
|
1667
|
+
})]
|
|
1668
|
+
});
|
|
1669
|
+
});
|
|
1670
|
+
const EqualIcon = forwardRef(function EqualIcon2(props, ref) {
|
|
1671
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1672
|
+
"data-sanity-icon": "equal",
|
|
1673
|
+
width: "1em",
|
|
1674
|
+
height: "1em",
|
|
1675
|
+
viewBox: "0 0 25 25",
|
|
1676
|
+
fill: "none",
|
|
1677
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1678
|
+
ref,
|
|
1679
|
+
...props,
|
|
1680
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1681
|
+
d: "M7.5 4.5H3.5V20.5H7.5",
|
|
1682
|
+
stroke: "currentColor",
|
|
1683
|
+
strokeWidth: 1.2
|
|
1684
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1685
|
+
d: "M17.5 20.5L21.5 20.5L21.5 4.5L17.5 4.5",
|
|
1686
|
+
stroke: "currentColor",
|
|
1687
|
+
strokeWidth: 1.2
|
|
1688
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1689
|
+
d: "M9 10.5H16",
|
|
1690
|
+
stroke: "currentColor",
|
|
1691
|
+
strokeWidth: 1.2
|
|
1692
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1693
|
+
d: "M9 14.5H16",
|
|
1694
|
+
stroke: "currentColor",
|
|
1695
|
+
strokeWidth: 1.2
|
|
1696
|
+
})]
|
|
1697
|
+
});
|
|
1698
|
+
});
|
|
1699
|
+
const ErrorFilledIcon = forwardRef(function ErrorFilledIcon2(props, ref) {
|
|
1700
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1701
|
+
"data-sanity-icon": "error-filled",
|
|
1702
|
+
width: "1em",
|
|
1703
|
+
height: "1em",
|
|
1704
|
+
viewBox: "0 0 25 25",
|
|
1705
|
+
fill: "none",
|
|
1706
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1707
|
+
ref,
|
|
1708
|
+
...props,
|
|
1709
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1710
|
+
fillRule: "evenodd",
|
|
1711
|
+
clipRule: "evenodd",
|
|
1712
|
+
d: "M4 12.5C4 7.80558 7.80558 4 12.5 4C17.1944 4 21 7.80558 21 12.5C21 17.1944 17.1944 21 12.5 21C7.80558 21 4 17.1944 4 12.5ZM13 14.5V16H12V14.5H13ZM12 9V13H13V9H12Z",
|
|
1713
|
+
fill: "currentColor"
|
|
1714
|
+
})
|
|
1715
|
+
});
|
|
1716
|
+
});
|
|
1717
|
+
const ErrorOutlineIcon = forwardRef(function ErrorOutlineIcon2(props, ref) {
|
|
1718
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1719
|
+
"data-sanity-icon": "error-outline",
|
|
1720
|
+
width: "1em",
|
|
1721
|
+
height: "1em",
|
|
1722
|
+
viewBox: "0 0 25 25",
|
|
1723
|
+
fill: "none",
|
|
1724
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1725
|
+
ref,
|
|
1726
|
+
...props,
|
|
1727
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1728
|
+
d: "M12.5 16V14.5M12.5 9V13M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
1729
|
+
stroke: "currentColor",
|
|
1730
|
+
strokeWidth: 1.2,
|
|
1731
|
+
strokeLinejoin: "round"
|
|
1732
|
+
})
|
|
1733
|
+
});
|
|
1734
|
+
});
|
|
1735
|
+
const ExpandIcon = forwardRef(function ExpandIcon2(props, ref) {
|
|
1736
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1737
|
+
"data-sanity-icon": "expand",
|
|
1738
|
+
width: "1em",
|
|
1739
|
+
height: "1em",
|
|
1740
|
+
viewBox: "0 0 25 25",
|
|
1741
|
+
fill: "none",
|
|
1742
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1743
|
+
ref,
|
|
1744
|
+
...props,
|
|
1745
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1746
|
+
d: "M14 6.5H18.5V11M11 18.5H6.5V14",
|
|
1747
|
+
stroke: "currentColor",
|
|
1748
|
+
strokeWidth: 1.2,
|
|
1749
|
+
strokeLinejoin: "round"
|
|
1750
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1751
|
+
d: "M18.5 6.5L14 11M6.5 18.5L11 14",
|
|
1752
|
+
stroke: "currentColor",
|
|
1753
|
+
strokeWidth: 1.2,
|
|
1754
|
+
strokeLinejoin: "round"
|
|
1755
|
+
})]
|
|
1756
|
+
});
|
|
1757
|
+
});
|
|
1758
|
+
const EyeClosedIcon = forwardRef(function EyeClosedIcon2(props, ref) {
|
|
1759
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1760
|
+
"data-sanity-icon": "eye-closed",
|
|
1761
|
+
width: "1em",
|
|
1762
|
+
height: "1em",
|
|
1763
|
+
viewBox: "0 0 25 25",
|
|
1764
|
+
fill: "none",
|
|
1765
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1766
|
+
ref,
|
|
1767
|
+
...props,
|
|
1768
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1769
|
+
d: "M7 15.5L5.5 17.5M20.5 12.5C19.8612 13.5647 19.041 14.6294 18.0008 15.501M18.0008 15.501C16.5985 16.676 14.7965 17.5 12.5 17.5M18.0008 15.501L18 15.5M18.0008 15.501L19.5 17.5M12.5 17.5C8.5 17.5 6 15 4.5 12.5M12.5 17.5V20M15.5 17L16.5 19.5M9.5 17L8.5 19.5",
|
|
1770
|
+
stroke: "currentColor",
|
|
1771
|
+
strokeWidth: 1.2,
|
|
1772
|
+
strokeLinejoin: "round"
|
|
1773
|
+
})
|
|
1774
|
+
});
|
|
1775
|
+
});
|
|
1776
|
+
const EyeOpenIcon = forwardRef(function EyeOpenIcon2(props, ref) {
|
|
1777
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1778
|
+
"data-sanity-icon": "eye-open",
|
|
1779
|
+
width: "1em",
|
|
1780
|
+
height: "1em",
|
|
1781
|
+
viewBox: "0 0 25 25",
|
|
1782
|
+
fill: "none",
|
|
1783
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1784
|
+
ref,
|
|
1785
|
+
...props,
|
|
1786
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1787
|
+
fillRule: "evenodd",
|
|
1788
|
+
clipRule: "evenodd",
|
|
1789
|
+
d: "M9.39999 12.5C9.39999 10.7879 10.7879 9.39999 12.5 9.39999C14.2121 9.39999 15.6 10.7879 15.6 12.5C15.6 14.2121 14.2121 15.6 12.5 15.6C10.7879 15.6 9.39999 14.2121 9.39999 12.5Z",
|
|
1790
|
+
fill: "currentColor"
|
|
1791
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1792
|
+
d: "M12.5 7.5C8.5 7.5 6 10 4.5 12.5C6 15 8.5 17.5 12.5 17.5C16.5 17.5 19 15 20.5 12.5C19 10 16.5 7.5 12.5 7.5Z",
|
|
1793
|
+
stroke: "currentColor",
|
|
1794
|
+
strokeWidth: 1.2,
|
|
1795
|
+
strokeLinejoin: "round"
|
|
1796
|
+
})]
|
|
1797
|
+
});
|
|
1798
|
+
});
|
|
1799
|
+
const FilterIcon = forwardRef(function FilterIcon2(props, ref) {
|
|
1800
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1801
|
+
"data-sanity-icon": "filter",
|
|
1802
|
+
width: "1em",
|
|
1803
|
+
height: "1em",
|
|
1804
|
+
viewBox: "0 0 25 25",
|
|
1805
|
+
fill: "none",
|
|
1806
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1807
|
+
ref,
|
|
1808
|
+
...props,
|
|
1809
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1810
|
+
d: "M11 12L6 7V6L19 6L19 7L14 12V17L11 19V12Z",
|
|
1811
|
+
stroke: "currentColor",
|
|
1812
|
+
strokeWidth: 1.2,
|
|
1813
|
+
strokeLinecap: "square",
|
|
1814
|
+
strokeLinejoin: "round"
|
|
1815
|
+
})
|
|
1816
|
+
});
|
|
1817
|
+
});
|
|
1818
|
+
const FolderIcon = forwardRef(function FolderIcon2(props, ref) {
|
|
1819
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1820
|
+
"data-sanity-icon": "folder",
|
|
1821
|
+
width: "1em",
|
|
1822
|
+
height: "1em",
|
|
1823
|
+
viewBox: "0 0 25 25",
|
|
1824
|
+
fill: "none",
|
|
1825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1826
|
+
ref,
|
|
1827
|
+
...props,
|
|
1828
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1829
|
+
d: "M11.5 8.5H19.5V18.5H5.5V5.5H10.5L11.5 8.5ZM11.5 8.5H5.5",
|
|
1830
|
+
stroke: "currentColor",
|
|
1831
|
+
strokeWidth: 1.2,
|
|
1832
|
+
strokeLinejoin: "round"
|
|
1833
|
+
})
|
|
1834
|
+
});
|
|
1835
|
+
});
|
|
1836
|
+
const GenerateIcon = forwardRef(function GenerateIcon2(props, ref) {
|
|
1837
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1838
|
+
"data-sanity-icon": "generate",
|
|
1839
|
+
width: "1em",
|
|
1840
|
+
height: "1em",
|
|
1841
|
+
viewBox: "0 0 25 25",
|
|
1842
|
+
fill: "none",
|
|
1843
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1844
|
+
ref,
|
|
1845
|
+
...props,
|
|
1846
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1847
|
+
d: "M9 5.30423C6.33576 6.60253 4.5 9.33688 4.5 12.5C4.5 16.9183 8.08172 20.5 12.5 20.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 8.08172 16.9183 4.5 12.5 4.5V14.5",
|
|
1848
|
+
stroke: "currentColor",
|
|
1849
|
+
strokeWidth: 1.2,
|
|
1850
|
+
strokeLinejoin: "round"
|
|
1851
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1852
|
+
d: "M16 11L12.5 14.5L9 11",
|
|
1853
|
+
stroke: "currentColor",
|
|
1854
|
+
strokeWidth: 1.2,
|
|
1855
|
+
strokeLinejoin: "round"
|
|
1856
|
+
})]
|
|
1857
|
+
});
|
|
1858
|
+
});
|
|
1859
|
+
const GroqIcon = forwardRef(function GroqIcon2(props, ref) {
|
|
1860
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
1861
|
+
"data-sanity-icon": "groq",
|
|
1862
|
+
width: "1em",
|
|
1863
|
+
height: "1em",
|
|
1864
|
+
viewBox: "0 0 25 25",
|
|
1865
|
+
fill: "none",
|
|
1866
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1867
|
+
ref,
|
|
1868
|
+
...props,
|
|
1869
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
1870
|
+
d: "M13 13H21L13 21L13 13Z",
|
|
1871
|
+
fill: "currentColor"
|
|
1872
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1873
|
+
d: "M12 12V4L4 12H12Z",
|
|
1874
|
+
fill: "currentColor"
|
|
1875
|
+
}), /* @__PURE__ */jsx("path", {
|
|
1876
|
+
d: "M12 13H4L12 21V13Z",
|
|
1877
|
+
fill: "currentColor"
|
|
1878
|
+
})]
|
|
1879
|
+
});
|
|
1880
|
+
});
|
|
1881
|
+
const HeartFilledIcon = forwardRef(function HeartFilledIcon2(props, ref) {
|
|
1882
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1883
|
+
"data-sanity-icon": "heart-filled",
|
|
1884
|
+
width: "1em",
|
|
1885
|
+
height: "1em",
|
|
1886
|
+
viewBox: "0 0 25 25",
|
|
1887
|
+
fill: "none",
|
|
1888
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1889
|
+
ref,
|
|
1890
|
+
...props,
|
|
1891
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1892
|
+
d: "M17 16C15.8 17.3235 12.5 20.5 12.5 20.5C12.5 20.5 9.2 17.3235 8 16C5.2 12.9118 4.5 11.7059 4.5 9.5C4.5 7.29412 6.1 5.5 8.5 5.5C10.5 5.5 11.7 6.82353 12.5 8.14706C13.3 6.82353 14.5 5.5 16.5 5.5C18.9 5.5 20.5 7.29412 20.5 9.5C20.5 11.7059 19.8 12.9118 17 16Z",
|
|
1893
|
+
fill: "currentColor",
|
|
1894
|
+
stroke: "currentColor",
|
|
1895
|
+
strokeWidth: 1.2,
|
|
1896
|
+
strokeLinejoin: "round"
|
|
1897
|
+
})
|
|
1898
|
+
});
|
|
1899
|
+
});
|
|
1900
|
+
const HeartIcon = forwardRef(function HeartIcon2(props, ref) {
|
|
1901
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1902
|
+
"data-sanity-icon": "heart",
|
|
1903
|
+
width: "1em",
|
|
1904
|
+
height: "1em",
|
|
1905
|
+
viewBox: "0 0 25 25",
|
|
1906
|
+
fill: "none",
|
|
1907
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1908
|
+
ref,
|
|
1909
|
+
...props,
|
|
1910
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1911
|
+
d: "M17 16C15.8 17.3235 12.5 20.5 12.5 20.5C12.5 20.5 9.2 17.3235 8 16C5.2 12.9118 4.5 11.7059 4.5 9.5C4.5 7.29412 6.1 5.5 8.5 5.5C10.5 5.5 11.7 6.82353 12.5 8.14706C13.3 6.82353 14.5 5.5 16.5 5.5C18.9 5.5 20.5 7.29412 20.5 9.5C20.5 11.7059 19.8 12.9118 17 16Z",
|
|
1912
|
+
stroke: "currentColor",
|
|
1913
|
+
strokeWidth: 1.2,
|
|
1914
|
+
strokeLinejoin: "round"
|
|
1915
|
+
})
|
|
1916
|
+
});
|
|
1917
|
+
});
|
|
1918
|
+
const HelpCircleIcon = forwardRef(function HelpCircleIcon2(props, ref) {
|
|
1919
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1920
|
+
"data-sanity-icon": "help-circle",
|
|
1921
|
+
width: "1em",
|
|
1922
|
+
height: "1em",
|
|
1923
|
+
viewBox: "0 0 25 25",
|
|
1924
|
+
fill: "none",
|
|
1925
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1926
|
+
ref,
|
|
1927
|
+
...props,
|
|
1928
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1929
|
+
d: "M12.5 13C12.5 11 14 11.5 14 10C14 9.34375 13.5 8.5 12.5 8.5C11.5 8.5 11 9 10.5 9.5M12.5 16V14.5M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
1930
|
+
stroke: "currentColor",
|
|
1931
|
+
strokeWidth: 1.2,
|
|
1932
|
+
strokeLinejoin: "round"
|
|
1933
|
+
})
|
|
1934
|
+
});
|
|
1935
|
+
});
|
|
1936
|
+
const HomeIcon = forwardRef(function HomeIcon2(props, ref) {
|
|
1937
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1938
|
+
"data-sanity-icon": "home",
|
|
1939
|
+
width: "1em",
|
|
1940
|
+
height: "1em",
|
|
1941
|
+
viewBox: "0 0 25 25",
|
|
1942
|
+
fill: "none",
|
|
1943
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1944
|
+
ref,
|
|
1945
|
+
...props,
|
|
1946
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1947
|
+
d: "M6.5 8.75V18.5H18.5V8.75M4.5 10L12.5 5L20.5 10M14.5 18.5V11.5H10.5V18.5",
|
|
1948
|
+
stroke: "currentColor",
|
|
1949
|
+
strokeWidth: 1.2,
|
|
1950
|
+
strokeLinejoin: "round"
|
|
1951
|
+
})
|
|
1952
|
+
});
|
|
1953
|
+
});
|
|
1954
|
+
const IceCreamIcon = forwardRef(function IceCreamIcon2(props, ref) {
|
|
1955
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1956
|
+
"data-sanity-icon": "ice-cream",
|
|
1957
|
+
width: "1em",
|
|
1958
|
+
height: "1em",
|
|
1959
|
+
viewBox: "0 0 25 25",
|
|
1960
|
+
fill: "none",
|
|
1961
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1962
|
+
ref,
|
|
1963
|
+
...props,
|
|
1964
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1965
|
+
d: "M9.5 13.5L12.5 20.5L15.5 13.5M12.5 8.26389C11.9692 7.78885 11.2684 7.5 10.5 7.5C8.84315 7.5 7.5 8.84315 7.5 10.5C7.5 12.1569 8.84315 13.5 10.5 13.5C11.2684 13.5 11.9692 13.2111 12.5 12.7361M9.5 7.5C9.5 5.84315 10.8431 4.5 12.5 4.5C14.1569 4.5 15.5 5.84315 15.5 7.5M17.5 10.5C17.5 12.1569 16.1569 13.5 14.5 13.5C12.8431 13.5 11.5 12.1569 11.5 10.5C11.5 8.84315 12.8431 7.5 14.5 7.5C16.1569 7.5 17.5 8.84315 17.5 10.5Z",
|
|
1966
|
+
stroke: "currentColor",
|
|
1967
|
+
strokeWidth: 1.2,
|
|
1968
|
+
strokeLinejoin: "round"
|
|
1969
|
+
})
|
|
1970
|
+
});
|
|
1971
|
+
});
|
|
1972
|
+
const ImageIcon = forwardRef(function ImageIcon2(props, ref) {
|
|
1973
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1974
|
+
"data-sanity-icon": "image",
|
|
1975
|
+
width: "1em",
|
|
1976
|
+
height: "1em",
|
|
1977
|
+
viewBox: "0 0 25 25",
|
|
1978
|
+
fill: "none",
|
|
1979
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1980
|
+
ref,
|
|
1981
|
+
...props,
|
|
1982
|
+
children: /* @__PURE__ */jsx("path", {
|
|
1983
|
+
d: "M5.5 15.5L8.79289 12.2071C9.18342 11.8166 9.81658 11.8166 10.2071 12.2071L12.8867 14.8867C13.2386 15.2386 13.7957 15.2782 14.1938 14.9796L15.1192 14.2856C15.3601 14.1049 15.6696 14.0424 15.9618 14.1154L19.5 15M5.5 6.5H19.5V18.5H5.5V6.5ZM15.5 10.5C15.5 11.0523 15.0523 11.5 14.5 11.5C13.9477 11.5 13.5 11.0523 13.5 10.5C13.5 9.94772 13.9477 9.5 14.5 9.5C15.0523 9.5 15.5 9.94772 15.5 10.5Z",
|
|
1984
|
+
stroke: "currentColor",
|
|
1985
|
+
strokeWidth: 1.2,
|
|
1986
|
+
strokeLinejoin: "round"
|
|
1987
|
+
})
|
|
1988
|
+
});
|
|
1989
|
+
});
|
|
1990
|
+
const ImageRemoveIcon = forwardRef(function ImageRemoveIcon2(props, ref) {
|
|
1991
|
+
return /* @__PURE__ */jsx("svg", {
|
|
1992
|
+
"data-sanity-icon": "image-remove",
|
|
1993
|
+
width: "1em",
|
|
1994
|
+
height: "1em",
|
|
1995
|
+
viewBox: "0 0 25 25",
|
|
1996
|
+
fill: "none",
|
|
1997
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1998
|
+
ref,
|
|
1999
|
+
...props,
|
|
2000
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2001
|
+
d: "M5.5 11V6.5H19.5V11M5.5 14V18.5H19.5V14M3 12.5H22",
|
|
2002
|
+
stroke: "currentColor",
|
|
2003
|
+
strokeWidth: 1.2,
|
|
2004
|
+
strokeLinejoin: "round"
|
|
2005
|
+
})
|
|
2006
|
+
});
|
|
2007
|
+
});
|
|
2008
|
+
const ImagesIcon = forwardRef(function ImagesIcon2(props, ref) {
|
|
2009
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2010
|
+
"data-sanity-icon": "images",
|
|
2011
|
+
width: "1em",
|
|
2012
|
+
height: "1em",
|
|
2013
|
+
viewBox: "0 0 25 25",
|
|
2014
|
+
fill: "none",
|
|
2015
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2016
|
+
ref,
|
|
2017
|
+
...props,
|
|
2018
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2019
|
+
d: "M18.5 7.5H20.5V19.5H6.5V17.5M4.5 14.5L7.79289 11.2071C8.18342 10.8166 8.81658 10.8166 9.20711 11.2071L11.8867 13.8867C12.2386 14.2386 12.7957 14.2782 13.1938 13.9796L14.1192 13.2856C14.3601 13.1049 14.6696 13.0424 14.9618 13.1154L18.5 14M4.5 5.5H18.5V17.5H4.5V5.5ZM14.5 9.5C14.5 10.0523 14.0523 10.5 13.5 10.5C12.9477 10.5 12.5 10.0523 12.5 9.5C12.5 8.94772 12.9477 8.5 13.5 8.5C14.0523 8.5 14.5 8.94772 14.5 9.5Z",
|
|
2020
|
+
stroke: "currentColor",
|
|
2021
|
+
strokeWidth: 1.2,
|
|
2022
|
+
strokeLinejoin: "round"
|
|
2023
|
+
})
|
|
2024
|
+
});
|
|
2025
|
+
});
|
|
2026
|
+
const InfoFilledIcon = forwardRef(function InfoFilledIcon2(props, ref) {
|
|
2027
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2028
|
+
"data-sanity-icon": "info-filled",
|
|
2029
|
+
width: "1em",
|
|
2030
|
+
height: "1em",
|
|
2031
|
+
viewBox: "0 0 25 25",
|
|
2032
|
+
fill: "none",
|
|
2033
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2034
|
+
ref,
|
|
2035
|
+
...props,
|
|
2036
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2037
|
+
fillRule: "evenodd",
|
|
2038
|
+
clipRule: "evenodd",
|
|
2039
|
+
d: "M21 12.5C21 17.1944 17.1944 21 12.5 21C7.80558 21 4 17.1944 4 12.5C4 7.80558 7.80558 4 12.5 4C17.1944 4 21 7.80558 21 12.5ZM12 10.5V9H13V10.5H12ZM13 16V12H12V16H13Z",
|
|
2040
|
+
fill: "currentColor"
|
|
2041
|
+
})
|
|
2042
|
+
});
|
|
2043
|
+
});
|
|
2044
|
+
const InfoOutlineIcon = forwardRef(function InfoOutlineIcon2(props, ref) {
|
|
2045
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2046
|
+
"data-sanity-icon": "info-outline",
|
|
2047
|
+
width: "1em",
|
|
2048
|
+
height: "1em",
|
|
2049
|
+
viewBox: "0 0 25 25",
|
|
2050
|
+
fill: "none",
|
|
2051
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2052
|
+
ref,
|
|
2053
|
+
...props,
|
|
2054
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2055
|
+
d: "M12.5 10.5V9M12.5 12V16M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
2056
|
+
stroke: "currentColor",
|
|
2057
|
+
strokeWidth: 1.2,
|
|
2058
|
+
strokeLinejoin: "round"
|
|
2059
|
+
})
|
|
2060
|
+
});
|
|
2061
|
+
});
|
|
2062
|
+
const InlineElementIcon = forwardRef(function InlineElementIcon2(props, ref) {
|
|
2063
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2064
|
+
"data-sanity-icon": "inline-element",
|
|
2065
|
+
width: "1em",
|
|
2066
|
+
height: "1em",
|
|
2067
|
+
viewBox: "0 0 25 25",
|
|
2068
|
+
fill: "none",
|
|
2069
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2070
|
+
ref,
|
|
2071
|
+
...props,
|
|
2072
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2073
|
+
d: "M5.5 5V20M19.5 5V20M8.5 6.5H16.5V18.5H8.5V6.5Z",
|
|
2074
|
+
stroke: "currentColor",
|
|
2075
|
+
strokeWidth: 1.2,
|
|
2076
|
+
strokeLinejoin: "round"
|
|
2077
|
+
})
|
|
2078
|
+
});
|
|
2079
|
+
});
|
|
2080
|
+
const InlineIcon = forwardRef(function InlineIcon2(props, ref) {
|
|
2081
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2082
|
+
"data-sanity-icon": "inline",
|
|
2083
|
+
width: "1em",
|
|
2084
|
+
height: "1em",
|
|
2085
|
+
viewBox: "0 0 25 25",
|
|
2086
|
+
fill: "none",
|
|
2087
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2088
|
+
ref,
|
|
2089
|
+
...props,
|
|
2090
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2091
|
+
d: "M12.5 6.5H19.5V18.5H12.5M12.5 6.5H5.5V18.5H12.5M12.5 6.5V18.5",
|
|
2092
|
+
stroke: "currentColor",
|
|
2093
|
+
strokeWidth: 1.2,
|
|
2094
|
+
strokeLinejoin: "round"
|
|
2095
|
+
})
|
|
2096
|
+
});
|
|
2097
|
+
});
|
|
2098
|
+
const InsertAboveIcon = forwardRef(function InsertAboveIcon2(props, ref) {
|
|
2099
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2100
|
+
"data-sanity-icon": "insert-above",
|
|
2101
|
+
width: "1em",
|
|
2102
|
+
height: "1em",
|
|
2103
|
+
viewBox: "0 0 25 25",
|
|
2104
|
+
fill: "none",
|
|
2105
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2106
|
+
ref,
|
|
2107
|
+
...props,
|
|
2108
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2109
|
+
d: "M14.5 10.5556L10.5 10.5556M12.5 12.5L12.5 8.5M18.5 5.5L6.5 5.5M18.5 19.5L6.5 19.5L6.5 15.5L18.5 15.5L18.5 19.5Z",
|
|
2110
|
+
stroke: "currentColor",
|
|
2111
|
+
strokeWidth: 1.2,
|
|
2112
|
+
strokeLinecap: "square",
|
|
2113
|
+
strokeLinejoin: "round"
|
|
2114
|
+
})
|
|
2115
|
+
});
|
|
2116
|
+
});
|
|
2117
|
+
const InsertBelowIcon = forwardRef(function InsertBelowIcon2(props, ref) {
|
|
2118
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2119
|
+
"data-sanity-icon": "insert-below",
|
|
2120
|
+
width: "1em",
|
|
2121
|
+
height: "1em",
|
|
2122
|
+
viewBox: "0 0 25 25",
|
|
2123
|
+
fill: "none",
|
|
2124
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2125
|
+
ref,
|
|
2126
|
+
...props,
|
|
2127
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2128
|
+
d: "M10.5 14.5H14.5M12.5 12.5V16.5M6.5 19.5H18.5M6.5 5.5H18.5V9.5H6.5V5.5Z",
|
|
2129
|
+
stroke: "currentColor",
|
|
2130
|
+
strokeWidth: 1.2,
|
|
2131
|
+
strokeLinecap: "square",
|
|
2132
|
+
strokeLinejoin: "round"
|
|
2133
|
+
})
|
|
2134
|
+
});
|
|
2135
|
+
});
|
|
2136
|
+
const ItalicIcon = forwardRef(function ItalicIcon2(props, ref) {
|
|
2137
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2138
|
+
"data-sanity-icon": "italic",
|
|
2139
|
+
width: "1em",
|
|
2140
|
+
height: "1em",
|
|
2141
|
+
viewBox: "0 0 25 25",
|
|
2142
|
+
fill: "none",
|
|
2143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2144
|
+
ref,
|
|
2145
|
+
...props,
|
|
2146
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2147
|
+
d: "M10.43 18H11.7276L13.4551 9.86763H12.1576L10.43 18ZM13.3043 8.29849C13.8022 8.29849 14.2095 7.89112 14.2095 7.39322C14.2095 6.89532 13.8022 6.48795 13.3043 6.48795C12.8064 6.48795 12.399 6.89532 12.399 7.39322C12.399 7.89112 12.8064 8.29849 13.3043 8.29849Z",
|
|
2148
|
+
fill: "currentColor"
|
|
2149
|
+
})
|
|
2150
|
+
});
|
|
2151
|
+
});
|
|
2152
|
+
const JoystickIcon = forwardRef(function JoystickIcon2(props, ref) {
|
|
2153
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2154
|
+
"data-sanity-icon": "joystick",
|
|
2155
|
+
width: "1em",
|
|
2156
|
+
height: "1em",
|
|
2157
|
+
viewBox: "0 0 25 25",
|
|
2158
|
+
fill: "none",
|
|
2159
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2160
|
+
ref,
|
|
2161
|
+
...props,
|
|
2162
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2163
|
+
d: "M9.5 16V14.5H15.5V16M13.5 10.5V14.5M11.5 10.5V14.5M15.5 7.5C15.5 9.15685 14.1569 10.5 12.5 10.5C10.8431 10.5 9.5 9.15685 9.5 7.5C9.5 5.84315 10.8431 4.5 12.5 4.5C14.1569 4.5 15.5 5.84315 15.5 7.5ZM18.5 19.5H6.5C5.94772 19.5 5.5 19.0523 5.5 18.5V17.5C5.5 16.9477 5.94772 16.5 6.5 16.5H18.5C19.0523 16.5 19.5 16.9477 19.5 17.5V18.5C19.5 19.0523 19.0523 19.5 18.5 19.5Z",
|
|
2164
|
+
stroke: "currentColor",
|
|
2165
|
+
strokeWidth: 1.2,
|
|
2166
|
+
strokeLinejoin: "round"
|
|
2167
|
+
})
|
|
2168
|
+
});
|
|
2169
|
+
});
|
|
2170
|
+
const JsonIcon = forwardRef(function JsonIcon2(props, ref) {
|
|
2171
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2172
|
+
"data-sanity-icon": "json",
|
|
2173
|
+
width: "1em",
|
|
2174
|
+
height: "1em",
|
|
2175
|
+
viewBox: "0 0 25 25",
|
|
2176
|
+
fill: "none",
|
|
2177
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2178
|
+
ref,
|
|
2179
|
+
...props,
|
|
2180
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2181
|
+
d: "M11 5.5H9.5C8.39543 5.5 7.5 6.39543 7.5 7.5V12.5M7.5 12.5H4M7.5 12.5V17.5C7.5 18.6046 8.39543 19.5 9.5 19.5H11M14 5.5H15.5C16.6046 5.5 17.5 6.39543 17.5 7.5V12.5M17.5 12.5H21M17.5 12.5V17.5C17.5 18.6046 16.6046 19.5 15.5 19.5H14",
|
|
2182
|
+
stroke: "currentColor",
|
|
2183
|
+
strokeWidth: 1.2,
|
|
2184
|
+
strokeLinejoin: "round"
|
|
2185
|
+
})
|
|
2186
|
+
});
|
|
2187
|
+
});
|
|
2188
|
+
const LaunchIcon = forwardRef(function LaunchIcon2(props, ref) {
|
|
2189
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2190
|
+
"data-sanity-icon": "launch",
|
|
2191
|
+
width: "1em",
|
|
2192
|
+
height: "1em",
|
|
2193
|
+
viewBox: "0 0 25 25",
|
|
2194
|
+
fill: "none",
|
|
2195
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2196
|
+
ref,
|
|
2197
|
+
...props,
|
|
2198
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2199
|
+
d: "M12 7.5H6.5V18.5H17.5V13M19.5 5.5L10.5 14.5",
|
|
2200
|
+
stroke: "currentColor",
|
|
2201
|
+
strokeWidth: 1.2,
|
|
2202
|
+
strokeLinejoin: "round"
|
|
2203
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2204
|
+
d: "M14 5.5H19.5V11",
|
|
2205
|
+
stroke: "currentColor",
|
|
2206
|
+
strokeWidth: 1.2,
|
|
2207
|
+
strokeLinejoin: "round"
|
|
2208
|
+
})]
|
|
2209
|
+
});
|
|
2210
|
+
});
|
|
2211
|
+
const LeaveIcon = forwardRef(function LeaveIcon2(props, ref) {
|
|
2212
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2213
|
+
"data-sanity-icon": "leave",
|
|
2214
|
+
width: "1em",
|
|
2215
|
+
height: "1em",
|
|
2216
|
+
viewBox: "0 0 25 25",
|
|
2217
|
+
fill: "none",
|
|
2218
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2219
|
+
ref,
|
|
2220
|
+
...props,
|
|
2221
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2222
|
+
d: "M14.5 15V18.5H5.5V6.5H14.5V10M9 12.5H21.5",
|
|
2223
|
+
stroke: "currentColor",
|
|
2224
|
+
strokeWidth: 1.2,
|
|
2225
|
+
strokeLinejoin: "round"
|
|
2226
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2227
|
+
d: "M18 9L21.5 12.5L18 16",
|
|
2228
|
+
stroke: "currentColor",
|
|
2229
|
+
strokeWidth: 1.2,
|
|
2230
|
+
strokeLinejoin: "round"
|
|
2231
|
+
})]
|
|
2232
|
+
});
|
|
2233
|
+
});
|
|
2234
|
+
const LemonIcon = forwardRef(function LemonIcon2(props, ref) {
|
|
2235
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2236
|
+
"data-sanity-icon": "lemon",
|
|
2237
|
+
width: "1em",
|
|
2238
|
+
height: "1em",
|
|
2239
|
+
viewBox: "0 0 25 25",
|
|
2240
|
+
fill: "none",
|
|
2241
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
|
+
ref,
|
|
2243
|
+
...props,
|
|
2244
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2245
|
+
d: "M10.6569 10.3431L6.41422 14.5858C7.58579 15.7574 9.12132 16.3431 10.6569 16.3431M10.6569 10.3431L14.8995 6.1005C16.0711 7.27208 16.6569 8.80761 16.6569 10.3431M10.6569 10.3431L10.6569 16.3431M10.6569 10.3431L16.6569 10.3431M10.6569 10.3431L14.8995 14.5858M14.8995 14.5858C13.7279 15.7574 12.1924 16.3431 10.6569 16.3431M14.8995 14.5858C16.0711 13.4142 16.6569 11.8787 16.6569 10.3431M16.3137 4.68629C19.4379 7.81049 19.4379 12.8758 16.3137 16C13.1895 19.1242 8.12419 19.1242 5 16L16.3137 4.68629Z",
|
|
2246
|
+
stroke: "currentColor",
|
|
2247
|
+
strokeWidth: 1.2,
|
|
2248
|
+
strokeLinejoin: "round"
|
|
2249
|
+
})
|
|
2250
|
+
});
|
|
2251
|
+
});
|
|
2252
|
+
const LinkIcon = forwardRef(function LinkIcon2(props, ref) {
|
|
2253
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2254
|
+
"data-sanity-icon": "link",
|
|
2255
|
+
width: "1em",
|
|
2256
|
+
height: "1em",
|
|
2257
|
+
viewBox: "0 0 25 25",
|
|
2258
|
+
fill: "none",
|
|
2259
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2260
|
+
ref,
|
|
2261
|
+
...props,
|
|
2262
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2263
|
+
d: "M11 12.5L12.5 14C13.281 14.781 14.719 14.781 15.5 14L18.5 11C19.281 10.219 19.281 8.78105 18.5 8L18 7.5C17.2189 6.71895 15.781 6.71895 15 7.5L13 9.5M12 15.5L10 17.5C9.21895 18.281 7.78105 18.281 7 17.5L6.5 17C5.71895 16.219 5.71896 14.781 6.5 14L9.50001 11C10.2811 10.219 11.719 10.2189 12.5 11L14 12.5",
|
|
2264
|
+
stroke: "currentColor",
|
|
2265
|
+
strokeWidth: 1.2,
|
|
2266
|
+
strokeLinejoin: "round"
|
|
2267
|
+
})
|
|
2268
|
+
});
|
|
2269
|
+
});
|
|
2270
|
+
const LinkRemovedIcon = forwardRef(function LinkRemovedIcon2(props, ref) {
|
|
2271
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2272
|
+
"data-sanity-icon": "link-removed",
|
|
2273
|
+
width: "1em",
|
|
2274
|
+
height: "1em",
|
|
2275
|
+
viewBox: "0 0 25 25",
|
|
2276
|
+
fill: "none",
|
|
2277
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2278
|
+
ref,
|
|
2279
|
+
...props,
|
|
2280
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2281
|
+
d: "M18.5 11C19.281 10.219 19.281 8.78108 18.5 8.00003L18 7.50003C17.2189 6.71898 15.781 6.71898 15 7.50003L13 9.50003M15.5 14C14.7189 14.7811 13.281 14.7811 12.5 14M6.5 14C5.71895 14.7811 5.71894 16.219 6.49999 17L6.99999 17.5C7.78104 18.2811 9.21894 18.2811 9.99999 17.5L12 15.5M12.5 11C11.719 10.219 10.281 10.219 9.5 11M3 12.5H22",
|
|
2282
|
+
stroke: "currentColor",
|
|
2283
|
+
strokeWidth: 1.2,
|
|
2284
|
+
strokeLinejoin: "round"
|
|
2285
|
+
})
|
|
2286
|
+
});
|
|
2287
|
+
});
|
|
2288
|
+
const LockIcon = forwardRef(function LockIcon2(props, ref) {
|
|
2289
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2290
|
+
"data-sanity-icon": "lock",
|
|
2291
|
+
width: "1em",
|
|
2292
|
+
height: "1em",
|
|
2293
|
+
viewBox: "0 0 25 25",
|
|
2294
|
+
fill: "none",
|
|
2295
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2296
|
+
ref,
|
|
2297
|
+
...props,
|
|
2298
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2299
|
+
d: "M15.5 11.5V8.5C15.5 6.5 14 5.5 12.5 5.5C11 5.5 9.5 6.5 9.5 8.5V11.5M7.5 11.5H17.5V19.5H7.5V11.5Z",
|
|
2300
|
+
stroke: "currentColor",
|
|
2301
|
+
strokeWidth: 1.2,
|
|
2302
|
+
strokeLinejoin: "round"
|
|
2303
|
+
})
|
|
2304
|
+
});
|
|
2305
|
+
});
|
|
2306
|
+
const LogoJsIcon = forwardRef(function LogoJsIcon2(props, ref) {
|
|
2307
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2308
|
+
"data-sanity-icon": "logo-js",
|
|
2309
|
+
width: "1em",
|
|
2310
|
+
height: "1em",
|
|
2311
|
+
viewBox: "0 0 25 25",
|
|
2312
|
+
fill: "none",
|
|
2313
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2314
|
+
ref,
|
|
2315
|
+
...props,
|
|
2316
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2317
|
+
fillRule: "evenodd",
|
|
2318
|
+
clipRule: "evenodd",
|
|
2319
|
+
d: "M20 5H5V20H20V5ZM12.5254 16.1572C12.5254 17.4189 11.7742 18.1536 10.4792 18.1536C9.24243 18.1536 8.49121 17.4189 8.45801 16.2942V16.261H9.67407V16.2859C9.69897 16.7466 9.9729 17.0703 10.4626 17.0703C10.9939 17.0703 11.272 16.7507 11.272 16.1489V12.011H12.5254V16.1572ZM18.2893 16.2153C18.2893 17.4023 17.3679 18.1536 15.8738 18.1536C14.4419 18.1536 13.5371 17.4688 13.4666 16.4062L13.4624 16.3398H14.6702L14.6743 16.3813C14.72 16.8296 15.2056 17.1326 15.907 17.1326C16.5752 17.1326 17.0359 16.813 17.0359 16.3523V16.3481C17.0359 15.9539 16.7412 15.7339 15.9983 15.5803L15.3674 15.4517C14.1223 15.1985 13.5869 14.6174 13.5869 13.7085V13.7043C13.5869 12.592 14.5415 11.8574 15.8696 11.8574C17.2683 11.8574 18.0901 12.5962 18.1689 13.5964L18.1731 13.6504H16.9944L16.9861 13.6006C16.9155 13.1731 16.5005 12.8743 15.8696 12.8743C15.2512 12.8784 14.8403 13.1606 14.8403 13.6089V13.613C14.8403 14.0032 15.1309 14.2356 15.8364 14.3809L16.4714 14.5095C17.7373 14.771 18.2893 15.2773 18.2893 16.2112V16.2153Z",
|
|
2320
|
+
fill: "currentColor"
|
|
2321
|
+
})
|
|
2322
|
+
});
|
|
2323
|
+
});
|
|
2324
|
+
const LogoTsIcon = forwardRef(function LogoTsIcon2(props, ref) {
|
|
2325
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2326
|
+
"data-sanity-icon": "logo-ts",
|
|
2327
|
+
width: "1em",
|
|
2328
|
+
height: "1em",
|
|
2329
|
+
viewBox: "0 0 25 25",
|
|
2330
|
+
fill: "none",
|
|
2331
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2332
|
+
ref,
|
|
2333
|
+
...props,
|
|
2334
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2335
|
+
fillRule: "evenodd",
|
|
2336
|
+
clipRule: "evenodd",
|
|
2337
|
+
d: "M20 5H5V20H20V5ZM11.0769 18H9.82349V13.0444H8.02637V12.011H12.874V13.0444H11.0769V18ZM18.2893 16.2153C18.2893 17.4023 17.3679 18.1536 15.8738 18.1536C14.4419 18.1536 13.5371 17.4688 13.4666 16.4062L13.4624 16.3398H14.6702L14.6743 16.3813C14.72 16.8296 15.2056 17.1326 15.907 17.1326C16.5752 17.1326 17.0359 16.813 17.0359 16.3523V16.3481C17.0359 15.9539 16.7412 15.7339 15.9983 15.5803L15.3674 15.4517C14.1223 15.1985 13.5869 14.6174 13.5869 13.7085V13.7043C13.5869 12.592 14.5415 11.8574 15.8696 11.8574C17.2683 11.8574 18.0901 12.5962 18.1689 13.5964L18.1731 13.6504H16.9944L16.9861 13.6006C16.9155 13.1731 16.5005 12.8743 15.8696 12.8743C15.2512 12.8784 14.8403 13.1606 14.8403 13.6089V13.613C14.8403 14.0032 15.1309 14.2356 15.8364 14.3809L16.4714 14.5095C17.7373 14.771 18.2893 15.2773 18.2893 16.2112V16.2153Z",
|
|
2338
|
+
fill: "currentColor"
|
|
2339
|
+
})
|
|
2340
|
+
});
|
|
2341
|
+
});
|
|
2342
|
+
const MasterDetailIcon = forwardRef(function MasterDetailIcon2(props, ref) {
|
|
2343
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2344
|
+
"data-sanity-icon": "master-detail",
|
|
2345
|
+
width: "1em",
|
|
2346
|
+
height: "1em",
|
|
2347
|
+
viewBox: "0 0 25 25",
|
|
2348
|
+
fill: "none",
|
|
2349
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2350
|
+
ref,
|
|
2351
|
+
...props,
|
|
2352
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2353
|
+
d: "M7 9.5H10M11.5 6.5V18.5M7 12.5H10M13 9.5H18M7 15.5H10M5.5 6.5H19.5V18.5H5.5V6.5Z",
|
|
2354
|
+
stroke: "currentColor",
|
|
2355
|
+
strokeWidth: 1.2,
|
|
2356
|
+
strokeLinejoin: "round"
|
|
2357
|
+
})
|
|
2358
|
+
});
|
|
2359
|
+
});
|
|
2360
|
+
const MenuIcon = forwardRef(function MenuIcon2(props, ref) {
|
|
2361
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2362
|
+
"data-sanity-icon": "menu",
|
|
2363
|
+
width: "1em",
|
|
2364
|
+
height: "1em",
|
|
2365
|
+
viewBox: "0 0 25 25",
|
|
2366
|
+
fill: "none",
|
|
2367
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2368
|
+
ref,
|
|
2369
|
+
...props,
|
|
2370
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2371
|
+
d: "M6 7.5H19M6 17.5H19M6 12.5H19",
|
|
2372
|
+
stroke: "currentColor",
|
|
2373
|
+
strokeWidth: 1.2,
|
|
2374
|
+
strokeLinejoin: "round"
|
|
2375
|
+
})
|
|
2376
|
+
});
|
|
2377
|
+
});
|
|
2378
|
+
const MobileDeviceIcon = forwardRef(function MobileDeviceIcon2(props, ref) {
|
|
2379
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2380
|
+
"data-sanity-icon": "mobile-device",
|
|
2381
|
+
width: "1em",
|
|
2382
|
+
height: "1em",
|
|
2383
|
+
viewBox: "0 0 25 25",
|
|
2384
|
+
fill: "none",
|
|
2385
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2386
|
+
ref,
|
|
2387
|
+
...props,
|
|
2388
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2389
|
+
d: "M7.5 6.5C7.5 5.39543 8.39543 4.5 9.5 4.5H15.5C16.6046 4.5 17.5 5.39543 17.5 6.5V18.5C17.5 19.6046 16.6046 20.5 15.5 20.5H9.5C8.39543 20.5 7.5 19.6046 7.5 18.5V6.5Z",
|
|
2390
|
+
stroke: "currentColor",
|
|
2391
|
+
strokeWidth: 1.2,
|
|
2392
|
+
strokeLinejoin: "round"
|
|
2393
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2394
|
+
d: "M13.5 17.5C13.5 18.0523 13.0523 18.5 12.5 18.5C11.9477 18.5 11.5 18.0523 11.5 17.5C11.5 16.9477 11.9477 16.5 12.5 16.5C13.0523 16.5 13.5 16.9477 13.5 17.5Z",
|
|
2395
|
+
stroke: "currentColor",
|
|
2396
|
+
strokeWidth: 1.2,
|
|
2397
|
+
strokeLinejoin: "round"
|
|
2398
|
+
})]
|
|
2399
|
+
});
|
|
2400
|
+
});
|
|
2401
|
+
const MoonIcon = forwardRef(function MoonIcon2(props, ref) {
|
|
2402
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2403
|
+
"data-sanity-icon": "moon",
|
|
2404
|
+
width: "1em",
|
|
2405
|
+
height: "1em",
|
|
2406
|
+
viewBox: "0 0 25 25",
|
|
2407
|
+
fill: "none",
|
|
2408
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2409
|
+
ref,
|
|
2410
|
+
...props,
|
|
2411
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2412
|
+
d: "M19.6065 16.1775C18.9417 16.387 18.234 16.5 17.5 16.5C13.634 16.5 10.5 13.366 10.5 9.5C10.5 7.54163 11.3042 5.77109 12.6004 4.50062C12.567 4.50021 12.5335 4.5 12.5 4.5C8.08172 4.5 4.5 8.08172 4.5 12.5C4.5 16.9183 8.08172 20.5 12.5 20.5C15.5924 20.5 18.275 18.7454 19.6065 16.1775Z",
|
|
2413
|
+
stroke: "currentColor",
|
|
2414
|
+
strokeWidth: 1.2,
|
|
2415
|
+
strokeLinejoin: "round"
|
|
2416
|
+
})
|
|
2417
|
+
});
|
|
2418
|
+
});
|
|
2419
|
+
const NumberIcon = forwardRef(function NumberIcon2(props, ref) {
|
|
2420
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2421
|
+
"data-sanity-icon": "number",
|
|
2422
|
+
width: "1em",
|
|
2423
|
+
height: "1em",
|
|
2424
|
+
viewBox: "0 0 25 25",
|
|
2425
|
+
fill: "none",
|
|
2426
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2427
|
+
ref,
|
|
2428
|
+
...props,
|
|
2429
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2430
|
+
fillRule: "evenodd",
|
|
2431
|
+
clipRule: "evenodd",
|
|
2432
|
+
d: "M21.0165 17.6336H3.83636V16.4336H21.0165V17.6336Z",
|
|
2433
|
+
fill: "currentColor"
|
|
2434
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2435
|
+
d: "M7.09808 13.3967V7.508H5.74066L3.83636 8.78241V10.091L5.65277 8.88495H5.74066V13.3967H3.84125V14.5539H8.89984V13.3967H7.09808Z",
|
|
2436
|
+
fill: "currentColor"
|
|
2437
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2438
|
+
d: "M9.81781 9.63202V9.66132H11.1069V9.62714C11.1069 8.95331 11.5756 8.49432 12.2739 8.49432C12.9575 8.49432 13.4018 8.89471 13.4018 9.50507C13.4018 9.9787 13.1528 10.3498 12.1909 11.3117L9.89594 13.5822V14.5539H14.8618V13.3869H11.7807V13.299L13.1577 11.9855C14.3491 10.843 14.7543 10.1838 14.7543 9.41229C14.7543 8.19159 13.7729 7.36639 12.3178 7.36639C10.8383 7.36639 9.81781 8.28436 9.81781 9.63202Z",
|
|
2439
|
+
fill: "currentColor"
|
|
2440
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2441
|
+
d: "M17.6694 11.4631H18.5092C19.3198 11.4631 19.8422 11.8683 19.8422 12.4982C19.8422 13.1183 19.3295 13.5139 18.5239 13.5139C17.767 13.5139 17.2592 13.133 17.2104 12.5324H15.9262C15.9897 13.8508 17.0248 14.6955 18.5629 14.6955C20.1401 14.6955 21.2192 13.841 21.2192 12.591C21.2192 11.6584 20.6528 11.0334 19.7006 10.9211V10.8332C20.4721 10.6769 20.9457 10.0666 20.9457 9.23651C20.9457 8.12323 19.9741 7.36639 18.5434 7.36639C17.0541 7.36639 16.1118 8.17694 16.0629 9.50018H17.2983C17.3422 8.88007 17.8061 8.48456 18.4995 8.48456C19.2075 8.48456 19.6567 8.85565 19.6567 9.44159C19.6567 10.0324 19.1977 10.4182 18.4946 10.4182H17.6694V11.4631Z",
|
|
2442
|
+
fill: "currentColor"
|
|
2443
|
+
})]
|
|
2444
|
+
});
|
|
2445
|
+
});
|
|
2446
|
+
const OkHandIcon = forwardRef(function OkHandIcon2(props, ref) {
|
|
2447
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2448
|
+
"data-sanity-icon": "ok-hand",
|
|
2449
|
+
width: "1em",
|
|
2450
|
+
height: "1em",
|
|
2451
|
+
viewBox: "0 0 25 25",
|
|
2452
|
+
fill: "none",
|
|
2453
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2454
|
+
ref,
|
|
2455
|
+
...props,
|
|
2456
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2457
|
+
d: "M15.9957 11.5C14.8197 10.912 11.9957 9 10.4957 9C8.9957 9 5.17825 11.7674 6 13C7 14.5 9.15134 11.7256 10.4957 12C11.8401 12.2744 13 13.5 13 14.5C13 15.5 11.8401 16.939 10.4957 16.5C9.15134 16.061 8.58665 14.3415 7.4957 14C6.21272 13.5984 5.05843 14.6168 5.5 15.5C5.94157 16.3832 7.10688 17.6006 8.4957 19C9.74229 20.2561 11.9957 21.5 14.9957 20C17.9957 18.5 18.5 16.2498 18.5 13C18.5 11.5 13.7332 5.36875 11.9957 4.5C10.9957 4 10 5 10.9957 6.5C11.614 7.43149 13.5 9.27705 14 10.3751M15.5 8C15.5 8 15.3707 7.5 14.9957 6C14.4957 4 15.9957 3.5 16.4957 4.5C17.1281 5.76491 18.2872 10.9147 18.4957 13",
|
|
2458
|
+
stroke: "currentColor",
|
|
2459
|
+
strokeWidth: 1.2,
|
|
2460
|
+
strokeLinejoin: "round"
|
|
2461
|
+
})
|
|
2462
|
+
});
|
|
2463
|
+
});
|
|
2464
|
+
const OlistIcon = forwardRef(function OlistIcon2(props, ref) {
|
|
2465
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2466
|
+
"data-sanity-icon": "olist",
|
|
2467
|
+
width: "1em",
|
|
2468
|
+
height: "1em",
|
|
2469
|
+
viewBox: "0 0 25 25",
|
|
2470
|
+
fill: "none",
|
|
2471
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2472
|
+
ref,
|
|
2473
|
+
...props,
|
|
2474
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2475
|
+
d: "M10 7.5H19M10 12.5H19M10 17.5H19M5 18.5H7.5L7 17.5L7.5 16.5H5M5 6.5H6.5V8.5M5 8.5H6.5M6.5 8.5H8M8 13.5H6L7 11.5H5",
|
|
2476
|
+
stroke: "currentColor",
|
|
2477
|
+
strokeWidth: 1.2,
|
|
2478
|
+
strokeLinejoin: "round"
|
|
2479
|
+
})
|
|
2480
|
+
});
|
|
2481
|
+
});
|
|
2482
|
+
const OverageIcon = forwardRef(function OverageIcon2(props, ref) {
|
|
2483
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2484
|
+
"data-sanity-icon": "overage",
|
|
2485
|
+
width: "1em",
|
|
2486
|
+
height: "1em",
|
|
2487
|
+
viewBox: "0 0 25 25",
|
|
2488
|
+
fill: "none",
|
|
2489
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2490
|
+
ref,
|
|
2491
|
+
...props,
|
|
2492
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2493
|
+
d: "M18.5 11V6.5H14",
|
|
2494
|
+
stroke: "currentColor",
|
|
2495
|
+
strokeWidth: 1.2,
|
|
2496
|
+
strokeLinejoin: "round"
|
|
2497
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2498
|
+
d: "M6.5 18.5L9 16L12 13L18.5 6.5M3 13.5H22",
|
|
2499
|
+
stroke: "currentColor",
|
|
2500
|
+
strokeWidth: 1.2,
|
|
2501
|
+
strokeLinejoin: "round"
|
|
2502
|
+
})]
|
|
2503
|
+
});
|
|
2504
|
+
});
|
|
2505
|
+
const PackageIcon = forwardRef(function PackageIcon2(props, ref) {
|
|
2506
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2507
|
+
"data-sanity-icon": "package",
|
|
2508
|
+
width: "1em",
|
|
2509
|
+
height: "1em",
|
|
2510
|
+
viewBox: "0 0 25 25",
|
|
2511
|
+
fill: "none",
|
|
2512
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2513
|
+
ref,
|
|
2514
|
+
...props,
|
|
2515
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2516
|
+
d: "M12.5 13V22M12.5 13L4.5 8M12.5 13L20.5 8M8.5 5.5L16.5 10.5M4.5 8L12.5 3L20.5 8V17L12.5 22L4.5 17V8Z",
|
|
2517
|
+
stroke: "currentColor",
|
|
2518
|
+
strokeWidth: 1.2,
|
|
2519
|
+
strokeLinejoin: "round"
|
|
2520
|
+
})
|
|
2521
|
+
});
|
|
2522
|
+
});
|
|
2523
|
+
const PanelLeftIcon = forwardRef(function PanelLeftIcon2(props, ref) {
|
|
2524
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2525
|
+
"data-sanity-icon": "panel-left",
|
|
2526
|
+
width: "1em",
|
|
2527
|
+
height: "1em",
|
|
2528
|
+
viewBox: "0 0 25 25",
|
|
2529
|
+
fill: "none",
|
|
2530
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2531
|
+
ref,
|
|
2532
|
+
...props,
|
|
2533
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2534
|
+
d: "M10.5 6.5H19.5V18.5H10.5M10.5 6.5H5.5V18.5H10.5M10.5 6.5V18.5",
|
|
2535
|
+
stroke: "currentColor",
|
|
2536
|
+
strokeWidth: 1.2,
|
|
2537
|
+
strokeLinejoin: "round"
|
|
2538
|
+
})
|
|
2539
|
+
});
|
|
2540
|
+
});
|
|
2541
|
+
const PanelRightIcon = forwardRef(function PanelRightIcon2(props, ref) {
|
|
2542
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2543
|
+
"data-sanity-icon": "panel-right",
|
|
2544
|
+
width: "1em",
|
|
2545
|
+
height: "1em",
|
|
2546
|
+
viewBox: "0 0 25 25",
|
|
2547
|
+
fill: "none",
|
|
2548
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2549
|
+
ref,
|
|
2550
|
+
...props,
|
|
2551
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2552
|
+
d: "M14.5 6.5H19.5V18.5H14.5M14.5 6.5H5.5V18.5H14.5M14.5 6.5V18.5",
|
|
2553
|
+
stroke: "currentColor",
|
|
2554
|
+
strokeWidth: 1.2,
|
|
2555
|
+
strokeLinejoin: "round"
|
|
2556
|
+
})
|
|
2557
|
+
});
|
|
2558
|
+
});
|
|
2559
|
+
const PauseIcon = forwardRef(function PauseIcon2(props, ref) {
|
|
2560
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2561
|
+
"data-sanity-icon": "pause",
|
|
2562
|
+
width: "1em",
|
|
2563
|
+
height: "1em",
|
|
2564
|
+
viewBox: "0 0 25 25",
|
|
2565
|
+
fill: "none",
|
|
2566
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2567
|
+
ref,
|
|
2568
|
+
...props,
|
|
2569
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2570
|
+
d: "M10.5 7.5H8.5V17.5H10.5V7.5Z",
|
|
2571
|
+
fill: "currentColor"
|
|
2572
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2573
|
+
d: "M16.5 7.5H14.5V17.5H16.5V7.5Z",
|
|
2574
|
+
fill: "currentColor"
|
|
2575
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2576
|
+
d: "M10.5 7.5H8.5V17.5H10.5V7.5Z",
|
|
2577
|
+
stroke: "currentColor",
|
|
2578
|
+
strokeWidth: 1.2
|
|
2579
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2580
|
+
d: "M16.5 7.5H14.5V17.5H16.5V7.5Z",
|
|
2581
|
+
stroke: "currentColor",
|
|
2582
|
+
strokeWidth: 1.2
|
|
2583
|
+
})]
|
|
2584
|
+
});
|
|
2585
|
+
});
|
|
2586
|
+
const PinIcon = forwardRef(function PinIcon2(props, ref) {
|
|
2587
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2588
|
+
"data-sanity-icon": "pin",
|
|
2589
|
+
width: "1em",
|
|
2590
|
+
height: "1em",
|
|
2591
|
+
viewBox: "0 0 25 25",
|
|
2592
|
+
fill: "none",
|
|
2593
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2594
|
+
ref,
|
|
2595
|
+
...props,
|
|
2596
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2597
|
+
d: "M6.5 10.5C6.5 7 9 4.5 12.5 4.5C16 4.5 18.5 7 18.5 10.5C18.5 14 15.5 17.5 12.5 20.5C9.5 17.5 6.5 14 6.5 10.5Z",
|
|
2598
|
+
stroke: "currentColor",
|
|
2599
|
+
strokeWidth: 1.2,
|
|
2600
|
+
strokeLinejoin: "round"
|
|
2601
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2602
|
+
d: "M14 10.5C14 11.3284 13.3284 12 12.5 12C11.6716 12 11 11.3284 11 10.5C11 9.67157 11.6716 9 12.5 9C13.3284 9 14 9.67157 14 10.5Z",
|
|
2603
|
+
stroke: "currentColor",
|
|
2604
|
+
strokeWidth: 1.2,
|
|
2605
|
+
strokeLinejoin: "round"
|
|
2606
|
+
})]
|
|
2607
|
+
});
|
|
2608
|
+
});
|
|
2609
|
+
const PinRemovedIcon = forwardRef(function PinRemovedIcon2(props, ref) {
|
|
2610
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2611
|
+
"data-sanity-icon": "pin-removed",
|
|
2612
|
+
width: "1em",
|
|
2613
|
+
height: "1em",
|
|
2614
|
+
viewBox: "0 0 25 25",
|
|
2615
|
+
fill: "none",
|
|
2616
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2617
|
+
ref,
|
|
2618
|
+
...props,
|
|
2619
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2620
|
+
d: "M7.39787 14C8.51075 16.2897 10.5054 18.5054 12.5 20.5C14.4946 18.5054 16.4892 16.2897 17.6021 14M6.52009 11C6.50681 10.8334 6.5 10.6667 6.5 10.5C6.5 7 9 4.5 12.5 4.5C16 4.5 18.5 7 18.5 10.5C18.5 10.6667 18.4932 10.8334 18.4799 11M3 12.5H22",
|
|
2621
|
+
stroke: "currentColor",
|
|
2622
|
+
strokeWidth: 1.2,
|
|
2623
|
+
strokeLinejoin: "round"
|
|
2624
|
+
})
|
|
2625
|
+
});
|
|
2626
|
+
});
|
|
2627
|
+
const PlayIcon = forwardRef(function PlayIcon2(props, ref) {
|
|
2628
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2629
|
+
"data-sanity-icon": "play",
|
|
2630
|
+
width: "1em",
|
|
2631
|
+
height: "1em",
|
|
2632
|
+
viewBox: "0 0 25 25",
|
|
2633
|
+
fill: "none",
|
|
2634
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2635
|
+
ref,
|
|
2636
|
+
...props,
|
|
2637
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2638
|
+
d: "M7.5 18.5V6.5L17.5 12.5L7.5 18.5Z",
|
|
2639
|
+
fill: "currentColor",
|
|
2640
|
+
stroke: "currentColor",
|
|
2641
|
+
strokeWidth: 1.2,
|
|
2642
|
+
strokeLinejoin: "round"
|
|
2643
|
+
})
|
|
2644
|
+
});
|
|
2645
|
+
});
|
|
2646
|
+
const PlugIcon = forwardRef(function PlugIcon2(props, ref) {
|
|
2647
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2648
|
+
"data-sanity-icon": "plug",
|
|
2649
|
+
width: "1em",
|
|
2650
|
+
height: "1em",
|
|
2651
|
+
viewBox: "0 0 25 25",
|
|
2652
|
+
fill: "none",
|
|
2653
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2654
|
+
ref,
|
|
2655
|
+
...props,
|
|
2656
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2657
|
+
d: "M13.25 8.5L16.75 5M16.25 11.5L19.75 8M9.25 15.5L5.25 19.5M7.75 14L9.75 12C8.25 10 8.75 9 9.75 8C10.15 7.6 11.25 6.5 11.25 6.5L18.25 13.5C18.25 13.5 17.3825 14.3675 16.75 15C15.75 16 14.75 16.5 12.75 15L10.75 17L7.75 14Z",
|
|
2658
|
+
stroke: "currentColor",
|
|
2659
|
+
strokeWidth: 1.2,
|
|
2660
|
+
strokeLinejoin: "round"
|
|
2661
|
+
})
|
|
2662
|
+
});
|
|
2663
|
+
});
|
|
2664
|
+
const PresentationIcon = forwardRef(function PresentationIcon2(props, ref) {
|
|
2665
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2666
|
+
"data-sanity-icon": "presentation",
|
|
2667
|
+
width: "1em",
|
|
2668
|
+
height: "1em",
|
|
2669
|
+
viewBox: "0 0 25 25",
|
|
2670
|
+
fill: "none",
|
|
2671
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2672
|
+
ref,
|
|
2673
|
+
...props,
|
|
2674
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2675
|
+
d: "M10.5 18H5.5V8.5H19.5V18H14.5M10.5 18L9 22M10.5 18H14.5M14.5 18L16 22M4.5 8.5H20.5V6.5H4.5V8.5Z",
|
|
2676
|
+
stroke: "currentColor",
|
|
2677
|
+
strokeWidth: 1.2,
|
|
2678
|
+
strokeLinejoin: "round"
|
|
2679
|
+
})
|
|
2680
|
+
});
|
|
2681
|
+
});
|
|
2682
|
+
const PublishIcon = forwardRef(function PublishIcon2(props, ref) {
|
|
2683
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2684
|
+
"data-sanity-icon": "publish",
|
|
2685
|
+
width: "1em",
|
|
2686
|
+
height: "1em",
|
|
2687
|
+
viewBox: "0 0 25 25",
|
|
2688
|
+
fill: "none",
|
|
2689
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2690
|
+
ref,
|
|
2691
|
+
...props,
|
|
2692
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2693
|
+
d: "M4.99997 5.50006H20M12.5 9.00005V20",
|
|
2694
|
+
stroke: "currentColor",
|
|
2695
|
+
strokeWidth: 1.2,
|
|
2696
|
+
strokeLinejoin: "round"
|
|
2697
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2698
|
+
d: "M7.5 14L12.5 9.00006L17.5 14",
|
|
2699
|
+
stroke: "currentColor",
|
|
2700
|
+
strokeWidth: 1.2,
|
|
2701
|
+
strokeLinejoin: "round"
|
|
2702
|
+
})]
|
|
2703
|
+
});
|
|
2704
|
+
});
|
|
2705
|
+
const ReadOnlyIcon = forwardRef(function ReadOnlyIcon2(props, ref) {
|
|
2706
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2707
|
+
"data-sanity-icon": "read-only",
|
|
2708
|
+
width: "1em",
|
|
2709
|
+
height: "1em",
|
|
2710
|
+
viewBox: "0 0 25 25",
|
|
2711
|
+
fill: "none",
|
|
2712
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2713
|
+
ref,
|
|
2714
|
+
...props,
|
|
2715
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2716
|
+
d: "M15 7L18 10M10 12L7 15L6 19L10 18L13 15M12 10L17 5L20 8L15 13M19 19L5 5",
|
|
2717
|
+
stroke: "currentColor",
|
|
2718
|
+
strokeWidth: 1.2,
|
|
2719
|
+
strokeLinejoin: "round"
|
|
2720
|
+
})
|
|
2721
|
+
});
|
|
2722
|
+
});
|
|
2723
|
+
const RedoIcon = forwardRef(function RedoIcon2(props, ref) {
|
|
2724
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2725
|
+
"data-sanity-icon": "redo",
|
|
2726
|
+
width: "1em",
|
|
2727
|
+
height: "1em",
|
|
2728
|
+
viewBox: "0 0 25 25",
|
|
2729
|
+
fill: "none",
|
|
2730
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2731
|
+
ref,
|
|
2732
|
+
...props,
|
|
2733
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2734
|
+
d: "M19 9.5L10 9.5C7.51472 9.5 5.5 11.5147 5.5 14C5.5 16.4853 7.51472 18.5 10 18.5H19",
|
|
2735
|
+
stroke: "currentColor",
|
|
2736
|
+
strokeWidth: 1.2,
|
|
2737
|
+
strokeLinejoin: "round"
|
|
2738
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2739
|
+
d: "M15 13.5L19 9.5L15 5.5",
|
|
2740
|
+
stroke: "currentColor",
|
|
2741
|
+
strokeWidth: 1.2,
|
|
2742
|
+
strokeLinejoin: "round"
|
|
2743
|
+
})]
|
|
2744
|
+
});
|
|
2745
|
+
});
|
|
2746
|
+
const RefreshIcon = forwardRef(function RefreshIcon2(props, ref) {
|
|
2747
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2748
|
+
"data-sanity-icon": "refresh",
|
|
2749
|
+
width: "1em",
|
|
2750
|
+
height: "1em",
|
|
2751
|
+
viewBox: "0 0 25 25",
|
|
2752
|
+
fill: "none",
|
|
2753
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2754
|
+
ref,
|
|
2755
|
+
...props,
|
|
2756
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2757
|
+
d: "M19.5 13.5C19.5 17.366 16.366 20.5 12.5 20.5C8.63401 20.5 5.5 17.366 5.5 13.5C5.5 9.63401 8.63401 6.5 12.5 6.5H15.5",
|
|
2758
|
+
stroke: "currentColor",
|
|
2759
|
+
strokeWidth: 1.2,
|
|
2760
|
+
strokeLinejoin: "round"
|
|
2761
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2762
|
+
d: "M11.5 10.5L15.5 6.5L11.5 2.5",
|
|
2763
|
+
stroke: "currentColor",
|
|
2764
|
+
strokeWidth: 1.2,
|
|
2765
|
+
strokeLinejoin: "round"
|
|
2766
|
+
})]
|
|
2767
|
+
});
|
|
2768
|
+
});
|
|
2769
|
+
const RemoveCircleIcon = forwardRef(function RemoveCircleIcon2(props, ref) {
|
|
2770
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2771
|
+
"data-sanity-icon": "remove-circle",
|
|
2772
|
+
width: "1em",
|
|
2773
|
+
height: "1em",
|
|
2774
|
+
viewBox: "0 0 25 25",
|
|
2775
|
+
fill: "none",
|
|
2776
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2777
|
+
ref,
|
|
2778
|
+
...props,
|
|
2779
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2780
|
+
d: "M8 12.4H17M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
2781
|
+
stroke: "currentColor",
|
|
2782
|
+
strokeWidth: 1.2,
|
|
2783
|
+
strokeLinejoin: "round"
|
|
2784
|
+
})
|
|
2785
|
+
});
|
|
2786
|
+
});
|
|
2787
|
+
const RemoveIcon = forwardRef(function RemoveIcon2(props, ref) {
|
|
2788
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2789
|
+
"data-sanity-icon": "remove",
|
|
2790
|
+
width: "1em",
|
|
2791
|
+
height: "1em",
|
|
2792
|
+
viewBox: "0 0 25 25",
|
|
2793
|
+
fill: "none",
|
|
2794
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2795
|
+
ref,
|
|
2796
|
+
...props,
|
|
2797
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2798
|
+
d: "M5 12.5H20",
|
|
2799
|
+
stroke: "currentColor",
|
|
2800
|
+
strokeWidth: 1.2,
|
|
2801
|
+
strokeLinejoin: "round"
|
|
2802
|
+
})
|
|
2803
|
+
});
|
|
2804
|
+
});
|
|
2805
|
+
const ResetIcon = forwardRef(function ResetIcon2(props, ref) {
|
|
2806
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2807
|
+
"data-sanity-icon": "reset",
|
|
2808
|
+
width: "1em",
|
|
2809
|
+
height: "1em",
|
|
2810
|
+
viewBox: "0 0 25 25",
|
|
2811
|
+
fill: "none",
|
|
2812
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2813
|
+
ref,
|
|
2814
|
+
...props,
|
|
2815
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2816
|
+
d: "M4.56189 13.5L4.14285 13.9294C4.25676 14.0406 4.41017 14.1019 4.56932 14.1C4.72847 14.098 4.88032 14.0329 4.99144 13.9189L4.56189 13.5ZM9.92427 15.9243L15.9243 9.92427L15.0757 9.07574L9.07574 15.0757L9.92427 15.9243ZM9.07574 9.92426L15.0757 15.9243L15.9243 15.0757L9.92426 9.07574L9.07574 9.92426ZM19.9 12.5C19.9 16.5869 16.5869 19.9 12.5 19.9V21.1C17.2496 21.1 21.1 17.2496 21.1 12.5H19.9ZM5.1 12.5C5.1 8.41309 8.41309 5.1 12.5 5.1V3.9C7.75035 3.9 3.9 7.75035 3.9 12.5H5.1ZM12.5 5.1C16.5869 5.1 19.9 8.41309 19.9 12.5H21.1C21.1 7.75035 17.2496 3.9 12.5 3.9V5.1ZM5.15728 13.4258C5.1195 13.1227 5.1 12.8138 5.1 12.5H3.9C3.9 12.8635 3.92259 13.2221 3.9665 13.5742L5.15728 13.4258ZM12.5 19.9C9.9571 19.9 7.71347 18.6179 6.38048 16.6621L5.38888 17.3379C6.93584 19.6076 9.54355 21.1 12.5 21.1V19.9ZM4.99144 13.9189L7.42955 11.4189L6.57045 10.5811L4.13235 13.0811L4.99144 13.9189ZM4.98094 13.0706L2.41905 10.5706L1.58095 11.4294L4.14285 13.9294L4.98094 13.0706Z",
|
|
2817
|
+
fill: "currentColor"
|
|
2818
|
+
})
|
|
2819
|
+
});
|
|
2820
|
+
});
|
|
2821
|
+
const RestoreIcon = forwardRef(function RestoreIcon2(props, ref) {
|
|
2822
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2823
|
+
"data-sanity-icon": "restore",
|
|
2824
|
+
width: "1em",
|
|
2825
|
+
height: "1em",
|
|
2826
|
+
viewBox: "0 0 25 25",
|
|
2827
|
+
fill: "none",
|
|
2828
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2829
|
+
ref,
|
|
2830
|
+
...props,
|
|
2831
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2832
|
+
d: "M5.88468 17C7.32466 19.1128 9.75033 20.5 12.5 20.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 8.08172 16.9183 4.5 12.5 4.5C8.08172 4.5 4.5 8.08172 4.5 12.5V13.5M12.5 8V12.5L15.5 15.5",
|
|
2833
|
+
stroke: "currentColor",
|
|
2834
|
+
strokeWidth: 1.2,
|
|
2835
|
+
strokeLinejoin: "round"
|
|
2836
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2837
|
+
d: "M7 11L4.5 13.5L2 11",
|
|
2838
|
+
stroke: "currentColor",
|
|
2839
|
+
strokeWidth: 1.2,
|
|
2840
|
+
strokeLinejoin: "round"
|
|
2841
|
+
})]
|
|
2842
|
+
});
|
|
2843
|
+
});
|
|
2844
|
+
const RetrieveIcon = forwardRef(function RetrieveIcon2(props, ref) {
|
|
2845
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2846
|
+
"data-sanity-icon": "retrieve",
|
|
2847
|
+
width: "1em",
|
|
2848
|
+
height: "1em",
|
|
2849
|
+
viewBox: "0 0 25 25",
|
|
2850
|
+
fill: "none",
|
|
2851
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2852
|
+
ref,
|
|
2853
|
+
...props,
|
|
2854
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2855
|
+
d: "M16 14L12.5 10.5L9 14M5.5 7.5H19.5",
|
|
2856
|
+
stroke: "currentColor",
|
|
2857
|
+
strokeWidth: 1.2,
|
|
2858
|
+
strokeLinejoin: "round"
|
|
2859
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2860
|
+
d: "M12.5 10.5L12.5 17.5M19.5 7.5V19.5H5.5V7.5L7.5 5.5H17.5L19.5 7.5Z",
|
|
2861
|
+
stroke: "currentColor",
|
|
2862
|
+
strokeWidth: 1.2,
|
|
2863
|
+
strokeLinejoin: "round"
|
|
2864
|
+
})]
|
|
2865
|
+
});
|
|
2866
|
+
});
|
|
2867
|
+
const RetryIcon = forwardRef(function RetryIcon2(props, ref) {
|
|
2868
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2869
|
+
"data-sanity-icon": "retry",
|
|
2870
|
+
width: "1em",
|
|
2871
|
+
height: "1em",
|
|
2872
|
+
viewBox: "0 0 25 25",
|
|
2873
|
+
fill: "none",
|
|
2874
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2875
|
+
ref,
|
|
2876
|
+
...props,
|
|
2877
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2878
|
+
d: "M19 9.5L10 9.5C7.51472 9.5 5.5 11.5147 5.5 14C5.5 16.4853 7.51472 18.5 10 18.5H19",
|
|
2879
|
+
stroke: "currentColor",
|
|
2880
|
+
strokeWidth: 1.2,
|
|
2881
|
+
strokeLinejoin: "round"
|
|
2882
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2883
|
+
d: "M15 13.5L19 9.5L15 5.5",
|
|
2884
|
+
stroke: "currentColor",
|
|
2885
|
+
strokeWidth: 1.2,
|
|
2886
|
+
strokeLinejoin: "round"
|
|
2887
|
+
})]
|
|
2888
|
+
});
|
|
2889
|
+
});
|
|
2890
|
+
const RevertIcon = forwardRef(function RevertIcon2(props, ref) {
|
|
2891
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
2892
|
+
"data-sanity-icon": "revert",
|
|
2893
|
+
width: "1em",
|
|
2894
|
+
height: "1em",
|
|
2895
|
+
viewBox: "0 0 25 25",
|
|
2896
|
+
fill: "none",
|
|
2897
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2898
|
+
ref,
|
|
2899
|
+
...props,
|
|
2900
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
2901
|
+
d: "M6 9.5L15 9.5C17.4853 9.5 19.5 11.5147 19.5 14C19.5 16.4853 17.4853 18.5 15 18.5H6",
|
|
2902
|
+
stroke: "currentColor",
|
|
2903
|
+
strokeWidth: 1.2,
|
|
2904
|
+
strokeLinejoin: "round"
|
|
2905
|
+
}), /* @__PURE__ */jsx("path", {
|
|
2906
|
+
d: "M10 13.5L6 9.5L10 5.5",
|
|
2907
|
+
stroke: "currentColor",
|
|
2908
|
+
strokeWidth: 1.2,
|
|
2909
|
+
strokeLinejoin: "round"
|
|
2910
|
+
})]
|
|
2911
|
+
});
|
|
2912
|
+
});
|
|
2913
|
+
const RobotIcon = forwardRef(function RobotIcon2(props, ref) {
|
|
2914
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2915
|
+
"data-sanity-icon": "robot",
|
|
2916
|
+
width: "1em",
|
|
2917
|
+
height: "1em",
|
|
2918
|
+
viewBox: "0 0 25 25",
|
|
2919
|
+
fill: "none",
|
|
2920
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2921
|
+
ref,
|
|
2922
|
+
...props,
|
|
2923
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2924
|
+
d: "M12.5 15.5V17.5M12.5 8.5V6.5M12.5 6.5C13.3284 6.5 14 5.82843 14 5C14 4.17157 13.3284 3.5 12.5 3.5C11.6716 3.5 11 4.17157 11 5C11 5.82843 11.6716 6.5 12.5 6.5ZM20.5 20.5V19.5C20.5 18.3954 19.6046 17.5 18.5 17.5H6.5C5.39543 17.5 4.5 18.3954 4.5 19.5V20.5H20.5ZM11.5 12C11.5 12.5523 11.0523 13 10.5 13C9.94772 13 9.5 12.5523 9.5 12C9.5 11.4477 9.94772 11 10.5 11C11.0523 11 11.5 11.4477 11.5 12ZM15.5 12C15.5 12.5523 15.0523 13 14.5 13C13.9477 13 13.5 12.5523 13.5 12C13.5 11.4477 13.9477 11 14.5 11C15.0523 11 15.5 11.4477 15.5 12ZM8.5 15.5H16.5C17.6046 15.5 18.5 14.6046 18.5 13.5V10.5C18.5 9.39543 17.6046 8.5 16.5 8.5H8.5C7.39543 8.5 6.5 9.39543 6.5 10.5V13.5C6.5 14.6046 7.39543 15.5 8.5 15.5Z",
|
|
2925
|
+
stroke: "currentColor",
|
|
2926
|
+
strokeWidth: 1.2,
|
|
2927
|
+
strokeLinejoin: "round"
|
|
2928
|
+
})
|
|
2929
|
+
});
|
|
2930
|
+
});
|
|
2931
|
+
const RocketIcon = forwardRef(function RocketIcon2(props, ref) {
|
|
2932
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2933
|
+
"data-sanity-icon": "rocket",
|
|
2934
|
+
width: "1em",
|
|
2935
|
+
height: "1em",
|
|
2936
|
+
viewBox: "0 0 25 25",
|
|
2937
|
+
fill: "none",
|
|
2938
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2939
|
+
ref,
|
|
2940
|
+
...props,
|
|
2941
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2942
|
+
d: "M12.5 20.5L15.5 14M11 9.49999L4.5 12.5M9 14C9 14 7.54688 14.9531 6.5 16C5.5 17 4.5 20.5 4.5 20.5C4.5 20.5 8 19.5 9 18.5C10 17.5 11 16 11 16M9 14C9 14 10.1 9.9 12.5 7.5C15.5 4.5 20.5 4.5 20.5 4.5C20.5 4.5 20.5 9.5 17.5 12.5C15.7492 14.2508 11 16 11 16L9 14ZM16.5 9.99999C16.5 10.8284 15.8284 11.5 15 11.5C14.1716 11.5 13.5 10.8284 13.5 9.99999C13.5 9.17157 14.1716 8.49999 15 8.49999C15.8284 8.49999 16.5 9.17157 16.5 9.99999Z",
|
|
2943
|
+
stroke: "currentColor",
|
|
2944
|
+
strokeWidth: 1.2,
|
|
2945
|
+
strokeLinejoin: "round"
|
|
2946
|
+
})
|
|
2947
|
+
});
|
|
2948
|
+
});
|
|
2949
|
+
const SchemaIcon = forwardRef(function SchemaIcon2(props, ref) {
|
|
2950
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2951
|
+
"data-sanity-icon": "schema",
|
|
2952
|
+
width: "1em",
|
|
2953
|
+
height: "1em",
|
|
2954
|
+
viewBox: "0 0 25 25",
|
|
2955
|
+
fill: "none",
|
|
2956
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2957
|
+
ref,
|
|
2958
|
+
...props,
|
|
2959
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2960
|
+
d: "M12.5 9.5V12.5M12.5 12.5H8.5V15.5M12.5 12.5H16.5V15.5M10.5 5.5H14.5V9.5H10.5V5.5ZM6.5 15.5H10.5V19.5H6.5V15.5ZM14.5 15.5H18.5V19.5H14.5V15.5Z",
|
|
2961
|
+
stroke: "currentColor",
|
|
2962
|
+
strokeWidth: 1.2,
|
|
2963
|
+
strokeLinejoin: "round"
|
|
2964
|
+
})
|
|
2965
|
+
});
|
|
2966
|
+
});
|
|
2967
|
+
const SearchIcon = forwardRef(function SearchIcon2(props, ref) {
|
|
2968
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2969
|
+
"data-sanity-icon": "search",
|
|
2970
|
+
width: "1em",
|
|
2971
|
+
height: "1em",
|
|
2972
|
+
viewBox: "0 0 25 25",
|
|
2973
|
+
fill: "none",
|
|
2974
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2975
|
+
ref,
|
|
2976
|
+
...props,
|
|
2977
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2978
|
+
d: "M15.0355 15.0355L20 20M16.5 11.5C16.5 14.2614 14.2614 16.5 11.5 16.5C8.73858 16.5 6.5 14.2614 6.5 11.5C6.5 8.73858 8.73858 6.5 11.5 6.5C14.2614 6.5 16.5 8.73858 16.5 11.5Z",
|
|
2979
|
+
stroke: "currentColor",
|
|
2980
|
+
strokeWidth: 1.2,
|
|
2981
|
+
strokeLinejoin: "round"
|
|
2982
|
+
})
|
|
2983
|
+
});
|
|
2984
|
+
});
|
|
2985
|
+
const SelectIcon = forwardRef(function SelectIcon2(props, ref) {
|
|
2986
|
+
return /* @__PURE__ */jsx("svg", {
|
|
2987
|
+
"data-sanity-icon": "select",
|
|
2988
|
+
width: "1em",
|
|
2989
|
+
height: "1em",
|
|
2990
|
+
viewBox: "0 0 25 25",
|
|
2991
|
+
fill: "none",
|
|
2992
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2993
|
+
ref,
|
|
2994
|
+
...props,
|
|
2995
|
+
children: /* @__PURE__ */jsx("path", {
|
|
2996
|
+
d: "M16.5 15.5L12.5 19.5L8.5 15.5M8.5 9.5L12.5 5.5L16.5 9.5",
|
|
2997
|
+
stroke: "currentColor",
|
|
2998
|
+
strokeWidth: 1.2,
|
|
2999
|
+
strokeLinejoin: "round"
|
|
3000
|
+
})
|
|
3001
|
+
});
|
|
3002
|
+
});
|
|
3003
|
+
const ShareIcon = forwardRef(function ShareIcon2(props, ref) {
|
|
3004
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3005
|
+
"data-sanity-icon": "share",
|
|
3006
|
+
width: "1em",
|
|
3007
|
+
height: "1em",
|
|
3008
|
+
viewBox: "0 0 25 25",
|
|
3009
|
+
fill: "none",
|
|
3010
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3011
|
+
ref,
|
|
3012
|
+
...props,
|
|
3013
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3014
|
+
d: "M15 10.5H18.5V19.5H6.5L6.5 10.5H10M12.5 16V3.5",
|
|
3015
|
+
stroke: "currentColor",
|
|
3016
|
+
strokeWidth: 1.2,
|
|
3017
|
+
strokeLinejoin: "round"
|
|
3018
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3019
|
+
d: "M9 7L12.5 3.5L16 7",
|
|
3020
|
+
stroke: "currentColor",
|
|
3021
|
+
strokeWidth: 1.2,
|
|
3022
|
+
strokeLinejoin: "round"
|
|
3023
|
+
})]
|
|
3024
|
+
});
|
|
3025
|
+
});
|
|
3026
|
+
const SortIcon = forwardRef(function SortIcon2(props, ref) {
|
|
3027
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3028
|
+
"data-sanity-icon": "sort",
|
|
3029
|
+
width: "1em",
|
|
3030
|
+
height: "1em",
|
|
3031
|
+
viewBox: "0 0 25 25",
|
|
3032
|
+
fill: "none",
|
|
3033
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3034
|
+
ref,
|
|
3035
|
+
...props,
|
|
3036
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3037
|
+
d: "M8.5 18.5V6M16.5 19V6.5M12 15L8.5 18.5L5 15M13 10L16.5 6.5L20 10",
|
|
3038
|
+
stroke: "currentColor",
|
|
3039
|
+
strokeWidth: 1.2,
|
|
3040
|
+
strokeLinejoin: "round"
|
|
3041
|
+
})
|
|
3042
|
+
});
|
|
3043
|
+
});
|
|
3044
|
+
const SparkleIcon = forwardRef(function SparkleIcon2(props, ref) {
|
|
3045
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3046
|
+
"data-sanity-icon": "sparkle",
|
|
3047
|
+
width: "1em",
|
|
3048
|
+
height: "1em",
|
|
3049
|
+
viewBox: "0 0 25 25",
|
|
3050
|
+
fill: "none",
|
|
3051
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3052
|
+
ref,
|
|
3053
|
+
...props,
|
|
3054
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3055
|
+
d: "M10.5 10.5C8.5 12.5 5 12.5 5 12.5C5 12.5 8.5 12.5 10.5 14.5C12.5 16.5 12.5 20 12.5 20C12.5 20 12.5 16.5 14.5 14.5C16.5 12.5 20 12.5 20 12.5C20 12.5 16.5 12.5 14.5 10.5C12.5 8.5 12.5 5 12.5 5C12.5 5 12.5 8.5 10.5 10.5Z",
|
|
3056
|
+
stroke: "currentColor",
|
|
3057
|
+
strokeWidth: 1.2,
|
|
3058
|
+
strokeLinejoin: "round"
|
|
3059
|
+
})
|
|
3060
|
+
});
|
|
3061
|
+
});
|
|
3062
|
+
const SparklesIcon = forwardRef(function SparklesIcon2(props, ref) {
|
|
3063
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3064
|
+
"data-sanity-icon": "sparkles",
|
|
3065
|
+
width: "1em",
|
|
3066
|
+
height: "1em",
|
|
3067
|
+
viewBox: "0 0 25 25",
|
|
3068
|
+
fill: "none",
|
|
3069
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3070
|
+
ref,
|
|
3071
|
+
...props,
|
|
3072
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3073
|
+
d: "M11 3.5V5M11 5V6.5M11 5H12.5M11 5H9.5M9.5 15C9.5 15 12.2308 14.7692 13.5 13.5C14.7692 12.2308 15 9.5 15 9.5C15 9.5 15.2308 12.2308 16.5 13.5C17.7692 14.7692 20.5 15 20.5 15C20.5 15 17.7692 15.2308 16.5 16.5C15.2308 17.7692 15 20.5 15 20.5C15 20.5 14.7692 17.7692 13.5 16.5C12.2308 15.2308 9.5 15 9.5 15ZM4.5 10C4.5 10 5.72308 9.87692 6.3 9.3C6.87692 8.72308 7 7.5 7 7.5C7 7.5 7.12308 8.72308 7.7 9.3C8.27692 9.87692 9.5 10 9.5 10C9.5 10 8.27692 10.1231 7.7 10.7C7.12308 11.2769 7 12.5 7 12.5C7 12.5 6.87692 11.2769 6.3 10.7C5.72308 10.1231 4.5 10 4.5 10Z",
|
|
3074
|
+
stroke: "currentColor",
|
|
3075
|
+
strokeWidth: 1.2,
|
|
3076
|
+
strokeLinecap: "round",
|
|
3077
|
+
strokeLinejoin: "round"
|
|
3078
|
+
})
|
|
3079
|
+
});
|
|
3080
|
+
});
|
|
3081
|
+
const SpinnerIcon = forwardRef(function SpinnerIcon2(props, ref) {
|
|
3082
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3083
|
+
"data-sanity-icon": "spinner",
|
|
3084
|
+
width: "1em",
|
|
3085
|
+
height: "1em",
|
|
3086
|
+
viewBox: "0 0 25 25",
|
|
3087
|
+
fill: "none",
|
|
3088
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3089
|
+
ref,
|
|
3090
|
+
...props,
|
|
3091
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3092
|
+
d: "M4.5 12.5C4.5 16.9183 8.08172 20.5 12.5 20.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 8.08172 16.9183 4.5 12.5 4.5",
|
|
3093
|
+
stroke: "currentColor",
|
|
3094
|
+
strokeWidth: 1.2,
|
|
3095
|
+
strokeLinejoin: "round"
|
|
3096
|
+
})
|
|
3097
|
+
});
|
|
3098
|
+
});
|
|
3099
|
+
const SplitHorizontalIcon = forwardRef(function SplitHorizontalIcon2(props, ref) {
|
|
3100
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3101
|
+
"data-sanity-icon": "split-horizontal",
|
|
3102
|
+
width: "1em",
|
|
3103
|
+
height: "1em",
|
|
3104
|
+
viewBox: "0 0 25 25",
|
|
3105
|
+
fill: "none",
|
|
3106
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3107
|
+
ref,
|
|
3108
|
+
...props,
|
|
3109
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3110
|
+
d: "M19.5 10.5V20.5H5.5V10.5M19.5 10.5H5.5M19.5 10.5V4.5H5.5V10.5M12.5 13V15.5M12.5 18V15.5M12.5 15.5H15M12.5 15.5H10",
|
|
3111
|
+
stroke: "currentColor",
|
|
3112
|
+
strokeWidth: 1.2,
|
|
3113
|
+
strokeLinejoin: "round"
|
|
3114
|
+
})
|
|
3115
|
+
});
|
|
3116
|
+
});
|
|
3117
|
+
const SplitVerticalIcon = forwardRef(function SplitVerticalIcon2(props, ref) {
|
|
3118
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3119
|
+
"data-sanity-icon": "split-vertical",
|
|
3120
|
+
width: "1em",
|
|
3121
|
+
height: "1em",
|
|
3122
|
+
viewBox: "0 0 25 25",
|
|
3123
|
+
fill: "none",
|
|
3124
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3125
|
+
ref,
|
|
3126
|
+
...props,
|
|
3127
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3128
|
+
d: "M10.5 5.5V19.5M13 12.5H15.5M18 12.5H15.5M15.5 12.5V15M15.5 12.5V10M4.5 5.5H20.5V19.5H4.5V5.5Z",
|
|
3129
|
+
stroke: "currentColor",
|
|
3130
|
+
strokeWidth: 1.2,
|
|
3131
|
+
strokeLinejoin: "round"
|
|
3132
|
+
})
|
|
3133
|
+
});
|
|
3134
|
+
});
|
|
3135
|
+
const SquareIcon = forwardRef(function SquareIcon2(props, ref) {
|
|
3136
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3137
|
+
"data-sanity-icon": "square",
|
|
3138
|
+
width: "1em",
|
|
3139
|
+
height: "1em",
|
|
3140
|
+
viewBox: "0 0 25 25",
|
|
3141
|
+
fill: "none",
|
|
3142
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3143
|
+
ref,
|
|
3144
|
+
...props,
|
|
3145
|
+
children: /* @__PURE__ */jsx("rect", {
|
|
3146
|
+
x: 5.5,
|
|
3147
|
+
y: 5.5,
|
|
3148
|
+
width: 14,
|
|
3149
|
+
height: 14,
|
|
3150
|
+
stroke: "currentColor",
|
|
3151
|
+
strokeWidth: 1.2,
|
|
3152
|
+
strokeLinejoin: "round"
|
|
3153
|
+
})
|
|
3154
|
+
});
|
|
3155
|
+
});
|
|
3156
|
+
const StackCompactIcon = forwardRef(function StackCompactIcon2(props, ref) {
|
|
3157
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3158
|
+
"data-sanity-icon": "stack-compact",
|
|
3159
|
+
width: "1em",
|
|
3160
|
+
height: "1em",
|
|
3161
|
+
viewBox: "0 0 25 25",
|
|
3162
|
+
fill: "none",
|
|
3163
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3164
|
+
ref,
|
|
3165
|
+
...props,
|
|
3166
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3167
|
+
d: "M5.5 15.5V18.5H19.5V15.5M5.5 15.5H19.5M5.5 15.5V9.5M19.5 15.5V9.5M5.5 9.5V6.5H19.5V9.5M5.5 9.5H19.5M5.5 12.5H19.5",
|
|
3168
|
+
stroke: "currentColor",
|
|
3169
|
+
strokeWidth: 1.2,
|
|
3170
|
+
strokeLinejoin: "round"
|
|
3171
|
+
})
|
|
3172
|
+
});
|
|
3173
|
+
});
|
|
3174
|
+
const StackIcon = forwardRef(function StackIcon2(props, ref) {
|
|
3175
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3176
|
+
"data-sanity-icon": "stack",
|
|
3177
|
+
width: "1em",
|
|
3178
|
+
height: "1em",
|
|
3179
|
+
viewBox: "0 0 25 25",
|
|
3180
|
+
fill: "none",
|
|
3181
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3182
|
+
ref,
|
|
3183
|
+
...props,
|
|
3184
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3185
|
+
d: "M5.5 12.5H19.5M5.5 18.5H19.5V6.5H5.5V18.5Z",
|
|
3186
|
+
stroke: "currentColor",
|
|
3187
|
+
strokeWidth: 1.2,
|
|
3188
|
+
strokeLinejoin: "round"
|
|
3189
|
+
})
|
|
3190
|
+
});
|
|
3191
|
+
});
|
|
3192
|
+
const StarIcon = forwardRef(function StarIcon2(props, ref) {
|
|
3193
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3194
|
+
"data-sanity-icon": "star",
|
|
3195
|
+
width: "1em",
|
|
3196
|
+
height: "1em",
|
|
3197
|
+
viewBox: "0 0 25 25",
|
|
3198
|
+
fill: "none",
|
|
3199
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3200
|
+
ref,
|
|
3201
|
+
...props,
|
|
3202
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3203
|
+
d: "M13 4L15.2747 9.8691L21.5595 10.2188L16.6806 14.1959L18.2901 20.2812L13 16.87L7.70993 20.2812L9.31941 14.1959L4.44049 10.2188L10.7253 9.8691L13 4Z",
|
|
3204
|
+
stroke: "currentColor",
|
|
3205
|
+
strokeWidth: 1.2,
|
|
3206
|
+
strokeLinejoin: "round"
|
|
3207
|
+
})
|
|
3208
|
+
});
|
|
3209
|
+
});
|
|
3210
|
+
const StopIcon = forwardRef(function StopIcon2(props, ref) {
|
|
3211
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3212
|
+
"data-sanity-icon": "stop",
|
|
3213
|
+
width: "1em",
|
|
3214
|
+
height: "1em",
|
|
3215
|
+
viewBox: "0 0 25 25",
|
|
3216
|
+
fill: "none",
|
|
3217
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3218
|
+
ref,
|
|
3219
|
+
...props,
|
|
3220
|
+
children: /* @__PURE__ */jsx("rect", {
|
|
3221
|
+
x: 7.5,
|
|
3222
|
+
y: 7.5,
|
|
3223
|
+
width: 10,
|
|
3224
|
+
height: 10,
|
|
3225
|
+
fill: "currentColor",
|
|
3226
|
+
stroke: "currentColor",
|
|
3227
|
+
strokeWidth: 1.2,
|
|
3228
|
+
strokeLinejoin: "round"
|
|
3229
|
+
})
|
|
3230
|
+
});
|
|
3231
|
+
});
|
|
3232
|
+
const StrikethroughIcon = forwardRef(function StrikethroughIcon2(props, ref) {
|
|
3233
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3234
|
+
"data-sanity-icon": "strikethrough",
|
|
3235
|
+
width: "1em",
|
|
3236
|
+
height: "1em",
|
|
3237
|
+
viewBox: "0 0 25 25",
|
|
3238
|
+
fill: "none",
|
|
3239
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3240
|
+
ref,
|
|
3241
|
+
...props,
|
|
3242
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3243
|
+
d: "M12.5656 7.73438C11.0656 7.73438 10.0734 8.48438 10.0734 9.625C10.0734 10.2317 10.3649 10.6613 11.0519 11H8.90358C8.71703 10.6199 8.62813 10.1801 8.62813 9.67188C8.62813 7.75781 10.2297 6.46094 12.6125 6.46094C14.7922 6.46094 16.4172 7.75781 16.5344 9.57812H15.1203C14.925 8.42188 13.9719 7.73438 12.5656 7.73438Z",
|
|
3244
|
+
fill: "currentColor"
|
|
3245
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3246
|
+
d: "M12.4875 18.2656C10.0969 18.2656 8.44844 17 8.3 15.0547H9.72188C9.89375 16.2344 11.0188 16.9844 12.6203 16.9844C14.1359 16.9844 15.2531 16.1641 15.2531 15.0469C15.2531 14.6375 15.1255 14.292 14.8589 14H16.5912C16.6638 14.266 16.6984 14.5566 16.6984 14.875C16.6984 16.9453 15.0656 18.2656 12.4875 18.2656Z",
|
|
3247
|
+
fill: "currentColor"
|
|
3248
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3249
|
+
d: "M7 13.1H18V11.9H7V13.1Z",
|
|
3250
|
+
fill: "currentColor"
|
|
3251
|
+
})]
|
|
3252
|
+
});
|
|
3253
|
+
});
|
|
3254
|
+
const StringIcon = forwardRef(function StringIcon2(props, ref) {
|
|
3255
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3256
|
+
"data-sanity-icon": "string",
|
|
3257
|
+
width: "1em",
|
|
3258
|
+
height: "1em",
|
|
3259
|
+
viewBox: "0 0 25 25",
|
|
3260
|
+
fill: "none",
|
|
3261
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3262
|
+
ref,
|
|
3263
|
+
...props,
|
|
3264
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3265
|
+
d: "M11.6748 15.5227H13.1855L9.87842 6.36304H8.34863L5.0415 15.5227H6.50146L7.3457 13.0916H10.8369L11.6748 15.5227ZM9.04053 8.02612H9.14844L10.4751 11.8982H7.70752L9.04053 8.02612Z",
|
|
3266
|
+
fill: "currentColor"
|
|
3267
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3268
|
+
d: "M16.8101 14.488C16.0674 14.488 15.5278 14.1262 15.5278 13.5042C15.5278 12.8948 15.9595 12.571 16.9116 12.5076L18.6001 12.3997V12.9773C18.6001 13.8342 17.8384 14.488 16.8101 14.488ZM16.4609 15.637C17.3687 15.637 18.124 15.2434 18.5366 14.5515H18.6445V15.5227H19.9585V10.8C19.9585 9.34009 18.981 8.47681 17.248 8.47681C15.6802 8.47681 14.563 9.23853 14.4233 10.4255H15.7437C15.896 9.93677 16.4229 9.65747 17.1846 9.65747C18.1177 9.65747 18.6001 10.0701 18.6001 10.8V11.3967L16.7275 11.5046C15.0835 11.6062 14.1567 12.3235 14.1567 13.5676C14.1567 14.8308 15.1279 15.637 16.4609 15.637Z",
|
|
3269
|
+
fill: "currentColor"
|
|
3270
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3271
|
+
fillRule: "evenodd",
|
|
3272
|
+
clipRule: "evenodd",
|
|
3273
|
+
d: "M19.9585 18.637L5.0415 18.637V17.437L19.9585 17.437V18.637Z",
|
|
3274
|
+
fill: "currentColor"
|
|
3275
|
+
})]
|
|
3276
|
+
});
|
|
3277
|
+
});
|
|
3278
|
+
const SunIcon = forwardRef(function SunIcon2(props, ref) {
|
|
3279
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3280
|
+
"data-sanity-icon": "sun",
|
|
3281
|
+
width: "1em",
|
|
3282
|
+
height: "1em",
|
|
3283
|
+
viewBox: "0 0 25 25",
|
|
3284
|
+
fill: "none",
|
|
3285
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3286
|
+
ref,
|
|
3287
|
+
...props,
|
|
3288
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3289
|
+
d: "M19 12.5H22M3 12.5H6M12.5 6V3M12.5 22V19M17.3891 7.61091L19.5104 5.48959M5.48959 19.5104L7.61091 17.3891M7.61091 7.61091L5.48959 5.48959M19.5104 19.5104L17.3891 17.3891M16 12.5C16 14.433 14.433 16 12.5 16C10.567 16 9 14.433 9 12.5C9 10.567 10.567 9 12.5 9C14.433 9 16 10.567 16 12.5Z",
|
|
3290
|
+
stroke: "currentColor",
|
|
3291
|
+
strokeWidth: 1.2,
|
|
3292
|
+
strokeLinejoin: "round"
|
|
3293
|
+
})
|
|
3294
|
+
});
|
|
3295
|
+
});
|
|
3296
|
+
const SyncIcon = forwardRef(function SyncIcon2(props, ref) {
|
|
3297
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3298
|
+
"data-sanity-icon": "sync",
|
|
3299
|
+
width: "1em",
|
|
3300
|
+
height: "1em",
|
|
3301
|
+
viewBox: "0 0 25 25",
|
|
3302
|
+
fill: "none",
|
|
3303
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3304
|
+
ref,
|
|
3305
|
+
...props,
|
|
3306
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3307
|
+
d: "M13.5 4.5H12.5C8.08172 4.5 4.5 8.08172 4.5 12.5C4.5 15.6631 6.33576 18.3975 9 19.6958M11.5 20.5H12.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 9.33688 18.6642 6.60253 16 5.30423",
|
|
3308
|
+
stroke: "currentColor",
|
|
3309
|
+
strokeWidth: 1.2,
|
|
3310
|
+
strokeLinejoin: "round"
|
|
3311
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3312
|
+
d: "M14 17.5619L11.5 20.5L14.5 23.0619M11 7.43811L13.5 4.50001L10.5 1.93811",
|
|
3313
|
+
stroke: "currentColor",
|
|
3314
|
+
strokeWidth: 1.2,
|
|
3315
|
+
strokeLinejoin: "round"
|
|
3316
|
+
})]
|
|
3317
|
+
});
|
|
3318
|
+
});
|
|
3319
|
+
const TabletDeviceIcon = forwardRef(function TabletDeviceIcon2(props, ref) {
|
|
3320
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3321
|
+
"data-sanity-icon": "tablet-device",
|
|
3322
|
+
width: "1em",
|
|
3323
|
+
height: "1em",
|
|
3324
|
+
viewBox: "0 0 25 25",
|
|
3325
|
+
fill: "none",
|
|
3326
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3327
|
+
ref,
|
|
3328
|
+
...props,
|
|
3329
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3330
|
+
d: "M5.5 5.5C5.5 4.94772 5.94772 4.5 6.5 4.5H18.5C19.0523 4.5 19.5 4.94772 19.5 5.5V19.5C19.5 20.0523 19.0523 20.5 18.5 20.5H6.5C5.94772 20.5 5.5 20.0523 5.5 19.5V5.5Z",
|
|
3331
|
+
stroke: "currentColor",
|
|
3332
|
+
strokeWidth: 1.2,
|
|
3333
|
+
strokeLinejoin: "round"
|
|
3334
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3335
|
+
d: "M13 18C13 18.2761 12.7761 18.5 12.5 18.5C12.2239 18.5 12 18.2761 12 18C12 17.7239 12.2239 17.5 12.5 17.5C12.7761 17.5 13 17.7239 13 18Z",
|
|
3336
|
+
stroke: "currentColor",
|
|
3337
|
+
strokeWidth: 1.2,
|
|
3338
|
+
strokeLinejoin: "round"
|
|
3339
|
+
})]
|
|
3340
|
+
});
|
|
3341
|
+
});
|
|
3342
|
+
const TagIcon = forwardRef(function TagIcon2(props, ref) {
|
|
3343
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3344
|
+
"data-sanity-icon": "tag",
|
|
3345
|
+
width: "1em",
|
|
3346
|
+
height: "1em",
|
|
3347
|
+
viewBox: "0 0 25 25",
|
|
3348
|
+
fill: "none",
|
|
3349
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3350
|
+
ref,
|
|
3351
|
+
...props,
|
|
3352
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3353
|
+
d: "M12.5 20L5 20L5 12.5L12.5 5L20 12.5L12.5 20Z",
|
|
3354
|
+
stroke: "currentColor",
|
|
3355
|
+
strokeWidth: 1.2,
|
|
3356
|
+
strokeLinejoin: "round"
|
|
3357
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3358
|
+
d: "M11 15.5C11 16.3284 10.3284 17 9.5 17C8.67157 17 8 16.3284 8 15.5C8 14.6716 8.67157 14 9.5 14C10.3284 14 11 14.6716 11 15.5Z",
|
|
3359
|
+
stroke: "currentColor",
|
|
3360
|
+
strokeWidth: 1.2,
|
|
3361
|
+
strokeLinejoin: "round"
|
|
3362
|
+
})]
|
|
3363
|
+
});
|
|
3364
|
+
});
|
|
3365
|
+
const TagsIcon = forwardRef(function TagsIcon2(props, ref) {
|
|
3366
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3367
|
+
"data-sanity-icon": "tags",
|
|
3368
|
+
width: "1em",
|
|
3369
|
+
height: "1em",
|
|
3370
|
+
viewBox: "0 0 25 25",
|
|
3371
|
+
fill: "none",
|
|
3372
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3373
|
+
ref,
|
|
3374
|
+
...props,
|
|
3375
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3376
|
+
d: "M12.1562 7.93179L13.9717 6.11633L20.3553 12.5L13.9717 18.8836L10.6855 18.8836M11.0283 18.8836L17.4119 12.5L11.0283 6.11633L4.64462 12.5L4.64462 18.8836L11.0283 18.8836ZM9.75153 15.0534C9.75153 15.7585 9.17992 16.3302 8.47481 16.3302C7.76969 16.3302 7.19808 15.7585 7.19808 15.0534C7.19808 14.3483 7.76969 13.7767 8.47481 13.7767C9.17992 13.7767 9.75153 14.3483 9.75153 15.0534Z",
|
|
3377
|
+
stroke: "currentColor",
|
|
3378
|
+
strokeWidth: 1.2,
|
|
3379
|
+
strokeLinejoin: "round"
|
|
3380
|
+
})
|
|
3381
|
+
});
|
|
3382
|
+
});
|
|
3383
|
+
const TerminalIcon = forwardRef(function TerminalIcon2(props, ref) {
|
|
3384
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3385
|
+
"data-sanity-icon": "terminal",
|
|
3386
|
+
width: "1em",
|
|
3387
|
+
height: "1em",
|
|
3388
|
+
viewBox: "0 0 25 25",
|
|
3389
|
+
fill: "none",
|
|
3390
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3391
|
+
ref,
|
|
3392
|
+
...props,
|
|
3393
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3394
|
+
d: "M8.5 9.5L11.5 12.5L8.5 15.5M13 15.5H17M5.5 6.5H19.5V18.5H5.5V6.5Z",
|
|
3395
|
+
stroke: "currentColor",
|
|
3396
|
+
strokeWidth: 1.2,
|
|
3397
|
+
strokeLinejoin: "round"
|
|
3398
|
+
})
|
|
3399
|
+
});
|
|
3400
|
+
});
|
|
3401
|
+
const TextIcon = forwardRef(function TextIcon2(props, ref) {
|
|
3402
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3403
|
+
"data-sanity-icon": "text",
|
|
3404
|
+
width: "1em",
|
|
3405
|
+
height: "1em",
|
|
3406
|
+
viewBox: "0 0 25 25",
|
|
3407
|
+
fill: "none",
|
|
3408
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3409
|
+
ref,
|
|
3410
|
+
...props,
|
|
3411
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3412
|
+
d: "M7.5 9V6.5H17.5V9M12.5 18.5V6.5M10 18.5H15",
|
|
3413
|
+
stroke: "currentColor",
|
|
3414
|
+
strokeWidth: 1.2,
|
|
3415
|
+
strokeLinejoin: "round"
|
|
3416
|
+
})
|
|
3417
|
+
});
|
|
3418
|
+
});
|
|
3419
|
+
const ThLargeIcon = forwardRef(function ThLargeIcon2(props, ref) {
|
|
3420
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3421
|
+
"data-sanity-icon": "th-large",
|
|
3422
|
+
width: "1em",
|
|
3423
|
+
height: "1em",
|
|
3424
|
+
viewBox: "0 0 25 25",
|
|
3425
|
+
fill: "none",
|
|
3426
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3427
|
+
ref,
|
|
3428
|
+
...props,
|
|
3429
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3430
|
+
d: "M12.5 6.5V12.5M12.5 12.5V18.5M12.5 12.5H20.5M12.5 12.5H4.5M4.5 6.5H20.5V18.5H4.5V6.5Z",
|
|
3431
|
+
stroke: "currentColor",
|
|
3432
|
+
strokeWidth: 1.2,
|
|
3433
|
+
strokeLinejoin: "round"
|
|
3434
|
+
})
|
|
3435
|
+
});
|
|
3436
|
+
});
|
|
3437
|
+
const ThListIcon = forwardRef(function ThListIcon2(props, ref) {
|
|
3438
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3439
|
+
"data-sanity-icon": "th-list",
|
|
3440
|
+
width: "1em",
|
|
3441
|
+
height: "1em",
|
|
3442
|
+
viewBox: "0 0 25 25",
|
|
3443
|
+
fill: "none",
|
|
3444
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3445
|
+
ref,
|
|
3446
|
+
...props,
|
|
3447
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3448
|
+
d: "M9.5 6.5V10.5M9.5 10.5V14.5M9.5 10.5H20.5M9.5 10.5H4.5M9.5 14.5V18.5M9.5 14.5H20.5M9.5 14.5H4.5M4.5 6.5H20.5V18.5H4.5V6.5Z",
|
|
3449
|
+
stroke: "currentColor",
|
|
3450
|
+
strokeWidth: 1.2,
|
|
3451
|
+
strokeLinejoin: "round"
|
|
3452
|
+
})
|
|
3453
|
+
});
|
|
3454
|
+
});
|
|
3455
|
+
const TiersIcon = forwardRef(function TiersIcon2(props, ref) {
|
|
3456
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3457
|
+
"data-sanity-icon": "tiers",
|
|
3458
|
+
width: "1em",
|
|
3459
|
+
height: "1em",
|
|
3460
|
+
viewBox: "0 0 25 25",
|
|
3461
|
+
fill: "none",
|
|
3462
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3463
|
+
ref,
|
|
3464
|
+
...props,
|
|
3465
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3466
|
+
d: "M16.5 14.5L20.5 16.5L12.5 20.5L4.5 16.5L8.5 14.5M16.5 10.5L20.5 12.5L12.5 16.5L4.5 12.5L8.5 10.5M12.5 12.5L20.5 8.5L12.5 4.5L4.5 8.5L12.5 12.5Z",
|
|
3467
|
+
stroke: "currentColor",
|
|
3468
|
+
strokeWidth: 1.2,
|
|
3469
|
+
strokeLinejoin: "round"
|
|
3470
|
+
})
|
|
3471
|
+
});
|
|
3472
|
+
});
|
|
3473
|
+
const ToggleArrowRightIcon = forwardRef(function ToggleArrowRightIcon2(props, ref) {
|
|
3474
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3475
|
+
"data-sanity-icon": "toggle-arrow-right",
|
|
3476
|
+
width: "1em",
|
|
3477
|
+
height: "1em",
|
|
3478
|
+
viewBox: "0 0 25 25",
|
|
3479
|
+
fill: "none",
|
|
3480
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3481
|
+
ref,
|
|
3482
|
+
...props,
|
|
3483
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3484
|
+
d: "M10 16.5V8.5L16 12.5L10 16.5Z",
|
|
3485
|
+
fill: "currentColor",
|
|
3486
|
+
stroke: "currentColor",
|
|
3487
|
+
strokeLinejoin: "round"
|
|
3488
|
+
})
|
|
3489
|
+
});
|
|
3490
|
+
});
|
|
3491
|
+
const TokenIcon = forwardRef(function TokenIcon2(props, ref) {
|
|
3492
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3493
|
+
"data-sanity-icon": "token",
|
|
3494
|
+
width: "1em",
|
|
3495
|
+
height: "1em",
|
|
3496
|
+
viewBox: "0 0 25 25",
|
|
3497
|
+
fill: "none",
|
|
3498
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3499
|
+
ref,
|
|
3500
|
+
...props,
|
|
3501
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3502
|
+
d: "M17.5711 12.5C17.5711 15.2614 15.3325 17.5 12.5711 17.5M7.57107 12.5C7.57107 9.73858 9.80964 7.5 12.5711 7.5M20.5 12.5C20.5 16.9183 16.9183 20.5 12.5 20.5C8.08172 20.5 4.5 16.9183 4.5 12.5C4.5 8.08172 8.08172 4.5 12.5 4.5C16.9183 4.5 20.5 8.08172 20.5 12.5Z",
|
|
3503
|
+
stroke: "currentColor",
|
|
3504
|
+
strokeWidth: 1.2,
|
|
3505
|
+
strokeLinejoin: "round"
|
|
3506
|
+
})
|
|
3507
|
+
});
|
|
3508
|
+
});
|
|
3509
|
+
const TransferIcon = forwardRef(function TransferIcon2(props, ref) {
|
|
3510
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3511
|
+
"data-sanity-icon": "transfer",
|
|
3512
|
+
width: "1em",
|
|
3513
|
+
height: "1em",
|
|
3514
|
+
viewBox: "0 0 25 25",
|
|
3515
|
+
fill: "none",
|
|
3516
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3517
|
+
ref,
|
|
3518
|
+
...props,
|
|
3519
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3520
|
+
d: "M19.5 16.5H6M5.5 8.5L19 8.5",
|
|
3521
|
+
stroke: "currentColor",
|
|
3522
|
+
strokeWidth: 1.2,
|
|
3523
|
+
strokeLinejoin: "round"
|
|
3524
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3525
|
+
d: "M16 13L19.5 16.5L16 20M9 12L5.5 8.5L9 5",
|
|
3526
|
+
stroke: "currentColor",
|
|
3527
|
+
strokeWidth: 1.2,
|
|
3528
|
+
strokeLinejoin: "round"
|
|
3529
|
+
})]
|
|
3530
|
+
});
|
|
3531
|
+
});
|
|
3532
|
+
const TranslateIcon = forwardRef(function TranslateIcon2(props, ref) {
|
|
3533
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3534
|
+
"data-sanity-icon": "translate",
|
|
3535
|
+
width: "1em",
|
|
3536
|
+
height: "1em",
|
|
3537
|
+
viewBox: "0 0 25 25",
|
|
3538
|
+
fill: "none",
|
|
3539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3540
|
+
ref,
|
|
3541
|
+
...props,
|
|
3542
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3543
|
+
fillRule: "evenodd",
|
|
3544
|
+
clipRule: "evenodd",
|
|
3545
|
+
d: "M9.4 5.4H4V6.6H13.2189C13.1612 6.78478 13.0895 6.99578 13.0025 7.22211C12.7032 8.00031 12.2402 8.91125 11.5757 9.57574L10 11.1515L9.42426 10.5757C8.72102 9.8725 8.25297 9.16987 7.96199 8.64611C7.81668 8.38455 7.71617 8.16874 7.65305 8.02146C7.62151 7.94787 7.59937 7.89154 7.5857 7.85534C7.57886 7.83725 7.57415 7.8242 7.57144 7.81657L7.56886 7.80922C7.56886 7.80922 7.56921 7.81026 7 8C6.43079 8.18974 6.43091 8.19009 6.43091 8.19009L6.43133 8.19135L6.43206 8.19351L6.4341 8.19948L6.44052 8.21786C6.44587 8.23292 6.45336 8.25357 6.46313 8.27942C6.48266 8.33112 6.5113 8.40369 6.55008 8.49416C6.62758 8.67501 6.74582 8.92795 6.91301 9.22889C7.24703 9.83013 7.77898 10.6275 8.57574 11.4243L9.15147 12L4.57964 16.5718L4.57655 16.5749L4.57577 16.5757L5.4243 17.4242L5.42688 17.4216L10.0368 12.8117L12.6159 14.9609L13.3841 14.0391L10.8888 11.9597L12.4243 10.4243C13.2598 9.58875 13.7968 8.49969 14.1225 7.65289C14.2818 7.23863 14.395 6.87072 14.4696 6.6H16V5.4H10.6V4H9.4V5.4ZM17.4405 10L21.553 19.7672H20.2509L19.1279 17.1H14.8721L13.7491 19.7672H12.447L16.5595 10H17.4405ZM15.3773 15.9H18.6227L17 12.0462L15.3773 15.9Z",
|
|
3546
|
+
fill: "currentColor"
|
|
3547
|
+
})
|
|
3548
|
+
});
|
|
3549
|
+
});
|
|
3550
|
+
const TrashIcon = forwardRef(function TrashIcon2(props, ref) {
|
|
3551
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3552
|
+
"data-sanity-icon": "trash",
|
|
3553
|
+
width: "1em",
|
|
3554
|
+
height: "1em",
|
|
3555
|
+
viewBox: "0 0 25 25",
|
|
3556
|
+
fill: "none",
|
|
3557
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3558
|
+
ref,
|
|
3559
|
+
...props,
|
|
3560
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3561
|
+
d: "M5 6.5H20M10 6.5V4.5C10 3.94772 10.4477 3.5 11 3.5H14C14.5523 3.5 15 3.94772 15 4.5V6.5M12.5 9V17M15.5 9L15 17M9.5 9L10 17M18.5 6.5L17.571 18.5767C17.5309 19.0977 17.0965 19.5 16.574 19.5H8.42603C7.90349 19.5 7.46905 19.0977 7.42898 18.5767L6.5 6.5H18.5Z",
|
|
3562
|
+
stroke: "currentColor",
|
|
3563
|
+
strokeWidth: 1.2,
|
|
3564
|
+
strokeLinejoin: "round"
|
|
3565
|
+
})
|
|
3566
|
+
});
|
|
3567
|
+
});
|
|
3568
|
+
const TrendUpwardIcon = forwardRef(function TrendUpwardIcon2(props, ref) {
|
|
3569
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3570
|
+
"data-sanity-icon": "trend-upward",
|
|
3571
|
+
width: "1em",
|
|
3572
|
+
height: "1em",
|
|
3573
|
+
viewBox: "0 0 25 25",
|
|
3574
|
+
fill: "none",
|
|
3575
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3576
|
+
ref,
|
|
3577
|
+
...props,
|
|
3578
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3579
|
+
d: "M4.5 18.5L11.5 10.5L13.5 14.5L20.5 6.5",
|
|
3580
|
+
stroke: "currentColor",
|
|
3581
|
+
strokeWidth: 1.2,
|
|
3582
|
+
strokeLinejoin: "round"
|
|
3583
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3584
|
+
d: "M20.5 11V6.5H16",
|
|
3585
|
+
stroke: "currentColor",
|
|
3586
|
+
strokeWidth: 1.2,
|
|
3587
|
+
strokeLinejoin: "round"
|
|
3588
|
+
})]
|
|
3589
|
+
});
|
|
3590
|
+
});
|
|
3591
|
+
const TriangleOutlineIcon = forwardRef(function TriangleOutlineIcon2(props, ref) {
|
|
3592
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3593
|
+
"data-sanity-icon": "triangle-outline",
|
|
3594
|
+
width: "1em",
|
|
3595
|
+
height: "1em",
|
|
3596
|
+
viewBox: "0 0 25 25",
|
|
3597
|
+
fill: "none",
|
|
3598
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3599
|
+
ref,
|
|
3600
|
+
...props,
|
|
3601
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3602
|
+
d: "M20.5 18.5H4.5L12.5 5.5L20.5 18.5Z",
|
|
3603
|
+
stroke: "currentColor",
|
|
3604
|
+
strokeWidth: 1.2,
|
|
3605
|
+
strokeLinejoin: "round"
|
|
3606
|
+
})
|
|
3607
|
+
});
|
|
3608
|
+
});
|
|
3609
|
+
const TrolleyIcon = forwardRef(function TrolleyIcon2(props, ref) {
|
|
3610
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3611
|
+
"data-sanity-icon": "trolley",
|
|
3612
|
+
width: "1em",
|
|
3613
|
+
height: "1em",
|
|
3614
|
+
viewBox: "0 0 25 25",
|
|
3615
|
+
fill: "none",
|
|
3616
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3617
|
+
ref,
|
|
3618
|
+
...props,
|
|
3619
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3620
|
+
d: "M8 17.5L5.81763 6.26772C5.71013 5.81757 5.30779 5.5 4.84498 5.5H3M8 17.5H17M8 17.5C8.82843 17.5 9.5 18.1716 9.5 19C9.5 19.8284 8.82843 20.5 8 20.5C7.17157 20.5 6.5 19.8284 6.5 19C6.5 18.1716 7.17157 17.5 8 17.5ZM17 17.5C17.8284 17.5 18.5 18.1716 18.5 19C18.5 19.8284 17.8284 20.5 17 20.5C16.1716 20.5 15.5 19.8284 15.5 19C15.5 18.1716 16.1716 17.5 17 17.5ZM7.78357 14.5H17.5L19 7.5H6",
|
|
3621
|
+
stroke: "currentColor",
|
|
3622
|
+
strokeWidth: 1.2,
|
|
3623
|
+
strokeLinejoin: "round"
|
|
3624
|
+
})
|
|
3625
|
+
});
|
|
3626
|
+
});
|
|
3627
|
+
const TruncateIcon = forwardRef(function TruncateIcon2(props, ref) {
|
|
3628
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3629
|
+
"data-sanity-icon": "truncate",
|
|
3630
|
+
width: "1em",
|
|
3631
|
+
height: "1em",
|
|
3632
|
+
viewBox: "0 0 25 25",
|
|
3633
|
+
fill: "none",
|
|
3634
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3635
|
+
ref,
|
|
3636
|
+
...props,
|
|
3637
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3638
|
+
d: "M5 12.5H20M8.5 19.5L12.5 15.5L16.5 19.5M16.5 5.5L12.5 9.5L8.5 5.5",
|
|
3639
|
+
stroke: "currentColor",
|
|
3640
|
+
strokeWidth: 1.2,
|
|
3641
|
+
strokeLinejoin: "round"
|
|
3642
|
+
})
|
|
3643
|
+
});
|
|
3644
|
+
});
|
|
3645
|
+
const TwitterIcon = forwardRef(function TwitterIcon2(props, ref) {
|
|
3646
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3647
|
+
"data-sanity-icon": "twitter",
|
|
3648
|
+
width: "1em",
|
|
3649
|
+
height: "1em",
|
|
3650
|
+
viewBox: "0 0 25 25",
|
|
3651
|
+
fill: "none",
|
|
3652
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3653
|
+
ref,
|
|
3654
|
+
...props,
|
|
3655
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3656
|
+
d: "M18.8738 6.65751C18.1994 5.9447 17.2445 5.5 16.1857 5.5C14.1423 5.5 12.4857 7.15655 12.4857 9.2C12.4857 9.55263 12.535 9.89374 12.6272 10.2168C7.0826 9.56422 4.55703 6.02857 4.55703 6.02857C4.55703 6.02857 4.02846 9.2 6.14274 11.3143C5.08571 11.3143 4.55703 10.7857 4.55703 10.7857C4.55703 10.7857 4.55703 13.4286 7.19989 14.4857C6.67143 15.0143 5.61417 14.4857 5.61417 14.4857C5.97533 15.9303 7.45606 16.8562 8.82133 17.1358C6.67298 19.1676 3.5 18.7143 3.5 18.7143C5.14562 19.771 7.21334 20.3 9.31429 20.3C16.1214 20.3 19.8162 15.6315 19.8848 9.37762C20.8722 8.58943 22 7.08571 22 7.08571C22 7.08571 21.277 7.45458 19.6913 7.98315C21.277 6.92601 21.4714 5.5 21.4714 5.5C21.4714 5.5 20.4135 6.55789 18.8738 6.65751Z",
|
|
3657
|
+
fill: "currentColor"
|
|
3658
|
+
})
|
|
3659
|
+
});
|
|
3660
|
+
});
|
|
3661
|
+
const UlistIcon = forwardRef(function UlistIcon2(props, ref) {
|
|
3662
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3663
|
+
"data-sanity-icon": "ulist",
|
|
3664
|
+
width: "1em",
|
|
3665
|
+
height: "1em",
|
|
3666
|
+
viewBox: "0 0 25 25",
|
|
3667
|
+
fill: "none",
|
|
3668
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3669
|
+
ref,
|
|
3670
|
+
...props,
|
|
3671
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3672
|
+
d: "M7.10153 17.5001C7.10153 17.8323 6.83221 18.1016 6.5 18.1016C6.16778 18.1016 5.89847 17.8323 5.89847 17.5001C5.89847 17.1678 6.16778 16.8985 6.5 16.8985C6.83221 16.8985 7.10153 17.1678 7.10153 17.5001Z",
|
|
3673
|
+
stroke: "currentColor",
|
|
3674
|
+
strokeWidth: 1.2,
|
|
3675
|
+
strokeLinejoin: "round"
|
|
3676
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3677
|
+
d: "M7.10153 7.5C7.10153 7.83221 6.83221 8.10153 6.5 8.10153C6.16778 8.10153 5.89847 7.83221 5.89847 7.5C5.89847 7.16778 6.16778 6.89847 6.5 6.89847C6.83221 6.89847 7.10153 7.16778 7.10153 7.5Z",
|
|
3678
|
+
stroke: "currentColor",
|
|
3679
|
+
strokeWidth: 1.2,
|
|
3680
|
+
strokeLinejoin: "round"
|
|
3681
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3682
|
+
d: "M7.10153 12.5C7.10153 12.8322 6.83221 13.1015 6.5 13.1015C6.16778 13.1015 5.89847 12.8322 5.89847 12.5C5.89847 12.1678 6.16778 11.8985 6.5 11.8985C6.83221 11.8985 7.10153 12.1678 7.10153 12.5Z",
|
|
3683
|
+
stroke: "currentColor",
|
|
3684
|
+
strokeWidth: 1.2,
|
|
3685
|
+
strokeLinejoin: "round"
|
|
3686
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3687
|
+
d: "M10 7.5H19M10 17.5H19M10 12.5H19",
|
|
3688
|
+
stroke: "currentColor",
|
|
3689
|
+
strokeWidth: 1.2,
|
|
3690
|
+
strokeLinejoin: "round"
|
|
3691
|
+
})]
|
|
3692
|
+
});
|
|
3693
|
+
});
|
|
3694
|
+
const UnderlineIcon = forwardRef(function UnderlineIcon2(props, ref) {
|
|
3695
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3696
|
+
"data-sanity-icon": "underline",
|
|
3697
|
+
width: "1em",
|
|
3698
|
+
height: "1em",
|
|
3699
|
+
viewBox: "0 0 25 25",
|
|
3700
|
+
fill: "none",
|
|
3701
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3702
|
+
ref,
|
|
3703
|
+
...props,
|
|
3704
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3705
|
+
d: "M9.52791 7.11407H8.17V14.2582C8.17 16.5817 9.79195 18.2565 12.4927 18.2565C15.1934 18.2565 16.8154 16.5817 16.8154 14.2582V7.11407H15.4574V14.1677C15.4574 15.8122 14.3787 17.0042 12.4927 17.0042C10.6067 17.0042 9.52791 15.8122 9.52791 14.1677V7.11407Z",
|
|
3706
|
+
fill: "currentColor"
|
|
3707
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3708
|
+
d: "M7 20.5H18",
|
|
3709
|
+
stroke: "currentColor",
|
|
3710
|
+
strokeWidth: 1.2,
|
|
3711
|
+
strokeLinejoin: "round"
|
|
3712
|
+
})]
|
|
3713
|
+
});
|
|
3714
|
+
});
|
|
3715
|
+
const UndoIcon = forwardRef(function UndoIcon2(props, ref) {
|
|
3716
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3717
|
+
"data-sanity-icon": "undo",
|
|
3718
|
+
width: "1em",
|
|
3719
|
+
height: "1em",
|
|
3720
|
+
viewBox: "0 0 25 25",
|
|
3721
|
+
fill: "none",
|
|
3722
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3723
|
+
ref,
|
|
3724
|
+
...props,
|
|
3725
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3726
|
+
d: "M6 9.5L15 9.5C17.4853 9.5 19.5 11.5147 19.5 14C19.5 16.4853 17.4853 18.5 15 18.5H6",
|
|
3727
|
+
stroke: "currentColor",
|
|
3728
|
+
strokeWidth: 1.2,
|
|
3729
|
+
strokeLinejoin: "round"
|
|
3730
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3731
|
+
d: "M10 13.5L6 9.5L10 5.5",
|
|
3732
|
+
stroke: "currentColor",
|
|
3733
|
+
strokeWidth: 1.2,
|
|
3734
|
+
strokeLinejoin: "round"
|
|
3735
|
+
})]
|
|
3736
|
+
});
|
|
3737
|
+
});
|
|
3738
|
+
const UnknownIcon = forwardRef(function UnknownIcon2(props, ref) {
|
|
3739
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3740
|
+
"data-sanity-icon": "unknown",
|
|
3741
|
+
width: "1em",
|
|
3742
|
+
height: "1em",
|
|
3743
|
+
viewBox: "0 0 25 25",
|
|
3744
|
+
fill: "none",
|
|
3745
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3746
|
+
ref,
|
|
3747
|
+
...props,
|
|
3748
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3749
|
+
d: "M12.5 13C12.5 11 14 11.5 14 10C14 9.34375 13.5 8.5 12.5 8.5C11.5 8.5 11 9 10.5 9.5M12.5 16V14.5M5.5 5.5H19.5V19.5H5.5V5.5Z",
|
|
3750
|
+
stroke: "currentColor",
|
|
3751
|
+
strokeWidth: 1.2,
|
|
3752
|
+
strokeLinejoin: "round"
|
|
3753
|
+
})
|
|
3754
|
+
});
|
|
3755
|
+
});
|
|
3756
|
+
const UnlockIcon = forwardRef(function UnlockIcon2(props, ref) {
|
|
3757
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3758
|
+
"data-sanity-icon": "unlock",
|
|
3759
|
+
width: "1em",
|
|
3760
|
+
height: "1em",
|
|
3761
|
+
viewBox: "0 0 25 25",
|
|
3762
|
+
fill: "none",
|
|
3763
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3764
|
+
ref,
|
|
3765
|
+
...props,
|
|
3766
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3767
|
+
d: "M9.5 11.5V8.5C9.5 6.5 8 5.5 6.5 5.5C5 5.5 3.5 6.5 3.5 8.5V11.5M7.5 11.5H17.5V19.5H7.5V11.5Z",
|
|
3768
|
+
stroke: "currentColor",
|
|
3769
|
+
strokeWidth: 1.2,
|
|
3770
|
+
strokeLinejoin: "round"
|
|
3771
|
+
})
|
|
3772
|
+
});
|
|
3773
|
+
});
|
|
3774
|
+
const UnpublishIcon = forwardRef(function UnpublishIcon2(props, ref) {
|
|
3775
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3776
|
+
"data-sanity-icon": "unpublish",
|
|
3777
|
+
width: "1em",
|
|
3778
|
+
height: "1em",
|
|
3779
|
+
viewBox: "0 0 25 25",
|
|
3780
|
+
fill: "none",
|
|
3781
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3782
|
+
ref,
|
|
3783
|
+
...props,
|
|
3784
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3785
|
+
d: "M5 19.5H20M12.5 16V5",
|
|
3786
|
+
stroke: "currentColor",
|
|
3787
|
+
strokeWidth: 1.2,
|
|
3788
|
+
strokeLinejoin: "round"
|
|
3789
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3790
|
+
d: "M17.5 11L12.5 16L7.5 11",
|
|
3791
|
+
stroke: "currentColor",
|
|
3792
|
+
strokeWidth: 1.2,
|
|
3793
|
+
strokeLinejoin: "round"
|
|
3794
|
+
})]
|
|
3795
|
+
});
|
|
3796
|
+
});
|
|
3797
|
+
const UploadIcon = forwardRef(function UploadIcon2(props, ref) {
|
|
3798
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
3799
|
+
"data-sanity-icon": "upload",
|
|
3800
|
+
width: "1em",
|
|
3801
|
+
height: "1em",
|
|
3802
|
+
viewBox: "0 0 25 25",
|
|
3803
|
+
fill: "none",
|
|
3804
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3805
|
+
ref,
|
|
3806
|
+
...props,
|
|
3807
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
3808
|
+
d: "M12.5 6.00003V15.5M5.5 15.5H19.5V19.5H5.5V15.5Z",
|
|
3809
|
+
stroke: "currentColor",
|
|
3810
|
+
strokeWidth: 1.2,
|
|
3811
|
+
strokeLinejoin: "round"
|
|
3812
|
+
}), /* @__PURE__ */jsx("path", {
|
|
3813
|
+
d: "M7.5 11L12.5 6.00003L17.5 11",
|
|
3814
|
+
stroke: "currentColor",
|
|
3815
|
+
strokeWidth: 1.2,
|
|
3816
|
+
strokeLinejoin: "round"
|
|
3817
|
+
})]
|
|
3818
|
+
});
|
|
3819
|
+
});
|
|
3820
|
+
const UserIcon = forwardRef(function UserIcon2(props, ref) {
|
|
3821
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3822
|
+
"data-sanity-icon": "user",
|
|
3823
|
+
width: "1em",
|
|
3824
|
+
height: "1em",
|
|
3825
|
+
viewBox: "0 0 25 25",
|
|
3826
|
+
fill: "none",
|
|
3827
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3828
|
+
ref,
|
|
3829
|
+
...props,
|
|
3830
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3831
|
+
d: "M8 14.5C7 15 5.5 16 5.5 19.5H19.5C19.5 16 18.3416 15.1708 17 14.5C16 14 14 14 14 12.5C14 11 15 10.25 15 8.25C15 6.25 14 5.25 12.5 5.25C11 5.25 10 6.25 10 8.25C10 10.25 11 11 11 12.5C11 14 9 14 8 14.5Z",
|
|
3832
|
+
stroke: "currentColor",
|
|
3833
|
+
strokeWidth: 1.2,
|
|
3834
|
+
strokeLinejoin: "round"
|
|
3835
|
+
})
|
|
3836
|
+
});
|
|
3837
|
+
});
|
|
3838
|
+
const UsersIcon = forwardRef(function UsersIcon2(props, ref) {
|
|
3839
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3840
|
+
"data-sanity-icon": "users",
|
|
3841
|
+
width: "1em",
|
|
3842
|
+
height: "1em",
|
|
3843
|
+
viewBox: "0 0 25 25",
|
|
3844
|
+
fill: "none",
|
|
3845
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3846
|
+
ref,
|
|
3847
|
+
...props,
|
|
3848
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3849
|
+
d: "M17.5 18.5H21.5C21.5 15 20.8416 14.1708 19.5 13.5C18.5 13 16.5 12.5 16.5 11C16.5 9.5 17.5 9 17.5 7C17.5 5 16.5 4 15 4C13.6628 4 12.723 4.79472 12.5347 6.38415M4.5 20.5C4.5 17 5.5 16 6.5 15.5C7.5 15 9.5 14.5 9.5 13C9.5 11.5 8.5 11 8.5 9C8.5 7 9.5 6 11 6C12.5 6 13.5 7 13.5 9C13.5 11 12.5 11.5 12.5 13C12.5 14.5 14.5 15 15.5 15.5C16.8416 16.1708 17.5 17 17.5 20.5H4.5Z",
|
|
3850
|
+
stroke: "currentColor",
|
|
3851
|
+
strokeWidth: 1.2,
|
|
3852
|
+
strokeLinejoin: "round"
|
|
3853
|
+
})
|
|
3854
|
+
});
|
|
3855
|
+
});
|
|
3856
|
+
const WarningFilledIcon = forwardRef(function WarningFilledIcon2(props, ref) {
|
|
3857
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3858
|
+
"data-sanity-icon": "warning-filled",
|
|
3859
|
+
width: "1em",
|
|
3860
|
+
height: "1em",
|
|
3861
|
+
viewBox: "0 0 25 25",
|
|
3862
|
+
fill: "none",
|
|
3863
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3864
|
+
ref,
|
|
3865
|
+
...props,
|
|
3866
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3867
|
+
fillRule: "evenodd",
|
|
3868
|
+
clipRule: "evenodd",
|
|
3869
|
+
d: "M14.741 5.12637C13.7357 3.41737 11.2643 3.41737 10.259 5.12637L3.7558 16.1818C2.73624 17.915 3.98595 20.1 5.99683 20.1H19.0032C21.014 20.1 22.2637 17.915 21.2442 16.1818L14.741 5.12637ZM11.9 9V13H13.1V9H11.9ZM13.1 16V14.5H11.9V16H13.1Z",
|
|
3870
|
+
fill: "currentColor"
|
|
3871
|
+
})
|
|
3872
|
+
});
|
|
3873
|
+
});
|
|
3874
|
+
const WarningOutlineIcon = forwardRef(function WarningOutlineIcon2(props, ref) {
|
|
3875
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3876
|
+
"data-sanity-icon": "warning-outline",
|
|
3877
|
+
width: "1em",
|
|
3878
|
+
height: "1em",
|
|
3879
|
+
viewBox: "0 0 25 25",
|
|
3880
|
+
fill: "none",
|
|
3881
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3882
|
+
ref,
|
|
3883
|
+
...props,
|
|
3884
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3885
|
+
d: "M12.5 9V13M12.5 16V14.5M14.2239 5.43058L20.727 16.486C21.5113 17.8192 20.55 19.5 19.0032 19.5H5.99683C4.45 19.5 3.48869 17.8192 4.27297 16.486L10.7761 5.43058C11.5494 4.11596 13.4506 4.11596 14.2239 5.43058Z",
|
|
3886
|
+
stroke: "currentColor",
|
|
3887
|
+
strokeWidth: 1.2,
|
|
3888
|
+
strokeLinejoin: "round"
|
|
3889
|
+
})
|
|
3890
|
+
});
|
|
3891
|
+
});
|
|
3892
|
+
const WrenchIcon = forwardRef(function WrenchIcon2(props, ref) {
|
|
3893
|
+
return /* @__PURE__ */jsx("svg", {
|
|
3894
|
+
"data-sanity-icon": "wrench",
|
|
3895
|
+
width: "1em",
|
|
3896
|
+
height: "1em",
|
|
3897
|
+
viewBox: "0 0 25 25",
|
|
3898
|
+
fill: "none",
|
|
3899
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3900
|
+
ref,
|
|
3901
|
+
...props,
|
|
3902
|
+
children: /* @__PURE__ */jsx("path", {
|
|
3903
|
+
d: "M17.0407 5.14624L17.4649 5.57051C17.6166 5.41887 17.6757 5.19783 17.6202 4.99071C17.5646 4.78359 17.4027 4.62189 17.1955 4.56656L17.0407 5.14624ZM14.4013 7.7856L13.977 7.36134C13.8288 7.50959 13.7687 7.72447 13.8185 7.92813L14.4013 7.7856ZM12.8778 6.26211L12.4535 5.83784V5.83784L12.8778 6.26211ZM11.8309 10.6568L12.2552 11.0811C12.4152 10.9211 12.4716 10.6847 12.401 10.4697L11.8309 10.6568ZM5.63925 16.8485L5.21498 16.4242H5.21498L5.63925 16.8485ZM5.63925 19.935L6.06351 19.5108H6.06351L5.63925 19.935ZM8.72581 19.935L9.15007 20.3593L8.72581 19.935ZM15.1184 13.5425L15.2301 12.953C15.0351 12.916 14.8344 12.9779 14.6941 13.1182L15.1184 13.5425ZM18.9718 12.3561L19.3961 12.7804L18.9718 12.3561ZM20.0877 8.19324L20.6674 8.03843C20.612 7.83125 20.4503 7.66934 20.2432 7.61375C20.0361 7.55816 19.815 7.61734 19.6634 7.76898L20.0877 8.19324ZM17.4483 10.8326L17.3058 11.4154C17.5094 11.4652 17.7243 11.4051 17.8726 11.2569L17.4483 10.8326ZM15 10.2339L14.4172 10.3764C14.4704 10.5938 14.6401 10.7635 14.8575 10.8167L15 10.2339ZM16.6164 4.72198L13.977 7.36134L14.8256 8.20986L17.4649 5.57051L16.6164 4.72198ZM13.3021 6.68637C14.2723 5.71612 15.6467 5.39501 16.8859 5.72593L17.1955 4.56656C15.5595 4.12966 13.7389 4.55245 12.4535 5.83784L13.3021 6.68637ZM12.401 10.4697C11.9779 9.18109 12.2794 7.70907 13.3021 6.68637L12.4535 5.83784C11.0985 7.19284 10.7021 9.14218 11.2608 10.844L12.401 10.4697ZM11.4066 10.2326L5.21498 16.4242L6.06351 17.2727L12.2552 11.0811L11.4066 10.2326ZM5.21498 16.4242C4.12834 17.5109 4.12834 19.2727 5.21498 20.3593L6.06351 19.5108C5.4455 18.8928 5.4455 17.8908 6.06351 17.2727L5.21498 16.4242ZM5.21498 20.3593C6.30163 21.446 8.06343 21.446 9.15007 20.3593L8.30155 19.5108C7.68353 20.1288 6.68153 20.1288 6.06351 19.5108L5.21498 20.3593ZM9.15007 20.3593L15.5426 13.9668L14.6941 13.1182L8.30155 19.5108L9.15007 20.3593ZM18.5475 11.9318C17.6463 12.8331 16.3968 13.1742 15.2301 12.953L15.0066 14.132C16.5466 14.4239 18.2023 13.9741 19.3961 12.7804L18.5475 11.9318ZM19.508 8.34804C19.8389 9.58721 19.5178 10.9616 18.5475 11.9318L19.3961 12.7804C20.6815 11.495 21.1043 9.67445 20.6674 8.03843L19.508 8.34804ZM17.8726 11.2569L20.5119 8.6175L19.6634 7.76898L17.024 10.4083L17.8726 11.2569ZM14.8575 10.8167L17.3058 11.4154L17.5908 10.2498L15.1426 9.65106L14.8575 10.8167ZM13.8185 7.92813L14.4172 10.3764L15.5829 10.0914L14.9841 7.64307L13.8185 7.92813Z",
|
|
3904
|
+
fill: "currentColor"
|
|
3905
|
+
})
|
|
3906
|
+
});
|
|
3907
|
+
});
|
|
3908
|
+
const icons = {
|
|
3909
|
+
"access-denied": AccessDeniedIcon,
|
|
3910
|
+
activity: ActivityIcon,
|
|
3911
|
+
"add-circle": AddCircleIcon,
|
|
3912
|
+
"add-comment": AddCommentIcon,
|
|
3913
|
+
add: AddIcon,
|
|
3914
|
+
api: ApiIcon,
|
|
3915
|
+
archive: ArchiveIcon,
|
|
3916
|
+
"arrow-down": ArrowDownIcon,
|
|
3917
|
+
"arrow-left": ArrowLeftIcon,
|
|
3918
|
+
"arrow-right": ArrowRightIcon,
|
|
3919
|
+
"arrow-top-right": ArrowTopRightIcon,
|
|
3920
|
+
"arrow-up": ArrowUpIcon,
|
|
3921
|
+
"bar-chart": BarChartIcon,
|
|
3922
|
+
basket: BasketIcon,
|
|
3923
|
+
bell: BellIcon,
|
|
3924
|
+
bill: BillIcon,
|
|
3925
|
+
"binary-document": BinaryDocumentIcon,
|
|
3926
|
+
"block-content": BlockContentIcon,
|
|
3927
|
+
"block-element": BlockElementIcon,
|
|
3928
|
+
blockquote: BlockquoteIcon,
|
|
3929
|
+
bold: BoldIcon,
|
|
3930
|
+
bolt: BoltIcon,
|
|
3931
|
+
book: BookIcon,
|
|
3932
|
+
bottle: BottleIcon,
|
|
3933
|
+
"bulb-filled": BulbFilledIcon,
|
|
3934
|
+
"bulb-outline": BulbOutlineIcon,
|
|
3935
|
+
calendar: CalendarIcon,
|
|
3936
|
+
case: CaseIcon,
|
|
3937
|
+
"chart-upward": ChartUpwardIcon,
|
|
3938
|
+
"checkmark-circle": CheckmarkCircleIcon,
|
|
3939
|
+
checkmark: CheckmarkIcon,
|
|
3940
|
+
"chevron-down": ChevronDownIcon,
|
|
3941
|
+
"chevron-left": ChevronLeftIcon,
|
|
3942
|
+
"chevron-right": ChevronRightIcon,
|
|
3943
|
+
"chevron-up": ChevronUpIcon,
|
|
3944
|
+
circle: CircleIcon,
|
|
3945
|
+
clipboard: ClipboardIcon,
|
|
3946
|
+
"clipboard-image": ClipboardImageIcon,
|
|
3947
|
+
clock: ClockIcon,
|
|
3948
|
+
"close-circle": CloseCircleIcon,
|
|
3949
|
+
close: CloseIcon,
|
|
3950
|
+
"code-block": CodeBlockIcon,
|
|
3951
|
+
code: CodeIcon,
|
|
3952
|
+
cog: CogIcon,
|
|
3953
|
+
collapse: CollapseIcon,
|
|
3954
|
+
"color-wheel": ColorWheelIcon,
|
|
3955
|
+
comment: CommentIcon,
|
|
3956
|
+
component: ComponentIcon,
|
|
3957
|
+
compose: ComposeIcon,
|
|
3958
|
+
controls: ControlsIcon,
|
|
3959
|
+
copy: CopyIcon,
|
|
3960
|
+
"credit-card": CreditCardIcon,
|
|
3961
|
+
crop: CropIcon,
|
|
3962
|
+
cube: CubeIcon,
|
|
3963
|
+
dashboard: DashboardIcon,
|
|
3964
|
+
database: DatabaseIcon,
|
|
3965
|
+
desktop: DesktopIcon,
|
|
3966
|
+
document: DocumentIcon,
|
|
3967
|
+
"document-pdf": DocumentPdfIcon,
|
|
3968
|
+
"document-remove": DocumentRemoveIcon,
|
|
3969
|
+
"document-sheet": DocumentSheetIcon,
|
|
3970
|
+
"document-text": DocumentTextIcon,
|
|
3971
|
+
"document-video": DocumentVideoIcon,
|
|
3972
|
+
"document-word": DocumentWordIcon,
|
|
3973
|
+
"document-zip": DocumentZipIcon,
|
|
3974
|
+
documents: DocumentsIcon,
|
|
3975
|
+
dot: DotIcon,
|
|
3976
|
+
"double-chevron-down": DoubleChevronDownIcon,
|
|
3977
|
+
"double-chevron-left": DoubleChevronLeftIcon,
|
|
3978
|
+
"double-chevron-right": DoubleChevronRightIcon,
|
|
3979
|
+
"double-chevron-up": DoubleChevronUpIcon,
|
|
3980
|
+
download: DownloadIcon,
|
|
3981
|
+
"drag-handle": DragHandleIcon,
|
|
3982
|
+
drop: DropIcon,
|
|
3983
|
+
"earth-americas": EarthAmericasIcon,
|
|
3984
|
+
"earth-globe": EarthGlobeIcon,
|
|
3985
|
+
edit: EditIcon,
|
|
3986
|
+
"ellipsis-horizontal": EllipsisHorizontalIcon,
|
|
3987
|
+
"ellipsis-vertical": EllipsisVerticalIcon,
|
|
3988
|
+
enter: EnterIcon,
|
|
3989
|
+
"enter-right": EnterRightIcon,
|
|
3990
|
+
envelope: EnvelopeIcon,
|
|
3991
|
+
equal: EqualIcon,
|
|
3992
|
+
"error-filled": ErrorFilledIcon,
|
|
3993
|
+
"error-outline": ErrorOutlineIcon,
|
|
3994
|
+
expand: ExpandIcon,
|
|
3995
|
+
"eye-closed": EyeClosedIcon,
|
|
3996
|
+
"eye-open": EyeOpenIcon,
|
|
3997
|
+
filter: FilterIcon,
|
|
3998
|
+
folder: FolderIcon,
|
|
3999
|
+
generate: GenerateIcon,
|
|
4000
|
+
groq: GroqIcon,
|
|
4001
|
+
"heart-filled": HeartFilledIcon,
|
|
4002
|
+
heart: HeartIcon,
|
|
4003
|
+
"help-circle": HelpCircleIcon,
|
|
4004
|
+
home: HomeIcon,
|
|
4005
|
+
"ice-cream": IceCreamIcon,
|
|
4006
|
+
image: ImageIcon,
|
|
4007
|
+
"image-remove": ImageRemoveIcon,
|
|
4008
|
+
images: ImagesIcon,
|
|
4009
|
+
"info-filled": InfoFilledIcon,
|
|
4010
|
+
"info-outline": InfoOutlineIcon,
|
|
4011
|
+
"inline-element": InlineElementIcon,
|
|
4012
|
+
inline: InlineIcon,
|
|
4013
|
+
"insert-above": InsertAboveIcon,
|
|
4014
|
+
"insert-below": InsertBelowIcon,
|
|
4015
|
+
italic: ItalicIcon,
|
|
4016
|
+
joystick: JoystickIcon,
|
|
4017
|
+
json: JsonIcon,
|
|
4018
|
+
launch: LaunchIcon,
|
|
4019
|
+
leave: LeaveIcon,
|
|
4020
|
+
lemon: LemonIcon,
|
|
4021
|
+
link: LinkIcon,
|
|
4022
|
+
"link-removed": LinkRemovedIcon,
|
|
4023
|
+
lock: LockIcon,
|
|
4024
|
+
"logo-js": LogoJsIcon,
|
|
4025
|
+
"logo-ts": LogoTsIcon,
|
|
4026
|
+
"master-detail": MasterDetailIcon,
|
|
4027
|
+
menu: MenuIcon,
|
|
4028
|
+
"mobile-device": MobileDeviceIcon,
|
|
4029
|
+
moon: MoonIcon,
|
|
4030
|
+
number: NumberIcon,
|
|
4031
|
+
"ok-hand": OkHandIcon,
|
|
4032
|
+
olist: OlistIcon,
|
|
4033
|
+
overage: OverageIcon,
|
|
4034
|
+
package: PackageIcon,
|
|
4035
|
+
"panel-left": PanelLeftIcon,
|
|
4036
|
+
"panel-right": PanelRightIcon,
|
|
4037
|
+
pause: PauseIcon,
|
|
4038
|
+
pin: PinIcon,
|
|
4039
|
+
"pin-removed": PinRemovedIcon,
|
|
4040
|
+
play: PlayIcon,
|
|
4041
|
+
plug: PlugIcon,
|
|
4042
|
+
presentation: PresentationIcon,
|
|
4043
|
+
publish: PublishIcon,
|
|
4044
|
+
"read-only": ReadOnlyIcon,
|
|
4045
|
+
redo: RedoIcon,
|
|
4046
|
+
refresh: RefreshIcon,
|
|
4047
|
+
"remove-circle": RemoveCircleIcon,
|
|
4048
|
+
remove: RemoveIcon,
|
|
4049
|
+
reset: ResetIcon,
|
|
4050
|
+
restore: RestoreIcon,
|
|
4051
|
+
retrieve: RetrieveIcon,
|
|
4052
|
+
retry: RetryIcon,
|
|
4053
|
+
revert: RevertIcon,
|
|
4054
|
+
robot: RobotIcon,
|
|
4055
|
+
rocket: RocketIcon,
|
|
4056
|
+
schema: SchemaIcon,
|
|
4057
|
+
search: SearchIcon,
|
|
4058
|
+
select: SelectIcon,
|
|
4059
|
+
share: ShareIcon,
|
|
4060
|
+
sort: SortIcon,
|
|
4061
|
+
sparkle: SparkleIcon,
|
|
4062
|
+
sparkles: SparklesIcon,
|
|
4063
|
+
spinner: SpinnerIcon,
|
|
4064
|
+
"split-horizontal": SplitHorizontalIcon,
|
|
4065
|
+
"split-vertical": SplitVerticalIcon,
|
|
4066
|
+
square: SquareIcon,
|
|
4067
|
+
"stack-compact": StackCompactIcon,
|
|
4068
|
+
stack: StackIcon,
|
|
4069
|
+
star: StarIcon,
|
|
4070
|
+
stop: StopIcon,
|
|
4071
|
+
strikethrough: StrikethroughIcon,
|
|
4072
|
+
string: StringIcon,
|
|
4073
|
+
sun: SunIcon,
|
|
4074
|
+
sync: SyncIcon,
|
|
4075
|
+
"tablet-device": TabletDeviceIcon,
|
|
4076
|
+
tag: TagIcon,
|
|
4077
|
+
tags: TagsIcon,
|
|
4078
|
+
terminal: TerminalIcon,
|
|
4079
|
+
text: TextIcon,
|
|
4080
|
+
"th-large": ThLargeIcon,
|
|
4081
|
+
"th-list": ThListIcon,
|
|
4082
|
+
tiers: TiersIcon,
|
|
4083
|
+
"toggle-arrow-right": ToggleArrowRightIcon,
|
|
4084
|
+
token: TokenIcon,
|
|
4085
|
+
transfer: TransferIcon,
|
|
4086
|
+
translate: TranslateIcon,
|
|
4087
|
+
trash: TrashIcon,
|
|
4088
|
+
"trend-upward": TrendUpwardIcon,
|
|
4089
|
+
"triangle-outline": TriangleOutlineIcon,
|
|
4090
|
+
trolley: TrolleyIcon,
|
|
4091
|
+
truncate: TruncateIcon,
|
|
4092
|
+
twitter: TwitterIcon,
|
|
4093
|
+
ulist: UlistIcon,
|
|
4094
|
+
underline: UnderlineIcon,
|
|
4095
|
+
undo: UndoIcon,
|
|
4096
|
+
unknown: UnknownIcon,
|
|
4097
|
+
unlock: UnlockIcon,
|
|
4098
|
+
unpublish: UnpublishIcon,
|
|
4099
|
+
upload: UploadIcon,
|
|
4100
|
+
user: UserIcon,
|
|
4101
|
+
users: UsersIcon,
|
|
4102
|
+
"warning-filled": WarningFilledIcon,
|
|
4103
|
+
"warning-outline": WarningOutlineIcon,
|
|
4104
|
+
wrench: WrenchIcon
|
|
4105
|
+
};
|
|
4106
|
+
forwardRef(function Icon2(props, ref) {
|
|
4107
|
+
const {
|
|
4108
|
+
symbol,
|
|
4109
|
+
...restProps
|
|
4110
|
+
} = props;
|
|
4111
|
+
const iconComponent = icons[symbol];
|
|
4112
|
+
if (!iconComponent) {
|
|
4113
|
+
return null;
|
|
4114
|
+
}
|
|
4115
|
+
return createElement(iconComponent, {
|
|
4116
|
+
...restProps,
|
|
4117
|
+
ref
|
|
4118
|
+
});
|
|
4119
|
+
});
|
|
4120
|
+
function LanguageInput(props) {
|
|
4121
|
+
const {
|
|
4122
|
+
language,
|
|
4123
|
+
languages,
|
|
4124
|
+
onChange
|
|
4125
|
+
} = props;
|
|
4126
|
+
const handleChange = useCallback(e => {
|
|
4127
|
+
const newValue = e.currentTarget.value;
|
|
4128
|
+
onChange(newValue ? set(newValue) : unset());
|
|
4129
|
+
}, [onChange]);
|
|
4130
|
+
return /* @__PURE__ */jsx(Select, {
|
|
4131
|
+
...props,
|
|
4132
|
+
value: language,
|
|
4133
|
+
onChange: handleChange,
|
|
4134
|
+
children: languages.map(lang => /* @__PURE__ */jsx("option", {
|
|
4135
|
+
value: lang.value,
|
|
4136
|
+
children: lang.title
|
|
4137
|
+
}, lang.value))
|
|
4138
|
+
});
|
|
4139
|
+
}
|
|
4140
|
+
function LanguageField(props) {
|
|
4141
|
+
const {
|
|
4142
|
+
member,
|
|
4143
|
+
languages,
|
|
4144
|
+
language,
|
|
4145
|
+
renderItem,
|
|
4146
|
+
renderField,
|
|
4147
|
+
renderPreview
|
|
4148
|
+
} = props;
|
|
4149
|
+
const renderInput = useCallback(inputProps => {
|
|
4150
|
+
return /* @__PURE__ */jsx(LanguageInput, {
|
|
4151
|
+
...inputProps,
|
|
4152
|
+
language,
|
|
4153
|
+
languages
|
|
4154
|
+
});
|
|
4155
|
+
}, [languages, language]);
|
|
4156
|
+
return /* @__PURE__ */jsx(MemberField, {
|
|
4157
|
+
member,
|
|
4158
|
+
renderItem,
|
|
4159
|
+
renderField,
|
|
4160
|
+
renderInput,
|
|
4161
|
+
renderPreview
|
|
4162
|
+
});
|
|
4163
|
+
}
|
|
4164
|
+
const CodeMirrorProxy = lazy(() => import('./CodeMirrorProxy-6jTWWQ83.js'));
|
|
4165
|
+
function useCodeMirror() {
|
|
4166
|
+
const [mounted, setMounted] = useState(false);
|
|
4167
|
+
useEffect(() => {
|
|
4168
|
+
requestAnimationFrame(() => setMounted(true));
|
|
4169
|
+
}, []);
|
|
4170
|
+
return mounted ? CodeMirrorProxy : null;
|
|
4171
|
+
}
|
|
4172
|
+
const SUPPORTED_LANGUAGES = [{
|
|
4173
|
+
title: "Batch file",
|
|
4174
|
+
value: "batchfile"
|
|
4175
|
+
}, {
|
|
4176
|
+
title: "C#",
|
|
4177
|
+
value: "csharp"
|
|
4178
|
+
}, {
|
|
4179
|
+
title: "CSS",
|
|
4180
|
+
value: "css"
|
|
4181
|
+
}, {
|
|
4182
|
+
title: "Go",
|
|
4183
|
+
value: "golang"
|
|
4184
|
+
}, {
|
|
4185
|
+
title: "GROQ",
|
|
4186
|
+
value: "groq"
|
|
4187
|
+
}, {
|
|
4188
|
+
title: "HTML",
|
|
4189
|
+
value: "html"
|
|
4190
|
+
}, {
|
|
4191
|
+
title: "Java",
|
|
4192
|
+
value: "java"
|
|
4193
|
+
}, {
|
|
4194
|
+
title: "JavaScript",
|
|
4195
|
+
value: "javascript"
|
|
4196
|
+
}, {
|
|
4197
|
+
title: "JSON",
|
|
4198
|
+
value: "json"
|
|
4199
|
+
}, {
|
|
4200
|
+
title: "JSX",
|
|
4201
|
+
value: "jsx"
|
|
4202
|
+
}, {
|
|
4203
|
+
title: "Markdown",
|
|
4204
|
+
value: "markdown"
|
|
4205
|
+
}, {
|
|
4206
|
+
title: "MySQL",
|
|
4207
|
+
value: "mysql"
|
|
4208
|
+
}, {
|
|
4209
|
+
title: "PHP",
|
|
4210
|
+
value: "php"
|
|
4211
|
+
}, {
|
|
4212
|
+
title: "Plain text",
|
|
4213
|
+
value: "text"
|
|
4214
|
+
}, {
|
|
4215
|
+
title: "Python",
|
|
4216
|
+
value: "python"
|
|
4217
|
+
}, {
|
|
4218
|
+
title: "Ruby",
|
|
4219
|
+
value: "ruby"
|
|
4220
|
+
}, {
|
|
4221
|
+
title: "SASS",
|
|
4222
|
+
value: "sass"
|
|
4223
|
+
}, {
|
|
4224
|
+
title: "SCSS",
|
|
4225
|
+
value: "scss"
|
|
4226
|
+
}, {
|
|
4227
|
+
title: "sh",
|
|
4228
|
+
value: "sh"
|
|
4229
|
+
}, {
|
|
4230
|
+
title: "TSX",
|
|
4231
|
+
value: "tsx"
|
|
4232
|
+
}, {
|
|
4233
|
+
title: "TypeScript",
|
|
4234
|
+
value: "typescript"
|
|
4235
|
+
}, {
|
|
4236
|
+
title: "XML",
|
|
4237
|
+
value: "xml"
|
|
4238
|
+
}, {
|
|
4239
|
+
title: "YAML",
|
|
4240
|
+
value: "yaml"
|
|
4241
|
+
}];
|
|
4242
|
+
const LANGUAGE_ALIASES = {
|
|
4243
|
+
js: "javascript"
|
|
4244
|
+
};
|
|
4245
|
+
const PATH_CODE = ["code"];
|
|
4246
|
+
const defaultLanguageMode = "text";
|
|
4247
|
+
function useLanguageMode(schemaType, value) {
|
|
4248
|
+
var _a, _b, _c, _d, _e;
|
|
4249
|
+
const languages = useLanguageAlternatives(schemaType);
|
|
4250
|
+
const fixedLanguage = (_a = schemaType.options) == null ? void 0 : _a.language;
|
|
4251
|
+
const language = (_c = (_b = value == null ? void 0 : value.language) != null ? _b : fixedLanguage) != null ? _c : defaultLanguageMode;
|
|
4252
|
+
const configured = languages.find(entry => entry.value === language);
|
|
4253
|
+
const languageMode = (_e = (_d = configured == null ? void 0 : configured.mode) != null ? _d : resolveAliasedLanguage(language)) != null ? _e : defaultLanguageMode;
|
|
4254
|
+
return {
|
|
4255
|
+
language,
|
|
4256
|
+
languageMode,
|
|
4257
|
+
languages
|
|
4258
|
+
};
|
|
4259
|
+
}
|
|
4260
|
+
function resolveAliasedLanguage(lang) {
|
|
4261
|
+
var _a;
|
|
4262
|
+
return (_a = lang && LANGUAGE_ALIASES[lang]) != null ? _a : lang;
|
|
4263
|
+
}
|
|
4264
|
+
function useLanguageAlternatives(type) {
|
|
4265
|
+
return useMemo(() => {
|
|
4266
|
+
var _a;
|
|
4267
|
+
const languageAlternatives = (_a = type.options) == null ? void 0 : _a.languageAlternatives;
|
|
4268
|
+
if (!languageAlternatives) {
|
|
4269
|
+
return SUPPORTED_LANGUAGES;
|
|
4270
|
+
}
|
|
4271
|
+
if (!Array.isArray(languageAlternatives)) {
|
|
4272
|
+
throw new Error("'options.languageAlternatives' should be an array, got ".concat(typeof languageAlternatives));
|
|
4273
|
+
}
|
|
4274
|
+
return languageAlternatives.reduce((acc, _ref) => {
|
|
4275
|
+
let {
|
|
4276
|
+
title,
|
|
4277
|
+
value: val,
|
|
4278
|
+
mode
|
|
4279
|
+
} = _ref;
|
|
4280
|
+
const alias = LANGUAGE_ALIASES[val];
|
|
4281
|
+
if (alias) {
|
|
4282
|
+
console.warn('\'options.languageAlternatives\' lists a language with value "%s", which is an alias of "%s" - please replace the value to read "%s"', val, alias, alias);
|
|
4283
|
+
return acc.concat({
|
|
4284
|
+
title,
|
|
4285
|
+
value: alias,
|
|
4286
|
+
mode
|
|
4287
|
+
});
|
|
4288
|
+
}
|
|
4289
|
+
return acc.concat({
|
|
4290
|
+
title,
|
|
4291
|
+
value: val,
|
|
4292
|
+
mode
|
|
4293
|
+
});
|
|
4294
|
+
}, []);
|
|
4295
|
+
}, [type]);
|
|
4296
|
+
}
|
|
4297
|
+
function useFieldMember(members, fieldName) {
|
|
4298
|
+
return useMemo(() => members.find(member => member.kind === "field" && member.name === fieldName), [members, fieldName]);
|
|
4299
|
+
}
|
|
4300
|
+
function focusRingBorderStyle(border) {
|
|
4301
|
+
return "inset 0 0 0 ".concat(border.width, "px ").concat(border.color);
|
|
4302
|
+
}
|
|
4303
|
+
function focusRingStyle(opts) {
|
|
4304
|
+
const {
|
|
4305
|
+
base,
|
|
4306
|
+
border,
|
|
4307
|
+
focusRing
|
|
4308
|
+
} = opts;
|
|
4309
|
+
const focusRingOutsetWidth = focusRing.offset + focusRing.width;
|
|
4310
|
+
const focusRingInsetWidth = 0 - focusRing.offset;
|
|
4311
|
+
const bgColor = base ? base.bg : "var(--card-bg-color)";
|
|
4312
|
+
return [focusRingInsetWidth > 0 && "inset 0 0 0 ".concat(focusRingInsetWidth, "px var(--card-focus-ring-color)"), border && focusRingBorderStyle(border), focusRingInsetWidth < 0 && "0 0 0 ".concat(0 - focusRingInsetWidth, "px ").concat(bgColor), focusRingOutsetWidth > 0 && "0 0 0 ".concat(focusRingOutsetWidth, "px var(--card-focus-ring-color)")].filter(Boolean).join(",");
|
|
4313
|
+
}
|
|
4314
|
+
var __freeze$1 = Object.freeze;
|
|
4315
|
+
var __defProp$1 = Object.defineProperty;
|
|
4316
|
+
var __template$1 = (cooked, raw) => __freeze$1(__defProp$1(cooked, "raw", {
|
|
4317
|
+
value: __freeze$1(raw || cooked.slice())
|
|
4318
|
+
}));
|
|
4319
|
+
var _a$1;
|
|
4320
|
+
const EditorContainer = styled(Card)(_ref2 => {
|
|
4321
|
+
let {
|
|
4322
|
+
theme
|
|
4323
|
+
} = _ref2;
|
|
4324
|
+
const {
|
|
4325
|
+
focusRing,
|
|
4326
|
+
input
|
|
4327
|
+
} = theme.sanity;
|
|
4328
|
+
const base = theme.sanity.color.base;
|
|
4329
|
+
const color = theme.sanity.color.input;
|
|
4330
|
+
const border = {
|
|
4331
|
+
color: color.default.enabled.border,
|
|
4332
|
+
width: input.border.width
|
|
4333
|
+
};
|
|
4334
|
+
return css(_a$1 || (_a$1 = __template$1(["\n --input-box-shadow: ", ";\n\n box-shadow: var(--input-box-shadow);\n height: 250px;\n min-height: 80px;\n overflow-y: auto;\n position: relative;\n resize: vertical;\n z-index: 0;\n\n & > .cm-theme {\n height: 100%;\n }\n\n &:focus-within {\n --input-box-shadow: ", ";\n }\n "])), focusRingBorderStyle(border), focusRingStyle({
|
|
4335
|
+
base,
|
|
4336
|
+
border,
|
|
4337
|
+
focusRing
|
|
4338
|
+
}));
|
|
4339
|
+
});
|
|
4340
|
+
function CodeInput(props) {
|
|
4341
|
+
var _a2;
|
|
4342
|
+
const {
|
|
4343
|
+
members,
|
|
4344
|
+
elementProps,
|
|
4345
|
+
onChange,
|
|
4346
|
+
readOnly,
|
|
4347
|
+
renderField,
|
|
4348
|
+
renderInput,
|
|
4349
|
+
renderItem,
|
|
4350
|
+
renderPreview,
|
|
4351
|
+
schemaType: type,
|
|
4352
|
+
value,
|
|
4353
|
+
onPathFocus
|
|
4354
|
+
} = props;
|
|
4355
|
+
const languageFieldMember = useFieldMember(members, "language");
|
|
4356
|
+
const filenameMember = useFieldMember(members, "filename");
|
|
4357
|
+
const codeFieldMember = useFieldMember(members, "code");
|
|
4358
|
+
const handleCodeFocus = useCallback(() => {
|
|
4359
|
+
onPathFocus(PATH_CODE);
|
|
4360
|
+
}, [onPathFocus]);
|
|
4361
|
+
const onHighlightChange = useCallback(lines => onChange(set(lines, ["highlightedLines"])), [onChange]);
|
|
4362
|
+
const handleCodeChange = useCallback(code => {
|
|
4363
|
+
var _a3;
|
|
4364
|
+
const path = PATH_CODE;
|
|
4365
|
+
const fixedLanguage = (_a3 = type.options) == null ? void 0 : _a3.language;
|
|
4366
|
+
onChange([setIfMissing({
|
|
4367
|
+
_type: type.name,
|
|
4368
|
+
language: fixedLanguage
|
|
4369
|
+
}), code ? set(code, path) : unset(path)]);
|
|
4370
|
+
}, [onChange, type]);
|
|
4371
|
+
const {
|
|
4372
|
+
languages,
|
|
4373
|
+
language,
|
|
4374
|
+
languageMode
|
|
4375
|
+
} = useLanguageMode(props.schemaType, props.value);
|
|
4376
|
+
const CodeMirror = useCodeMirror();
|
|
4377
|
+
const renderCodeInput = useCallback(inputProps => {
|
|
4378
|
+
return /* @__PURE__ */jsx(EditorContainer, {
|
|
4379
|
+
border: true,
|
|
4380
|
+
overflow: "hidden",
|
|
4381
|
+
radius: 1,
|
|
4382
|
+
sizing: "border",
|
|
4383
|
+
readOnly,
|
|
4384
|
+
children: CodeMirror && /* @__PURE__ */jsx(Suspense, {
|
|
4385
|
+
fallback: /* @__PURE__ */jsx(Box, {
|
|
4386
|
+
padding: 3,
|
|
4387
|
+
children: /* @__PURE__ */jsx(Text, {
|
|
4388
|
+
children: "Loading code editor..."
|
|
4389
|
+
})
|
|
4390
|
+
}),
|
|
4391
|
+
children: /* @__PURE__ */jsx(CodeMirror, {
|
|
4392
|
+
languageMode,
|
|
4393
|
+
onChange: handleCodeChange,
|
|
4394
|
+
value: inputProps.value,
|
|
4395
|
+
highlightLines: value == null ? void 0 : value.highlightedLines,
|
|
4396
|
+
onHighlightChange,
|
|
4397
|
+
readOnly,
|
|
4398
|
+
onFocus: handleCodeFocus,
|
|
4399
|
+
onBlur: elementProps.onBlur
|
|
4400
|
+
})
|
|
4401
|
+
})
|
|
4402
|
+
});
|
|
4403
|
+
}, [CodeMirror, handleCodeChange, handleCodeFocus, onHighlightChange, languageMode, elementProps.onBlur, readOnly, value]);
|
|
4404
|
+
return /* @__PURE__ */jsxs(Stack, {
|
|
4405
|
+
space: 4,
|
|
4406
|
+
children: [languageFieldMember && /* @__PURE__ */jsx(LanguageField, {
|
|
4407
|
+
member: languageFieldMember,
|
|
4408
|
+
language,
|
|
4409
|
+
languages,
|
|
4410
|
+
renderField,
|
|
4411
|
+
renderItem,
|
|
4412
|
+
renderInput,
|
|
4413
|
+
renderPreview
|
|
4414
|
+
}), ((_a2 = type.options) == null ? void 0 : _a2.withFilename) && filenameMember && /* @__PURE__ */jsx(MemberField, {
|
|
4415
|
+
member: filenameMember,
|
|
4416
|
+
renderItem,
|
|
4417
|
+
renderField,
|
|
4418
|
+
renderInput,
|
|
4419
|
+
renderPreview
|
|
4420
|
+
}), codeFieldMember && /* @__PURE__ */jsx(MemberField, {
|
|
4421
|
+
member: codeFieldMember,
|
|
4422
|
+
renderInput: renderCodeInput,
|
|
4423
|
+
renderItem,
|
|
4424
|
+
renderField,
|
|
4425
|
+
renderPreview
|
|
4426
|
+
})]
|
|
4427
|
+
});
|
|
4428
|
+
}
|
|
4429
|
+
var __freeze = Object.freeze;
|
|
4430
|
+
var __defProp = Object.defineProperty;
|
|
4431
|
+
var __template = (cooked, raw) => __freeze(__defProp(cooked, "raw", {
|
|
4432
|
+
value: __freeze(raw || cooked.slice())
|
|
4433
|
+
}));
|
|
4434
|
+
var _a;
|
|
4435
|
+
const PreviewContainer = styled(Box)(_a || (_a = __template(["\n position: relative;\n"])));
|
|
4436
|
+
function PreviewCode(props) {
|
|
4437
|
+
const {
|
|
4438
|
+
selection,
|
|
4439
|
+
schemaType: type
|
|
4440
|
+
} = props;
|
|
4441
|
+
const {
|
|
4442
|
+
languageMode
|
|
4443
|
+
} = useLanguageMode(type, props.selection);
|
|
4444
|
+
const CodeMirror = useCodeMirror();
|
|
4445
|
+
return /* @__PURE__ */jsx(PreviewContainer, {
|
|
4446
|
+
children: /* @__PURE__ */jsxs(Card, {
|
|
4447
|
+
padding: 4,
|
|
4448
|
+
children: [(selection == null ? void 0 : selection.filename) || (selection == null ? void 0 : selection.language) ? /* @__PURE__ */jsx(Card, {
|
|
4449
|
+
paddingBottom: 4,
|
|
4450
|
+
marginBottom: selection.code ? 4 : 0,
|
|
4451
|
+
borderBottom: !!selection.code,
|
|
4452
|
+
children: /* @__PURE__ */jsxs(Flex, {
|
|
4453
|
+
align: "center",
|
|
4454
|
+
justify: "flex-end",
|
|
4455
|
+
children: [(selection == null ? void 0 : selection.filename) ? /* @__PURE__ */jsx(Box, {
|
|
4456
|
+
flex: 1,
|
|
4457
|
+
children: /* @__PURE__ */jsx(Text, {
|
|
4458
|
+
children: /* @__PURE__ */jsx("code", {
|
|
4459
|
+
children: selection.filename
|
|
4460
|
+
})
|
|
4461
|
+
})
|
|
4462
|
+
}) : null, (selection == null ? void 0 : selection.language) ? /* @__PURE__ */jsx(Label, {
|
|
4463
|
+
muted: true,
|
|
4464
|
+
children: selection.language
|
|
4465
|
+
}) : null]
|
|
4466
|
+
})
|
|
4467
|
+
}) : null, CodeMirror && /* @__PURE__ */jsx(Suspense, {
|
|
4468
|
+
fallback: /* @__PURE__ */jsx(Card, {
|
|
4469
|
+
padding: 2,
|
|
4470
|
+
children: "Loading code preview..."
|
|
4471
|
+
}),
|
|
4472
|
+
children: /* @__PURE__ */jsx(CodeMirror, {
|
|
4473
|
+
readOnly: true,
|
|
4474
|
+
editable: false,
|
|
4475
|
+
value: (selection == null ? void 0 : selection.code) || "",
|
|
4476
|
+
highlightLines: (selection == null ? void 0 : selection.highlightedLines) || [],
|
|
4477
|
+
basicSetup: {
|
|
4478
|
+
lineNumbers: false,
|
|
4479
|
+
foldGutter: false,
|
|
4480
|
+
highlightSelectionMatches: false,
|
|
4481
|
+
highlightActiveLineGutter: false,
|
|
4482
|
+
highlightActiveLine: false
|
|
4483
|
+
},
|
|
4484
|
+
languageMode
|
|
4485
|
+
})
|
|
4486
|
+
})]
|
|
4487
|
+
})
|
|
4488
|
+
});
|
|
4489
|
+
}
|
|
4490
|
+
function getMedia(language) {
|
|
4491
|
+
if (language === "jsx") {
|
|
4492
|
+
return /* @__PURE__ */jsx("svg", {
|
|
4493
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4494
|
+
viewBox: "0 0 128 128",
|
|
4495
|
+
children: /* @__PURE__ */jsxs("g", {
|
|
4496
|
+
fill: "#61DAFB",
|
|
4497
|
+
children: [/* @__PURE__ */jsx("circle", {
|
|
4498
|
+
cx: "64",
|
|
4499
|
+
cy: "64",
|
|
4500
|
+
r: "11.4"
|
|
4501
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4502
|
+
d: "M107.3 45.2c-2.2-.8-4.5-1.6-6.9-2.3.6-2.4 1.1-4.8 1.5-7.1 2.1-13.2-.2-22.5-6.6-26.1-1.9-1.1-4-1.6-6.4-1.6-7 0-15.9 5.2-24.9 13.9-9-8.7-17.9-13.9-24.9-13.9-2.4 0-4.5.5-6.4 1.6-6.4 3.7-8.7 13-6.6 26.1.4 2.3.9 4.7 1.5 7.1-2.4.7-4.7 1.4-6.9 2.3C8.2 50 1.4 56.6 1.4 64s6.9 14 19.3 18.8c2.2.8 4.5 1.6 6.9 2.3-.6 2.4-1.1 4.8-1.5 7.1-2.1 13.2.2 22.5 6.6 26.1 1.9 1.1 4 1.6 6.4 1.6 7.1 0 16-5.2 24.9-13.9 9 8.7 17.9 13.9 24.9 13.9 2.4 0 4.5-.5 6.4-1.6 6.4-3.7 8.7-13 6.6-26.1-.4-2.3-.9-4.7-1.5-7.1 2.4-.7 4.7-1.4 6.9-2.3 12.5-4.8 19.3-11.4 19.3-18.8s-6.8-14-19.3-18.8zM92.5 14.7c4.1 2.4 5.5 9.8 3.8 20.3-.3 2.1-.8 4.3-1.4 6.6-5.2-1.2-10.7-2-16.5-2.5-3.4-4.8-6.9-9.1-10.4-13 7.4-7.3 14.9-12.3 21-12.3 1.3 0 2.5.3 3.5.9zM81.3 74c-1.8 3.2-3.9 6.4-6.1 9.6-3.7.3-7.4.4-11.2.4-3.9 0-7.6-.1-11.2-.4-2.2-3.2-4.2-6.4-6-9.6-1.9-3.3-3.7-6.7-5.3-10 1.6-3.3 3.4-6.7 5.3-10 1.8-3.2 3.9-6.4 6.1-9.6 3.7-.3 7.4-.4 11.2-.4 3.9 0 7.6.1 11.2.4 2.2 3.2 4.2 6.4 6 9.6 1.9 3.3 3.7 6.7 5.3 10-1.7 3.3-3.4 6.6-5.3 10zm8.3-3.3c1.5 3.5 2.7 6.9 3.8 10.3-3.4.8-7 1.4-10.8 1.9 1.2-1.9 2.5-3.9 3.6-6 1.2-2.1 2.3-4.2 3.4-6.2zM64 97.8c-2.4-2.6-4.7-5.4-6.9-8.3 2.3.1 4.6.2 6.9.2 2.3 0 4.6-.1 6.9-.2-2.2 2.9-4.5 5.7-6.9 8.3zm-18.6-15c-3.8-.5-7.4-1.1-10.8-1.9 1.1-3.3 2.3-6.8 3.8-10.3 1.1 2 2.2 4.1 3.4 6.1 1.2 2.2 2.4 4.1 3.6 6.1zm-7-25.5c-1.5-3.5-2.7-6.9-3.8-10.3 3.4-.8 7-1.4 10.8-1.9-1.2 1.9-2.5 3.9-3.6 6-1.2 2.1-2.3 4.2-3.4 6.2zM64 30.2c2.4 2.6 4.7 5.4 6.9 8.3-2.3-.1-4.6-.2-6.9-.2-2.3 0-4.6.1-6.9.2 2.2-2.9 4.5-5.7 6.9-8.3zm22.2 21l-3.6-6c3.8.5 7.4 1.1 10.8 1.9-1.1 3.3-2.3 6.8-3.8 10.3-1.1-2.1-2.2-4.2-3.4-6.2zM31.7 35c-1.7-10.5-.3-17.9 3.8-20.3 1-.6 2.2-.9 3.5-.9 6 0 13.5 4.9 21 12.3-3.5 3.8-7 8.2-10.4 13-5.8.5-11.3 1.4-16.5 2.5-.6-2.3-1-4.5-1.4-6.6zM7 64c0-4.7 5.7-9.7 15.7-13.4 2-.8 4.2-1.5 6.4-2.1 1.6 5 3.6 10.3 6 15.6-2.4 5.3-4.5 10.5-6 15.5C15.3 75.6 7 69.6 7 64zm28.5 49.3c-4.1-2.4-5.5-9.8-3.8-20.3.3-2.1.8-4.3 1.4-6.6 5.2 1.2 10.7 2 16.5 2.5 3.4 4.8 6.9 9.1 10.4 13-7.4 7.3-14.9 12.3-21 12.3-1.3 0-2.5-.3-3.5-.9zM96.3 93c1.7 10.5.3 17.9-3.8 20.3-1 .6-2.2.9-3.5.9-6 0-13.5-4.9-21-12.3 3.5-3.8 7-8.2 10.4-13 5.8-.5 11.3-1.4 16.5-2.5.6 2.3 1 4.5 1.4 6.6zm9-15.6c-2 .8-4.2 1.5-6.4 2.1-1.6-5-3.6-10.3-6-15.6 2.4-5.3 4.5-10.5 6-15.5 13.8 4 22.1 10 22.1 15.6 0 4.7-5.8 9.7-15.7 13.4z"
|
|
4503
|
+
})]
|
|
4504
|
+
})
|
|
4505
|
+
});
|
|
4506
|
+
}
|
|
4507
|
+
if (language === "javascript") {
|
|
4508
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
4509
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4510
|
+
viewBox: "0 0 128 128",
|
|
4511
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
4512
|
+
fill: "#F0DB4F",
|
|
4513
|
+
d: "M1.408 1.408h125.184v125.185H1.408z"
|
|
4514
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4515
|
+
fill: "#323330",
|
|
4516
|
+
d: "M116.347 96.736c-.917-5.711-4.641-10.508-15.672-14.981-3.832-1.761-8.104-3.022-9.377-5.926-.452-1.69-.512-2.642-.226-3.665.821-3.32 4.784-4.355 7.925-3.403 2.023.678 3.938 2.237 5.093 4.724 5.402-3.498 5.391-3.475 9.163-5.879-1.381-2.141-2.118-3.129-3.022-4.045-3.249-3.629-7.676-5.498-14.756-5.355l-3.688.477c-3.534.893-6.902 2.748-8.877 5.235-5.926 6.724-4.236 18.492 2.975 23.335 7.104 5.332 17.54 6.545 18.873 11.531 1.297 6.104-4.486 8.08-10.234 7.378-4.236-.881-6.592-3.034-9.139-6.949-4.688 2.713-4.688 2.713-9.508 5.485 1.143 2.499 2.344 3.63 4.26 5.795 9.068 9.198 31.76 8.746 35.83-5.176.165-.478 1.261-3.666.38-8.581zM69.462 58.943H57.753l-.048 30.272c0 6.438.333 12.34-.714 14.149-1.713 3.558-6.152 3.117-8.175 2.427-2.059-1.012-3.106-2.451-4.319-4.485-.333-.584-.583-1.036-.667-1.071l-9.52 5.83c1.583 3.249 3.915 6.069 6.902 7.901 4.462 2.678 10.459 3.499 16.731 2.059 4.082-1.189 7.604-3.652 9.448-7.401 2.666-4.915 2.094-10.864 2.07-17.444.06-10.735.001-21.468.001-32.237z"
|
|
4517
|
+
})]
|
|
4518
|
+
});
|
|
4519
|
+
}
|
|
4520
|
+
if (language === "php") {
|
|
4521
|
+
return /* @__PURE__ */jsx("svg", {
|
|
4522
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4523
|
+
viewBox: "0 0 800 400",
|
|
4524
|
+
children: /* @__PURE__ */jsx("g", {
|
|
4525
|
+
transform: "translate(-44.632 -141.55)",
|
|
4526
|
+
children: /* @__PURE__ */jsxs("g", {
|
|
4527
|
+
transform: "matrix(8.3528 0 0 8.3119 -727.13 -3759.5)",
|
|
4528
|
+
children: [/* @__PURE__ */jsx("path", {
|
|
4529
|
+
d: "m99.974 479.48h14.204c4.1693 0.0354 7.1903 1.2367 9.063 3.604 1.8726 2.3674 2.491 5.6004 1.855 9.699-0.24737 1.8727-0.79504 3.71-1.643 5.512-0.8127 1.802-1.9434 3.4273-3.392 4.876-1.7667 1.8373-3.657 3.0033-5.671 3.498-2.014 0.49467-4.0987 0.742-6.254 0.742h-6.36l-2.014 10.07h-7.367l7.579-38.001m6.201 6.042-3.18 15.9c0.21198 0.0353 0.42398 0.053 0.636 0.053h0.742c3.392 0.0353 6.2186-0.30033 8.48-1.007 2.2613-0.74199 3.7806-3.3213 4.558-7.738 0.63597-3.71-0.00003-5.8476-1.908-6.413-1.8727-0.56531-4.2224-0.83031-7.049-0.795-0.42402 0.0353-0.83035 0.053-1.219 0.053-0.35335 0.00002-0.72435 0.00002-1.113 0l0.053-0.053"
|
|
4530
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4531
|
+
d: "m133.49 469.36h7.314l-2.067 10.123h6.572c3.604 0.0707 6.2893 0.81269 8.056 2.226 1.802 1.4134 2.332 4.0987 1.59 8.056l-3.551 17.649h-7.42l3.392-16.854c0.35328-1.7666 0.2473-3.021-0.318-3.763-0.56536-0.74198-1.7844-1.113-3.657-1.113l-5.883-0.053-4.346 21.783h-7.314l7.632-38.054"
|
|
4532
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4533
|
+
d: "m162.81 479.48h14.204c4.1693 0.0354 7.1903 1.2367 9.063 3.604 1.8726 2.3674 2.491 5.6004 1.855 9.699-0.24737 1.8727-0.79503 3.71-1.643 5.512-0.8127 1.802-1.9434 3.4273-3.392 4.876-1.7667 1.8373-3.657 3.0033-5.671 3.498-2.014 0.49467-4.0987 0.742-6.254 0.742h-6.36l-2.014 10.07h-7.367l7.579-38.001m6.201 6.042-3.18 15.9c0.21199 0.0353 0.42399 0.053 0.636 0.053h0.742c3.392 0.0353 6.2186-0.30033 8.48-1.007 2.2613-0.74199 3.7806-3.3213 4.558-7.738 0.63597-3.71-0.00003-5.8476-1.908-6.413-1.8727-0.56531-4.2224-0.83031-7.049-0.795-0.42402 0.0353-0.83035 0.053-1.219 0.053-0.35335 0.00002-0.72435 0.00002-1.113 0l0.053-0.053"
|
|
4534
|
+
})]
|
|
4535
|
+
})
|
|
4536
|
+
})
|
|
4537
|
+
});
|
|
4538
|
+
}
|
|
4539
|
+
if (language === "json") {
|
|
4540
|
+
return /* @__PURE__ */jsxs("svg", {
|
|
4541
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4542
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
4543
|
+
viewBox: "0 0 160 160",
|
|
4544
|
+
children: [/* @__PURE__ */jsxs("defs", {
|
|
4545
|
+
children: [/* @__PURE__ */jsxs("linearGradient", {
|
|
4546
|
+
id: "a",
|
|
4547
|
+
children: [/* @__PURE__ */jsx("stop", {
|
|
4548
|
+
offset: "0"
|
|
4549
|
+
}), /* @__PURE__ */jsx("stop", {
|
|
4550
|
+
offset: "1",
|
|
4551
|
+
stopColor: "#fff"
|
|
4552
|
+
})]
|
|
4553
|
+
}), /* @__PURE__ */jsx("linearGradient", {
|
|
4554
|
+
x1: "-553.27",
|
|
4555
|
+
y1: "525.908",
|
|
4556
|
+
x2: "-666.116",
|
|
4557
|
+
y2: "413.045",
|
|
4558
|
+
id: "c",
|
|
4559
|
+
xlinkHref: "#a",
|
|
4560
|
+
gradientUnits: "userSpaceOnUse",
|
|
4561
|
+
gradientTransform: "matrix(.99884 0 0 .9987 689.008 -388.844)"
|
|
4562
|
+
}), /* @__PURE__ */jsx("linearGradient", {
|
|
4563
|
+
x1: "-666.117",
|
|
4564
|
+
y1: "413.045",
|
|
4565
|
+
x2: "-553.27",
|
|
4566
|
+
y2: "525.908",
|
|
4567
|
+
id: "b",
|
|
4568
|
+
xlinkHref: "#a",
|
|
4569
|
+
gradientUnits: "userSpaceOnUse",
|
|
4570
|
+
gradientTransform: "matrix(.99884 0 0 .9987 689.008 -388.844)"
|
|
4571
|
+
})]
|
|
4572
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4573
|
+
d: "M79.865 119.1c35.397 48.255 70.04-13.469 69.988-50.587-.06-43.886-44.54-68.414-70.017-68.414C38.943.1 0 33.895 0 80.135 0 131.531 44.64 160 79.836 160c-7.965-1.147-34.507-6.834-34.863-67.967-.24-41.346 13.487-57.865 34.805-50.599.477.177 23.514 9.265 23.514 38.95 0 29.56-23.427 38.716-23.427 38.716z",
|
|
4574
|
+
style: {
|
|
4575
|
+
marker: "none"
|
|
4576
|
+
},
|
|
4577
|
+
color: "#000",
|
|
4578
|
+
fill: "url(#b)",
|
|
4579
|
+
fillRule: "evenodd",
|
|
4580
|
+
overflow: "visible"
|
|
4581
|
+
}), /* @__PURE__ */jsx("path", {
|
|
4582
|
+
d: "M79.823 41.4C56.433 33.34 27.78 52.618 27.78 91.23c0 63.048 46.72 68.77 52.384 68.77C121.057 160 160 126.204 160 79.964 160 28.568 115.36.1 80.164.1c9.749-1.35 52.541 10.55 52.541 69.037 0 38.141-31.953 58.905-52.735 50.033-.478-.177-23.514-9.264-23.514-38.95 0-29.56 23.367-38.818 23.367-38.818z",
|
|
4583
|
+
style: {
|
|
4584
|
+
marker: "none"
|
|
4585
|
+
},
|
|
4586
|
+
color: "#000",
|
|
4587
|
+
fill: "url(#c)",
|
|
4588
|
+
fillRule: "evenodd",
|
|
4589
|
+
overflow: "visible"
|
|
4590
|
+
})]
|
|
4591
|
+
});
|
|
4592
|
+
}
|
|
4593
|
+
return void 0;
|
|
4594
|
+
}
|
|
4595
|
+
const codeTypeName = "code";
|
|
4596
|
+
const codeSchema = defineType({
|
|
4597
|
+
name: "code",
|
|
4598
|
+
type: "object",
|
|
4599
|
+
title: "Code",
|
|
4600
|
+
components: {
|
|
4601
|
+
input: CodeInput,
|
|
4602
|
+
preview: PreviewCode
|
|
4603
|
+
},
|
|
4604
|
+
icon: CodeBlockIcon,
|
|
4605
|
+
fields: [{
|
|
4606
|
+
name: "language",
|
|
4607
|
+
title: "Language",
|
|
4608
|
+
type: "string"
|
|
4609
|
+
}, {
|
|
4610
|
+
name: "filename",
|
|
4611
|
+
title: "Filename",
|
|
4612
|
+
type: "string"
|
|
4613
|
+
}, {
|
|
4614
|
+
title: "Code",
|
|
4615
|
+
name: "code",
|
|
4616
|
+
type: "text"
|
|
4617
|
+
}, {
|
|
4618
|
+
title: "Highlighted lines",
|
|
4619
|
+
name: "highlightedLines",
|
|
4620
|
+
type: "array",
|
|
4621
|
+
of: [{
|
|
4622
|
+
type: "number",
|
|
4623
|
+
title: "Highlighted line"
|
|
4624
|
+
}]
|
|
4625
|
+
}],
|
|
4626
|
+
preview: {
|
|
4627
|
+
select: {
|
|
4628
|
+
language: "language",
|
|
4629
|
+
code: "code",
|
|
4630
|
+
filename: "filename",
|
|
4631
|
+
highlightedLines: "highlightedLines"
|
|
4632
|
+
},
|
|
4633
|
+
prepare: value => {
|
|
4634
|
+
return {
|
|
4635
|
+
title: value.filename || (value.language || "unknown").toUpperCase(),
|
|
4636
|
+
media: getMedia(value == null ? void 0 : value.language),
|
|
4637
|
+
selection: value
|
|
4638
|
+
};
|
|
4639
|
+
}
|
|
4640
|
+
}
|
|
4641
|
+
});
|
|
4642
|
+
const CodeInputConfigContext = createContext(void 0);
|
|
4643
|
+
const codeInput = definePlugin(config => {
|
|
4644
|
+
const codeModes = config && config.codeModes;
|
|
4645
|
+
const basePlugin = {
|
|
4646
|
+
name: "@sanity/code-input",
|
|
4647
|
+
schema: {
|
|
4648
|
+
types: [codeSchema]
|
|
4649
|
+
}
|
|
4650
|
+
};
|
|
4651
|
+
if (!codeModes) {
|
|
4652
|
+
return basePlugin;
|
|
4653
|
+
}
|
|
4654
|
+
return {
|
|
4655
|
+
...basePlugin,
|
|
4656
|
+
form: {
|
|
4657
|
+
components: {
|
|
4658
|
+
input: props => {
|
|
4659
|
+
if (props.id !== "root") {
|
|
4660
|
+
return props.renderDefault(props);
|
|
4661
|
+
}
|
|
4662
|
+
return /* @__PURE__ */jsx(CodeInputConfigContext.Provider, {
|
|
4663
|
+
value: config,
|
|
4664
|
+
children: props.renderDefault(props)
|
|
4665
|
+
});
|
|
4666
|
+
}
|
|
4667
|
+
}
|
|
4668
|
+
}
|
|
4669
|
+
};
|
|
4670
|
+
});
|
|
4671
|
+
export { CodeInputConfigContext, PreviewCode, codeInput, codeSchema, codeTypeName };
|
|
4672
|
+
//# sourceMappingURL=index-KYa8fGra.js.map
|