/* * 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 Extra Payoff Total Future Projected Projected Equity Payment Prinipal Months Interest Value Equity Years ); return rows; }; export default PDFSummaryHeader;