import React from "react"; import { Files, Search, GitBranch, Bug, Package, User, Settings } from "lucide-react"; const ActivityBar = ({ activeTab, toggleSidebar }) => { const tabs = [ { id: "explorer", icon: Files, title: "Explorer" }, { id: "search", icon: Search, title: "Search" }, { id: "git", icon: GitBranch, title: "Source Control" }, { id: "debug", icon: Bug, title: "Run and Debug" }, { id: "extensions", icon: Package, title: "Extensions" }, ]; return (