interface LabeledValueProps { id?: string; label: string; text: string | number; title?: string; } function LabeledValue({ id, label, text, title }: LabeledValueProps) { return (