JSFiddle - React, Tailwind, and code Playground

by FunnyBanana

HTML

<div class="dial"><p>33%</p></div>

SCSS

body {
	background-color: #2f323e;
	font-family: Consolas, monaco, monospace;
	color: #fff;
}

.dial {
	width: 80px;
	height: 80px;
	font-size: 20px;
	text-align: center;
	line-height: 80px;
	border: 6px solid #262832;
	border-radius: 100%;
	margin: 20px;
	display: inline-block;
	transform: rotate(-45deg);
	border-right-color: #1390d4;
	p {
		margin: 0;
		transform: rotate(45deg);
	}
	&::before {
		content: '';
		display: block;
		position: absolute;
		width: 80px;
		height: 80px;
		border-radius: 100%;
		border: 6px solid transparent;
		border-right-color:#1390d4;
		margin: -6px -6px;
		transform: rotate(28.8deg);
	}
}