import React from 'react' import { Box, Text } from 'ink' import { theme, PANEL_WIDTH } from '../../../../ui/theme.js' type FlowTimelineProps = { steps: string[] current: number } export const FlowTimeline: React.FC = ({ steps, current }) => ( {steps.map((step, index) => { const n = index + 1 const active = n === current const reached = n <= current return ( {index > 0 ? : null} {reached ? '●' : '○'} ) })} )