JSFiddle - React, Tailwind, and code Playground
HTML
<div id="toolbar">
<div class="button"></div>
<div class="other"><label>Name: <input type="text" /></label></div>
</div>
CSS
#toolbar {
height: 36px;
width: 100%;
background: lightgray;
}
.button {
height: 30px;
width: 36px;
margin: 2px;
display: inline-block;
border: 1px solid #000;
cursor: pointer;
border-radius: 2px;
}
.other {
display:inline-block;
height:32px;
margin:2px;
}