interface LabeledTextProps { id?: string label: string text: any tooltip?: string } function LabeledText({ id, label, text, tooltip }: LabeledTextProps) { return (