import type { ReactNode } from 'react'; import { cn, type Accent } from '@/lib/cn'; interface FlowNodeProps { accent?: Accent; children: ReactNode; className?: string; } const ACCENT_BORDER_TEXT: Record = { red: 'border-red text-red', orange: 'border-orange text-orange', yellow: 'border-yellow text-yellow', green: 'border-green text-green', cyan: 'border-cyan text-cyan', blue: 'border-blue text-blue', purple: 'border-purple text-purple', pink: 'border-pink text-pink', rose: 'border-rose text-rose', teal: 'border-teal text-teal', }; /** Flow node from design.md §5.5 — chained horizontally with arrows in flex rows. */ export function FlowNode({ accent, children, className }: FlowNodeProps) { return ( {children} ); }