My current setup includes an icon within a button, where I want the icon to be transparent and the button background color to be white. However, the white background color is obscuring the transparency of the icon. Is there a workaround for this issue?
Below is the HTML code snippet:
<button id="submit-btn">
<i class="fa fa-plus" style={{ fontSize: "48px" }}></i>
</button>