/* * Copyright 2020-2021 AskChristee, LLC. All rights reserved. */ import { StyleSheet, View, Text } from "@react-pdf/renderer"; import React from "react"; const styles = StyleSheet.create({ row: { flexDirection: "row", height: 16, }, acalc: { width: "12%", fontSize: 9, textAlign: "left", }, }); const PDFSummaryHeader = () => { const rows = ( Monthly Original Extra Principal Payoff Months Total Interest Payment Term Payment Months Reduced Paid ); return rows; }; export default PDFSummaryHeader;