import { Box } from './Box'; export interface BorderTabsProps { tabs: TabOption[]; activeTabId: string; onTabChange: (id: string) => void; } export const BorderTabs = ({ tabs, activeTabId, onTabChange }: BorderTabsProps) => { return ( {tabs.map((tab) => { const isActive = tab.id === activeTabId; return ( ); })} ); };