JSFiddle - React, Tailwind, and code Playground

by Jesse M

HTML

<div class="triangle-right"></div>

CSS

.triangle-right {
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-left: 100px solid red;
	border-bottom: 50px solid transparent;
}