import type { FlowStep } from '../../data/types'; import { Icon } from '../shared/Icon'; interface StatusCardProps { step: FlowStep; stepIndex: number; } export function StatusCard({ step, stepIndex }: StatusCardProps) { return (
{step.description}
{/* Side effects badges */} {Object.keys(step.sideEffects).length > 0 && (