I've been experimenting with various methods to incorporate stacked icons on a pButton in Primeng, but I haven't had any success. Does anyone have a solution that doesn't result in the button being twice its normal height?
Here are a couple of attempts I've made:
<button pButton type="button" icon="fa fa-stack fa-download fa-ban fa-stack-1x" iconPos="left" label="no download"></button>
and
<button pButton type="button">
<span class="fa-stack"><i class="fa fa-download fa-stack-1x"></i><i class="fa fa-ban fa-stack-1x" style="color:tomato"></i></span> no download
</button>
Unfortunately, neither of these approaches is giving me the desired outcome.
To better illustrate my issue, here's what I'm aiming for https://i.sstatic.net/0Go4B.png, compared to what I'm actually getting https://i.sstatic.net/i3Cdt.png.