JSFiddle - React, Tailwind, and code Playground

HTML

<div>design</div>

CSS

body { background: red; }

div {
    margin: auto;
    width: 150px;
    height: 50px;
    background: #fff;
    text-align: center;
    line-height: 50px;
    position: relative;
    border-radius: 0 5px 5px 0;
}

div:before {
    content: '';
    position: absolute;
    border: 25px solid transparent;
    border-right: 25px solid #fff;
    top: 0;
    right: 100%;
}

div:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: blue;
    top: 50%;
    left: 0;
    margin-top: -5px;
}