Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions apps/mesh/src/web/components/details/virtual-mcp/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ import {
Loading01,
Play,
Plus,
ZapCircle,
Tool01,
Users03,
} from "@untitledui/icons";
Expand Down Expand Up @@ -316,7 +315,30 @@ function VirtualMcpDetailViewWithData({
dispatch({ type: "SET_SHARE_DIALOG_OPEN", payload: true })
}
>
<ZapCircle size={14} />
<div className="flex items-center -space-x-1.5 mr-0.5">
<div
className="size-4 rounded-full ring-1 ring-background flex items-center justify-center"
style={{ backgroundColor: "#181818" }}
>
<img
src="/logos/cursor.svg"
alt="Cursor"
className="size-2.5"
style={{ filter: "brightness(0) invert(1)" }}
/>
</div>
<div
className="size-4 rounded-full ring-1 ring-background flex items-center justify-center"
style={{ backgroundColor: "#D97757" }}
>
<img
src="/logos/Claude Code.svg"
alt="Claude Code"
className="size-2.5"
style={{ filter: "brightness(0) invert(1)" }}
/>
</div>
</div>
Connect
</Button>

Expand Down
Loading