Skip to content

Instantly share code, notes, and snippets.

@kagundajm
Created June 5, 2020 11:42
Show Gist options
  • Save kagundajm/77b07b229030d5af2f5547ad35735db0 to your computer and use it in GitHub Desktop.
Save kagundajm/77b07b229030d5af2f5547ad35735db0 to your computer and use it in GitHub Desktop.
import React from 'react';
import {Text, View, StyleSheet } from '@react-pdf/renderer';
const styles = StyleSheet.create({
titleContainer:{
flexDirection: 'row',
marginTop: 24,
},
reportTitle:{
color: '#61dafb',
letterSpacing: 4,
fontSize: 25,
textAlign: 'center',
textTransform: 'uppercase',
}
});
const InvoiceTitle = ({title}) => (
<View style={styles.titleContainer}>
<Text style={styles.reportTitle}>{title}</Text>
</View>
);
export default InvoiceTitle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment