import React from 'react'; import { View, Text } from 'react-native'; import { useAppTheme } from '@theme'; import { getStyles } from './jobStatusBanner.styles'; interface JobStatusBannerProps { stepLabel: string; stepDetail: string; backgroundColor?: string; } export const JobStatusBanner: React.FC = ({ stepLabel, stepDetail, backgroundColor, }) => { const { colors } = useAppTheme(); const styles = getStyles(colors); return ( {stepLabel} {stepDetail} ); }; export default JobStatusBanner;