<Button href={instance.url} download="test.pdf" color='primary' block outline className='mb-75' disabled={pdfCheck} onClick = {() => test()}>
Скачать
</Button>
const element = document.createElement('a');
element.href = instance.url;
element.setAttribute('download', 'test.pdf');
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);