JSFiddle - React, Tailwind, and code Playground

by ssthouse

HTML

<div class="parent">
  <textarea class="text">
  
  </textarea>

  <div class="icon-btn">
  
  </div>
</div>

SCSS

.parent {
  display: flex;
  position: relative;
  width: 300px;
  height: 150px;
  background-color: red;
  
  .text{
    width: 100%;
    height: 100%;
  }
  
  .icon-btn{
    background-color: blue;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
  }
}