barua-ui 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/base.css +4 -1
- package/css/components/content.css +16 -1
- package/css/components/feedback.css +9 -0
- package/css/components/overlays.css +17 -0
- package/css/utilities.css +74 -0
- package/dist/index.cjs +106 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +106 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/css/base.css
CHANGED
|
@@ -29,7 +29,10 @@
|
|
|
29
29
|
min-height: 100dvh;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
img, picture, video, canvas, svg { display: block; max-width: 100%; }
|
|
32
|
+
img, picture, video, canvas, svg, iframe { display: block; max-width: 100%; }
|
|
33
|
+
/* An iframe's inset border is legacy chrome, like a button's face. A mail
|
|
34
|
+
body or an embedded document should sit on the page, not in a box. */
|
|
35
|
+
iframe { border: 0; }
|
|
33
36
|
input, button, textarea, select { font: inherit; color: inherit; letter-spacing: inherit; }
|
|
34
37
|
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
|
|
35
38
|
|
|
@@ -225,7 +225,21 @@
|
|
|
225
225
|
gap: var(--b-space-3);
|
|
226
226
|
padding: var(--b-space-3) var(--b-space-4);
|
|
227
227
|
font-size: var(--b-text-subheadline);
|
|
228
|
+
/* A row that does something is a <button>, and a <button> arrives wearing
|
|
229
|
+
the browser's own face: a grey plate, a border and centred text. Left
|
|
230
|
+
unstated, a whole list of actions renders as a column of grey slabs —
|
|
231
|
+
which is exactly what a mailbox did. Said once here, because every list
|
|
232
|
+
of actions would otherwise have to say it again. */
|
|
233
|
+
width: 100%;
|
|
234
|
+
text-align: start;
|
|
235
|
+
color: inherit;
|
|
236
|
+
background: none;
|
|
237
|
+
border: none;
|
|
228
238
|
}
|
|
239
|
+
/* Three lines and a timestamp: the mark and the time belong beside the first
|
|
240
|
+
line, not floating in the middle of a tall row. */
|
|
241
|
+
.b-list-item--top { align-items: flex-start; }
|
|
242
|
+
.b-list-item--top .b-list-item__trailing { align-items: flex-end; flex-direction: column; gap: var(--b-space-1); }
|
|
229
243
|
.b-list > .b-list-item + .b-list-item { border-top: 1px solid var(--b-separator); }
|
|
230
244
|
.b-list--inset-divider > .b-list-item + .b-list-item {
|
|
231
245
|
border-top: none;
|
|
@@ -678,6 +692,7 @@
|
|
|
678
692
|
color: currentColor;
|
|
679
693
|
}
|
|
680
694
|
.b-icon svg { width: 100%; height: 100%; }
|
|
695
|
+
.b-icon--xs { width: 0.75rem; height: 0.75rem; }
|
|
681
696
|
.b-icon--sm { width: 1rem; height: 1rem; }
|
|
682
697
|
.b-icon--lg { width: 1.5rem; height: 1.5rem; }
|
|
683
698
|
.b-icon--xl { width: 2rem; height: 2rem; }
|
|
@@ -692,6 +707,7 @@
|
|
|
692
707
|
}
|
|
693
708
|
/* iOS Settings-row size: small solid square, white glyph */
|
|
694
709
|
.b-icon-tile--sm { width: 1.85rem; height: 1.85rem; border-radius: var(--b-radius-sm); }
|
|
710
|
+
.b-icon-tile svg { width: 1.25rem; height: 1.25rem; }
|
|
695
711
|
.b-icon-tile--sm svg { width: 1.05rem; height: 1.05rem; }
|
|
696
712
|
.b-icon-tile--solid { color: #fff; background: var(--b-color-accent); }
|
|
697
713
|
.b-icon-tile--green { color: #fff; background: var(--b-color-green); }
|
|
@@ -701,7 +717,6 @@
|
|
|
701
717
|
.b-icon-tile--teal { color: #fff; background: var(--b-color-teal); }
|
|
702
718
|
.b-icon-tile--indigo { color: #fff; background: var(--b-color-indigo); }
|
|
703
719
|
.b-icon-tile--gray { color: #fff; background: var(--b-gray-1); }
|
|
704
|
-
.b-icon-tile svg { width: 1.25rem; height: 1.25rem; }
|
|
705
720
|
|
|
706
721
|
/* ---- Image ------------------------------------------------------------------------------------ */
|
|
707
722
|
.b-img { border-radius: var(--b-radius-lg); object-fit: cover; }
|
|
@@ -35,6 +35,15 @@
|
|
|
35
35
|
}
|
|
36
36
|
.b-alert__close:hover { color: var(--b-text); }
|
|
37
37
|
|
|
38
|
+
/* No opinion. The default alert is info-tinted, which turns a plain
|
|
39
|
+
"still working on it" strip blue and gives it a meaning it does not
|
|
40
|
+
have. This is the same anatomy on the neutral surface. */
|
|
41
|
+
.b-alert--neutral {
|
|
42
|
+
background: var(--b-fill-quaternary);
|
|
43
|
+
border-color: var(--b-border);
|
|
44
|
+
}
|
|
45
|
+
.b-alert--neutral .b-alert__icon { color: var(--b-text-secondary); }
|
|
46
|
+
|
|
38
47
|
.b-alert--success {
|
|
39
48
|
background: var(--b-color-success-soft);
|
|
40
49
|
border-color: color-mix(in srgb, var(--b-color-success) 30%, transparent);
|
|
@@ -158,6 +158,23 @@
|
|
|
158
158
|
.b-sheet[open] { translate: 100% 0; }
|
|
159
159
|
}
|
|
160
160
|
.b-sheet::backdrop { background: var(--b-scrim); }
|
|
161
|
+
|
|
162
|
+
/* The scrim, as a class rather than a pseudo-element.
|
|
163
|
+
`::backdrop` is drawn by the browser for a top-layer element — a native
|
|
164
|
+
<dialog> or a [popover] — and nothing else. An overlay that portals a
|
|
165
|
+
plain <div> instead, to keep a focus trap the top layer cannot give it,
|
|
166
|
+
has no backdrop to style, and every such component was repeating these
|
|
167
|
+
six declarations inline. Opacity is left to the caller, because only it
|
|
168
|
+
knows whether the overlay is arriving or leaving. */
|
|
169
|
+
.b-scrim {
|
|
170
|
+
position: fixed;
|
|
171
|
+
inset: 0;
|
|
172
|
+
z-index: var(--b-z-modal);
|
|
173
|
+
background: var(--b-scrim);
|
|
174
|
+
-webkit-backdrop-filter: blur(var(--b-blur-xs));
|
|
175
|
+
backdrop-filter: blur(var(--b-blur-xs));
|
|
176
|
+
transition: opacity var(--b-duration-normal) var(--b-ease-out);
|
|
177
|
+
}
|
|
161
178
|
.b-sheet__header {
|
|
162
179
|
display: flex;
|
|
163
180
|
align-items: center;
|
package/css/utilities.css
CHANGED
|
@@ -82,6 +82,15 @@
|
|
|
82
82
|
.b-stack--stretch { align-items: stretch; }
|
|
83
83
|
.b-stack--between { justify-content: space-between; }
|
|
84
84
|
.b-stack--wrap { flex-wrap: wrap; }
|
|
85
|
+
|
|
86
|
+
/* Main-axis placement, which the modifiers above do not cover: they set
|
|
87
|
+
align-items, so on a row they decide the cross axis. Centring a row
|
|
88
|
+
horizontally is a different instruction and needs its own word. */
|
|
89
|
+
.b-justify-start { justify-content: flex-start; }
|
|
90
|
+
.b-justify-center { justify-content: center; }
|
|
91
|
+
.b-justify-end { justify-content: flex-end; }
|
|
92
|
+
.b-justify-between { justify-content: space-between; }
|
|
93
|
+
.b-justify-around { justify-content: space-around; }
|
|
85
94
|
.b-gap-0 { --b-gap: 0; }
|
|
86
95
|
.b-gap-1 { --b-gap: var(--b-space-1); }
|
|
87
96
|
.b-gap-2 { --b-gap: var(--b-space-2); }
|
|
@@ -196,6 +205,17 @@
|
|
|
196
205
|
border-radius: var(--b-radius-lg);
|
|
197
206
|
}
|
|
198
207
|
.b-panel--plain { background: none; border: none; border-radius: 0; }
|
|
208
|
+
|
|
209
|
+
/* The list side of a list-and-detail split.
|
|
210
|
+
Full width on a phone, where it is the whole screen and a fixed column
|
|
211
|
+
would leave a band of empty glass beside it; a measured column once
|
|
212
|
+
there is room to show two things at once. This has to be a media query:
|
|
213
|
+
clamp() cannot say "fill, then stop filling", because it cannot see
|
|
214
|
+
whether anything is sitting next to it. */
|
|
215
|
+
.b-list-pane { inline-size: 100%; flex: none; }
|
|
216
|
+
@media (min-width: 768px) {
|
|
217
|
+
.b-list-pane { inline-size: clamp(20rem, 4rem + 25vw, 28rem); }
|
|
218
|
+
}
|
|
199
219
|
.b-resizable { resize: horizontal; overflow: auto; min-width: 12rem; max-width: 70%; }
|
|
200
220
|
.b-resizable--vertical { resize: vertical; min-height: 6rem; max-height: 80vh; }
|
|
201
221
|
.b-resize-handle {
|
|
@@ -656,4 +676,58 @@
|
|
|
656
676
|
border-radius: var(--b-radius-xl);
|
|
657
677
|
box-shadow: var(--b-glass-edge), var(--b-shadow-md);
|
|
658
678
|
}
|
|
679
|
+
|
|
680
|
+
/* ---- Box behaviours ------------------------------------------------------
|
|
681
|
+
The handful of layout facts that Stack and Grid do not express, and that
|
|
682
|
+
every application reaches for eventually: a child that takes the room
|
|
683
|
+
left over, a child that refuses to shrink, a box allowed to be narrower
|
|
684
|
+
than its content, and the positioning contexts. Named plainly, because
|
|
685
|
+
each one says exactly what it does and nothing more. */
|
|
686
|
+
.b-flex-1 { flex: 1 1 0%; }
|
|
687
|
+
.b-shrink-0 { flex-shrink: 0; }
|
|
688
|
+
.b-grow-0 { flex-grow: 0; }
|
|
689
|
+
|
|
690
|
+
/* A flex or grid child will not go narrower than its content unless it is
|
|
691
|
+
told it may — which is why a long subject line pushes a mail row wider
|
|
692
|
+
instead of ellipsing. This is the permission. */
|
|
693
|
+
.b-min-w-0 { min-width: 0; }
|
|
694
|
+
.b-min-h-0 { min-height: 0; }
|
|
695
|
+
|
|
696
|
+
.b-w-full { inline-size: 100%; }
|
|
697
|
+
.b-h-full { block-size: 100%; }
|
|
698
|
+
.b-block { display: block; }
|
|
699
|
+
.b-inline-block { display: inline-block; }
|
|
700
|
+
.b-inline-flex { display: inline-flex; align-items: center; gap: var(--b-space-2); }
|
|
701
|
+
|
|
702
|
+
.b-relative { position: relative; }
|
|
703
|
+
.b-absolute { position: absolute; }
|
|
704
|
+
.b-sticky { position: sticky; }
|
|
705
|
+
|
|
706
|
+
.b-overflow-hidden { overflow: hidden; }
|
|
707
|
+
.b-overflow-auto { overflow: auto; }
|
|
708
|
+
.b-overflow-x-auto { overflow-x: auto; overflow-y: hidden; }
|
|
709
|
+
|
|
710
|
+
/* Figures, keys, record values: anything read character by character. */
|
|
711
|
+
.b-mono { font-family: var(--b-font-mono); font-size: 0.875em; }
|
|
712
|
+
|
|
713
|
+
/* Present to a screen reader, absent to the eye. */
|
|
714
|
+
.b-sr-only {
|
|
715
|
+
position: absolute;
|
|
716
|
+
inline-size: 1px;
|
|
717
|
+
block-size: 1px;
|
|
718
|
+
padding: 0;
|
|
719
|
+
margin: -1px;
|
|
720
|
+
overflow: hidden;
|
|
721
|
+
clip-path: inset(50%);
|
|
722
|
+
white-space: nowrap;
|
|
723
|
+
border: 0;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
/* For a glyph standing in as a busy indicator. The spinner component is the
|
|
727
|
+
better answer; this is for the cases that already have an icon. */
|
|
728
|
+
.b-spin { animation: b-spin 0.8s linear infinite; }
|
|
729
|
+
@keyframes b-spin { to { transform: rotate(360deg); } }
|
|
730
|
+
@media (prefers-reduced-motion: reduce) {
|
|
731
|
+
.b-spin { animation-duration: 2.4s; }
|
|
732
|
+
}
|
|
659
733
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -1269,8 +1269,10 @@ function Breadcrumbs({
|
|
|
1269
1269
|
var import_react8 = require("react");
|
|
1270
1270
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1271
1271
|
var iconNames = [
|
|
1272
|
+
"archive",
|
|
1273
|
+
"arrow-left",
|
|
1272
1274
|
"arrow-up-right",
|
|
1273
|
-
"
|
|
1275
|
+
"badge-check",
|
|
1274
1276
|
"bell",
|
|
1275
1277
|
"bolt",
|
|
1276
1278
|
"bookmark",
|
|
@@ -1283,9 +1285,17 @@ var iconNames = [
|
|
|
1283
1285
|
"chevron-up",
|
|
1284
1286
|
"clock",
|
|
1285
1287
|
"close",
|
|
1288
|
+
"code",
|
|
1289
|
+
"copy",
|
|
1290
|
+
"display",
|
|
1286
1291
|
"doc",
|
|
1287
1292
|
"download",
|
|
1288
1293
|
"drop",
|
|
1294
|
+
"ellipsis",
|
|
1295
|
+
"ellipsis-vertical",
|
|
1296
|
+
"envelope-open",
|
|
1297
|
+
"eye",
|
|
1298
|
+
"eye-off",
|
|
1289
1299
|
"film",
|
|
1290
1300
|
"filter",
|
|
1291
1301
|
"flame",
|
|
@@ -1293,33 +1303,45 @@ var iconNames = [
|
|
|
1293
1303
|
"forward",
|
|
1294
1304
|
"garage",
|
|
1295
1305
|
"gear",
|
|
1306
|
+
"gift",
|
|
1307
|
+
"globe",
|
|
1296
1308
|
"grid",
|
|
1297
1309
|
"heart",
|
|
1298
1310
|
"house",
|
|
1311
|
+
"image-off",
|
|
1299
1312
|
"info",
|
|
1313
|
+
"key",
|
|
1300
1314
|
"lightbulb",
|
|
1301
1315
|
"link",
|
|
1302
1316
|
"lock",
|
|
1303
1317
|
"mail",
|
|
1318
|
+
"menu",
|
|
1304
1319
|
"message",
|
|
1305
1320
|
"mic",
|
|
1306
1321
|
"moon-stars",
|
|
1307
1322
|
"music-note",
|
|
1308
1323
|
"newspaper",
|
|
1324
|
+
"paperclip",
|
|
1309
1325
|
"pause",
|
|
1310
1326
|
"pencil",
|
|
1311
1327
|
"people",
|
|
1312
1328
|
"person",
|
|
1329
|
+
"person-plus",
|
|
1313
1330
|
"photo",
|
|
1314
1331
|
"pin",
|
|
1315
1332
|
"play",
|
|
1316
1333
|
"plus",
|
|
1334
|
+
"power",
|
|
1317
1335
|
"refresh",
|
|
1318
1336
|
"repeat",
|
|
1337
|
+
"reply",
|
|
1338
|
+
"reply-all",
|
|
1319
1339
|
"search",
|
|
1320
1340
|
"send",
|
|
1321
1341
|
"share",
|
|
1322
1342
|
"shield",
|
|
1343
|
+
"skip-back",
|
|
1344
|
+
"skip-forward",
|
|
1323
1345
|
"sliders",
|
|
1324
1346
|
"sparkles",
|
|
1325
1347
|
"speaker",
|
|
@@ -1327,15 +1349,22 @@ var iconNames = [
|
|
|
1327
1349
|
"sun",
|
|
1328
1350
|
"trash",
|
|
1329
1351
|
"tv",
|
|
1352
|
+
"upload",
|
|
1330
1353
|
"warning",
|
|
1331
1354
|
"waveform",
|
|
1332
1355
|
"wifi"
|
|
1333
1356
|
];
|
|
1334
1357
|
var GLYPHS = {
|
|
1358
|
+
"archive": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1359
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3 4.5h14V7H3V4.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1360
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M4.2 7v7.5a1 1 0 0 0 1 1h9.6a1 1 0 0 0 1-1V7", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1361
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M8 10h4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1362
|
+
] }),
|
|
1363
|
+
"arrow-left": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M16.5 10h-13M8 4.5 3 10l5 5.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1335
1364
|
"arrow-up-right": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M6 14 14 6M7.5 6H14v6.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1336
|
-
"
|
|
1337
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
1338
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
1365
|
+
"badge-check": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1366
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m10 2.6 2 1.5 2.5-.2.6 2.4 2 1.5-1 2.3 1 2.3-2 1.5-.6 2.4-2.5-.2-2 1.5-2-1.5-2.5.2-.6-2.4-2-1.5 1-2.3-1-2.3 2-1.5.6-2.4 2.5.2 2-1.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1367
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m7.6 10.1 1.7 1.7 3.1-3.4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1339
1368
|
] }),
|
|
1340
1369
|
"bell": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1341
1370
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3.5A4.5 4.5 0 0 1 14.5 8c0 3 1 4 1.5 4.5H4c.5-.5 1.5-1.5 1.5-4.5A4.5 4.5 0 0 1 10 3.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
@@ -1361,12 +1390,40 @@ var GLYPHS = {
|
|
|
1361
1390
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 6.5V10l2.5 2", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1362
1391
|
] }),
|
|
1363
1392
|
"close": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m5 5 10 10M15 5 5 15", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }) }),
|
|
1393
|
+
"code": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m7 7-3.5 3L7 13M13 7l3.5 3L13 13M11.4 5.2 8.6 14.8", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1394
|
+
"copy": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1395
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "7", y: "7", width: "9", height: "9", rx: "1.8", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1396
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M4.5 12.5h-.5A1.5 1.5 0 0 1 2.5 11V4A1.5 1.5 0 0 1 4 2.5h7A1.5 1.5 0 0 1 12.5 4v.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1397
|
+
] }),
|
|
1398
|
+
"display": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1399
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "2.5", y: "4", width: "15", height: "9.5", rx: "1.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1400
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7 16.5h6M10 13.5v3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1401
|
+
] }),
|
|
1364
1402
|
"doc": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1365
1403
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5.5 3.5h6L15 7v9.5H5.5V3.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
1366
1404
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M11.5 3.5V7H15M8 10.5h4M8 13h4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1367
1405
|
] }),
|
|
1368
1406
|
"download": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3.5v9M6.5 9.5l3.5 3 3.5-3M4 16.5h12", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1369
1407
|
"drop": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 2.8C7.7 6 5.5 8.6 5.5 11.4a4.5 4.5 0 0 0 9 0c0-2.8-2.2-5.4-4.5-8.6Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }) }),
|
|
1408
|
+
"ellipsis": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1409
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "4.6", cy: "10", r: "1.3", fill: "currentColor" }),
|
|
1410
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "1.3", fill: "currentColor" }),
|
|
1411
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "15.4", cy: "10", r: "1.3", fill: "currentColor" })
|
|
1412
|
+
] }),
|
|
1413
|
+
"ellipsis-vertical": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1414
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "4.6", r: "1.3", fill: "currentColor" }),
|
|
1415
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "1.3", fill: "currentColor" }),
|
|
1416
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "15.4", r: "1.3", fill: "currentColor" })
|
|
1417
|
+
] }),
|
|
1418
|
+
"envelope-open": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1419
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 8.4 10 3.5l6.5 4.9V15a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 15V8.4Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1420
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m3.5 8.4 6.5 4.7 6.5-4.7", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1421
|
+
] }),
|
|
1422
|
+
"eye": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1423
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M2.5 10s2.8-5 7.5-5 7.5 5 7.5 5-2.8 5-7.5 5-7.5-5-7.5-5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1424
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "2.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1425
|
+
] }),
|
|
1426
|
+
"eye-off": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3 3l14 14M8.4 8.5A2.5 2.5 0 0 0 11.5 11.6M6.3 6.4C4 7.8 2.5 10 2.5 10s2.8 5 7.5 5c1.3 0 2.5-.4 3.5-.9M9 5.1c.3 0 .7-.1 1-.1 4.7 0 7.5 5 7.5 5s-.6 1.1-1.8 2.3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1370
1427
|
"film": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1371
1428
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 8.5h13V15a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 15V8.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
1372
1429
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m3.5 8.5 1-3.4 11.6 1.7-.6 1.7M7.6 5.6 6.6 8.2M11.2 6.1l-1 2.4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
@@ -1375,14 +1432,23 @@ var GLYPHS = {
|
|
|
1375
1432
|
"flame": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3c-2.5 3-4.5 5.2-4.5 7.4a4.5 4.5 0 0 0 9 0C14.5 8.2 12.5 6 10 3Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }) }),
|
|
1376
1433
|
"folder": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 5.5A1.5 1.5 0 0 1 5 4h3l1.5 2H15a1.5 1.5 0 0 1 1.5 1.5V14a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 14V5.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }) }),
|
|
1377
1434
|
"forward": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1378
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
1379
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
1435
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M12 5.5 16.5 10 12 14.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1436
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M16.5 10h-6a6 6 0 0 0-6 6v.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1380
1437
|
] }),
|
|
1381
1438
|
"garage": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3 9.5 10 4l7 5.5M5 8.5V16h10V8.5M7 11h6M7 13.5h6", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1382
1439
|
"gear": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1383
1440
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "2.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1384
1441
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 2.5v3M10 14.5v3M2.5 10h3M14.5 10h3M4.7 4.7l2.1 2.1M13.2 13.2l2.1 2.1M15.3 4.7l-2.1 2.1M6.8 13.2l-2.1 2.1", stroke: "currentColor", strokeWidth: "1.3", strokeLinecap: "round" })
|
|
1385
1442
|
] }),
|
|
1443
|
+
"gift": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1444
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 8.5h13V16a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1V8.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1445
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M2.5 6h15v2.5h-15V6ZM10 6v11", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1446
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 6S8.8 3 7 3a1.8 1.8 0 0 0 0 3h3Zm0 0s1.2-3 3-3a1.8 1.8 0 0 1 0 3h-3Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1447
|
+
] }),
|
|
1448
|
+
"globe": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1449
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "7.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1450
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M2.5 10h15M10 2.5c2.2 2.3 3.3 4.8 3.3 7.5S12.2 15.2 10 17.5c-2.2-2.3-3.3-4.8-3.3-7.5S7.8 4.8 10 2.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1451
|
+
] }),
|
|
1386
1452
|
"grid": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1387
1453
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "3.5", y: "3.5", width: "5.5", height: "5.5", rx: "1.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1388
1454
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "11", y: "3.5", width: "5.5", height: "5.5", rx: "1.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
@@ -1391,10 +1457,19 @@ var GLYPHS = {
|
|
|
1391
1457
|
] }),
|
|
1392
1458
|
"heart": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 16.5S3.5 12.5 3.5 8.2A3.6 3.6 0 0 1 10 6a3.6 3.6 0 0 1 6.5 2.2c0 4.3-6.5 8.3-6.5 8.3Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }) }),
|
|
1393
1459
|
"house": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3 9.5 10 4l7 5.5M5 8.5V16h10V8.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1460
|
+
"image-off": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1461
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3 3l14 14", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1462
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M16.5 12.8V5.5a1 1 0 0 0-1-1H8.2m-3.7 0a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9.3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1463
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m4 13.5 3.2-3a1.4 1.4 0 0 1 1.9 0l1.4 1.3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1464
|
+
] }),
|
|
1394
1465
|
"info": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1395
1466
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "10", r: "6.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1396
1467
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 9v4M10 6.4h.01", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
|
|
1397
1468
|
] }),
|
|
1469
|
+
"key": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1470
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "7", cy: "7.2", r: "3.2", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1471
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m9.4 9.6 6.1 6.1M13.4 13.6l1.6-1.6M15.5 15.7l1.4-1.4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1472
|
+
] }),
|
|
1398
1473
|
"lightbulb": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3a5 5 0 0 0-2.5 9.3V14a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1.7A5 5 0 0 0 10 3ZM8.5 17h3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1399
1474
|
"link": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M8.5 11.5a3 3 0 0 0 4.2 0l2.5-2.5a3 3 0 1 0-4.2-4.2l-1 1M11.5 8.5a3 3 0 0 0-4.2 0L4.8 11a3 3 0 1 0 4.2 4.2l1-1", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }) }),
|
|
1400
1475
|
"lock": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
@@ -1405,6 +1480,7 @@ var GLYPHS = {
|
|
|
1405
1480
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "3", y: "4.5", width: "14", height: "11", rx: "2", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1406
1481
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m4.5 7 5.5 4 5.5-4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1407
1482
|
] }),
|
|
1483
|
+
"menu": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 6h13M3.5 10h13M3.5 14h13", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1408
1484
|
"message": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5.5 4h9a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H8.5l-3 3v-3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }) }),
|
|
1409
1485
|
"mic": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1410
1486
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "7.5", y: "3.5", width: "5", height: "9", rx: "2.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
@@ -1423,6 +1499,7 @@ var GLYPHS = {
|
|
|
1423
1499
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "3", y: "4", width: "14", height: "12", rx: "1.8", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1424
1500
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M6 7.5h4.5v3.5H6zM13 7.5h1M13 11h1M6 13.5h8", stroke: "currentColor", strokeWidth: "1.4", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1425
1501
|
] }),
|
|
1502
|
+
"paperclip": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m13.5 7.5-5.3 5.3a1.8 1.8 0 0 1-2.5-2.5l6-6a3 3 0 0 1 4.2 4.2l-6.3 6.3a4.2 4.2 0 0 1-6-6L9 4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1426
1503
|
"pause": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M6 4.5h2.5v11H6zM11.5 4.5H14v11h-2.5z" }) }),
|
|
1427
1504
|
"pencil": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1428
1505
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m4 16 .8-3.2 8.8-8.8a1.4 1.4 0 0 1 2 0l.4.4a1.4 1.4 0 0 1 0 2l-8.8 8.8L4 16Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
@@ -1437,6 +1514,10 @@ var GLYPHS = {
|
|
|
1437
1514
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10", cy: "6.5", r: "3", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1438
1515
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M4 16.5a6 6 0 0 1 12 0", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
|
|
1439
1516
|
] }),
|
|
1517
|
+
"person-plus": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1518
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "8", cy: "7", r: "3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1519
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M2.5 16.5c.6-3 3-4.5 5.5-4.5s4.9 1.5 5.5 4.5M15 7.5v5M12.5 10h5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1520
|
+
] }),
|
|
1440
1521
|
"photo": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1441
1522
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "3.5", y: "4.5", width: "13", height: "11", rx: "2", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1442
1523
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "7.5", cy: "8", r: "1.2", fill: "currentColor" }),
|
|
@@ -1448,8 +1529,18 @@ var GLYPHS = {
|
|
|
1448
1529
|
] }),
|
|
1449
1530
|
"play": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7 4.9v10.2a.6.6 0 0 0 .92.5l8-5.1a.6.6 0 0 0 0-1l-8-5.1a.6.6 0 0 0-.92.5Z" }) }),
|
|
1450
1531
|
"plus": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 4v12M4 10h12", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }) }),
|
|
1532
|
+
"power": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3v6.5M6 6.2a5.5 5.5 0 1 0 8 0", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1451
1533
|
"refresh": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M15.8 10A5.8 5.8 0 1 1 13 5.1M15.8 3.5v3.2h-3.2", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1452
1534
|
"repeat": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5.5 8V7A2.5 2.5 0 0 1 8 4.5h6.5M12.5 2.5l2 2-2 2M14.5 12v1a2.5 2.5 0 0 1-2.5 2.5H5.5M7.5 17.5l-2-2 2-2", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1535
|
+
"reply": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1536
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M8 5.5 3.5 10 8 14.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1537
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 10h6a6 6 0 0 1 6 6v.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1538
|
+
] }),
|
|
1539
|
+
"reply-all": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1540
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7 5.5 2.5 10 7 14.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1541
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M11.5 5.5 7 10l4.5 4.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1542
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7 10h5.5a5 5 0 0 1 5 5v.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1543
|
+
] }),
|
|
1453
1544
|
"search": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1454
1545
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "9", cy: "9", r: "5.5", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1455
1546
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m13.5 13.5 3 3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
|
|
@@ -1463,6 +1554,14 @@ var GLYPHS = {
|
|
|
1463
1554
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3l6 2v5c0 3.5-2.5 5.8-6 7-3.5-1.2-6-3.5-6-7V5l6-2Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
1464
1555
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m7.5 10 1.8 1.8L13 8.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1465
1556
|
] }),
|
|
1557
|
+
"skip-back": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1558
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5.5 4.5v11", stroke: "currentColor", strokeWidth: "1.6", strokeLinecap: "round" }),
|
|
1559
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M15 5.6v8.8a.6.6 0 0 1-.93.5L7.6 10.5a.6.6 0 0 1 0-1l6.47-4.4a.6.6 0 0 1 .93.5Z", fill: "currentColor" })
|
|
1560
|
+
] }),
|
|
1561
|
+
"skip-forward": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1562
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M14.5 4.5v11", stroke: "currentColor", strokeWidth: "1.6", strokeLinecap: "round" }),
|
|
1563
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5 5.6v8.8a.6.6 0 0 0 .93.5l6.47-4.4a.6.6 0 0 0 0-1L5.93 5.1a.6.6 0 0 0-.93.5Z", fill: "currentColor" })
|
|
1564
|
+
] }),
|
|
1466
1565
|
"sliders": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1467
1566
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M3.5 6.5h5M12 6.5h4.5M3.5 13.5h3M10 13.5h6.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }),
|
|
1468
1567
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("circle", { cx: "10.2", cy: "6.5", r: "1.8", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
@@ -1486,6 +1585,7 @@ var GLYPHS = {
|
|
|
1486
1585
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("rect", { x: "3", y: "6", width: "14", height: "9.5", rx: "1.8", stroke: "currentColor", strokeWidth: "1.5" }),
|
|
1487
1586
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7 17.5h6M7.5 2.5 10 5l2.5-2.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1488
1587
|
] }),
|
|
1588
|
+
"upload": /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 16.5v-9M6.5 10.5l3.5-3 3.5 3M4 3.5h12", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }),
|
|
1489
1589
|
"warning": /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
|
|
1490
1590
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 3.5 18 17H2L10 3.5Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
|
|
1491
1591
|
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M10 8.5V12M10 14.5h.01", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
|