JSFiddle - React, Tailwind, and code Playground

HTML

<div class="button"><div class="arrow-right"></div><div class="arrow-right2"></div></div>

CSS

.arrow-right {
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	
	border-left: 10px solid white;
    position:absolute;
    margin-top:1px;
    /*outline:blue dotted thick;*/
}
.arrow-right2 {
	width: 0; 
	height: 0; 
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	
	border-left: 11px solid blue;
    /*outline:blue dotted thick;*/
}
.button{
width: 400px;
    background-color:orange;
}