import { cn } from '@/lib/utils' interface TabsProps { tabs: { key: string; label: string }[] active: string onChange: (key: string) => void } export function Tabs({ tabs, active, onChange }: TabsProps) { return (