import * as React from 'react'; import type { IStep } from '@automatisch/types'; import AppIcon from 'components/AppIcon'; import IntermediateStepCount from 'components/IntermediateStepCount'; type FlowAppIconsProps = { steps: Partial[]; } export default function FlowAppIcons(props: FlowAppIconsProps) { const { steps } = props; const stepsCount = steps.length; const firstStep = steps[0]; const lastStep = steps[stepsCount - 1]; const intermeaditeStepCount = stepsCount - 2; return ( <> {intermeaditeStepCount > 0 && } ) };