I have a very simple question, I have react icon and text in front of it. The text is not aligned with the React Icon. How can I align it with text? Check the screenshot. My code is:
<MdPerson size={20}/><span> Profile</span>
screenshot
Try to wrap icon component and your span
label with outer div
block. Then apply some class to the div where child elements aligned by flexbox.
.centered-label {
display: flex;
align-items: center;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With