JSFiddle - React, Tailwind, and code Playground

by seanmcmills

HTML

<div class="arrow-down"></div>
<div class="arrow-up"></div>

CSS

.arrow-down {
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	
	border-top: 10px solid black;
}
.arrow-right {
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	
	border-left: 10px solid black;
}