import { Users, Hash, Building } from "lucide-react"; interface CategoryTabsProps { selectedCategory: string; onCategoryChange: (category: string) => void; } const categories = [ { id: "People", label: "People", Icon: Users, count: 36 }, { id: "Topics", label: "Topics", Icon: Hash, count: 24 }, { id: "Companies", label: "Companies", Icon: Building, count: 27 }, ]; export default function CategoryTabs({ selectedCategory, onCategoryChange }: CategoryTabsProps) { return (