JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="camera">
  <div class="circle"></div>
</div>

CSS

div.camera {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 50px;
  border-radius: 3px;
  background: white;
  position: relative;
  box-shadow: 0px 0px 5px 0px white;
}
div.camera div.circle {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #232732;
  border-radius: 50%;
}