@opencode/ui 0.0.0-dev-19372 → 0.0.0-dev-19377
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.
|
@@ -6,6 +6,10 @@ declare const icons: {
|
|
|
6
6
|
viewBox: string;
|
|
7
7
|
body: string;
|
|
8
8
|
};
|
|
9
|
+
globe: {
|
|
10
|
+
viewBox: string;
|
|
11
|
+
body: string;
|
|
12
|
+
};
|
|
9
13
|
flask: {
|
|
10
14
|
viewBox: string;
|
|
11
15
|
body: string;
|
|
@@ -194,6 +198,10 @@ declare const icons: {
|
|
|
194
198
|
viewBox: string;
|
|
195
199
|
body: string;
|
|
196
200
|
};
|
|
201
|
+
refresh: {
|
|
202
|
+
viewBox: string;
|
|
203
|
+
body: string;
|
|
204
|
+
};
|
|
197
205
|
reset: {
|
|
198
206
|
viewBox: string;
|
|
199
207
|
body: string;
|
package/package.json
CHANGED
package/src/icons/icon/icon.tsx
CHANGED
|
@@ -8,6 +8,10 @@ const icons = {
|
|
|
8
8
|
viewBox: "0 0 16 16",
|
|
9
9
|
body: `<rect x="3.5" y="7" width="9" height="7" rx="1" stroke="currentColor"/><path d="M5 7V5a3 3 0 0 1 6 0v2M8 10v1" stroke="currentColor" stroke-linecap="round"/>`,
|
|
10
10
|
},
|
|
11
|
+
globe: {
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
body: `<circle cx="8" cy="8" r="6" stroke="currentColor"/><ellipse cx="8" cy="8" rx="2.5" ry="6" stroke="currentColor"/><path d="M2 8h12" stroke="currentColor"/>`,
|
|
14
|
+
},
|
|
11
15
|
flask: {
|
|
12
16
|
viewBox: "0 0 16 16",
|
|
13
17
|
body: `<path d="M5.5 2H10.5M6 2V6L2.5 12C2 13 2.5 14 3.5 14H12.5C13.5 14 14 13 13.5 12L10 6V2M4.25 9H11.75" stroke="currentColor" stroke-linecap="square" stroke-linejoin="round"/>`,
|
|
@@ -196,6 +200,10 @@ const icons = {
|
|
|
196
200
|
viewBox: "0 0 20 20",
|
|
197
201
|
body: `<path d="M2.5 10s3.33-5.42 7.5-5.42S17.5 10 17.5 10s-3.33 5.42-7.5 5.42S2.5 10 2.5 10Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/><circle cx="10" cy="10" r="2.5" stroke="currentColor"/><path d="M3 3 17 17" stroke="currentColor" stroke-linecap="round"/>`,
|
|
198
202
|
},
|
|
203
|
+
refresh: {
|
|
204
|
+
viewBox: "0 0 20 20",
|
|
205
|
+
body: `<path d="M16.25 7.5A6.5 6.5 0 1 0 16.5 11M16.25 3.5v4h-4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
206
|
+
},
|
|
199
207
|
reset: {
|
|
200
208
|
viewBox: "0 0 20 20",
|
|
201
209
|
body: `<path d="M5.83333 4.16406L2.5 7.4974L5.83333 10.8307M3.33333 7.4974H17.9167V15.4141H10" stroke="currentColor" stroke-linecap="square"/>`,
|