import { Car, Footprints } from 'lucide-react' import type { RouteSegment } from '../../types' /** Slim travel-time connector shown between two consecutive located stops in a day. */ export function RouteConnector({ seg, profile }: { seg: RouteSegment; profile: 'driving' | 'walking' }) { const driving = profile === 'driving' const Icon = driving ? Car : Footprints const line = { flex: 1, height: 1, minHeight: 1, alignSelf: 'center', background: 'var(--border-primary)' } return (