import React from "react"; import { Text, View, StyleSheet } from "@react-pdf/renderer"; const styles = StyleSheet.create({ titleContainer: { flexDirection: "row", marginTop: 10, marginBottom: 5, }, reportTitle: { color: "#000000", fontSize: 12, }, }); function ReportSubtitle({ program, cash }: any) { return ( Closing Cost: {program}   {cash} ); } export default ReportSubtitle;