@townco/gui-template 0.1.70 → 0.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{acp-sdk-UCiaex6o.js → acp-sdk-D41ZZ6b1.js} +1 -1
- package/dist/assets/icons-D_apzdqV.js +1 -0
- package/dist/assets/index-CEzCTVeG.css +1 -0
- package/dist/assets/index-DJPUATkJ.js +9 -0
- package/dist/assets/{markdown-DcqFpJFC.js → markdown-DB_sQ8pp.js} +1 -1
- package/dist/assets/{radix-Df7Ebpab.js → radix-CUzxVG1O.js} +1 -1
- package/dist/assets/{react-W6jlU1_L.js → react-CDboZAE4.js} +1 -1
- package/dist/assets/{vendor-CeKIC-K3.js → vendor-DXWxTThl.js} +1 -1
- package/dist/index.html +8 -8
- package/package.json +4 -4
- package/vite.config.ts +47 -2
- package/dist/assets/icons-w0vXCcXS.js +0 -1
- package/dist/assets/index-Dw4jIBSg.js +0 -9
- package/dist/assets/index-WxClTJ9Y.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@townco/gui-template",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.72",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"check": "tsc --noEmit"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@townco/core": "0.0.
|
|
23
|
-
"@townco/ui": "0.1.
|
|
22
|
+
"@townco/core": "0.0.53",
|
|
23
|
+
"@townco/ui": "0.1.75",
|
|
24
24
|
"lucide-react": "^0.552.0",
|
|
25
25
|
"react": "19.2.1",
|
|
26
26
|
"react-dom": "19.2.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@tailwindcss/postcss": "^4.1.17",
|
|
30
|
-
"@townco/tsconfig": "0.1.
|
|
30
|
+
"@townco/tsconfig": "0.1.72",
|
|
31
31
|
"@types/react": "^19.2.2",
|
|
32
32
|
"@types/react-dom": "^19.2.2",
|
|
33
33
|
"@vitejs/plugin-react": "^5.1.0",
|
package/vite.config.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import crypto from "node:crypto";
|
|
1
2
|
import path from "node:path";
|
|
2
3
|
import react from "@vitejs/plugin-react";
|
|
3
|
-
import { defineConfig } from "vite";
|
|
4
|
+
import { defineConfig, Plugin } from "vite";
|
|
4
5
|
|
|
5
6
|
// Create a stub module for stdio transport to prevent Node.js dependencies
|
|
6
7
|
const stdioStubPlugin = () => ({
|
|
@@ -41,9 +42,53 @@ const stdioStubPlugin = () => ({
|
|
|
41
42
|
},
|
|
42
43
|
});
|
|
43
44
|
|
|
45
|
+
function timingSafeEqual(a: string, b: string): boolean {
|
|
46
|
+
const aBuf = Buffer.from(a);
|
|
47
|
+
const bBuf = Buffer.from(b);
|
|
48
|
+
|
|
49
|
+
// timingSafeEqual requires equal lengths, so pad the shorter buffer
|
|
50
|
+
const maxLen = Math.max(aBuf.length, bBuf.length);
|
|
51
|
+
const paddedA = Buffer.alloc(maxLen);
|
|
52
|
+
const paddedB = Buffer.alloc(maxLen);
|
|
53
|
+
aBuf.copy(paddedA);
|
|
54
|
+
bBuf.copy(paddedB);
|
|
55
|
+
|
|
56
|
+
return (
|
|
57
|
+
aBuf.length === bBuf.length && crypto.timingSafeEqual(paddedA, paddedB)
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function basicAuthPlugin(): Plugin {
|
|
62
|
+
return {
|
|
63
|
+
name: "dev-basic-auth",
|
|
64
|
+
enforce: "pre",
|
|
65
|
+
configureServer(server) {
|
|
66
|
+
const authUser = process.env.BASIC_AUTH_USER;
|
|
67
|
+
const authPass = process.env.BASIC_AUTH_PASS;
|
|
68
|
+
if (authUser == null || authPass == null) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
const expected =
|
|
72
|
+
"Basic " + Buffer.from(`${authUser}:${authPass}`).toString("base64");
|
|
73
|
+
|
|
74
|
+
server.middlewares.use((req, res, next) => {
|
|
75
|
+
const authHeader = req.headers["authorization"] ?? "";
|
|
76
|
+
|
|
77
|
+
if (timingSafeEqual(authHeader, expected)) {
|
|
78
|
+
return next();
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
res.statusCode = 401;
|
|
82
|
+
res.setHeader("WWW-Authenticate", "Basic");
|
|
83
|
+
res.end("Unauthorized");
|
|
84
|
+
});
|
|
85
|
+
},
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
|
|
44
89
|
// https://vitejs.dev/config/
|
|
45
90
|
export default defineConfig({
|
|
46
|
-
plugins: [react(), stdioStubPlugin()],
|
|
91
|
+
plugins: [react(), stdioStubPlugin(), basicAuthPlugin()],
|
|
47
92
|
resolve: {
|
|
48
93
|
alias: {
|
|
49
94
|
"@": path.resolve(__dirname, "./src"),
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as s}from"./react-W6jlU1_L.js";const x=c=>c.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),M=c=>c.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,a,o)=>o?o.toUpperCase():a.toLowerCase()),p=c=>{const t=M(c);return t.charAt(0).toUpperCase()+t.slice(1)},m=(...c)=>c.filter((t,a,o)=>!!t&&t.trim()!==""&&o.indexOf(t)===a).join(" ").trim(),g=c=>{for(const t in c)if(t.startsWith("aria-")||t==="role"||t==="title")return!0};var v={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const $=s.forwardRef(({color:c="currentColor",size:t=24,strokeWidth:a=2,absoluteStrokeWidth:o,className:i="",children:n,iconNode:y,...d},h)=>s.createElement("svg",{ref:h,...v,width:t,height:t,stroke:c,strokeWidth:o?Number(a)*24/Number(t):a,className:m("lucide",i),...!n&&!g(d)&&{"aria-hidden":"true"},...d},[...y.map(([l,k])=>s.createElement(l,k)),...Array.isArray(n)?n:[n]]));const e=(c,t)=>{const a=s.forwardRef(({className:o,...i},n)=>s.createElement($,{ref:n,iconNode:t,className:m(`lucide-${x(p(c))}`,`lucide-${c}`,o),...i}));return a.displayName=p(c),a};const f=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],C1=e("arrow-down",f);const w=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],b1=e("arrow-up",w);const N=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]],j1=e("brain-circuit",N);const C=[["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z",key:"uouzyp"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4",key:"1b0z45"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97",key:"1d7oge"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13",key:"1vgav8"}]],z1=e("bug",C);const b=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],A1=e("check",b);const j=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],q1=e("chevron-down",j);const z=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],L1=e("chevron-right",z);const A=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],H1=e("chevron-up",A);const q=[["path",{d:"m7 15 5 5 5-5",key:"1hf1tw"}],["path",{d:"m7 9 5-5 5 5",key:"sgt6xg"}]],V1=e("chevrons-up-down",q);const L=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],E1=e("circle-alert",L);const H=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],P1=e("circle-check",H);const V=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],Z1=e("circle-dot",V);const E=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],B1=e("circle",E);const P=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],D1=e("cloud",P);const Z=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],I1=e("database",Z);const B=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]],R1=e("ellipsis-vertical",B);const D=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],S1=e("ellipsis",D);const I=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}]],U1=e("file-code",I);const R=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],F1=e("file-text",R);const S=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],O1=e("folder-open",S);const U=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],W1=e("folder",U);const F=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],K1=e("globe",F);const O=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]],G1=e("image",O);const W=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],J1=e("link-2",W);const K=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],T1=e("link",K);const G=[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 19H3",key:"108z41"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"ms4nik"}]],X1=e("list-video",G);const J=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],Q1=e("loader-circle",J);const T=[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]],Y1=e("menu",T);const X=[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3",key:"s6n7sd"}]],ee=e("mic",X);const Q=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]],te=e("moon",Q);const Y=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]],ce=e("panel-left",Y);const e1=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]],ae=e("panel-right",e1);const t1=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]],oe=e("paperclip",t1);const c1=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],ne=e("plus",c1);const a1=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],se=e("search",a1);const o1=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],re=e("settings",o1);const n1=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344",key:"2acyp4"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],ie=e("square-check-big",n1);const s1=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]],de=e("square-pen",s1);const r1=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]],ye=e("square-slash",r1);const i1=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]],he=e("sun",i1);const d1=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",key:"1ngwbx"}]],le=e("wrench",d1);const y1=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],ke=e("x",y1);const h1=c=>c.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),l1=c=>c.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,a,o)=>o?o.toUpperCase():a.toLowerCase()),_=c=>{const t=l1(c);return t.charAt(0).toUpperCase()+t.slice(1)},u=(...c)=>c.filter((t,a,o)=>!!t&&t.trim()!==""&&o.indexOf(t)===a).join(" ").trim(),k1=c=>{for(const t in c)if(t.startsWith("aria-")||t==="role"||t==="title")return!0};var p1={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const _1=s.forwardRef(({color:c="currentColor",size:t=24,strokeWidth:a=2,absoluteStrokeWidth:o,className:i="",children:n,iconNode:y,...d},h)=>s.createElement("svg",{ref:h,...p1,width:t,height:t,stroke:c,strokeWidth:o?Number(a)*24/Number(t):a,className:u("lucide",i),...!n&&!k1(d)&&{"aria-hidden":"true"},...d},[...y.map(([l,k])=>s.createElement(l,k)),...Array.isArray(n)?n:[n]]));const r=(c,t)=>{const a=s.forwardRef(({className:o,...i},n)=>s.createElement(_1,{ref:n,iconNode:t,className:u(`lucide-${h1(_(c))}`,`lucide-${c}`,o),...i}));return a.displayName=_(c),a};const m1=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],pe=r("check",m1);const u1=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],_e=r("copy",u1);const x1=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],me=r("download",x1);const M1=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],ue=r("loader-circle",M1);const g1=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],xe=r("maximize-2",g1);const v1=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],Me=r("rotate-ccw",v1);const $1=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],ge=r("x",$1);const f1=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],ve=r("zoom-in",f1);const w1=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],$e=r("zoom-out",w1);export{C1 as A,z1 as B,pe as C,me as D,S1 as E,O1 as F,j1 as G,de as H,se as I,D1 as J,T1 as K,ue as L,xe as M,G1 as N,K1 as O,ce as P,V1 as Q,Me as R,ye as S,Y1 as T,he as U,te as V,le as W,ge as X,ve as Z,$e as a,_e as b,L1 as c,A1 as d,B1 as e,ke as f,ne as g,oe as h,ee as i,W1 as j,U1 as k,R1 as l,q1 as m,P1 as n,ie as o,F1 as p,I1 as q,J1 as r,ae as s,b1 as t,re as u,H1 as v,Q1 as w,X1 as x,E1 as y,Z1 as z};
|