import { type FunctionComponent } from 'react'; import { Text, View } from 'react-native'; import { styles } from '../style'; import type { StepNumberProps } from '../../types'; export const StepNumber: FunctionComponent = ({ currentStepNumber, }) => { return ( {currentStepNumber} ); };