Button with icon
HTML
<button class="button-with-icon">
<!-- Icon -->
...
<!-- Label -->
<div class="button-with-icon__label">...</div>
</button>
CSS
.button-with-icon {
/* Center the content */
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
}
.button-with-icon__label {
margin-left: 0.5rem;
}
Demo