Is it possible to create a circular, clear icon-only button without using ion-buttons? I am trying to achieve the same style as an icon-only button within ion-buttons
(clear and circular).
Here is my current code:
<ion-button icon-only shape="round" color="white" fill="clear">
<ion-icon slot="icon-only" name="close"></ion-icon>
</ion-button>
However, the resulting button does not appear circular. Instead, it appears as a rectangular button with rounded corners.
The Ionic 4 documentation does not provide guidance on how to achieve this effect.