JSFiddle - React, Tailwind, and code Playground

by Felis Catus

HTML

<div class="bt_copy">

</div>

SCSS

.bt_copy {
  border-radius: 4px;
  width: 21.8px;
  height: 21.8px;
  background-color: #00adca;
  border: solid 1px #0095ad;
  position: relative;
  &:before, &:after {
    width: 8.9px;
    height: 11.8px;
    border-radius: 2px;
    border: 1px solid white;
    content: '';
    position: absolute;
  }
  &:before {
    top: 3px;
    left: 7px;
  }
  &:after {
    top: 6px;
    left: 4px;
    background: inherit;
    box-shadow: 0 0 0 1px #00adca;
  }
}