I am using react-pdf in react application. I have rendered a pdf using code
<PDFViewer>
<Document
onContextMenu={(e) => e.preventDefault()}
>
<Page
size="A4">
<Text>This is pdf page</Text>
</Page>
</Document>
</PDFViewer>
It is rendering the pdf but the view width and height are too small, when I try to do some customization with the height and width of PDFViewer it is showing the iframe toolbar how I can solve this or hide this toolbar of the iframe?