import { colors, lineNames, lineByName } from '../assets/metro' function LineDot({ station }: { station: string }) { const line = lineByName(station) if (line === undefined) { return <> } const lineTitle = lineNames[line] const color = colors[line] return } export default LineDot