import { Box, Typography } from '@mui/material' import { ConfidenceFieldBadge } from './ConfidenceFieldBadge' interface Props { label: string value: string confidence: number missing?: boolean } export function ExtractedFieldRow({ label, value, confidence, missing = false }: Props) { return ( {label} {value} ) }