JSFiddle - React, Tailwind, and code Playground
HTML
<a href="javascript: void(0);" onclick="popup('popup.html');" alt="abrir"> <img src="https://spng.pngfind.com/pngs/s/424-4249651_click-aqui-click-aqui-png-transparent-png.png" /></a>
JavaScript
function popup(url)
{
params = 'width='+screen.width;
params += ', height='+screen.height;
params += ', top=0, left=0'
params += ', fullscreen=yes';
newwin=window.open(url,'windowname4', params);
if (window.focus) {newwin.focus()}
return false;
}