import React from 'react'; import { Button } from '@/components/ui/button.tsx'; import { X, Home } from 'lucide-react'; interface ConfigTab { id: string | number; title: string; } interface ConfigTabListProps { tabs: ConfigTab[]; activeTab: string | number; setActiveTab: (tab: string | number) => void; closeTab: (tab: string | number) => void; onHomeClick: () => void; } export function ConfigTabList({ tabs, activeTab, setActiveTab, closeTab, onHomeClick }: ConfigTabListProps) { return (