diff --git a/package.json b/package.json
index d3bdda6d..52028278 100644
--- a/package.json
+++ b/package.json
@@ -85,7 +85,7 @@
"clsx": "^2.1.1",
"framer-motion": "^13.1.1",
"jose": "6.2.9",
- "lucide-react": "^0.539.0",
+ "lucide-react": "^1.46.0",
"posthog-js": "^1.415.6",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b7421bc4..e436711a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -48,8 +48,8 @@ importers:
specifier: 6.2.9
version: 6.2.9
lucide-react:
- specifier: ^0.539.0
- version: 0.539.0(react@19.2.8)
+ specifier: ^1.46.0
+ version: 1.47.0(react@19.2.8)
posthog-js:
specifier: ^1.415.6
version: 1.415.6
@@ -2735,8 +2735,8 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- lucide-react@0.539.0:
- resolution: {integrity: sha512-VVISr+VF2krO91FeuCrm1rSOLACQUYVy7NQkzrOty52Y8TlTPcXcMdQFj9bYzBgXbWCiywlwSZ3Z8u6a+6bMlg==}
+ lucide-react@1.47.0:
+ resolution: {integrity: sha512-o8C23aXpNQypRY73W7fW02EyvWJinEMXgKeGjFoKym0zj3Q73hD97A1IQps1g8C14HTGsOpZL0Am+xjfgFZAbg==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -6189,7 +6189,7 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-react@0.539.0(react@19.2.8):
+ lucide-react@1.47.0(react@19.2.8):
dependencies:
react: 19.2.8
diff --git a/src/components/TeamLibraryPanel.tsx b/src/components/TeamLibraryPanel.tsx
index 9d4c509d..bfbb0ade 100644
--- a/src/components/TeamLibraryPanel.tsx
+++ b/src/components/TeamLibraryPanel.tsx
@@ -6,13 +6,22 @@ import {
ArrowLeft,
Check,
ExternalLink,
- Github,
Loader2,
Search,
UploadCloud,
Users,
X,
} from "lucide-react";
+
+// lucide-react 1.x removed brand icons; the GitHub mark lives here now
+// (same path lucide's former `Github` icon drew).
+function GithubMark({ size, className }: { size?: number; className?: string }) {
+ return (
+
+ );
+}
import { useCallback, useEffect, useRef, useState } from "react";
import { createPortal } from "react-dom";
@@ -284,7 +293,7 @@ export function TeamLibraryPanel({
className="flex items-center gap-1.5 rounded-lg px-2.5 py-2 text-[12.5px] text-ink-secondary hover:bg-raised hover:text-ink"
title="Open the community teams repository"
>
-
Paste a public repository path or a direct team JSON link.