import React from 'react'; import { Box } from './Box'; export interface TabNavigationOption { id: string; label: string; icon?: React.ReactNode; } export interface TabNavigationProps { options: TabNavigationOption[]; activeId: string; onChange: (id: string) => void; } export const TabNavigation = ({ options, activeId, onChange }: TabNavigationProps) => { return ( {options.map((option) => { const isActive = option.id === activeId; return ( ); })} ); };