I am trying to create a shape something like this.
This is the shape of the eyebrow in my case. I tried it with clip-path property. this way I am having a sharp turn on the eyebrow border which I want to avoid. I think there must be a way to achieve this.
.avatar__eyebrow {
margin: 100px;
width: 52px;
height: 25px;
background: #000;
clip-path: polygon(57% 6%, 84% 0, 100% 14%, 97% 36%, 87% 51%, 55% 57%, 28% 72%, 0 100%, 25% 39%, 42% 23%);
}
<div class="avatar__eyebrow"></div>


