To clarify, I'm trying to achieve the hover effect which you can see on Stripe.
As you can see, when you hover over one of the buttons, the caret left shows it's "stem" if I may call it that. Check these screenshots taken from the site:
Button No Hover:
Button On Hover:
I was also wondering if this is possible using font awesome icons, here is my code:
button {
background: #0a2540;
border: 0;
border-radius: 50px;
color: #fff;
cursor: pointer;
font-size: 0.75rem;
font-weight: 600;
outline: 0;
padding: 8px 15px;
}
button i {
margin-left: 10px;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" rel="stylesheet" />
<button>Hover Me<i class="fa-solid fa-angle-right"></i></button

