import { Text, View, StyleSheet } from "@react-pdf/renderer"; const styles = StyleSheet.create({ row: { display: "flex", flexDirection: "row", }, bullet: { height: "100%", }, }); const ListItem = ({ text, textStyle }: { text: string, textStyle: any[] }) => { return ( {"\u2022" + " "} {text} ); }; export default ListItem;