Skip to content

Commit 5e54b22

Browse files
committed
feat: add VisualStudioCode component with dropdown menu for future integration
1 parent fc37824 commit 5e54b22

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

app/desktop/vs-code.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { VisualStudioCodeIcon } from "@/components/icons/vscode";
2+
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger } from "@/components/ui/dropdown-menu";
3+
4+
export default function VisualStudioCode() {
5+
return (
6+
<DropdownMenu>
7+
<DropdownMenuTrigger asChild>
8+
<button type="button" className="relative flex cursor-pointer items-center justify-center size-9 rounded-lg hover:bg-white hover:shadow-lg duration-400 shadow-black/10 transition-colors">
9+
<VisualStudioCodeIcon className="text-blue-500 size-7 mt-0.5" />
10+
</button>
11+
</DropdownMenuTrigger>
12+
<DropdownMenuContent side="top" align="end" className="w-xl">
13+
<div className="h-48 flex items-center justify-center">
14+
<p>Coming Soon...</p>
15+
</div>
16+
</DropdownMenuContent>
17+
</DropdownMenu>
18+
);
19+
}

0 commit comments

Comments
 (0)