I'm using Bootstrap 4.1 and would like to display an icon within a button. Of course that's easy:
<a class="btn btn-primary" href="/users/auth/facebook">
<i class="fab fa-facebook strong"></i> Facebook
</a>
But on mobile devises with less real estate I only want to display the icon and not the text. That used to be easy with Bootstrap 3 but I can't find a solution for this in the 4.1 documentation. How can/should it be done?