JSFiddle - React, Tailwind, and code Playground
by Aziz Natour
HTML
<div class="burst">1</div>
CSS
body {margin:3em;}
.burst {
background: green;
width: 80px;
height: 80px;
line-height: 80px;
font-size: 2em;
color: #FFF;
position: relative;
text-align: center;
border-radius: 10px;
}
.burst::before, .burst::after {
content: "";
position: absolute;
z-index:-1;
top: 0; left: 0; bottom: 0; right: 0;
background: inherit;
border-radius: inherit;
transform: rotate(27deg);
}
.burst::after {
transform: rotate(-30deg);
}