:host {
  --sucess-color: #27b970;
  position: relative;
  display: inline-block;
}

div {
  border-radius: 50%;
  border: solid 2px;
  box-sizing: border-box;
  height: var(--size);
  width: var(--size);
}

.published,
.revision:after {
  background-color: var(--sucess-color);
}

.archived,
.revision {
  position: relative;
}
.archived:before,
.revision:before {
  box-sizing: border-box;
  background-color: currentColor;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--size) - 2px);
  z-index: 1;
}

.revision {
  transform: rotate(90deg);
}
.revision:after {
  border-bottom-left-radius: var(--size);
  border-top-left-radius: var(--size);
  bottom: 25%;
  content: "";
  height: 100%;
  left: 25%;
  position: absolute;
  transform: rotate(90deg);
  width: 50%;
}