Can someone help me figure out how to create an arrow similar to the one in this button using CSS?
https://i.sstatic.net/gQi0l.png
I've been able to create triangle-like arrows like the one below
#triangle_arrow {
top: 3pt;
content: "";
display: inline-block;
width: 0.5em;
height: 0.5em;
border-right: 0.1em solid black;
border-top: 0.1em solid black;
transform: rotate(45deg);
}
However, I'm struggling with creating a line towards the arrow's corner! Any suggestions?